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

:root {
  /* Brand */
  --sage:     #2D5A3D;
  --sage-mid: #3E7A54;
  --sage-l:   #5A9E6F;
  --mint:     #B8DEC8;
  --mint-l:   #E4F2EA;
  --mint-xs:  #F2F9F5;
  --wa:       #25D366;
  --wa-dark:  #1DA851;

  /* Neutrals */
  --ink:      #0F1912;
  --ink2:     #2C3E32;
  --ink3:     #556B5D;
  --ink4:     #8BA090;
  --ink5:     #BDD0C5;
  --paper:    #F8FBF9;
  --paper2:   #EEF5F1;
  --paper3:   #E3EDE7;
  --white:    #FFFFFF;

  /* Gold accent */
  --gold:     #C89B2A;
  --gold-l:   #F5E6B8;
  --gold-xs:  #FBF7EC;

  /* Type */
  --serif: 'Roboto Slab', Georgia, serif;
  --sans:  'Roboto', sans-serif;
  --mono:  'Roboto', monospace;

  /* Radii */
  --r4: 4px;
  --r8: 8px;
  --r12: 12px;
  --r16: 16px;
  --r24: 24px;
  --pill: 999px;

  /* Shadows */
  --s1: 0 1px 3px rgba(15,25,18,.06), 0 4px 12px rgba(15,25,18,.06);
  --s2: 0 4px 16px rgba(15,25,18,.08), 0 12px 36px rgba(15,25,18,.10);
  --s3: 0 8px 32px rgba(15,25,18,.10), 0 24px 64px rgba(15,25,18,.14);

  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--sans); }

/* ─── PAGE SYSTEM ──────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── NAVBAR ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,251,249,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--paper3);
  transition: box-shadow .3s var(--ease);
}
.nav.up { box-shadow: var(--s1); }

.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex; align-items: center; gap: 36px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0;
}
.brand-mark {
  width: 36px; height: 36px; background: var(--wa);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem; color: var(--ink);
  letter-spacing: -.01em;
}
.brand-name span { color: var(--sage); }

.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 7px 15px; border-radius: var(--r8);
  font-size: .875rem; font-weight: 500;
  color: var(--ink3); cursor: pointer;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--paper2); color: var(--ink); }
.nav-links a.on { color: var(--sage); font-weight: 700; }

.nav-cta { display: flex; gap: 10px; align-items: center; margin-left: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; border: none;
  border-radius: var(--r8); cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn-ghost {
  background: transparent; color: var(--ink2);
  border: 1.5px solid var(--paper3);
  padding: 9px 20px; font-size: .875rem;
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); background: var(--mint-l); }
.btn-primary {
  background: var(--sage); color: #fff;
  padding: 10px 22px; font-size: .875rem;
}
.btn-primary:hover { background: var(--sage-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,90,61,.3); }
.btn-lg {
  padding: 15px 32px; font-size: 1rem;
  border-radius: var(--r12);
}
.btn-wa {
  background: var(--wa); color: #fff;
  padding: 14px 28px; font-size: .95rem;
  border-radius: var(--r12);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-outline-sage {
  background: transparent; color: var(--sage);
  border: 2px solid var(--sage);
  padding: 13px 26px; font-size: .95rem;
  border-radius: var(--r12);
}
.btn-outline-sage:hover { background: var(--mint-xs); }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 100px; }
.ham span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.mob-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--paper3); padding: 14px 24px 20px; gap: 4px; }
.mob-menu.open { display: flex; }
.mob-menu a { padding: 12px 14px; border-radius: var(--r8); font-size: .95rem; font-weight: 500; color: var(--ink2); cursor: pointer; transition: .2s; }
.mob-menu a:hover,.mob-menu a.on { background: var(--mint-xs); color: var(--sage); }
.mob-btns { display: flex; gap: 8px; padding-top: 10px; border-top: 1px solid var(--paper3); margin-top: 6px; }
.mob-btns button { flex: 1; }

/* ─── CHIP / TAG ───────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mint-l); border: 1px solid var(--mint);
  color: var(--sage); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--pill);
  margin-bottom: 18px;
}
.chip-dot { width: 6px; height: 6px; background: var(--wa); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ─── SECTION WRAPPER ──────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 32px; }
.section-sm { padding: 64px 32px; }
.center { text-align: center; }
.center .sub { margin: 0 auto; }

/* ─── HEADINGS ─────────────────────────────────────────────────── */
.h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.02; letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 20px;
}
.h1 em { font-style: italic; color: var(--sage); }
.h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 14px;
}
.h2 em { font-style: italic; color: var(--sage); }
.h3 {
  font-family: var(--serif);
  font-size: 1.45rem; line-height: 1.15;
  letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 8px;
}
.sub {
  font-size: 1.05rem; color: var(--ink3);
  line-height: 1.75; max-width: 540px;
  margin-bottom: 0;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 130px 32px 80px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
}

/* Decorative background */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero-blob-1 {
  width: 700px; height: 700px;
  background: rgba(184,222,200,.25);
  top: -200px; right: -150px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(200,155,42,.08);
  bottom: -100px; left: -100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,90,61,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,90,61,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, black 20%, transparent 80%);
}

.hero-inner {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--mint);
  border-radius: var(--pill); padding: 7px 16px;
  font-size: .78rem; font-weight: 700; color: var(--sage);
  margin-bottom: 28px; box-shadow: var(--s1);
}
.hero-label .pulse {
  width: 8px; height: 8px; background: var(--wa); border-radius: 50%;
  position: relative; flex-shrink: 0;
}
.hero-label .pulse::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; background: var(--wa);
  opacity: .3; animation: ripple 2s infinite;
}
@keyframes ripple { 0%{transform:scale(1);opacity:.3} 100%{transform:scale(2.5);opacity:0} }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-proof {
  display: flex; gap: 0;
  border-top: 1px solid var(--paper3);
  padding-top: 28px;
}
.proof-item { padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--paper3); }
.proof-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.proof-num {
  font-family: var(--serif); font-size: 2rem; letter-spacing: -.01em;
  color: var(--sage); display: block; line-height: 1;
}
.proof-lbl { font-size: .75rem; color: var(--ink4); font-weight: 500; margin-top: 3px; }

/* ─── PHONE MOCKUP ────────────────────────────────────────────── */
.phone-wrap { position: relative; }

.phone {
  background: var(--white);
  border: 1.5px solid var(--paper3);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--s3), 0 0 0 6px var(--paper2);
  animation: levitate 6s ease-in-out infinite;
}
@keyframes levitate {
  0%,100% { transform: translateY(0) rotate(-.5deg); }
  50% { transform: translateY(-14px) rotate(.5deg); }
}

.phone-status {
  background: var(--ink); padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .68rem; color: rgba(255,255,255,.7);
  font-family: var(--mono);
}
.phone-status .time { color: #fff; font-weight: 700; }

.wa-header {
  background: var(--sage); padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
}
.wa-av {
  width: 36px; height: 36px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.wa-name { font-weight: 700; font-size: .88rem; color: #fff; }
.wa-status { font-size: .68rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 4px; }
.wa-status::before { content: ''; width: 6px; height: 6px; background: var(--wa); border-radius: 50%; display: block; }

.chat-area { background: #E8F5E3; padding: 14px; display: flex; flex-direction: column; gap: 8px; }

.bubble {
  max-width: 84%; padding: 9px 13px;
  font-size: .8rem; line-height: 1.5; font-family: var(--sans);
  position: relative;
}
.bubble.them {
  background: #fff; align-self: flex-start;
  border-radius: 2px 14px 14px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  color: var(--ink2);
}
.bubble.me {
  background: #DCF8C6; align-self: flex-end;
  border-radius: 14px 14px 2px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  color: var(--ink);
}
.bubble-time { font-size: .6rem; color: var(--ink4); margin-top: 4px; display: block; text-align: right; }
.ai-pill {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--mint-l); color: var(--sage);
  font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--pill);
  border: 1px solid var(--mint); margin-bottom: 4px;
}
.chat-input {
  background: #fff; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--ink4); border-top: 1px solid var(--paper3);
}
.chat-send {
  width: 30px; height: 30px; background: var(--sage);
  border-radius: 50%; margin-left: auto; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Floating badges */
.float-badge {
  position: absolute; background: var(--white);
  border: 1px solid var(--paper3); border-radius: var(--r12);
  padding: 11px 16px; box-shadow: var(--s2); z-index: 2;
  animation: floatBadge 5s ease-in-out infinite;
}
.float-badge.b1 { top: -18px; left: -36px; animation-delay: 0s; }
.float-badge.b2 { bottom: 40px; right: -32px; animation-delay: -2.5s; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fb-val { font-family: var(--serif); font-size: 1.5rem; color: var(--sage); display: block; line-height: 1; }
.fb-lbl { font-size: .68rem; color: var(--ink4); margin-top: 3px; }

/* ─── LOGOS STRIP ─────────────────────────────────────────────── */
.logos {
  background: var(--white); border-top: 1px solid var(--paper3); border-bottom: 1px solid var(--paper3);
  padding: 28px 32px; text-align: center;
}
.logos-label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink5); margin-bottom: 18px; }
.logos-row { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; align-items: center; }
.logo-item { font-family: var(--serif); font-size: .95rem; font-weight: 400; color: var(--ink5); letter-spacing: .04em; transition: color .2s; }
.logo-item:hover { color: var(--ink3); }

/* ─── FEATURE CARDS ───────────────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 56px;
}
.feat-card {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 28px;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--wa));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.feat-card:hover { border-color: var(--mint); box-shadow: var(--s2); transform: translateY(-4px); }
.feat-card:hover::before { transform: scaleX(1); }

.feat-icon {
  width: 48px; height: 48px; border-radius: var(--r12);
  background: var(--mint-xs); border: 1px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 18px;
  transition: background .25s;
}
.feat-card:hover .feat-icon { background: var(--mint-l); }
.feat-card h3 { font-family: var(--sans); font-size: .97rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: .875rem; color: var(--ink3); line-height: 1.65; }

/* ─── STEPS ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 26px; left: 9%; right: 9%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--mint), var(--mint), transparent);
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 18px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .85rem; font-weight: 700;
  color: var(--sage); margin-bottom: 18px; position: relative; z-index: 1;
  box-shadow: var(--s1);
  transition: all .25s;
}
.step-item:hover .step-num { background: var(--sage); color: #fff; border-color: var(--sage); box-shadow: 0 0 0 6px var(--mint-xs); }
.step-item h3 { font-family: var(--sans); font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.step-item p { font-size: .82rem; color: var(--ink3); line-height: 1.6; }

/* ─── STATS BAND ──────────────────────────────────────────────── */
.stats-band { background: var(--sage); padding: 0 32px; }
.stats-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 52px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); color: #fff; display: block; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.6); }

/* ─── BENTO GRID ──────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; margin-top: 60px; }
.bento-card {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 28px;
  transition: all .25s var(--ease);
}
.bento-card:hover { box-shadow: var(--s2); border-color: var(--mint); }
.bc-a { grid-column: span 7; }
.bc-b { grid-column: span 5; }
.bc-c { grid-column: span 5; }
.bc-d { grid-column: span 7; }
.bc-e { grid-column: span 12; background: var(--sage); border-color: var(--sage); }
.bc-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink4); margin-bottom: 10px; }
.bc-title { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.bc-sub { font-size: .84rem; color: var(--ink3); line-height: 1.65; }

/* Analytics bars */
.bar-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { font-size: .72rem; color: var(--ink3); width: 64px; flex-shrink: 0; font-weight: 500; }
.bar-track { flex: 1; height: 7px; background: var(--paper2); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--sage), var(--wa)); border-radius: 4px; transition: width 1.2s var(--ease); }
.bar-pct { font-size: .72rem; color: var(--sage); font-weight: 700; width: 34px; text-align: right; }

/* Mini pipeline */
.pipeline { display: flex; gap: 8px; margin-top: 16px; }
.pl-col { flex: 1; }
.pl-head { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink4); margin-bottom: 6px; text-align: center; }
.pl-cards { display: flex; flex-direction: column; gap: 5px; }
.pl-card { background: var(--paper); border: 1px solid var(--paper3); border-radius: 7px; padding: 7px 10px; font-size: .7rem; }
.pl-name { font-weight: 600; color: var(--ink); }
.pl-score { color: var(--sage); font-weight: 700; font-size: .68rem; }
.pl-card.hot { border-color: var(--mint); background: var(--mint-xs); }

/* Mini chat */
.mini-chat { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.mc { padding: 8px 11px; border-radius: 9px; font-size: .75rem; line-height: 1.45; }
.mc.r { background: var(--paper2); align-self: flex-start; color: var(--ink2); }
.mc.s { background: var(--mint-l); align-self: flex-end; color: var(--sage); font-weight: 500; }

/* Uptime dots */
.uptime-row { display: flex; gap: 2.5px; flex-wrap: wrap; margin-top: 12px; max-width: 340px; }
.ud { width: 10px; height: 10px; border-radius: 2px; background: rgba(255,255,255,.35); }
.ud.on { background: var(--wa); }
.ud.warn { background: var(--gold); }

/* Integration chips */
.int-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 14px; }
.int-chip {
  background: var(--paper); border: 1px solid var(--paper3); border-radius: var(--r8);
  padding: 10px 8px; text-align: center; transition: .2s;
}
.int-chip:hover { border-color: var(--mint); background: var(--mint-xs); }
.int-chip .ic { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.int-chip .in { font-size: .66rem; color: var(--ink3); font-weight: 600; }

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 28px;
  transition: all .25s var(--ease);
  position: relative;
}
.testi-card:hover { box-shadow: var(--s2); transform: translateY(-4px); border-color: var(--mint); }
.quote-mark {
  font-family: var(--serif); font-size: 4.5rem; line-height: .7;
  color: var(--paper3); margin-bottom: 8px; display: block;
}
.testi-card blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; color: var(--ink2); line-height: 1.7; margin-bottom: 20px;
}
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: .9rem; font-weight: 400; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .875rem; color: var(--ink); }
.testi-role { font-size: .75rem; color: var(--ink4); }

/* ─── PRICING ─────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 32px;
  display: flex; flex-direction: column;
  transition: all .25s var(--ease);
}
.price-card:hover { box-shadow: var(--s2); }
.price-card.popular {
  border-color: var(--sage);
  background: var(--mint-xs);
  box-shadow: 0 0 0 1.5px var(--sage), var(--s2);
  position: relative;
}
.price-card.popular::before {
  content: 'Most Popular';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sage); color: #fff;
  font-size: .7rem; font-weight: 700; padding: 4px 16px; border-radius: var(--pill);
  letter-spacing: .06em; white-space: nowrap;
}
.price-tier { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.price-num { font-family: var(--serif); font-size: 3rem; color: var(--ink); line-height: 1; }
.price-cur { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--ink3); }
.price-per { font-size: .85rem; color: var(--ink4); }
.price-desc { font-size: .85rem; color: var(--ink3); margin: 8px 0 22px; line-height: 1.6; }
.price-feats { list-style: none; flex: 1; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.price-feats li { font-size: .85rem; color: var(--ink2); display: flex; align-items: flex-start; gap: 9px; }
.price-feats li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; padding: 12px; }

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about-hero {
  padding: 140px 32px 80px;
  text-align: center;
  background: var(--paper);
  border-bottom: 1px solid var(--paper3);
  position: relative; overflow: hidden;
}
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.about-hero-blob {
  position: absolute; width: 600px; height: 600px;
  background: rgba(184,222,200,.2); border-radius: 50%; filter: blur(80px);
  top: -200px; right: -100px;
}

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }
.team-card {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 28px 20px;
  text-align: center; transition: all .25s var(--ease);
}
.team-card:hover { box-shadow: var(--s2); border-color: var(--mint); transform: translateY(-3px); }
.team-av {
  width: 76px; height: 76px; border-radius: 50%;
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.8rem;
  border: 2px solid var(--mint);
}
.team-name { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: .78rem; color: var(--sage); font-weight: 700; margin-bottom: 10px; }
.team-card p { font-size: .8rem; color: var(--ink3); line-height: 1.55; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 56px; }
.value-card {
  padding: 26px; background: var(--white);
  border: 1.5px solid var(--paper3);
  border-top: 3px solid var(--sage);
  border-radius: 0 0 var(--r12) var(--r12);
  transition: all .25s;
}
.value-card:hover { box-shadow: var(--s1); }
.value-card h3 { font-family: var(--sans); font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: .84rem; color: var(--ink3); line-height: 1.6; }

/* ─── CONTACT ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 360px 1fr;
  min-height: calc(100vh - 68px);
}
.contact-sidebar {
  background: var(--sage); padding: 80px 44px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-sidebar h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.5rem); color: #fff; margin-bottom: 16px; line-height: 1.1; }
.contact-sidebar h2 em { font-style: italic; color: var(--mint); }
.contact-sidebar p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.c-info { display: flex; flex-direction: column; gap: 14px; }
.c-item { display: flex; align-items: flex-start; gap: 12px; }
.c-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: var(--r8); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; flex-shrink: 0;
}
.c-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.c-val { font-size: .88rem; color: rgba(255,255,255,.85); font-weight: 500; }
.c-social { display: flex; gap: 8px; margin-top: 4px; }
.c-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border-radius: var(--r8); display: flex; align-items: center;
  justify-content: center; font-size: .8rem; color: rgba(255,255,255,.5);
  transition: .2s; cursor: pointer;
}
.c-social a:hover { background: rgba(255,255,255,.18); color: #fff; }

.contact-form-wrap { padding: 80px 60px; background: var(--paper); }
.contact-form-wrap h2 { font-family: var(--serif); font-size: 2rem; letter-spacing: -.01em; margin-bottom: 8px; }
.contact-form-wrap .desc { font-size: .9rem; color: var(--ink3); margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-g { margin-bottom: 18px; }
.form-g label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink3); margin-bottom: 7px; }
.form-g input, .form-g select, .form-g textarea {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--paper3); border-radius: var(--r8);
  padding: 12px 15px; color: var(--ink);
  font-family: var(--sans); font-size: .9rem;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-g input::placeholder, .form-g textarea::placeholder { color: var(--ink5); }
.form-g input:focus, .form-g select:focus, .form-g textarea:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px var(--mint-l);
}
.form-g textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-g select option { background: var(--white); }
.form-success {
  background: var(--mint-xs); border: 1px solid var(--mint);
  border-radius: var(--r8); padding: 14px 16px;
  color: var(--sage); font-size: .88rem; font-weight: 600;
  margin-top: 14px; display: none;
}
.faq-wrap { padding: 60px 32px; background: var(--paper2); border-top: 1px solid var(--paper3); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 36px auto 0; }
.faq-item { background: var(--white); border: 1.5px solid var(--paper3); border-radius: var(--r12); padding: 22px; }
.faq-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: .83rem; color: var(--ink3); line-height: 1.6; }

/* ─── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  text-align: center; padding: 96px 32px;
  background: var(--paper2); border-top: 1px solid var(--paper3); border-bottom: 1px solid var(--paper3);
  position: relative; overflow: hidden;
}
.cta-band-blob {
  position: absolute; width: 600px; height: 300px;
  background: rgba(184,222,200,.3); border-radius: 50%; filter: blur(60px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-band h2 { position: relative; z-index: 1; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-band p { position: relative; z-index: 1; color: var(--ink3); font-size: 1.05rem; margin-bottom: 32px; }
.cta-band .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FEATURES PAGE ───────────────────────────────────────────── */
.feat-page-hero {
  padding: 140px 32px 80px; text-align: center;
  border-bottom: 1px solid var(--paper3);
  background: var(--paper); position: relative; overflow: hidden;
}
.feat-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1180px; margin: 0 auto 96px; padding: 0 32px;
}
.feat-section.flip { direction: rtl; }
.feat-section.flip > * { direction: ltr; }
.feat-content h2 { font-family: var(--serif); font-size: clamp(1.7rem,3vw,2.3rem); letter-spacing: -.01em; margin-bottom: 14px; }
.feat-content p { color: var(--ink3); line-height: 1.8; margin-bottom: 22px; font-size: .95rem; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feat-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; color: var(--ink2); }
.feat-list li::before { content: '→'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.feat-visual {
  background: var(--white); border: 1.5px solid var(--paper3);
  border-radius: var(--r16); padding: 28px; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--s1);
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--paper3); border-top: 1px solid var(--paper3);
  padding: 72px 32px 0;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand p { font-size: .85rem; color: var(--ink4); line-height: 1.7; max-width: 270px; margin: 14px 0 20px; }
.footer-soc { display: flex; gap: 8px; }
.footer-soc a {
  width: 34px; height: 34px; background: var(--white);
  border: 1px solid var(--paper3); border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--ink4);
  cursor: pointer; transition: .2s;
}
.footer-soc a:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .85rem; color: var(--ink3); margin-bottom: 9px; cursor: pointer; transition: .2s; }
.footer-col a:hover { color: var(--sage); padding-left: 4px; }
.footer-brand-name { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.footer-brand-name span { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid var(--paper3); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--ink4);
}
.footer-uptime { color: var(--sage); font-weight: 700; }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1100px){
  .hero-inner{grid-template-columns:1fr}.phone-wrap{display:none}
  .feat-grid{grid-template-columns:1fr 1fr}
  .bento{grid-template-columns:1fr 1fr}.bc-a,.bc-b,.bc-c,.bc-d,.bc-e{grid-column:span 1}
  .stats-inner{grid-template-columns:1fr 1fr}
  .price-grid{grid-template-columns:1fr;max-width:400px;margin-left:auto;margin-right:auto}
  .testi-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr 1fr}
  .value-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
  .feat-section{grid-template-columns:1fr;gap:40px}.feat-section.flip{direction:ltr}
  .contact-layout{grid-template-columns:1fr}
  .contact-sidebar{padding:80px 32px 40px}
  .contact-form-wrap{padding:48px 32px}
  .steps-grid{grid-template-columns:1fr 1fr}.steps-grid::before{display:none}
  .faq-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .nav-links,.nav-cta{display:none}
  .ham{display:flex}
  .section{padding:60px 20px}
  .feat-grid{grid-template-columns:1fr}
  .testi-grid,.team-grid{grid-template-columns:1fr}
  .value-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .hero-proof{flex-wrap:wrap}
  .proof-item{border-right:none;padding-right:0;margin-right:0;border-bottom:1px solid var(--paper3);padding-bottom:14px;margin-bottom:14px}
  .proof-item:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}
  .form-grid{grid-template-columns:1fr}
  .logos-row{gap:24px}
  .stats-inner{grid-template-columns:1fr 1fr}
  .stat-item{border:none;border-bottom:1px solid rgba(255,255,255,.12)}.stat-item:last-child{border:none}
  .int-grid{grid-template-columns:repeat(4,1fr)}
}