/* ══════════════════════════════════════════════
   TOKENS
   ══════════════════════════════════════════════ */
:root {
  /* B2B palette — slate professionnel */
  --slate: #1E2A38;
  --slate-light: #2D3E50;
  --slate-dark: #141D26;
  --sage: #1E2A38;
  --sage-light: #2D3E50;
  --ivory: #F8F7F4;
  --ivory-warm: #F0EDE6;
  --ivory-pure: #FFFFFF;
  --gold: #C9A227;
  --gold-light: #D4B44A;
  --gold-dark: #A88A1F;
  --terracotta: #C4725A;
  --accent: #2563EB;
  --text: #1A1A1A;
  --muted: #5C6370;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Jost', sans-serif;
  --expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ══════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--slate-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ══════════════════════════════════════════════
   SMOOTH SCROLL CONTAINER
   ══════════════════════════════════════════════ */
.smooth-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  will-change: transform;
}

/* ══════════════════════════════════════════════
   LOADING SCREEN
   ══════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 50000;
  background: var(--slate-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: loaderFade 0.6s ease 0.2s forwards;
}
.loader__bar-track {
  width: 120px;
  height: 1px;
  background: rgba(245,240,232,0.15);
  margin-top: 32px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFade 0.4s ease 0.5s forwards;
}
.loader__bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loaderBar 1.8s var(--expo) 0.6s forwards;
}
.loader__counter {
  margin-top: 16px;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.3);
  opacity: 0;
  animation: loaderFade 0.4s ease 0.5s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar { to { width: 100%; } }

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  transition: all 0.6s var(--expo);
  mix-blend-mode: difference;
}
.nav.solid {
  mix-blend-mode: normal;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(74,93,82,0.06);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  transition: padding 0.4s var(--expo);
}
.nav.solid .nav__inner { padding: 16px 0; }
.nav__logo {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.nav.solid .nav__logo { color: var(--sage); }
.nav__logo:hover { color: var(--gold) !important; }
.nav__logo-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 1px;
  margin-bottom: 6px;
}
.nav__links { display: flex; align-items: center; gap: 42px; }
.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav.solid .nav__link { color: rgba(26,26,26,0.6); }
.nav__link:hover { color: var(--gold) !important; }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--expo);
}
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--ivory);
  transition: all 0.4s var(--expo);
}
.nav.solid .nav__cta { border-color: var(--sage); color: var(--sage); }
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  transition: background 0.3s ease;
}
.nav.solid .nav__burger span { background: var(--text); }
.nav__burger span:first-child { width: 24px; }
.nav__burger span:last-child { width: 16px; }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 2000;
  background: var(--slate-dark);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px clamp(1.5rem, 4vw, 5rem);
}
.mobile-menu__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ivory);
}
.mobile-menu__nav {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  gap: 6px;
}
.mobile-menu__link {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--ivory);
  padding: 8px 0;
  opacity: 0; transform: translateX(-20px);
  transition: all 0.5s var(--expo), color 0.3s ease;
}
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateX(0); }
.mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu__link:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu__link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu__link:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__footer {
  padding: 24px clamp(1.5rem, 4vw, 5rem);
  border-top: 1px solid rgba(245,240,232,0.08);
}

/* ══════════════════════════════════════════════
   HERO — FULL CANVAS EXPERIENCE
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--slate-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(184,151,106,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(94,117,104,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  margin: 0 auto 0 clamp(1.5rem, 6vw, 10rem);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 40px;
  opacity: 0;
}
.hero__eyebrow-line {
  width: 48px; height: 1.5px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  opacity: 0;
}
.hero__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(25deg);
}
.hero__title em {
  font-style: italic;
  position: relative;
}
.hero__title-underline {
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
}
.hero__title-dot { color: var(--gold); }
.hero__subtitle {
  margin-top: 36px;
  max-width: 520px;
  color: rgba(245,240,232,0.5);
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(30px);
}
.hero__actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.hero__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.25);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.2), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ══════════════════════════════════════════════
   HERO ILLUSTRATIONS
   ══════════════════════════════════════════════ */
.hero__illustrations {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0px;
  opacity: 0;
  animation: heroIllustrationIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
  pointer-events: none;
}
.hero__illu-clock {
  width: clamp(240px, 24vw, 340px);
  flex-shrink: 0;
  transform: rotate(-12deg) translateY(10px);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.4));
  z-index: 2;
}
.hero__illu-laptop {
  width: clamp(260px, 26vw, 370px);
  flex-shrink: 0;
  transform: rotate(8deg) translateY(-14px) translateX(-20px);
  filter: drop-shadow(0 32px 56px rgba(0,0,0,0.35));
  z-index: 1;
}
@keyframes heroIllustrationIn {
  from { opacity: 0; transform: translateY(-45%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@media (max-width: 1200px) { .hero__illustrations { display: none; } }

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--expo);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s var(--expo);
}
.btn:hover::before { transform: translateX(100%); }
.btn__arrow {
  width: 14px; height: 14px;
  transition: transform 0.5s var(--expo);
}
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 12px 40px -8px rgba(184,151,106,0.45); }
.btn--ghost { border: 1px solid rgba(245,240,232,0.2); color: var(--ivory); background: transparent; }
.btn--ghost:hover { background: var(--ivory); color: var(--slate-dark); border-color: var(--ivory); }
.btn--outline { border: 1.5px solid var(--sage); color: var(--sage); background: transparent; }
.btn--outline:hover { background: var(--sage); color: #fff; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,151,106,0); }
  50% { box-shadow: 0 0 0 14px rgba(184,151,106,0.12); }
}
.btn--pulse { animation: ctaPulse 3s ease-in-out infinite; }

/* ══════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════ */
.marquee {
  padding: 18px 0;
  border-top: 1px solid rgba(74,93,82,0.06);
  border-bottom: 1px solid rgba(74,93,82,0.06);
  overflow: hidden;
  background: var(--ivory-warm);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__item {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 32px;
  padding: 0 32px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════
   REVEAL SYSTEM
   ══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--expo), transform 1s var(--expo);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: all 1s var(--expo); }
.reveal-left.vis { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: all 1s var(--expo); }
.reveal-right.vis { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.88); transition: all 0.9s var(--expo); }
.reveal-scale.vis { opacity: 1; transform: scale(1); }

.d1 { transition-delay: 0.06s; } .d2 { transition-delay: 0.12s; } .d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; } .d5 { transition-delay: 0.3s; } .d6 { transition-delay: 0.36s; }

/* ══════════════════════════════════════════════
   SECTION BASES
   ══════════════════════════════════════════════ */
.section { padding: clamp(100px, 12vw, 160px) clamp(1.5rem, 4vw, 5rem); }
.section--dark { background: var(--slate-dark); color: var(--ivory); position: relative; overflow: hidden; }
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(184,151,106,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(94,117,104,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.section--warm { background: var(--ivory-warm); }
.section--cream { background: var(--ivory-pure); }
.container { max-width: 1320px; margin: 0 auto; }

/* Typography helpers */
.t-hero { font-family: var(--display); font-size: clamp(3.2rem, 7vw, 7rem); line-height: 0.92; letter-spacing: -0.04em; font-weight: 400; }
.t-xl { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 400; }
.t-lg { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -0.025em; font-weight: 400; }
.t-md { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.12; letter-spacing: -0.015em; font-weight: 500; }
.t-sm { font-family: var(--display); font-size: clamp(1.2rem, 1.6vw, 1.5rem); line-height: 1.2; letter-spacing: -0.01em; font-weight: 500; }
.t-eye { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.t-muted { color: var(--muted); }
.t-sage { color: var(--sage); }
.t-ivory { color: var(--ivory); }

/* Decorative */
.deco-line { display: inline-block; width: 48px; height: 1.5px; background: var(--gold); vertical-align: middle; }
.deco-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.ed-num { font-family: var(--display); font-weight: 300; color: var(--sage); opacity: 0.05; line-height: 0.8; user-select: none; }

/* ══════════════════════════════════════════════
   PROBLEMS — STACKED REVEAL CARDS
   ══════════════════════════════════════════════ */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  border-bottom: 1px solid rgba(74,93,82,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.6s var(--expo);
}
.problem-row:hover { background: var(--ivory-pure); }
.problem-row:last-child { border-bottom: none; }
.problem-row__left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
}
.problem-row__number {
  font-family: var(--display);
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: 300;
  color: var(--sage);
  opacity: 0.04;
  line-height: 0.8;
  user-select: none;
  transition: opacity 0.6s ease;
}
.problem-row:hover .problem-row__number { opacity: 0.08; }
.problem-row__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(32px, 4vw, 72px);
  position: relative;
}
.problem-row__accent {
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--terracotta));
  transition: height 0.8s var(--expo);
}
.problem-row:hover .problem-row__accent { height: 100%; }

/* ══════════════════════════════════════════════
   SOLUTIONS (dark, alternating)
   ══════════════════════════════════════════════ */
.sol-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 5vw, 72px);
}
.sol-row--rev { flex-direction: row-reverse; }
.sol-num {
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.8;
  color: rgba(245,240,232,0.04);
  flex-shrink: 0;
  min-width: 100px;
}
.sol-content { flex: 1; max-width: 520px; }
.sol-line { width: 32px; height: 1.5px; background: var(--gold); margin-bottom: 24px; }

/* ══════════════════════════════════════════════
   STEPS (with connector)
   ══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-connector {
  display: none;
  position: absolute;
  top: 48px; left: 17%; right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  opacity: 0.1;
}
.step { text-align: center; }
.step__circle {
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(74,93,82,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: border-color 0.5s ease;
}
.step:hover .step__circle { border-color: rgba(184,151,106,0.3); }
.step__ring {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(74,93,82,0.05);
}
.step__n {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage);
}

/* ══════════════════════════════════════════════
   METRICS
   ══════════════════════════════════════════════ */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.metric { text-align: center; position: relative; padding: 24px 0; }
.metric::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: rgba(74,93,82,0.08);
}
.metric:last-child::after { display: none; }
.metric__val {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.metric__label { margin-top: 14px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testi {
  position: relative;
  background: var(--ivory-pure);
  border: 1px solid rgba(74,93,82,0.05);
  padding: 48px 40px;
  overflow: hidden;
  transition: all 0.6s var(--expo);
}
.testi:hover { transform: translateY(-4px); border-color: rgba(184,151,106,0.12); }
.testi__mark {
  position: absolute;
  top: 12px; left: 28px;
  font-family: var(--display);
  font-size: 7rem; line-height: 1;
  color: var(--sage); opacity: 0.04;
  user-select: none;
}
.testi__text { position: relative; z-index: 2; font-style: italic; line-height: 1.8; font-size: 0.94rem; }
.testi__footer { position: relative; z-index: 2; margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.testi__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(74,93,82,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi__initials { font-family: var(--display); font-size: 0.875rem; font-weight: 600; color: var(--sage); }
.testi__name { font-weight: 600; font-size: 0.875rem; color: var(--sage); }
.testi__role { font-size: 0.72rem; color: var(--muted); }

/* ══════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════ */
.cta-final { text-align: center; position: relative; overflow: hidden; }
.cta-final__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(245,240,232,0.04);
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.svc-block {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 72px);
}
.svc-block--rev { flex-direction: row-reverse; }
.svc-visual {
  flex-shrink: 0;
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 1;
  background: rgba(74,93,82,0.03);
  border: 1px solid rgba(74,93,82,0.05);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-visual__num { font-family: var(--display); font-size: 8rem; font-weight: 300; color: var(--sage); opacity: 0.04; line-height: 1; }
.svc-visual__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta), transparent);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════
   HORIZONTAL SCROLL GALLERY
   ══════════════════════════════════════════════ */
.hscroll-section {
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}
.hscroll-header {
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  max-width: 1400px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.hscroll-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-track:active { cursor: grabbing; }
.hscroll-card {
  flex: 0 0 clamp(300px, 35vw, 420px);
  scroll-snap-align: start;
  background: var(--ivory-pure);
  border: 1px solid rgba(30,42,56,0.06);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--expo), box-shadow 0.5s var(--expo);
}
.hscroll-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(30,42,56,0.12);
}
.hscroll-card__num {
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 300;
  color: var(--slate);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}
.hscroll-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hscroll-card__icon svg {
  width: 24px; height: 24px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
}
.hscroll-card__title {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--slate);
  margin-bottom: 12px;
}
.hscroll-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hscroll-card__metric {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(30,42,56,0.06);
}
.hscroll-card__metric-line {
  width: 20px; height: 2px;
  background: var(--terracotta);
}
.hscroll-card__metric-val {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--terracotta);
}
.hscroll-progress {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hscroll-bar {
  flex: 1;
  height: 2px;
  background: rgba(30,42,56,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.hscroll-bar__fill {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width 0.3s ease;
}
.hscroll-arrows {
  display: flex;
  gap: 8px;
}
.hscroll-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(30,42,56,0.1);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hscroll-arrow:hover {
  background: var(--slate);
  border-color: var(--slate);
}
.hscroll-arrow:hover svg { stroke: #fff; }
.hscroll-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--slate);
  stroke-width: 1.5;
  fill: none;
}
.svc-content { flex: 1; }
.svc-metric { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.svc-metric__line { width: 20px; height: 1.5px; background: var(--terracotta); }

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.mission-grid { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(40px, 6vw, 100px); }
.mission-text p { color: rgba(245,240,232,0.55); line-height: 1.8; }
.mission-text p + p { margin-top: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.val-card {
  position: relative; background: var(--ivory-pure);
  border: 1px solid rgba(74,93,82,0.05);
  padding: 48px 32px 36px; overflow: hidden;
  transition: all 0.6s var(--expo);
}
.val-card:hover { transform: translateY(-3px); border-color: rgba(184,151,106,0.12); }
.val-card__num { position: absolute; top: 6px; right: 14px; font-size: 5rem; }
.val-card__line { width: 28px; height: 1.5px; background: var(--gold); margin-bottom: 20px; transition: width 0.5s var(--expo); }
.val-card:hover .val-card__line { width: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.team-avatar {
  width: 112px; height: 112px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(74,93,82,0.06);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-avatar__ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(74,93,82,0.06);
  transition: border-color 0.5s ease;
}
.team-member:hover .team-avatar__ring { border-color: rgba(184,151,106,0.15); }
.team-avatar__init { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: rgba(74,93,82,0.3); }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.contact-widget {
  background: #fff;
  border: 1px solid rgba(74,93,82,0.06);
  padding: 8px;
  min-height: 650px;
  display: flex; align-items: center; justify-content: center;
}
.contact-widget__inner { text-align: center; padding: 60px 40px; }
.info-block + .info-block { margin-top: 20px; }
.info-label { font-weight: 600; font-size: 0.875rem; color: var(--text); margin-bottom: 4px; }
.info-val { color: var(--muted); font-size: 0.875rem; }
.info-val a { transition: color 0.3s ease; }
.info-val a:hover { color: var(--sage); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(74,93,82,0.08); }
.faq-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; text-align: left;
  transition: color 0.3s ease;
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--sage);
}
.faq-trigger:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 16px; position: relative;
}
.faq-icon span { position: absolute; width: 14px; height: 1.5px; background: var(--sage); transition: all 0.3s ease; }
.faq-icon span:last-child { transform: rotate(90deg); }
.faq-item.open .faq-icon span:last-child { transform: rotate(0deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--expo), padding 0.5s var(--expo);
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 24px; }
.faq-answer p { color: var(--muted); line-height: 1.75; max-width: 560px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer { background: var(--slate); color: var(--ivory); }
.footer__band { background: var(--sage); padding: 14px clamp(1.5rem, 4vw, 5rem); }
.footer__band-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer__band-t { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.4); }
.footer__band-l { width: 64px; height: 1px; background: var(--gold); opacity: 0.3; }
.footer__main { padding: clamp(48px, 6vw, 80px) clamp(1.5rem, 4vw, 5rem); }
.footer__grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 5fr 3fr 3fr; gap: 40px; }
.footer__logo { font-family: var(--display); font-size: 1.8rem; font-weight: 600; letter-spacing: -0.02em; }
.footer__logo-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-left: 1px; margin-bottom: 6px; }
.footer__desc { margin-top: 20px; color: rgba(245,240,232,0.5); font-size: 0.875rem; line-height: 1.7; max-width: 340px; }
.footer__heading { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.3); margin-bottom: 20px; }
.footer__link { display: block; font-size: 0.875rem; color: rgba(245,240,232,0.55); padding: 6px 0; transition: color 0.3s ease; }
.footer__link:hover { color: var(--gold); }
.footer__contact-item { font-size: 0.875rem; color: rgba(245,240,232,0.55); padding: 4px 0; }
.footer__bottom { border-top: 1px solid rgba(245,240,232,0.06); padding: 20px clamp(1.5rem, 4vw, 5rem); }
.footer__bottom-inner { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(245,240,232,0.3); }

/* Divider */
.divider { padding: 48px 0; text-align: center; }
.divider__line { width: 1px; height: 60px; margin: 0 auto; background: linear-gradient(to bottom, transparent, var(--sage), transparent); opacity: 0.1; }
.divider__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin: 12px auto; opacity: 0.35; }

/* ══════════════════════════════════════════════
   ORGANIC EFFECTS — Blobs, Breathing, Parallax
   ══════════════════════════════════════════════ */

/* Breathing pulse on circles */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.breathe { animation: breathe 4s ease-in-out infinite; }
.breathe-ring {
  animation: breathe 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Parallax elements */
.parallax { transition: transform 0.1s linear; will-change: transform; }

/* Magnetic button effect */
.btn-magnetic {
  transition: transform 0.4s var(--expo);
}

/* Counter overshoot */
@keyframes counterPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.counter-pop {
  animation: counterPop 0.5s var(--expo);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (min-width: 768px) { .steps-connector { display: block; } }
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .problem-row { grid-template-columns: 1fr; min-height: auto; }
  .problem-row__left { padding: 40px 24px 0; justify-content: flex-start; }
  .problem-row__number { font-size: 6rem; }
  .problem-row__right { padding: 24px 24px 48px; }
  .problem-row__accent { display: none; }
  .sol-row, .sol-row--rev { flex-direction: column; }
  .sol-num { min-width: auto; font-size: 4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .metrics { grid-template-columns: 1fr; gap: 40px; }
  .metric::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .svc-block, .svc-block--rev { flex-direction: column; }
  .svc-visual { width: 100%; max-width: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__band { display: none; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
