/* ============================================================
   MENNO DIEPENHORST — Personal Website
   styles.css — v2 (refined: more premium, more personal)
   ============================================================ */


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:              #F8F7F4;
  --bg-alt:          #F0EDE8;
  --bg-card:         #FFFFFF;
  --bg-dark:         #0E0E0C;

  --text-primary:    #111010;
  --text-secondary:  #5C5C5C;
  --text-muted:      #9A9A9A;
  --text-on-dark:    #F8F7F4;
  --text-on-dark-muted: rgba(248,247,244,0.5);

  --accent:          #1B4A5E;
  --accent-hover:    #153C4D;
  --accent-light:    #E4EEF2;
  --accent-glow:     rgba(27,74,94,0.12);
  --gold:            #C4A96A;
  --gold-light:      rgba(196,169,106,0.15);

  --border:          #E2DED9;
  --border-subtle:   rgba(17,16,16,0.06);
  --border-dark:     rgba(255,255,255,0.08);

  --shadow-xs:       0 1px 4px rgba(0,0,0,0.04);
  --shadow-sm:       0 2px 14px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:       0 24px 64px rgba(0,0,0,0.12);
  --shadow-accent:   0 8px 28px rgba(27,74,94,0.22);

  --font:            'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:     128px;
  --container:       1140px;
  --gutter:          24px;

  --radius-sm:       6px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-pill:     999px;

  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:        cubic-bezier(0.0, 0, 0.2, 1);
  --dur:             0.25s;
}


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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Top accent bar */
  border-top: 3px solid var(--accent);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
em { font-style: italic; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(27,74,94,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section--alt  { background-color: var(--bg-alt); }
.section--dark { background-color: var(--bg-dark); color: var(--text-on-dark); }

@media (max-width: 599px) { .hide-mobile { display: none; } }


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Gold accent dot before labels */
.label::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.label--light { color: var(--text-on-dark-muted); }
.label--light::before { background: rgba(196,169,106,0.6); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-std),
              color var(--dur) var(--ease-std),
              border-color var(--dur) var(--ease-std),
              transform var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(140deg, #22596F 0%, #1B4A5E 55%, #102E3D 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 18px rgba(27,74,94,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--primary:hover {
  background: linear-gradient(140deg, #26637D 0%, #1e536a 55%, #143748 100%);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(27,74,94,0.55), 0 8px 24px rgba(27,74,94,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(17,16,16,0.25);
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Ghost button on dark hero background */
.hero .btn--ghost {
  color: rgba(248,247,244,0.5);
  border-color: rgba(255,255,255,0.14);
}
.hero .btn--ghost:hover {
  color: rgba(248,247,244,0.85);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 3px; /* sits below the accent bar */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--dur) var(--ease-std),
              padding var(--dur) var(--ease-std),
              border-color var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(248,247,244,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border-subtle), var(--shadow-xs);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--dur) ease;
}
.nav.scrolled .nav__brand {
  color: var(--text-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(248,247,244,0.55);
  transition: color var(--dur) ease;
  position: relative;
}
.nav.scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover { color: var(--text-on-dark); }
.nav.scrolled .nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 16px; flex-shrink: 0; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, background var(--dur) ease;
}
.nav.scrolled .nav__hamburger span {
  background: var(--text-primary);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 24px;
  background: rgba(248,247,244,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-size: 16px;
  color: var(--text-secondary);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) ease;
}
.nav__mobile-link:hover { color: var(--text-primary); }
.nav__mobile-cta { margin-top: 20px; justify-content: center; width: 100%; }


/* ============================================================
   HERO — dark with teal glow (mirrors contact section aesthetic)
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-dark);
}

/* Prominent teal + gold radial mesh — same language as contact section */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 8% 55%,  rgba(27,74,94,0.55)  0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 85% 25%,  rgba(196,169,106,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 55% 90%,  rgba(27,74,94,0.18)  0%, transparent 50%);
  pointer-events: none;
}

/* Background grid — light lines on dark */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 85% at 55% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 85% at 55% 50%, black 10%, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 72px;
}

.hero__content { max-width: 620px; }

/* Role badge — dark bg version */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248,247,244,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
  flex-shrink: 0;
  animation: pulse-green 2.5s ease infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.08); }
}

.hero__headline {
  font-size: clamp(44px, 6.2vw, 74px);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--text-on-dark);
  margin-bottom: 28px;
}

/* Italic "Transformed." — glowing teal gradient on dark bg */
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #F8F7F4 25%, #6BAEC8 75%, #3B8AAA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 1.7vw, 18px);
  color: rgba(248,247,244,0.55);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ============================================================
   HERO VISUAL PANEL
   ============================================================ */
.hero__visual {
  position: relative;
  width: 100%;
  height: 400px;
  flex-shrink: 0;
}

/* Main analytics panel */
.hero__panel {
  position: absolute;
  inset: 20px 0 20px 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,255,255,0.6) inset;
  overflow: hidden;
  z-index: 2;
}

.hero__panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(248,247,244,0.6);
}

.hero__panel-dots { display: flex; gap: 5px; }
.pdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pdot--red    { background: #FF6058; }
.pdot--yellow { background: #FFBD2E; }
.pdot--green  { background: #27C840; }

.hero__panel-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero__panel-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__metric {}

.hero__metric-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px;
}

.hero__metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.hero__metric-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero__metric-value--up { color: #16A34A; }

.hero__bar-track {
  height: 5px;
  background: rgba(17,16,16,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.hero__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: var(--accent);
  transition: width 1.4s var(--ease) 0.8s;
}
.hero__bar-fill.animate { width: var(--fill); }

.hero__bar-fill--gold  { background: var(--gold); }
.hero__bar-fill--light { background: rgba(27,74,94,0.3); }

.hero__metric--divider { padding-top: 6px; border-top: 1px solid var(--border); }

/* Sparkline */
.hero__sparkline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__sparkline svg { width: 100%; height: 32px; }
.hero__sparkline-label {
  font-size: 11px;
  color: var(--text-muted);
}
.sparkline-anim {
  animation: sparkline-draw 2s var(--ease) 1.2s forwards;
}
@keyframes sparkline-draw {
  to { stroke-dashoffset: 0; }
}

/* Mini floating card */
.hero__panel-mini {
  position: absolute;
  bottom: 24px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-on-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.hero__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: pulse-green 2s ease infinite;
}

/* Decorative ring */
.hero__ring {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
}
.hero__ring::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%; left: -5px;
  margin-top: -5px;
  animation: ring-orbit 12s linear infinite;
  transform-origin: calc(90px + 5px) 0;
}
@keyframes ring-orbit {
  from { transform: rotate(0deg) translateX(90px); }
  to   { transform: rotate(360deg) translateX(90px); }
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(248,247,244,0.35), transparent);
  animation: scroll-pulse 2.5s ease infinite;
}
@keyframes scroll-pulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 20px;
  transition: color var(--dur) ease;
}

.marquee-item:hover { color: var(--accent); }

.marquee-sep {
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   POSITIONING / INTRO
   ============================================================ */
.positioning {
  padding: var(--section-pad) 0;
}

.positioning__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.positioning__label-col { padding-top: 6px; }

.positioning__lead {
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.positioning__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.positioning__stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat__number {
  display: inline-block;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 7px;
}

.stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================================
   EXPERTISE CARDS
   ============================================================ */
.expertise { padding: var(--section-pad) 0; }

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Top gradient accent line on hover */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(27,74,94,0.15);
}
.card:hover::before { transform: scaleX(1); }

/* Card number — top right ghost */
.card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.5;
}

.card__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--dur) ease;
}
.card:hover .card__icon { background: rgba(27,74,94,0.1); }

.card__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.card__result {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
}


/* ============================================================
   EXPERIENCE / TIMELINE
   ============================================================ */
.experience { padding: var(--section-pad) 0; }

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent 95%);
}

.timeline__item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 52px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: 12px; top: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  transition: border-color 0.3s ease;
  z-index: 1;
}

.timeline__marker::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline__item:hover .timeline__marker { border-color: var(--accent); }
.timeline__item:hover .timeline__marker::after { opacity: 1; }

.timeline__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.timeline__company {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}

.timeline__period {
  font-size: 12px;
  color: var(--text-muted);
}

.timeline__role {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.timeline__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

/* Company link badge with favicon */
.timeline__company-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 9px 3px 5px;
  transition: color var(--dur) ease,
              border-color var(--dur) ease,
              box-shadow var(--dur) ease,
              transform var(--dur) var(--ease),
              background var(--dur) ease;
  text-decoration: none;
  line-height: 1;
}

.timeline__favicon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}

.timeline__badge-arrow {
  font-size: 9px;
  color: var(--text-muted);
  opacity: 0.6;
  transition: opacity var(--dur) ease,
              transform var(--dur) ease,
              color var(--dur) ease;
  margin-left: 1px;
}

.timeline__company-badge:hover {
  color: var(--accent);
  border-color: rgba(27,74,94,0.25);
  background: var(--accent-light);
  box-shadow: 0 3px 12px rgba(27,74,94,0.1);
  transform: translateY(-1px);
}

.timeline__company-badge:hover .timeline__badge-arrow {
  opacity: 1;
  color: var(--accent);
  transform: translate(1px, -1px);
}


/* ============================================================
   VALUE / WHY MENNO
   ============================================================ */
.value { padding: var(--section-pad) 0; }

.value__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.value__item {
  background: var(--bg-card);
  padding: 48px 44px;
  border: 1px solid var(--border);
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.value__item:hover { background: var(--bg); }

/* Large ghost number */
.value__ghost-num {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.value__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
}

/* Gold underline accent on value titles */
.value__title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 10px;
}

.value__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
}


/* ============================================================
   SECTORS
   ============================================================ */
.sectors { padding: var(--section-pad) 0; }

.sectors__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  transition: color var(--dur) ease,
              border-color var(--dur) ease,
              box-shadow var(--dur) ease,
              transform var(--dur) var(--ease);
}
.sector-tag svg { color: var(--text-muted); transition: color var(--dur) ease; }
.sector-tag:hover {
  color: var(--accent);
  border-color: rgba(27,74,94,0.25);
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: translateY(-2px);
}
.sector-tag:hover svg { color: var(--accent); }


/* ============================================================
   TRUST / SOCIAL PROOF
   ============================================================ */
.trust { padding: var(--section-pad) 0; }

.trust__anchors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 64px;
}

.trust__anchor {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--dur) ease;
}
.trust__anchor:last-child { border-right: none; }
.trust__anchor:hover { background: var(--bg); }

.trust__anchor-value {
  display: inline-block;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.trust__anchor-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--dur) ease, transform var(--dur) var(--ease);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial__mark {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.6;
  margin-bottom: 8px;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__attribution { display: flex; flex-direction: column; gap: 3px; }
.testimonial__name { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.testimonial__title { font-size: 12px; color: var(--text-muted); }

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.logo-strip__logo {
  height: 26px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity var(--dur) ease, filter var(--dur) ease;
}
.logo-strip__logo:hover { opacity: 0.65; filter: grayscale(0.3); }


/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-pad) 0; }

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 22px 0;
  gap: 24px;
  line-height: 1.4;
  transition: color var(--dur) ease;
}
.faq__question:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color var(--dur) ease, background var(--dur) ease, transform 0.3s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: background var(--dur) ease;
}
.faq__icon::before { width: 8px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 8px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: background var(--dur) ease, opacity 0.25s ease; }

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: #fff; }

.faq__answer {
  padding: 0 0 24px;
  max-width: 640px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ============================================================
   PILLARS — 4 principles in 2×2 editorial grid
   ============================================================ */
.pillars { padding: var(--section-pad) 0; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pillar {
  background: var(--bg-alt);
  padding: 52px 48px;
  position: relative;
  transition: background 0.3s ease;
}
.pillar:hover { background: #EAE6DF; }

/* Numbered counter — top right ghost */
.pillar:nth-child(1)::after { content: '01'; }
.pillar:nth-child(2)::after { content: '02'; }
.pillar:nth-child(3)::after { content: '03'; }
.pillar:nth-child(4)::after { content: '04'; }

.pillar::after {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.45;
}

.pillar__title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-right: 40px; /* don't overlap counter */
}

/* Gold underline on pillar titles */
.pillar__title::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 14px;
}

.pillar__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 380px;
}

/* Responsive */
@media (max-width: 768px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { padding: 40px 32px; }
}
@media (max-width: 480px) {
  .pillar { padding: 32px 24px; }
  .pillar__title { padding-right: 32px; }
}


/* ============================================================
   APPROACH — editorial two-column layout
   ============================================================ */
.approach { padding: var(--section-pad) 0; }

.approach__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.approach__label-col { padding-top: 6px; }

.approach__lead {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.014em;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.approach__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.approach__list {
  list-style: none;
  margin: 4px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.approach__list li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

/* Gold dash marker */
.approach__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}

.approach__close {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  letter-spacing: -0.008em;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 600px;
}

/* Responsive */
@media (max-width: 1024px) {
  .approach__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .approach__label-col { padding-top: 0; }
}


/* ============================================================
   FEEDMYCART — side project spotlight
   ============================================================ */
.feedmycart { padding: var(--section-pad) 0; }

.feedmycart__inner {
  display: grid;
  grid-template-columns: 47fr 53fr;
  gap: 72px;
  align-items: stretch;
}

/* ---- Centered header: label + title stay centered, icon floats left ---- */
.feedmycart__header {
  position: relative;
}

.feedmycart__icon {
  position: absolute;
  /* Horizontally centered over the left content column (~25% of container) */
  left: calc(25% - 32px);
  /* Vertically aligned with the centered FeedMyCart title (sits at bottom of header) */
  bottom: 6px;
  width: 64px;
  height: 64px;
  border-radius: 15px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.14);
  margin: 0;
}

.feedmycart__name {
  margin: 0;
  background: linear-gradient(135deg, var(--text-primary) 35%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* On smaller screens the floating icon doesn't make sense — inline it above the title */
@media (max-width: 1024px) {
  .feedmycart__icon {
    position: static;
    display: block;
    margin: 0 auto 16px;
  }
}

/* ---- Body copy ---- */
.feedmycart__lead {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.feedmycart__body {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ---- Feature tags ---- */
.feedmycart__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.feedmycart__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition: border-color var(--dur) ease, color var(--dur) ease;
}
.feedmycart__tag:hover {
  border-color: rgba(27,74,94,0.25);
  color: var(--accent);
}

/* ---- CTA link ---- */
.feedmycart__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: background var(--dur) var(--ease-std),
              box-shadow var(--dur) var(--ease-std),
              transform var(--dur) var(--ease);
}
.feedmycart__link:hover {
  background: var(--accent);
  box-shadow: 0 6px 24px rgba(27,74,94,0.35);
  transform: translateY(-2px);
}
.feedmycart__link-name { font-weight: 600; letter-spacing: 0.03em; }
.feedmycart__link-arrow {
  opacity: 0.6;
  transition: opacity var(--dur) ease, transform var(--dur) ease;
}
.feedmycart__link:hover .feedmycart__link-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* ---- Browser mockup frame ---- */
.feedmycart__visual {
  position: relative;
  display: flex;
  height: 100%;
}

.feedmycart__browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.5) inset;
  background: var(--bg-card);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.feedmycart__browser > a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-alt);
}
.feedmycart__browser:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.feedmycart__browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(248,247,244,0.9);
  border-bottom: 1px solid var(--border);
}

.feedmycart__browser-dots { display: flex; gap: 5px; }
.feedmycart__bdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feedmycart__bdot--red    { background: #FF6058; }
.feedmycart__bdot--yellow { background: #FFBD2E; }
.feedmycart__bdot--green  { background: #27C840; }

.feedmycart__screenshot {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
  .feedmycart__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feedmycart__visual { max-width: 560px; margin: 0 auto; width: 100%; }
}
@media (max-width: 480px) {
  .feedmycart__icon { width: 42px; height: 42px; border-radius: 10px; }
  .feedmycart__tags { gap: 6px; }
  .feedmycart__tag { font-size: 12px; padding: 5px 11px; }
}


/* ============================================================
   DAILY REVIEWS
   ============================================================ */
.reviews { padding: var(--section-pad) 0; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-height: 80px;
}

/* Individual review card */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(27,74,94,0.15);
}
.review-card:hover::before { transform: scaleX(1); }

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.review-card__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

.review-card__title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.review-card__content {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Loading dots */
.reviews__loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 48px 0;
}

.reviews__loading-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  animation: loading-bounce 1.2s ease infinite;
}
.reviews__loading-dot:nth-child(2) { animation-delay: 0.2s; }
.reviews__loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading-bounce {
  0%, 80%, 100% { transform: scale(1);   opacity: 0.4; }
  40%            { transform: scale(1.3); opacity: 1;   }
}

/* Empty state */
.reviews__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Load more button */
.reviews__more {
  text-align: center;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

/* Decorative mesh gradient */
.contact__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(27,74,94,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(196,169,106,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--text-on-dark);
  margin-bottom: 24px;
  margin-top: 16px;
}

.contact__body {
  font-size: 17px;
  color: rgba(248,247,244,0.6);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Availability indicator */
.contact__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(248,247,244,0.5);
}

.avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: pulse-green 2.5s ease infinite;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__link,
.contact__location {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: background var(--dur) ease,
              border-color var(--dur) ease,
              transform 0.3s var(--ease);
  color: var(--text-on-dark);
}

.contact__link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(5px);
}

.contact__link-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(248,247,244,0.5);
  transition: background var(--dur) ease, color var(--dur) ease;
}
.contact__link:hover .contact__link-icon {
  background: rgba(255,255,255,0.12);
  color: var(--text-on-dark);
}

.contact__link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__link-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,247,244,0.35);
}

.contact__link-value {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-on-dark);
}

.contact__link-arrow {
  font-size: 16px;
  color: rgba(248,247,244,0.25);
  transition: color var(--dur) ease, transform var(--dur) ease;
}
.contact__link:hover .contact__link-arrow {
  color: rgba(248,247,244,0.6);
  transform: translate(2px, -2px);
}

.contact__location { cursor: default; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand { display: flex; flex-direction: column; gap: 3px; }
.footer__name { font-size: 14px; font-weight: 500; color: rgba(248,247,244,0.75); }
.footer__descriptor { font-size: 12px; color: rgba(248,247,244,0.3); }

.footer__links { display: flex; gap: 20px; margin-left: auto; }

.footer__link {
  font-size: 13px;
  color: rgba(248,247,244,0.35);
  transition: color var(--dur) ease;
}
.footer__link:hover { color: rgba(248,247,244,0.75); }

.footer__copy {
  font-size: 12px;
  color: rgba(248,247,244,0.2);
  margin-left: 20px;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.expertise__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.expertise__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.expertise__grid .reveal:nth-child(4) { transition-delay: 0.06s; }
.expertise__grid .reveal:nth-child(5) { transition-delay: 0.14s; }
.expertise__grid .reveal:nth-child(6) { transition-delay: 0.22s; }

.value__grid .reveal:nth-child(2)    { transition-delay: 0.1s; }
.value__grid .reveal:nth-child(3)    { transition-delay: 0.06s; }
.value__grid .reveal:nth-child(4)    { transition-delay: 0.16s; }

.timeline .reveal:nth-child(2)       { transition-delay: 0.10s; }
.timeline .reveal:nth-child(3)       { transition-delay: 0.18s; }
.timeline .reveal:nth-child(4)       { transition-delay: 0.26s; }

.contact__inner .reveal:nth-child(2) { transition-delay: 0.12s; }


/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }

  .positioning__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .positioning__label-col { padding-top: 0; }

  .expertise__grid { grid-template-columns: repeat(2, 1fr); }

  .trust__anchors { grid-template-columns: repeat(2, 1fr); }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}


/* ============================================================
   RESPONSIVE — TABLET/MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 80px; --gutter: 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 96px 0 64px; min-height: auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .expertise__grid { grid-template-columns: 1fr; }
  .value__grid { grid-template-columns: 1fr; }

  .trust__anchors { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }

  .positioning__stats { gap: 32px; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__links { margin-left: 0; }
  .footer__copy { margin-left: 0; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-pad: 64px; --gutter: 16px; }

  .section-header { margin-bottom: 48px; }

  .hero__headline { font-size: 40px; }
  .hero__sub { font-size: 16px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .card { padding: 28px 22px; }

  .value__item { padding: 32px 26px; }
  .value__ghost-num { font-size: 72px; }

  .trust__anchors { grid-template-columns: 1fr; }
  .trust__anchor { border-right: none; border-bottom: 1px solid var(--border); }
  .trust__anchor:last-child { border-bottom: none; }

  .contact__inner { gap: 48px; }
  .contact__link, .contact__location { padding: 15px 16px; }

  .faq__question { font-size: 15px; padding: 18px 0; }

  .sectors__grid { gap: 8px; }
  .sector-tag { font-size: 14px; padding: 9px 16px; }
}
