/* ============================================================
   BRAND SYSTEM
============================================================ */
:root {
  --mint:     #D0E8DF;
  --mint2:    #b8ddd2;
  --mint3:    #8ecfc0;
  --dark:     #0d1710;
  --dark2:    #111a14;
  --dark3:    #080f0a;
  --cream:    #f2f0eb;
  --g700:     #115A4D;
  --g600:     #1A6B5F;
  --g500:     #2F8F82;
  --g400:     #6BB8AE;
  --g300:     #A8D8D1;
  --hero-bg:  #D0E8DF;
  --font:     'Space Grotesk', system-ui, sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body { font-family: var(--font); background: var(--hero-bg); color: #fff; -webkit-font-smoothing: antialiased }
a { text-decoration: none; color: inherit }
img, video { max-width: 100%; display: block }
ul { list-style: none }


/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ── Fade-up entrance (hero only) ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px) }
  to   { opacity: 1; transform: translateY(0) }
}
.hero-fade-up {
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}


/* ============================================================
   NAVBAR
============================================================ */
/* ── Floating pill — transparent → solid on scroll ── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1120px;
  background: transparent;
  border: 1px solid rgba(13,23,16,.12);
  border-radius: 100px;
  transition: top .45s cubic-bezier(.16,1,.3,1),
              background .45s ease,
              border-color .45s ease,
              box-shadow .45s ease;
}
.nav.nav--scrolled {
  top: 12px;
  background: rgba(13,23,16,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-color: rgba(208,232,223,.1);
  box-shadow: 0 12px 56px rgba(0,0,0,.35), 0 0 0 1px rgba(208,232,223,.06);
}

.nav-inner {
  position: relative;
  padding: 0 10px 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

/* Links — absolutely centered in the pill */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
  color: rgba(13,23,16,.55);
  padding: 7px 16px;
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav-links a:hover {
  color: #0d1710;
  background: rgba(13,23,16,.07);
}

/* Scrolled state — links flip white */
.nav--scrolled .nav-links a {
  color: rgba(255,255,255,.55);
}
.nav--scrolled .nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* CTA — outlined dark at top, mint filled when scrolled */
.nav-cta {
  flex-shrink: 0;
  padding: 9px 22px;
  background: transparent;
  border: 1.5px solid rgba(13,23,16,.28);
  color: #0d1710;
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 100px;
  transition: background .3s, border-color .3s, color .3s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #0d1710;
  border-color: #0d1710;
  color: #fff;
  transform: translateY(-1px);
}
.nav--scrolled .nav-cta {
  background: var(--mint);
  border-color: transparent;
  color: #0d1710;
}
.nav--scrolled .nav-cta:hover {
  background: #fff;
  border-color: transparent;
  color: #0d1710;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

/* Hamburger — dark at top, light when scrolled */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(13,23,16,.65); border-radius: 2px; transition: all .3s;
}
.nav--scrolled .nav-hamburger span { background: rgba(255,255,255,.75); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0 }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) }

/* Mobile overlay menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(13,23,16,.97); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all }
.nav-mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,.35); font-size: 24px; cursor: pointer;
  transition: color .2s;
}
.nav-mobile-close:hover { color: #fff }
.nav-mobile ul {
  display: flex; flex-direction: column; gap: 20px;
  text-align: center; list-style: none; padding: 0; margin: 0;
}
.nav-mobile ul a {
  font-size: 30px; font-weight: 800;
  color: rgba(255,255,255,.55);
  transition: color .2s; letter-spacing: -.02em;
}
.nav-mobile ul a:hover { color: #fff }
.nav-m-cta {
  margin-top: 24px !important;
  display: inline-block;
  padding: 14px 52px !important;
  background: var(--mint) !important;
  border-radius: 100px !important;
  color: #0d1710 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* Logo image — colored on light hero, white on dark scrolled pill */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: filter .45s ease;
}
.nav--scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
}


/* ============================================================
   HERO
============================================================ */
.hero {
  position: sticky; top: 0; z-index: 1;
  background: var(--hero-bg);
  overflow: hidden; min-height: 100vh;
  display: flex; flex-direction: column;
}
/* subtle dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(13,23,16,.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
/* soft radial gradient accent — bottom-right */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 80%, rgba(17,90,77,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(255,255,255,.35) 0%, transparent 60%);
  pointer-events: none;
}
/* cursor-follow glow */
.hero-glow {
  position: absolute; z-index: 1;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(17,90,77,.1) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top;
  left: 50%; top: 50%;
}
#hero-canvas { display: none }
.hero-vignette { display: none }

.hero-inner {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; padding: 130px 60px 80px; max-width: 100%;
}

/* LEFT — mint side */
.hero-headline {
  font-size: clamp(58px, 7.8vw, 112px);
  font-weight: 900; line-height: .92; letter-spacing: -.05em;
  color: #0d1710; flex: 0 0 auto; max-width: 52%;
  align-self: flex-start;
}
.hero-headline .hl-accent { color: var(--g700) }
.hero-headline .hl-word {
  display: inline-block;
  transition: color .22s, transform .25s cubic-bezier(.16,1,.3,1);
  cursor: default;
}
.hero-headline .hl-word:hover {
  color: var(--g700);
  transform: skewX(-4deg) translateY(-4px);
}

/* RIGHT — plain text */
.hero-sub-wrap {
  flex-shrink: 0; max-width: 400px;
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 4px;
}
.hero-sub {
  font-size: 20px; line-height: 1.65; font-weight: 500;
  color: rgba(13,23,16,.72); letter-spacing: -.01em;
}
.hero-card {
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,23,16,.1), 0 1px 0 rgba(255,255,255,.9) inset;
}
/* card header */
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(13,23,16,.07);
}
.hero-card-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(13,23,16,.5);
}
.hc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--g700);
  box-shadow: 0 0 0 3px rgba(17,90,77,.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(17,90,77,.15) }
  50%      { box-shadow: 0 0 0 6px rgba(17,90,77,.06) }
}
.hero-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(17,90,77,.1); color: var(--g700);
}
/* ── timeline card ── */
.hero-timeline { padding: 8px 20px 4px; }
.htl-row {
  display: grid; grid-template-columns: 14px 1px 1fr;
  gap: 0 14px; padding-bottom: 4px;
}
.htl-last { grid-template-columns: 14px 1fr; gap: 0 14px; }
.htl-dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: rgba(13,23,16,.1); border: 2px solid rgba(13,23,16,.15);
  margin-top: 3px;
}
.htl-dot--live {
  background: var(--g700);
  border-color: var(--g700);
  box-shadow: 0 0 0 4px rgba(17,90,77,.15);
  animation: pulse 2s ease-in-out infinite;
}
.htl-done .htl-dot {
  background: var(--g700); border-color: var(--g700);
}
.htl-line {
  width: 1px; background: rgba(13,23,16,.1);
  margin: 18px auto 0; min-height: 36px;
}
.htl-body {
  display: flex; flex-direction: column; gap: 2px;
  padding-bottom: 18px;
}
.htl-day {
  font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--g700); opacity: .8;
}
.htl-label {
  font-size: 13px; font-weight: 700; color: #0d1710; line-height: 1.2;
}
.htl-sub {
  font-size: 11px; color: rgba(13,23,16,.4); line-height: 1.4;
}
/* card footer */
.hero-card-foot {
  display: flex; flex-direction: column; gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid rgba(13,23,16,.07);
}
.hero-card-fine {
  font-size: 10px; color: rgba(13,23,16,.35); text-align: center;
  letter-spacing: .02em;
}

.btn-hero-main {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; background: #0d1710; color: var(--mint);
  font-family: var(--font); font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 3px; border: none;
  cursor: pointer; transition: background .22s, transform .2s, box-shadow .22s;
}
.hero-fine {
  font-size: 13px; color: rgba(13,23,16,.45); letter-spacing: .01em;
}
.btn-hero-main:hover { background: var(--g700); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,23,16,.18) }
.btn-hero-main svg { transition: transform .22s }
.btn-hero-main:hover svg { transform: translateX(4px) }

/* stats strip — light with dark accents */
.hero-stats-strip {
  position: relative; z-index: 3;
  display: flex; align-items: center;
  border-top: 1px solid rgba(13,23,16,.1);
  padding: 22px 60px;
  background: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.hss-item { display: flex; align-items: baseline; gap: 10px }
.hss-item strong { font-size: 20px; font-weight: 800; letter-spacing: -.03em; color: var(--g700) }
.hss-item span { font-size: 10px; font-weight: 600; color: rgba(13,23,16,.4); text-transform: uppercase; letter-spacing: .12em }
.hss-divider { width: 1px; height: 24px; background: rgba(13,23,16,.1); margin: 0 36px; flex-shrink: 0 }


/* ============================================================
   BELOW-STACKS WRAPPER — always above sticky sections
============================================================ */
.below-stacks {
  position: relative;
  z-index: 10;
}

/* ============================================================
   SERVICE PROGRESS INDICATOR
============================================================ */
.svc-indicator {
  position: fixed;
  right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 40px;
  padding: 14px 10px;
}
.svc-indicator.visible { opacity: 1; pointer-events: all }
.svc-ind-label {
  font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
}
.svc-ind-dots { display: flex; flex-direction: column; gap: 8px; }
.svc-ind-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.svc-ind-dot.active {
  background: var(--mint);
  transform: scale(1.5);
}
.svc-ind-name {
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
}

/* ============================================================
   MARQUEE STRIP
============================================================ */
.marquee-strip {
  position: relative; z-index: 1;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.marquee-row {
  height: 46px; overflow: hidden;
  display: flex; align-items: center;
}
.marquee-row--dark { background: #0d1710 }
.marquee-row--mint { background: var(--mint) }
.marquee-track {
  display: flex; white-space: nowrap; flex-shrink: 0;
}
.marquee-row--dark .marquee-track { animation: marquee-left 30s linear infinite }
.marquee-row--mint .marquee-track { animation: marquee-right 26s linear infinite }
.marquee-track span {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; padding-right: 0;
}
.marquee-row--dark .marquee-track span { color: rgba(208,232,223,.7) }
.marquee-row--mint .marquee-track span { color: #0d1710 }
@keyframes marquee-left {
  from { transform: translateX(0) }
  to   { transform: translateX(-33.333%) }
}
@keyframes marquee-right {
  from { transform: translateX(-33.333%) }
  to   { transform: translateX(0) }
}


/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -28px 80px rgba(0,0,0,0.32);
}

/* ============================================================
   MAGAZINE LAYOUT — shared
============================================================ */
.s-svc {
  display: grid !important;
  grid-template-columns: 1fr 43%;
  overflow: hidden;
}
.mag-content {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 52px 52px 44px 60px; min-height: 0;
  color: #fff;
}
.mag-top { display: flex; align-items: flex-end; gap: 20px }
.mag-num {
  font-size: clamp(72px, 10vw, 130px); font-weight: 900;
  line-height: 1; letter-spacing: -.06em; opacity: .07; flex-shrink: 0;
}
.mag-title-wrap {}
.mag-eye {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; opacity: .45; margin-bottom: 6px;
}
.mag-name {
  font-size: clamp(42px, 5vw, 72px); font-weight: 900;
  line-height: .88; letter-spacing: -.04em;
}
.mag-rule { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 0 }
.mag-info { display: flex; flex-direction: column; gap: 18px; flex: 1; padding-top: 20px }
.mag-desc { font-size: 14px; line-height: 1.75; opacity: .55; max-width: 480px }
.mag-feats { list-style: none; border-top: 1px solid rgba(255,255,255,.1) }
.mag-feats li {
  display: flex; align-items: baseline; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mag-feats li b { font-size: 13px; font-weight: 700; min-width: 185px; flex-shrink: 0 }
.mag-feats li span { font-size: 12px; opacity: .42 }
.mag-cta-row { display: flex; align-items: center; gap: 28px }
.mag-price { font-size: 13px; font-weight: 500; opacity: .5 }
.mag-price strong {
  font-size: 26px; font-weight: 900; color: var(--mint);
  letter-spacing: -.03em; margin-left: 5px;
}
.mag-price small { font-size: 12px }
.mag-cta {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--mint);
  border-bottom: 1px solid rgba(208,232,223,.3); padding-bottom: 2px;
  transition: border-color .2s;
}
.mag-cta:hover { border-color: var(--mint) }

/* Image column */
.mag-img-area {
  position: relative;
  background-image: var(--img);
  background-size: cover; background-position: center;
}
.mag-img-fade {
  position: absolute; inset: 0;
}
/* Service label badge on image */
.mag-img-area::after {
  content: attr(data-tag);
  position: absolute; bottom: 28px; right: 24px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,.7); background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px); padding: 6px 14px; border-radius: 2px;
}

/* ── 01 Website ── dark, magazine (fallback if not using optb) */
.s-web { background: var(--dark); z-index: 2 }
.s-web .mag-img-fade {
  background: linear-gradient(to right, #0d1710 0%, rgba(13,23,16,.55) 35%, transparent 65%)
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ============================================================
   OPTION B — AI Website: Animated browser mockup
============================================================ */
.s-web-b {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
}

/* Left text column */
.wb-left {
  display: flex; flex-direction: column; gap: 22px;
  padding: 60px 48px 60px 60px;
  color: #fff;
}
.wb-eye {
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mint); opacity: .7;
}
.wb-title {
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 900; line-height: .88; letter-spacing: -.04em;
}
.wb-title::after {
  content: '_'; color: var(--mint); font-weight: 400; margin-left: 4px;
  animation: blink .9s step-end infinite;
}
.wb-desc { font-size: 14px; line-height: 1.75; opacity: .5; max-width: 400px }
.wb-list { list-style: none; display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.08) }
.wb-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 10px;
}
.wb-list li::before {
  content: '→'; color: var(--mint); font-size: 12px; flex-shrink: 0;
}
.wb-foot { display: flex; align-items: center; gap: 28px; padding-top: 4px }
.wb-price { font-size: 13px; opacity: .45 }
.wb-price strong {
  font-size: 28px; font-weight: 900; color: var(--mint);
  letter-spacing: -.03em; margin-left: 5px;
}
.wb-cta {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--mint); border-bottom: 1px solid rgba(208,232,223,.3); padding-bottom: 2px;
  transition: border-color .2s;
}
.wb-cta:hover { border-color: var(--mint) }

/* Right visual column */
.wb-right {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 52px 40px 20px;
  position: relative;
}
.bm-glow {
  position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(208,232,223,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Browser window */
.browser-mock {
  width: 100%; max-width: 520px;
  background: #131f16;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(208,232,223,.08);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform .6s ease;
}
.browser-mock:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0deg) }

/* Chrome bar */
.bm-chrome {
  background: #0c1710; padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bm-dots { display: flex; gap: 5px }
.bm-dots span { width: 9px; height: 9px; border-radius: 50% }
.bm-dots span:nth-child(1) { background: #ff5f57 }
.bm-dots span:nth-child(2) { background: #febc2e }
.bm-dots span:nth-child(3) { background: #28c840 }
.bm-url {
  flex: 1; background: rgba(255,255,255,.07); border-radius: 4px;
  padding: 4px 12px; font-size: 10px; color: rgba(255,255,255,.35);
  font-family: monospace;
}

/* Loading bar */
.bm-progress {
  height: 2px;
  background: linear-gradient(to right, var(--mint), #115A4D, var(--mint));
  background-size: 200% 100%;
  animation: progBar 1.8s ease-in-out infinite;
  transform-origin: left;
}
@keyframes progBar {
  0%   { transform: scaleX(0); opacity: 1 }
  60%  { transform: scaleX(.85); opacity: 1 }
  100% { transform: scaleX(1); opacity: 0 }
}

/* Navbar skeleton */
.bm-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.04);
  opacity: 0; animation: bmFade .5s ease forwards; animation-delay: .5s;
}
.bm-logo-sk { width: 72px; height: 8px; background: rgba(208,232,223,.3); border-radius: 2px }
.bm-navlinks { display: flex; gap: 8px; align-items: center }
.bm-navlinks span { width: 28px; height: 6px; background: rgba(255,255,255,.1); border-radius: 2px }
.bm-navlinks em { width: 52px; height: 20px; background: rgba(208,232,223,.25); border-radius: 3px; display: block }

/* Hero skeleton */
.bm-hero-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 14px 10px;
  opacity: 0; animation: bmFade .5s ease forwards; animation-delay: .9s;
}
.bm-lines { display: flex; flex-direction: column; gap: 7px; flex: 1 }
.bm-line { height: 12px; background: rgba(255,255,255,.18); border-radius: 2px }
.bm-l1 { width: 90% } .bm-l2 { width: 75% } .bm-l3 { width: 55%; opacity: .7 }
.bm-btn-sk {
  height: 22px; width: 90px; margin-top: 8px;
  background: rgba(208,232,223,.4); border-radius: 3px;
  animation: pulse 2s ease 1.5s infinite;
}
.bm-img-sk {
  width: 38%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(208,232,223,.12), rgba(17,90,77,.15));
  border-radius: 5px; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:.8} }

/* Feature blocks */
.bm-blocks {
  display: flex; gap: 8px; padding: 0 14px 12px;
  opacity: 0; animation: bmFade .5s ease forwards; animation-delay: 1.3s;
}
.bm-block {
  flex: 1; height: 44px; border-radius: 5px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(208,232,223,.08);
}

/* AI status label */
.bm-status {
  padding: 8px 14px 10px;
  font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mint); opacity: 0;
  animation: bmFade .5s ease forwards; animation-delay: 1.7s;
  border-top: 1px solid rgba(255,255,255,.04);
}
.bm-dot-anim { animation: dotAnim 1.2s step-end 2s infinite }
@keyframes dotAnim {
  0%{content:'.'} 33%{content:'..'} 66%{content:'...'} 100%{content:'.'}
}

@keyframes bmFade { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

/* ── 02 Branding ── mint, dark text */
.s-brand { background: var(--mint); z-index: 3 }
.s-brand .mag-content { color: #0d1710 }
.s-brand .mag-rule { border-color: rgba(13,23,16,.14) }
.s-brand .mag-feats { border-top-color: rgba(13,23,16,.1) }
.s-brand .mag-feats li { border-bottom-color: rgba(13,23,16,.1) }
.s-brand .mag-price strong { color: #0d1710 }
.s-brand .mag-cta { color: #0d1710; border-color: rgba(13,23,16,.25) }
.s-brand .mag-cta:hover { border-color: #0d1710 }
.s-brand .mag-img-fade {
  background: linear-gradient(to right, #D0E8DF 0%, rgba(208,232,223,.55) 35%, transparent 65%)
}

/* ── 03 Content ── dark2 */
.s-content { background: var(--dark2); z-index: 4 }
.s-content .mag-img-fade {
  background: linear-gradient(to right, #111a14 0%, rgba(17,26,20,.55) 35%, transparent 65%)
}

/* ── 04 Ads ── cream, dark text */
.s-ads { background: var(--cream); z-index: 5 }
.s-ads .mag-content { color: #0d1710 }
.s-ads .mag-rule { border-color: rgba(13,23,16,.14) }
.s-ads .mag-feats { border-top-color: rgba(13,23,16,.1) }
.s-ads .mag-feats li { border-bottom-color: rgba(13,23,16,.1) }
.s-ads .mag-price strong { color: #0d1710 }
.s-ads .mag-cta { color: #0d1710; border-color: rgba(13,23,16,.25) }
.s-ads .mag-cta:hover { border-color: #0d1710 }
.s-ads .mag-img-fade {
  background: linear-gradient(to right, #f2f0eb 0%, rgba(242,240,235,.55) 35%, transparent 65%)
}

/* ============================================================
   SERVICE SECTIONS — old (kept for reference, unused)
============================================================ */
.svc-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 72px;
  align-items: center;
  padding: 70px 60px 44px;
  position: relative; z-index: 1;
}
.svc-l { display: flex; flex-direction: column; gap: 28px }
.svc-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; opacity: .45;
}
.svc-title {
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 900; line-height: .88; letter-spacing: -.04em;
}
.svc-kpi { display: flex; align-items: baseline; gap: 14px; margin-top: 4px }
.svc-kpi strong {
  font-size: clamp(46px, 5vw, 72px); font-weight: 900;
  letter-spacing: -.04em; color: var(--mint); line-height: 1;
}
.svc-kpi span {
  font-size: 12px; font-weight: 600; line-height: 1.4;
  text-transform: uppercase; letter-spacing: .06em; opacity: .5;
}

.svc-r { display: flex; flex-direction: column; gap: 20px }
.svc-intro {
  font-size: 15px; line-height: 1.75; opacity: .6; max-width: 540px;
}
.svc-list {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.1);
}
.svc-list li {
  display: flex; align-items: baseline; gap: 24px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  list-style: none;
}
.svc-li-title {
  font-size: 14px; font-weight: 700; flex: 0 0 200px; letter-spacing: -.01em;
}
.svc-li-desc { font-size: 13px; line-height: 1.5; opacity: .45 }
.svc-foot { display: flex; align-items: center; gap: 32px; padding-top: 4px }
.svc-from { font-size: 13px; font-weight: 500; opacity: .5 }
.svc-from strong {
  font-size: 26px; font-weight: 900; color: var(--mint);
  letter-spacing: -.03em; margin-left: 4px;
}
.svc-from small { font-size: 12px; opacity: .7 }
.svc-go {
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--mint); border-bottom: 1px solid rgba(208,232,223,.3);
  padding-bottom: 2px; transition: border-color .2s;
}
.svc-go:hover { border-color: var(--mint) }

/* ── 01 AI Website — dark, code aesthetic ── */
.s-web { background: var(--dark); z-index: 2 }
.s-web::before {
  content: '</>';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 18vw; font-weight: 900; letter-spacing: -.06em;
  color: rgba(208,232,223,.035); pointer-events: none;
  font-family: 'Courier New', monospace; line-height: 1; z-index: 0;
}
/* Animated cursor blink in headline */
.s-web .svc-title::after {
  content: '_';
  animation: blink .9s step-end infinite;
  color: var(--mint); font-weight: 400; margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── 02 AI Branding — mint, typographic ── */
.s-brand { background: var(--mint); color: #0d1710; z-index: 3 }
.s-brand::before {
  content: 'Aa';
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-size: 22vw; font-weight: 900; letter-spacing: -.06em;
  color: rgba(13,23,16,.05); pointer-events: none; line-height: 1; z-index: 0;
}
.s-brand .svc-eyebrow { opacity: .4 }
.s-brand .svc-kpi strong { color: #0d1710 }
.s-brand .svc-intro { opacity: .55 }
.s-brand .svc-list { border-top-color: rgba(13,23,16,.12) }
.s-brand .svc-list li { border-bottom-color: rgba(13,23,16,.12) }
.s-brand .svc-li-desc { opacity: .5 }
.s-brand .svc-from { opacity: .5; color: #0d1710 }
.s-brand .svc-from strong { color: #0d1710 }
.s-brand .svc-go { color: #0d1710; border-color: rgba(13,23,16,.25) }
.s-brand .svc-go:hover { border-color: #0d1710 }
/* Rotating palette orbs */
.s-brand::after {
  content: '';
  position: absolute; left: 28%; top: 50%; transform: translate(-50%,-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: conic-gradient(#0d1710 0deg, #115A4D 90deg, var(--mint) 180deg, #fff 270deg, #0d1710 360deg);
  opacity: .07; pointer-events: none; z-index: 0;
}

/* ── 03 AI Content — dark, editorial ── */
.s-content { background: var(--dark2); z-index: 4 }
.s-content::before {
  content: '✦✦✦';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 10vw; letter-spacing: .2em;
  color: rgba(208,232,223,.04); pointer-events: none; line-height: 1; z-index: 0;
}
/* Typewriter underline on intro */
.s-content .svc-intro {
  border-left: 2px solid rgba(208,232,223,.3);
  padding-left: 18px; margin-left: 2px;
}

/* ── 04 AI Ads — cream, bold metrics ── */
.s-ads { background: var(--cream); color: #0d1710; z-index: 5 }
.s-ads::before {
  content: '3×';
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-size: 22vw; font-weight: 900; letter-spacing: -.06em;
  color: rgba(13,23,16,.05); pointer-events: none; line-height: 1; z-index: 0;
}
.s-ads .svc-eyebrow { opacity: .4 }
.s-ads .svc-kpi strong { color: #0d1710 }
.s-ads .svc-intro { opacity: .55 }
.s-ads .svc-list { border-top-color: rgba(13,23,16,.12) }
.s-ads .svc-list li { border-bottom-color: rgba(13,23,16,.12) }
.s-ads .svc-li-desc { opacity: .5 }
.s-ads .svc-from { opacity: .5; color: #0d1710 }
.s-ads .svc-from strong { color: #0d1710 }
.s-ads .svc-go { color: #0d1710; border-color: rgba(13,23,16,.25) }
.s-ads .svc-go:hover { border-color: #0d1710 }

/* FAQ, CTA — normal scroll (no stacking after pricing) */
.s-faq,
.s-cta {
  position: relative;
  top: auto;
  height: auto;
  min-height: 100vh;
  border-radius: 0;
  box-shadow: none;
}
.sec-num {
  position: absolute;
  top: 40px; right: 48px;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900; line-height: 1; letter-spacing: -.05em;
  opacity: 0.06; color: currentColor;
  pointer-events: none; user-select: none;
}
.sec-label {
  position: absolute;
  top: 48px; left: 60px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .55;
}
.sec-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 140px 60px 100px;
}

/* Compact padding for stacked (sticky) sections only */
.s-why .sec-inner,
.s-services .sec-inner,
.s-process .sec-inner,
.s-pricing .sec-inner {
  padding: 70px 60px 44px;
}

/* Smaller headlines inside stacked sections so content fits */
.s-why .sec-headline,
.s-services .sec-headline,
.s-process .sec-headline,
.s-pricing .sec-headline {
  font-size: clamp(36px, 4.8vw, 68px);
}


/* ============================================================
   SECTION 01 — THE PROBLEM (mint bg)
============================================================ */
.s-why {
  background: var(--mint);
  color: #0d1710;
  z-index: 2;
}
.s-why .sec-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  min-height: 100vh;
}
.sec-headline-wrap { flex: 0 0 auto; max-width: 60% }
.sec-headline {
  font-size: clamp(56px, 7.5vw, 110px);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  color: #0d1710;
}
.sec-desc-wrap {
  flex-shrink: 0; max-width: 360px;
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: 8px;
}
.sec-desc { font-size: 17px; line-height: 1.7; color: rgba(13,23,16,.58) }
.sec-link {
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  color: #0d1710; border-bottom: 1.5px solid rgba(13,23,16,.35);
  padding-bottom: 2px; display: inline-block;
  transition: border-color .2s, opacity .2s;
}
.sec-link:hover { border-color: #0d1710; opacity: .7 }


/* ============================================================
   SECTION 02 — WHAT WE BUILD (dark bg)
============================================================ */
.s-services { background: var(--dark); z-index: 3; }
.s-services .sec-num { color: var(--mint) }
.s-services .sec-label { color: rgba(255,255,255,.55) }
.sec-inner--services { display: flex; flex-direction: column; gap: 24px }
.sec-headline--white { color: #fff }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(208,232,223,.12);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 10px;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s, border-color .3s;
  transform-style: preserve-3d;
  position: relative;
}
.svc-card:hover {
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg) translateY(-10px);
  box-shadow: 20px 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(208,232,223,.3);
  border-color: rgba(208,232,223,.3);
}
.svc-card--featured {
  background: var(--mint);
  border-color: var(--mint);
}
.svc-card--featured:hover {
  box-shadow: 20px 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(208,232,223,.6);
}
.svc-card-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  background: #0d1710; color: var(--mint);
  padding: 4px 10px; border-radius: 2px;
}
.svc-card-num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.3);
}
.svc-card--featured .svc-card-num { color: rgba(13,23,16,.45) }
.svc-card-title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: #fff }
.svc-card--featured .svc-card-title { color: #0d1710 }
.svc-card-desc { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.45); flex: 1 }
.svc-card--featured .svc-card-desc { color: rgba(13,23,16,.6) }
.svc-card-price { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.35) }
.svc-card-price strong { color: var(--mint); font-weight: 800; font-size: 22px }
.svc-card--featured .svc-card-price { color: rgba(13,23,16,.5) }
.svc-card--featured .svc-card-price strong { color: #0d1710 }
.svc-card-cta {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--mint); border-bottom: 1px solid rgba(208,232,223,.35);
  padding-bottom: 2px; width: fit-content;
  transition: border-color .2s;
}
.svc-card-cta:hover { border-color: var(--mint) }
.svc-card-cta--dark { color: #0d1710; border-color: rgba(13,23,16,.3) }
.svc-card-cta--dark:hover { border-color: #0d1710 }


/* ============================================================
   SECTION 03 — HOW IT WORKS (dark bg)
============================================================ */
.s-process { background: var(--dark2); z-index: 4; }
.s-process .sec-num { color: var(--mint) }
.s-process .sec-label { color: rgba(255,255,255,.45) }
.sec-inner--process { display: flex; flex-direction: column; gap: 36px }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 20px;
}
.proc-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 22px;
  color: #0d1710;
  cursor: default;
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.proc-card:nth-child(1) { transform: rotateZ(-3deg) translateY(0) }
.proc-card:nth-child(2) { transform: rotateZ(1.5deg) translateY(-10px) }
.proc-card:nth-child(3) { transform: rotateZ(-1deg) translateY(5px) }
.proc-card:nth-child(4) { transform: rotateZ(2.5deg) translateY(-5px) }
.proc-card:hover {
  transform: rotateZ(0deg) translateY(-15px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.proc-card-step {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(13,23,16,.45);
  margin-bottom: 16px;
}
.proc-card-title { font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 12px }
.proc-card-desc { font-size: 14px; line-height: 1.65; color: rgba(13,23,16,.6); margin-bottom: 20px }
.proc-card-time {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--mint); color: #0d1710;
  padding: 4px 10px; border-radius: 2px;
}


/* ============================================================
   SECTION 04 — PRICING
============================================================ */
.s-pricing { background: var(--dark2); z-index: 5; }
.s-pricing .sec-num { color: var(--mint) }
.s-pricing .sec-label { color: rgba(255,255,255,.45) }
.sec-inner--pricing { display: flex; flex-direction: column; gap: 28px }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(208,232,223,.1);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.pricing-card:hover { transform: translateY(-8px) }
.pricing-featured {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow:
    0 2px 0 #b8ddd2,
    0 4px 0 #a0cfc5,
    0 6px 0 #88c2b8,
    0 20px 60px rgba(0,0,0,.4);
  transform: translateY(-8px);
}
.pricing-featured:hover { transform: translateY(-14px) }
.pricing-card-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: #0d1710; color: var(--mint);
  padding: 4px 10px; border-radius: 2px; width: fit-content;
}
.pricing-card-label { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4) }
.pricing-featured .pricing-card-label { color: rgba(13,23,16,.55) }
.pricing-card-price { font-size: 44px; font-weight: 900; letter-spacing: -.04em; color: #fff; line-height: 1 }
.pricing-featured .pricing-card-price { color: #0d1710 }
.pricing-card-sub { font-size: 14px; color: rgba(255,255,255,.4) }
.pricing-featured .pricing-card-sub { color: rgba(13,23,16,.55) }
.pricing-features { display: flex; flex-direction: column; gap: 7px; flex: 1 }
.pricing-features li { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,.55); font-weight: 500 }
.pricing-featured .pricing-features li { color: rgba(13,23,16,.7) }
.pricing-cta {
  display: block; text-align: center;
  padding: 14px 28px; border-radius: 6px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  transition: all .25s; margin-top: 8px;
}
.pricing-cta--outline {
  border: 1.5px solid rgba(208,232,223,.25); color: rgba(255,255,255,.75);
}
.pricing-cta--outline:hover { border-color: var(--mint); color: var(--mint) }
.pricing-cta--dark { background: #0d1710; color: var(--mint) }
.pricing-cta--dark:hover { background: #111a14 }


/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-section {
  background: #0d1710;
  padding: 110px 60px 100px;
  position: relative;
  z-index: 6;
  overflow: hidden;
}
/* subtle decorative grid */
.hiw-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(208,232,223,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,232,223,.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hiw-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

/* header */
.hiw-header { text-align: center; margin-bottom: 72px; }
.hiw-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mint); opacity: .7; margin-bottom: 16px;
}
.hiw-title {
  font-size: clamp(34px, 4vw, 54px); font-weight: 900;
  line-height: .95; letter-spacing: -.04em; color: #fff;
  margin-bottom: 18px;
}
.hiw-sub {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.4);
  max-width: 560px; margin: 0 auto;
}

/* steps grid */
.hiw-steps {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 64px;
}
.hiw-step {
  flex: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(208,232,223,.08);
  border-radius: 16px;
  padding: 36px 32px 32px;
  position: relative;
  transition: background .28s, border-color .28s, transform .28s;
}
.hiw-step:hover {
  background: rgba(208,232,223,.05);
  border-color: rgba(208,232,223,.18);
  transform: translateY(-4px);
}
.hiw-step-num {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: rgba(208,232,223,.25); margin-bottom: 20px;
}
.hiw-step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(208,232,223,.07);
  color: var(--mint);
  margin-bottom: 24px;
  transition: background .28s;
}
.hiw-step:hover .hiw-step-icon {
  background: rgba(208,232,223,.14);
}
.hiw-step-title {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em;
  color: #fff; margin-bottom: 14px;
}
.hiw-step-desc {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.hiw-step-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.hiw-step-tags li {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(208,232,223,.07);
  color: rgba(208,232,223,.55);
  border: 1px solid rgba(208,232,223,.1);
}

/* arrow between steps */
.hiw-arrow {
  flex-shrink: 0; width: 52px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(208,232,223,.2);
}

/* bottom CTA */
.hiw-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hiw-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--mint); color: #0d1710;
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px;
  transition: background .22s, transform .2s, box-shadow .22s;
}
.hiw-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.3) }
.hiw-guarantee {
  font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .04em;
}

/* reveal animation for steps */
.hiw-step.reveal { opacity: 0; transform: translateY(24px) }
.hiw-step.revealed { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1) }


/* ============================================================
   SECTION 05 — FAQ (cream bg)
============================================================ */
.s-faq { background: var(--cream); color: #0d1710; z-index: 7; }
.sec-inner--faq {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 60px 100px;
}
.faq-headline-wrap { margin-bottom: 80px }
.faq-big-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  line-height: 1;
}
.faq-got {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900; letter-spacing: -.04em; color: #0d1710;
  flex: 0 0 auto;
}
.faq-questions {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900; letter-spacing: -.04em; color: #0d1710;
  flex: 1 0 auto; text-align: right;
  padding-right: 4px;
}

.faq-list { border-top: 1.5px solid rgba(13,23,16,.12) }
.faq-item { border-bottom: 1.5px solid rgba(13,23,16,.12) }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; gap: 24px;
  font-family: var(--font); font-size: 20px; font-weight: 700;
  color: #0d1710; text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--g600) }
.faq-icon {
  font-size: 28px; font-weight: 300; line-height: 1;
  color: rgba(13,23,16,.4); flex-shrink: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: #0d1710 }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .35s;
}
.faq-item.open .faq-a { max-height: 300px }
.faq-a p {
  padding-bottom: 28px;
  font-size: 16px; line-height: 1.75; color: rgba(13,23,16,.6);
  max-width: 680px;
}
.faq-bottom { display: flex; justify-content: center; margin-top: 64px }
.faq-cta {
  display: inline-block;
  padding: 18px 48px; border: 2px solid #0d1710;
  font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: #0d1710; border-radius: 4px;
  transition: background .25s, color .25s;
}
.faq-cta:hover { background: #0d1710; color: #fff }


/* ============================================================
   SECTION 06 — FINAL CTA (mint bg)
============================================================ */
.s-cta {
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  z-index: 8;
}
.sec-inner--cta {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px; padding: 80px 60px;
}
.cta-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(13,23,16,.5);
}
.cta-headline {
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  color: #0d1710; max-width: 900px;
}
.cta-sub { font-size: 18px; color: rgba(13,23,16,.55) }
.cta-btn-wrap { margin: 12px 0 }
.cta-btn {
  display: inline-block;
  padding: 20px 56px;
  background: #0d1710; color: var(--mint);
  font-family: var(--font); font-size: 15px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; border-radius: 6px;
  transition: background .25s, box-shadow .25s, transform .25s;
  will-change: transform;
}
.cta-btn:hover {
  background: #111a14;
  box-shadow: 0 12px 40px rgba(13,23,16,.3);
}
.cta-fine { font-size: 13px; color: rgba(13,23,16,.45) }


/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  background: var(--dark3); color: rgba(255,255,255,.55);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 64px 60px 40px }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center }
.footer-email {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(208,232,223,.2); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-email:hover { color: var(--mint); border-color: var(--mint) }
.footer-divider { height: 1px; background: rgba(208,232,223,.07); margin: 0 0 40px }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-bottom: 48px }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.45); transition: color .2s }
.footer-col ul a:hover { color: var(--mint) }
.footer-bottom { display: flex; align-items: center; justify-content: space-between }
.footer-copy, .footer-built { font-size: 12px; color: rgba(255,255,255,.25) }
.footer-built { letter-spacing: .04em }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr) }
  .proc-card:nth-child(1) { transform: rotateZ(-2deg) }
  .proc-card:nth-child(2) { transform: rotateZ(1deg) translateY(-8px) }
  .proc-card:nth-child(3) { transform: rotateZ(-1deg) translateY(4px) }
  .proc-card:nth-child(4) { transform: rotateZ(2deg) translateY(-4px) }
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 100px 32px 60px; gap: 36px;
  }
  .hero-headline { max-width: 100%; font-size: clamp(50px, 10vw, 80px) }
  .hero-sub-wrap { max-width: 100% }
  .hero-stats-strip { padding: 22px 32px; flex-wrap: wrap; gap: 18px }
  .hss-divider { display: none }
  .s-why .sec-inner { flex-direction: column; align-items: flex-start; justify-content: flex-end }
  .sec-headline-wrap { max-width: 100% }
  .sec-desc-wrap { max-width: 100% }
  .svc-grid { grid-template-columns: 1fr }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto }
  .pricing-featured { transform: none }
  .pricing-featured:hover { transform: translateY(-8px) }
  .faq-questions { text-align: left }
  .footer-cols { grid-template-columns: repeat(2,1fr) }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none }
  .nav-hamburger { display: flex }
  .nav-inner { gap: 0 }
  .nav { width: calc(100% - 24px); top: 14px; border-radius: 100px; }
  .nav.nav--scrolled { top: 8px; }
  .hero-headline { font-size: clamp(44px, 12vw, 68px) }
  .hero-stats-strip { padding: 18px 24px }
  .sec-inner { padding: 120px 32px 80px }
  .sec-label { left: 32px }
  .sec-num { right: 24px }
  .proc-grid { grid-template-columns: 1fr }
  .proc-card:nth-child(n) { transform: none }
  .proc-card:hover { transform: translateY(-8px) !important }
  .faq-big-headline { flex-direction: column }
  .faq-questions { text-align: left; flex: none }
  .footer-inner { padding: 48px 32px 32px }
  .footer-cols { grid-template-columns: 1fr; gap: 28px }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(38px, 13vw, 56px) }
  .hero-inner { padding: 90px 24px 64px }
  .sec-inner { padding: 110px 24px 72px }
  .sec-inner--faq { padding: 100px 24px 72px }
  .sec-inner--cta { padding: 60px 24px }
  .cta-headline { font-size: clamp(36px, 10vw, 60px) }
}


/* ============================================================
   HOW IT WORKS — sticky left + scrolling tilted cards
============================================================ */
.hiw-wrap {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f2f0eb;
}

/* ── sticky left panel ── */
.hiw-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 52px 80px 80px;
  background: #f2f0eb;
}

.hiw-left-eye {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--g700); opacity: .7;
  margin-bottom: 24px;
}

.hiw-left-title {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900; line-height: .9; letter-spacing: -.05em;
  color: #0d1710;
  margin-bottom: 28px;
}

.hiw-left-title em {
  font-style: italic;
  color: var(--g700);
}

.hiw-left-desc {
  font-size: 17px; line-height: 1.7;
  color: rgba(13,23,16,.52);
  max-width: 340px;
  margin-bottom: 44px;
}

.hiw-left-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: #0d1710; color: var(--mint);
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px; width: fit-content;
  transition: background .22s, transform .2s;
}
.hiw-left-cta:hover { background: #111a14; transform: translateY(-2px); }

/* ── scrolling cards column ── */
.hiw-cards {
  display: flex; flex-direction: column;
  gap: 56px;
  padding: 120px 80px 200px 40px;
  justify-content: flex-start;
}

/* ── individual card ── */
.hiw-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(13,23,16,.08), 0 1px 0 rgba(13,23,16,.04);
  transform: rotate(var(--rot, 0deg)) translateY(70px);
  opacity: 0;
  transition:
    transform .75s cubic-bezier(.16,1,.3,1),
    opacity   .6s ease,
    box-shadow .3s;
  will-change: transform, opacity;
}

.hiw-card.in-view {
  transform: rotate(var(--rot, 0deg)) translateY(0);
  opacity: 1;
}

.hiw-card.in-view:hover {
  box-shadow: 0 28px 72px rgba(13,23,16,.14), 0 1px 0 rgba(13,23,16,.04);
  transform: rotate(var(--rot, 0deg)) translateY(-8px) !important;
}

.hiw-card-inner {
  padding: 56px 52px 52px;
}

.hiw-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px;
}

.hiw-card-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900; letter-spacing: -.03em;
  color: #0d1710; line-height: 1;
}

.hiw-card-num {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: rgba(13,23,16,.18);
  flex-shrink: 0; margin-top: 4px;
}

.hiw-card-rule {
  border: none;
  border-top: 1.5px solid rgba(13,23,16,.07);
  margin: 0 0 22px;
}

.hiw-card-desc {
  font-size: 15px; line-height: 1.78;
  color: rgba(13,23,16,.58);
  margin-bottom: 24px;
}

.hiw-card-tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
}

.hiw-card-tags li {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(17,90,77,.07);
  color: var(--g700);
  border: 1px solid rgba(17,90,77,.12);
}

/* stagger delays for each card */
.hiw-card:nth-child(1) { transition-delay: 0s }
.hiw-card:nth-child(2) { transition-delay: .08s }
.hiw-card:nth-child(3) { transition-delay: .16s }

/* ── responsive ── */
@media (max-width: 960px) {
  .hiw-wrap { grid-template-columns: 1fr }
  .hiw-left {
    position: relative; height: auto;
    padding: 80px 40px 48px;
  }
  .hiw-cards { padding: 0 40px 100px }
}
@media (max-width: 600px) {
  .hiw-left { padding: 64px 24px 40px }
  .hiw-cards { padding: 0 24px 80px }
  .hiw-card-inner { padding: 28px 28px 24px }
}


/* ============================================================
   OUR WORK — horizontal hover accordion
============================================================ */
.work-section {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
}

/* subtle dot grid */
.work-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(208,232,223,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,232,223,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.work-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative; z-index: 1;
}

/* ── header ── */
.work-header { text-align: center; margin-bottom: 56px; }

.work-label-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px;
}
.work-label-line { width: 40px; height: 1px; background: var(--mint); opacity: .5; }
.work-label-text {
  font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--mint); opacity: .75;
}

.work-title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  color: #fff; margin-bottom: 16px;
}
.work-title em { font-style: italic; color: var(--mint); }

.work-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.4);
  max-width: 500px; margin: 0 auto;
}

/* ── DESKTOP panels ── */
.work-mobile { display: none }

.work-panels {
  display: flex;
  gap: 12px;
  height: 520px;
}

.work-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 6px;
  flex: 1 1 0%;
  transition: flex .7s cubic-bezier(.4,0,.2,1);
}

.work-panel.active { flex: 3.5 1 0%; }

/* background image */
.work-panel-bg {
  position: absolute; inset: 0;
  background: var(--img) center/cover no-repeat;
  transition: transform .7s ease, opacity .7s ease;
  transform: scale(1);
  opacity: .7;
}
.work-panel.active .work-panel-bg {
  transform: scale(1.04);
  opacity: 1;
}

/* brand color tint — ties every image to the dark-green palette */
.work-panel-tint {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(17,90,77,.22);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: background .7s ease;
}
.work-panel.active .work-panel-tint { background: rgba(17,90,77,.12); }

.work-m-tint {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(17,90,77,.22);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.work-m-panel.open .work-m-tint { background: rgba(17,90,77,.1); }

/* gradient overlay */
.work-panel-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top,
    rgba(13,23,16,.88) 0%,
    rgba(13,23,16,.5) 50%,
    rgba(13,23,16,.2) 100%);
  transition: background .7s ease;
}
.work-panel.active .work-panel-overlay {
  background: linear-gradient(to top,
    rgba(13,23,16,.92) 0%,
    rgba(13,23,16,.45) 55%,
    rgba(13,23,16,.15) 100%);
}

/* inactive state content (number + name) */
.work-panel-inactive {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 22px;
  opacity: 1;
  transition: opacity .25s ease;
  pointer-events: none;
}
.work-panel.active .work-panel-inactive { opacity: 0; }

.work-panel-num {
  font-size: 9px; font-weight: 800; letter-spacing: .28em;
  color: rgba(208,232,223,.55); margin-bottom: 10px;
  text-transform: uppercase;
}
.work-panel-name-sm {
  font-size: 15px; font-weight: 900; letter-spacing: -.02em;
  color: rgba(255,255,255,.85); line-height: 1.15;
}

/* active state content (full) */
.work-panel-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px 40px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  transition-delay: 0s;
  pointer-events: none;
}
.work-panel.active .work-panel-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .22s;
  pointer-events: auto;
}

.work-panel-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 16px; display: block;
}
.work-panel-name {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 900; letter-spacing: -.04em; line-height: .95;
  color: #fff; margin-bottom: 20px;
}
.work-panel-desc {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,.62);
  max-width: 400px; margin-bottom: 24px;
}

/* tag chips */
.work-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.work-chips li {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(208,232,223,.1);
  color: var(--mint);
  border: 1px solid rgba(208,232,223,.18);
}
.work-chips--dark li {
  background: rgba(208,232,223,.1);
  color: var(--mint);
  border-color: rgba(208,232,223,.2);
}

/* visit site link */
.work-visit {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mint);
  border-bottom: 1px solid rgba(208,232,223,.3);
  padding-bottom: 2px;
  transition: border-color .2s, opacity .2s;
}
.work-visit:hover { border-color: var(--mint); opacity: .8; }

/* mint bottom bar */
.work-panel-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--mint);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  z-index: 11;
}
.work-panel.active .work-panel-bar { transform: scaleX(1); }

/* ── dot indicators ── */
.work-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px;
}
.work-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none; cursor: pointer; padding: 0;
  transition: width .3s, background .3s, border-radius .3s;
}
.work-dot.active {
  width: 22px; border-radius: 3px;
  background: var(--mint);
}

/* ── MOBILE vertical accordion ── */
@media (max-width: 768px) {
  .work-panels, .work-dots { display: none }
  .work-mobile { display: flex; flex-direction: column; gap: 8px }
  .work-inner { padding: 0 24px }

  .work-m-panel {
    position: relative; overflow: hidden; cursor: pointer;
    height: 72px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 6px;
    transition: height .55s cubic-bezier(.4,0,.2,1), border-color .3s;
  }
  .work-m-panel.open {
    height: 280px;
    border-color: rgba(208,232,223,.2);
  }

  .work-m-bg {
    position: absolute; inset: 0;
    background: var(--img) center/cover no-repeat;
    opacity: .12;
    transition: opacity .55s ease;
  }
  .work-m-panel.open .work-m-bg { opacity: .38; }

  .work-m-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: rgba(13,23,16,.85);
    transition: background .55s ease;
  }
  .work-m-panel.open .work-m-overlay {
    background: linear-gradient(to top, rgba(13,23,16,.94) 0%, rgba(13,23,16,.55) 100%);
  }

  .work-m-bar {
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--mint);
    transform: scaleX(0); transform-origin: left;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    z-index: 5;
  }
  .work-m-panel.open .work-m-bar { transform: scaleX(1); }

  .work-m-collapsed {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; gap: 14px;
    padding: 0 20px;
    opacity: 1; transition: opacity .2s ease;
    pointer-events: auto;
  }
  .work-m-panel.open .work-m-collapsed { opacity: 0; pointer-events: none; }

  .work-m-num {
    font-size: 9px; font-weight: 800; letter-spacing: .28em;
    color: rgba(208,232,223,.5); flex-shrink: 0;
    text-transform: uppercase;
  }
  .work-m-title-sm {
    font-size: 15px; font-weight: 900; color: rgba(255,255,255,.8);
    letter-spacing: -.01em;
  }
  .work-m-plus {
    margin-left: auto; font-size: 22px; font-weight: 300;
    color: rgba(208,232,223,.45); line-height: 1;
  }

  .work-m-expanded {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px 20px 24px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease .12s, transform .35s ease .12s;
    pointer-events: none;
  }
  .work-m-panel.open .work-m-expanded {
    opacity: 1; transform: none; pointer-events: auto;
  }

  .work-m-tag {
    font-size: 9px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
    color: var(--mint); margin-bottom: 8px; display: block;
  }
  .work-m-name {
    font-size: 26px; font-weight: 900; letter-spacing: -.03em; line-height: .95;
    color: #fff; margin-bottom: 10px;
  }
  .work-m-desc {
    font-size: 13px; line-height: 1.65;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
  }
}

@media (max-width: 600px) {
  .work-section { padding: 72px 0 60px }
  .work-header { margin-bottom: 40px }
}


/* ============================================================
   FAQ
============================================================ */
.faq2-section {
  position: relative; z-index: 10;
  background: var(--cream);
  padding: 100px 0 110px;
  overflow: hidden;
}

.faq2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── split big heading ── */
.faq2-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 64px;
}

.faq2-h-left {
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 900; line-height: .88; letter-spacing: -.05em;
  color: #0d1710;
}

.faq2-h-right {
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 900; line-height: .88; letter-spacing: -.05em;
  color: var(--g700);
  text-align: right;
}

/* ── accordion list ── */
.faq2-list {
  border-top: 1.5px solid rgba(13,23,16,.12);
}

.faq2-item {
  border-bottom: 1.5px solid rgba(13,23,16,.12);
}

.faq2-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; gap: 32px;
  font-family: inherit; font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  color: #0d1710; text-align: left;
  transition: color .2s;
}
.faq2-q:hover { color: var(--g700); }

.faq2-icon {
  font-size: 28px; font-weight: 300; line-height: 1; flex-shrink: 0;
  color: rgba(13,23,16,.35);
  transition: transform .35s cubic-bezier(.16,1,.3,1), color .2s;
}
.faq2-item.open .faq2-icon {
  transform: rotate(45deg);
  color: var(--g700);
}

.faq2-a {
  overflow: hidden; max-height: 0;
  transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .35s;
}
.faq2-item.open .faq2-a { max-height: 320px; }

.faq2-a p {
  padding-bottom: 28px;
  font-size: 16px; line-height: 1.8; color: rgba(13,23,16,.58);
  max-width: 760px;
}

/* ── bottom CTA ── */
.faq2-bottom {
  display: flex; align-items: center; gap: 24px;
  margin-top: 56px;
}
.faq2-bottom p {
  font-size: 18px; font-weight: 600; color: rgba(13,23,16,.5);
}
.faq2-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: #0d1710; color: var(--mint);
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px;
  transition: background .22s, transform .2s;
}
.faq2-cta:hover { background: var(--g700); transform: translateY(-2px); }

/* ── responsive ── */
@media (max-width: 900px) {
  .faq2-inner { padding: 0 40px }
  .faq2-heading { flex-direction: column; gap: 0; margin-bottom: 48px }
  .faq2-h-right { text-align: left }
  .faq2-q { font-size: 18px }
}
@media (max-width: 600px) {
  .faq2-section { padding: 72px 0 80px }
  .faq2-inner { padding: 0 24px }
  .faq2-q { font-size: 16px; padding: 22px 0 }
  .faq2-bottom { flex-direction: column; align-items: flex-start }
}


/* ============================================================
   TESTIMONIALS — one at a time, big editorial layout
============================================================ */
.testi-section {
  position: relative; z-index: 10;
  background: #fff;
  border-top: 1.5px solid rgba(13,23,16,.08);
  overflow: hidden;
  min-height: 520px;
  display: flex; flex-direction: column;
}

/* ── slides wrapper ── */
.testi-slides {
  flex: 1;
  position: relative;
}

.testi-slide {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 0;
  padding: 80px 80px 60px;
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
}
.testi-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testi-slide.exit {
  opacity: 0;
  transform: translateY(-20px);
}

/* left: client name */
.testi-client {
  display: flex; flex-direction: column; justify-content: space-between;
  padding-right: 48px;
  border-right: 1.5px solid rgba(13,23,16,.1);
}

.testi-client-name {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900; line-height: .95; letter-spacing: -.04em;
  color: #0d1710;
}

.testi-client-link {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(13,23,16,.35);
  border-bottom: 1px solid rgba(13,23,16,.15);
  padding-bottom: 2px; width: fit-content;
  transition: color .2s, border-color .2s;
}
.testi-client-link:hover { color: var(--g700); border-color: var(--g700); }

/* right: quote + meta */
.testi-body {
  padding-left: 64px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
}

.testi-quote {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500; line-height: 1.45; letter-spacing: -.02em;
  color: #0d1710;
  font-style: normal;
  quotes: none;
}

.testi-meta {
  display: flex; align-items: center; gap: 10px;
}
.testi-name {
  font-size: 14px; font-weight: 800; color: #0d1710;
}
.testi-sep { color: rgba(13,23,16,.3); font-size: 14px; }
.testi-role { font-size: 14px; color: rgba(13,23,16,.45); }

/* ── bottom bar ── */
.testi-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 80px 28px;
  border-top: 1.5px solid rgba(13,23,16,.08);
}

.testi-counter {
  font-size: 11px; font-weight: 800; letter-spacing: .18em;
  color: rgba(13,23,16,.35); text-transform: uppercase;
}

.testi-nav { display: flex; gap: 8px; }

.testi-prev,
.testi-next {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(13,23,16,.15);
  background: none; cursor: pointer;
  font-size: 16px; color: #0d1710;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.testi-prev:hover,
.testi-next:hover {
  background: #0d1710; color: var(--mint);
  border-color: #0d1710;
  transform: scale(1.08);
}

/* ============================================================
   CONTACT FORM — minimal split layout (reference style)
============================================================ */
.contact-section {
  position: relative; z-index: 10;
  background: var(--cream);
  min-height: 100vh;
  display: flex; align-items: stretch;
}

.contact-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1.5px solid rgba(13,23,16,.1);
}

/* ── left ── */
.contact-left {
  padding: 80px 64px;
  border-right: 1.5px solid rgba(13,23,16,.1);
  display: flex; flex-direction: column; justify-content: space-between;
}

.contact-title {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
  color: #0d1710;
  max-width: 340px;
}

.contact-left-foot { margin-top: auto; padding-top: 60px; }

.contact-address {
  font-size: 14px; font-weight: 500;
  color: rgba(13,23,16,.45);
  line-height: 1.8;
  border-bottom: 1px solid rgba(13,23,16,.12);
  display: inline-block; padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.contact-address:hover { color: var(--g700); border-color: var(--g700); }

/* ── right ── */
.contact-right {
  padding: 80px 64px;
  display: flex; flex-direction: column;
}

/* tabs — Question / Project */
.cf-tabs {
  display: flex; gap: 32px;
  margin-bottom: 48px;
  border-bottom: 1.5px solid rgba(13,23,16,.1);
  padding-bottom: 0;
}

.cf-tab {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800; letter-spacing: -.03em;
  color: rgba(13,23,16,.2);
  padding: 0 0 16px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: color .2s, border-color .2s;
}
.cf-tab.active {
  color: #0d1710;
  border-bottom-color: #0d1710;
}
.cf-tab:hover:not(.active) { color: rgba(13,23,16,.5); }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 0; flex: 1; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* underline fields */
.cf-field {
  position: relative;
  border-bottom: 1.5px solid rgba(13,23,16,.12);
  padding: 24px 0 10px;
  transition: border-color .2s;
}
.cf-field:focus-within { border-color: #0d1710; }

.cf-row .cf-field:first-child { padding-right: 32px; }

.cf-label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(13,23,16,.35);
  margin-bottom: 10px;
}

.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%; background: none; border: none; outline: none;
  font-family: inherit; font-size: 16px; font-weight: 500;
  color: #0d1710;
  padding: 0;
  resize: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(13,23,16,.25); }

.cf-field textarea { min-height: 90px; line-height: 1.6; }

.cf-field select {
  appearance: none; cursor: pointer;
  color: rgba(13,23,16,.55);
}
.cf-field select option { color: #0d1710; }

.cf-select-arrow {
  position: absolute; right: 0; top: 50%;
  color: rgba(13,23,16,.3); pointer-events: none;
}

/* hide service field when on "question" tab */
#cf-project-field { display: none; }
.contact-form.show-project #cf-project-field { display: block; }

/* submit */
.cf-submit {
  margin-top: 40px;
  width: fit-content;
  padding: 18px 48px;
  background: #0d1710; color: var(--mint);
  font-family: inherit; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .22s, transform .2s;
}
.cf-submit:hover { background: var(--g700); transform: translateY(-2px); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* success */
.cf-success {
  display: none; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 14px; font-weight: 600;
  color: var(--g700);
}
.cf-success.show { display: flex; }

/* ── responsive ── */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr }
  .contact-left {
    border-right: none;
    border-bottom: 1.5px solid rgba(13,23,16,.1);
    padding: 60px 40px;
  }
  .contact-right { padding: 60px 40px }
  .contact-left-foot { padding-top: 40px }
}
@media (max-width: 600px) {
  .contact-left { padding: 48px 24px }
  .contact-right { padding: 48px 24px }
  .cf-row { grid-template-columns: 1fr }
  .cf-row .cf-field:first-child { padding-right: 0 }
  .cf-tab { font-size: 22px }
}


/* ── responsive ── */
@media (max-width: 900px) {
  .testi-slide {
    grid-template-columns: 1fr;
    padding: 56px 40px 40px;
    gap: 32px;
  }
  .testi-client {
    flex-direction: row; align-items: baseline;
    border-right: none; border-bottom: 1.5px solid rgba(13,23,16,.1);
    padding-right: 0; padding-bottom: 24px; gap: 20px;
  }
  .testi-body { padding-left: 0; }
  .testi-bar { padding: 16px 40px 24px }
}
@media (max-width: 600px) {
  .testi-slide { padding: 40px 24px 32px }
  .testi-bar { padding: 14px 24px 20px }
  .testi-client { flex-direction: column; gap: 8px }
  .testi-quote { font-size: clamp(18px, 5vw, 24px) }
}
