/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2e;
  --navy-mid:   #142035;
  --navy-light: #1e3050;
  --gold:       #c9a84c;
  --gold-light: #e0c070;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --grey-100:   #f0f2f5;
  --grey-200:   #e2e6eb;
  --grey-400:   #9aa3af;
  --grey-600:   #5c6776;
  --grey-800:   #2d3748;
  --text:       #1a2233;
  --text-muted: #5c6776;
  --accent:     #1a3a5c;

  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --max-width: 1140px;
  --section-pad: 5rem;
  --radius: 6px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { color: var(--text-muted); }

.lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.8;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad) 0; }
.section-light  { background: var(--white); }
.section-dark   { background: var(--navy); }
.section-accent { background: var(--navy-mid); }

.section-header { margin-bottom: 3.5rem; }
.section-header-light .section-label { color: var(--gold); }
.section-header-light h2 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   LANGUAGE TOGGLE
   ============================================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color var(--transition);
  font-family: var(--font-sans);
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--gold-light); }
.lang-sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,58,92,0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0a1520 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}

.hero-left {}

.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.available-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201,168,76,0.7);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Photo frame */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-frame {
  position: relative;
  width: 260px;
  height: 300px;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.photo-initials {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  letter-spacing: 0.1em;
}
.photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  z-index: -1;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ============================================================
   HOW I WORK
   ============================================================ */
.section-how { background: var(--accent); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.how-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.how-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(201,168,76,0.3);
  z-index: 1;
}
.how-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-3px);
}
.how-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.how-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.how-icon svg { width: 100%; height: 100%; }
.how-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.how-card p  { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; }


/* ============================================================
   INDUSTRIES
   ============================================================ */
.section-industries {
  background: var(--grey-100);
  padding: 2rem 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.industries-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-align: center;
  margin-bottom: 1.25rem;
}
.industries-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.industry-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-600);
  padding: 0 1rem;
}
.industry-item svg { color: var(--gold); flex-shrink: 0; }
.industry-sep {
  color: var(--grey-200);
  font-size: 1.2rem;
  line-height: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.about-text p { margin-bottom: 1rem; }
.about-text p:first-child { margin-bottom: 1.25rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--grey-100);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: 0.03em;
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.expertise-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.expertise-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-3px);
}

.expertise-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.expertise-icon svg { width: 100%; height: 100%; }

.expertise-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.expertise-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

.competency-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  justify-content: center;
}
.tag {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2.55rem;
  top: 1.1rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.timeline-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.timeline-header h3 { color: var(--navy); margin-bottom: 0.2rem; }

.timeline-company { font-weight: 600; font-size: 0.9rem; color: var(--gold); }
.timeline-meta { font-size: 0.82rem; color: var(--grey-400); margin-top: 0.1rem; }

.timeline-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.timeline-card > p { font-size: 0.9rem; margin-bottom: 1.2rem; }

.timeline-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.highlight {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}
.highlight strong { color: var(--text); }

/* ============================================================
   EDUCATION
   ============================================================ */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.edu-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.edu-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.edu-card:last-child { border-bottom: none; margin-bottom: 0; }

.edu-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.edu-card h4 { color: var(--white); margin-bottom: 0.15rem; font-size: 0.9rem; }
.edu-card p  { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* Language bars */
.lang-item { margin-bottom: 1.2rem; }
.lang-name  { display: block; color: var(--white); font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
.lang-level { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.lang-bar   { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.lang-fill  { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-container { text-align: center; }

.contact-intro {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  word-break: break-all;
}
.contact-card:not(.contact-card-static):hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.contact-card-icon svg { width: 100%; height: 100%; }

.contact-card-static { cursor: default; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.section-insights {
  background: #f2f4f8;
  padding: 6rem 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.insight-card {
  background: #ffffff;
  border: 1px solid #e2e6ee;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.insight-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,46,0.10);
  transform: translateY(-3px);
}

.insight-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.10);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  align-self: flex-start;
}

.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.insight-desc {
  font-size: 0.92rem;
  color: #5a6478;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.insight-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.insight-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07111f;
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-linkedin:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid > .edu-col:last-child { grid-column: 1 / -1; }
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .how-card:not(:last-child)::after { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .lang-toggle { order: -1; margin-left: 0; margin-right: auto; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { margin-top: 0.5rem; text-align: center; border-radius: var(--radius) !important; }

  /* Hero */
  .hero-content { padding: 6rem 1.5rem 3rem; grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-name { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .about-actions { flex-direction: column; }

  /* How I Work */
  .how-grid { grid-template-columns: 1fr; }

  /* Industries */
  .industries-strip { gap: 0.5rem; }
  .industry-sep { display: none; }

  /* Expertise */
  .expertise-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Timeline */
  .timeline { padding-left: 1.5rem; }
  .timeline-marker { left: -2.1rem; }
  .timeline-card { padding: 1.25rem 1.25rem; }
  .timeline-header { flex-direction: column; gap: 0.5rem; }

  /* Education */
  .edu-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact */
  .contact-cards { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .hero-name { font-size: 2.5rem; }
  .timeline { padding-left: 1.25rem; }
  .timeline-marker { left: -1.85rem; width: 10px; height: 10px; }
}

/* ============================================================
   HERO VALUE PROPOSITION
   ============================================================ */
.hero-value-prop {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.6;
  max-width: 520px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  background: #07111f;
  padding: 6rem 0;
}
.section-testimonials .section-label { color: var(--gold); }
.section-testimonials .section-title {
  color: var(--white);
  margin-bottom: 3rem;
  font-family: var(--font-serif);
  font-size: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-title {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.9;
  letter-spacing: 0.01em;
}
.testimonial-company {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  text-align: left;
}
.contact-form button[type="submit"] {
  display: block;
  margin: 0 auto;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
}
.form-success-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.form-success h3 { color: var(--white); font-size: 1.1rem; }
.form-success p  { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.form-error {
  text-align: center;
  color: #ff7070;
  font-size: 0.9rem;
  margin: 0 auto 1.25rem;
  max-width: 700px;
}
.form-error a { color: var(--gold); text-decoration: underline; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

/* ============================================================
   IMPRESSUM MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,17,31,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--navy);
  line-height: 1.7;
}
.modal-box h2 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.modal-box p { margin-bottom: 1rem; font-size: 0.9rem; }
.modal-box a { color: var(--navy); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

/* ============================================================
   FOOTER IMPRESSUM BUTTON
   ============================================================ */
.footer-impressum-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-impressum-btn:hover { color: var(--gold); }

/* ============================================================
   LANGUAGE TOGGLE IMPROVED
   ============================================================ */
.lang-toggle {
  display: flex;
  gap: 0.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.2rem;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}
.lang-sep { display: none; }

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-value-prop { font-size: 0.95rem; }
}
