/* ================================================================
   TRAFFIC MANTRA® — style.css  v5.0
   Theme : Light Professional · Teal + Yellow-Green + Charcoal
   Inspired by TopTen SEO Agency Template palette
   Fonts : DM Sans (headlines) + Nunito (body)
   ================================================================ */

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Primary palette — exact TopTen template colors */
  --teal:        #1F77CD;
  --teal-dk:     #1560A8;
  --teal-lt:     #E8F1FB;
  --teal-mid:    #B3D1F5;

  --yellow:      #C8D62B;
  --yellow-dk:   #A8B420;
  --yellow-lt:   #F8FBDC;
  --yellow-vivid: #F0D000;  /* star ratings */

  --charcoal:    #1E2A3A;
  --charcoal-2:  #263044;
  --charcoal-3:  #2E3A4E;

  --coral:       #FF6B35;
  --coral-lt:    #FFF0E8;
  --green-acc:   #4CAF50;
  --green-wa:    #25D366;

  /* Neutral */
  --ink:         #333333;
  --ink-2:       #444444;
  --slate:       #666677;
  --muted:       #888899;
  --border:      #E8ECF0;
  --border-lt:   #F0F2F5;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --off-white-2: #EEF1F5;

  /* Shadows */
  --sh-xs:    0 2px 8px rgba(30,42,58,.06);
  --sh-sm:    0 4px 16px rgba(30,42,58,.09);
  --sh-md:    0 8px 32px rgba(30,42,58,.12);
  --sh-lg:    0 16px 56px rgba(30,42,58,.16);
  --sh-teal:  0 6px 24px rgba(31,119,205,.32);
  --sh-yellow:0 6px 20px rgba(200,214,43,.35);

  /* Typography */
  --font-head: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* Layout */
  --wrap:   min(1170px, 100% - 48px);
  --sec-v:  clamp(60px, 8vw, 96px);
  --r:      8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 100px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── BASE ────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.13;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 4.8vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 3.2vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.28rem); font-weight: 700; }
h4 { font-size: 1.04rem; font-weight: 700; }
p  { color: var(--slate); font-size: 1.05rem; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.wrap     { width: var(--wrap); margin-inline: auto; }
.sec      { padding-block: var(--sec-v); }
.sec-alt  { background: var(--off-white); }
.sec-dark { background: var(--charcoal); color: var(--white); }
.sec-dark2{ background: var(--charcoal-2); color: var(--white); }
.sec-teal { background: var(--teal); color: var(--white); }

/* ── SECTION LABEL ───────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dk); margin-bottom: 10px;
}
.label::before {
  content: ''; width: 20px; height: 3px;
  background: var(--teal); border-radius: 3px; flex-shrink: 0;
}
.label-yellow::before { background: var(--yellow); }
.label-yellow { color: var(--yellow-dk); }
.label-white::before { background: rgba(255,255,255,.6); }
.label-white { color: rgba(255,255,255,.7); }

/* ── SEC HEAD ────────────────────────────────────────────────── */
.sec-head { margin-bottom: clamp(32px, 5vw, 52px); }
.sec-head.center { text-align: center; }
.sec-head h2 { margin-bottom: 12px; }
.sec-head p {
  font-size: clamp(.92rem, 1.15vw, 1.02rem);
  max-width: 580px; line-height: 1.78; color: var(--slate);
}
.sec-head.center p { margin-inline: auto; }
.sec-head.lt h2 { color: var(--white); }
.sec-head.lt p  { color: rgba(255,255,255,.6); }

/* ── UNDERLINE DECORATION ────────────────────────────────────── */
/* TopTen-style teal underline on section titles */
.u-teal {
  position: relative; display: inline-block;
}
.u-teal::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--yellow));
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .9rem; font-weight: 700;
  padding: 13px 28px; border-radius: var(--r-pill);
  cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s, background .18s, border-color .18s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: var(--sh-teal);
}
.btn-teal:hover { background: var(--teal-dk); box-shadow: 0 10px 32px rgba(31,119,205,.42); }

.btn-yellow {
  background: var(--yellow); color: var(--charcoal);
  box-shadow: var(--sh-yellow);
}
.btn-yellow:hover { background: var(--yellow-dk); box-shadow: 0 10px 28px rgba(200,214,43,.48); }

.btn-charcoal {
  background: var(--charcoal); color: var(--white);
  box-shadow: 0 6px 20px rgba(30,42,58,.3);
}
.btn-charcoal:hover { background: var(--charcoal-2); }

.btn-wa {
  background: var(--green-wa); color: var(--white);
  box-shadow: 0 6px 22px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1fba59; box-shadow: 0 10px 30px rgba(37,211,102,.42); }

.btn-outline-teal {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); box-shadow: var(--sh-teal); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.75); }

.btn-sm  { padding: 9px 20px; font-size: .82rem; }
.btn-lg  { padding: 15px 34px; font-size: .96rem; }
.btn-xl  { padding: 17px 42px; font-size: 1.02rem; }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .28s;
}
.nav-scrolled { box-shadow: 0 3px 20px rgba(30,42,58,.1); }
.nav-inner { display: flex; align-items: center; height: 66px; gap: 24px; }

/* Logo */
.nav-logo {
  font-family: var(--font-head); font-size: 1.26rem; font-weight: 800;
  color: var(--charcoal); letter-spacing: -.04em; flex-shrink: 0;
  display: flex; align-items: baseline; gap: 0; margin-right: auto;
}
.nl-teal { color: var(--teal); }
.nl-r    { font-size: .42em; vertical-align: super; color: var(--teal); opacity: .7; margin-left: 1px; }

/* Nav links */
.nav-links { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--font-head); font-size: .84rem; font-weight: 600;
  color: var(--charcoal-2); padding: 7px 12px; border-radius: 7px;
  transition: color .18s, background .18s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-lt); }

.nav-phone {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  color: var(--charcoal); padding: 7px 11px; border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav-phone:hover { color: var(--teal); background: var(--teal-lt); }
.nav-phone svg { width: 13px; height: 13px; stroke: currentColor; }

/* Hamburger */
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px; cursor: pointer; transition: background .18s;
}
.nav-ham:hover { background: var(--teal-lt); }
.nav-ham span {
  display: block; width: 22px; height: 2.5px;
  background: var(--charcoal); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s;
}
.nav-ham.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-ham.active span:nth-child(2) { opacity: 0; }
.nav-ham.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mob-drawer {
  display: none; position: fixed; inset: 0; z-index: 390;
  background: var(--white); padding: 80px 28px 36px;
  flex-direction: column; overflow-y: auto;
}
.mob-drawer.open { display: flex; }
.mob-drawer nav a {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  color: var(--slate); padding: 13px 0;
  border-bottom: 1px solid var(--border); display: block;
  transition: color .18s;
}
.mob-drawer nav a:hover { color: var(--teal); }
.mob-ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: #EEF3FA;
  padding-top: 66px; overflow: hidden; position: relative;
}
/* Thin top gradient bar — subtle */
.hero-topbar { display: none; }

/* No blob — clean flat bg */
.hero-bg-blob { display: none; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 4vw, 56px); align-items: center;
  padding-block: clamp(52px, 7vw, 88px);
}

/* Hero badge — grey pill, diamond icon, uppercase */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.9); border: 1.5px solid #D0D9E8;
  border-radius: var(--r-pill); padding: 7px 18px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  color: #3A4A5C; margin-bottom: 20px; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(30,42,58,.07);
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--teal);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(31,119,205,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(31,119,205,.04); }
}

/* Hero headline */
.hero h1 { color: #1A2332; margin-bottom: 18px; }
.hero-accent {
  color: var(--teal);
  font-style: italic;
  position: relative; display: inline-block;
}
/* Blue + yellow dual underline */
.hero-accent::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 55%, #FBBC05 55%, #FBBC05 100%);
  border-radius: 3px;
}
.hero-desc {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: #4A5568; max-width: 540px; line-height: 1.84; margin-bottom: 32px;
}
/* Blue highlight for inline links in hero desc */
.hero-desc strong, .hero-desc a { color: var(--teal); font-weight: 700; text-decoration: none; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

/* Hero trust pills — white bg, grey border, two rows */
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; max-width: 520px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.95); border: 1.5px solid #D4DCE8;
  border-radius: var(--r-pill); padding: 7px 16px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: #3A4A5C;
  box-shadow: 0 1px 4px rgba(30,42,58,.07);
  transition: border-color .2s, box-shadow .2s;
}
.trust-pill:hover { border-color: var(--teal); box-shadow: 0 3px 14px rgba(31,119,205,.18); }

/* Hero visual wrapper */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: stretch; }

/* ══════════════════════════════════════════════════════════════
   STATS BAND — 4 Google-color blocks (exact screenshot match)
══════════════════════════════════════════════════════════════ */
.stats-band {
  background: transparent;
  padding-block: 0;
}
.stats-band::before { display: none; }
.stats-band-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  min-height: 130px;
}
.sb-stat {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(24px, 3.5vw, 40px) 20px;
  border-right: none;
  position: relative;
}
.sb-stat:nth-child(1) { background: #1F77CD; }
.sb-stat:nth-child(2) { background: #EA4335; }
.sb-stat:nth-child(3) { background: #FBBC05; }
.sb-stat:nth-child(4) { background: #34A853; }
.sb-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: #FFFFFF; line-height: 1;
  letter-spacing: -.04em; margin-bottom: 8px;
}
.sb-num sup { font-size: .52em; vertical-align: super; }
/* Yellow block needs dark text for contrast */
.sb-stat:nth-child(3) .sb-num { color: #FFFFFF; }
.sb-lbl {
  font-size: clamp(.82rem, 1vw, .94rem);
  font-weight: 600; color: rgba(255,255,255,.88);
  font-family: var(--font-head); letter-spacing: .01em;
}

/* "Since 2011" block special sizing */
.sb-since {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800; color: #FFFFFF; line-height: 1;
  letter-spacing: -.04em; margin-bottom: 8px;
}
.trust-strip {
  background: #F0F4FA;
  border-bottom: 1px solid #DDE4EE;
  padding-block: 14px;
}
.trust-strip-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.ts-item {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: .86rem; font-weight: 600;
  color: #3A4A5C; padding: 6px 22px; white-space: nowrap;
}
.ts-item strong { color: #1A2332; font-weight: 800; }
.ts-dot { display: none; }
.ts-sep { width: 1px; height: 18px; background: #C8D4E0; }

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION (light gray bg, teal icon circles)
══════════════════════════════════════════════════════════════ */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.srv-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 30px 24px;
  text-decoration: none; display: flex; flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: border-color .28s, box-shadow .3s, transform .3s var(--ease);
  position: relative; overflow: hidden;
}
.srv-card:hover { border-color: var(--teal); box-shadow: 0 12px 44px rgba(31,119,205,.15); transform: translateY(-5px); }
/* Teal left border reveal on hover */
.srv-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal);
  transform: scaleY(0); transition: transform .3s var(--ease);
}
.srv-card:hover::before { transform: scaleY(1); }

/* Circular teal icon — exactly like TopTen */
.srv-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--teal-lt); border: 2px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .22s, border-color .22s, transform .25s var(--ease);
}
.srv-icon svg { width: 26px; height: 26px; stroke: var(--teal); transition: stroke .22s; }
.srv-card:hover .srv-icon { background: var(--teal); border-color: var(--teal); transform: scale(1.1) rotate(-5deg); }
.srv-card:hover .srv-icon svg { stroke: var(--white); }

.srv-card h3 { font-size: 1.04rem; color: var(--charcoal); margin-bottom: 10px; }
.srv-card p  { font-size: .86rem; color: var(--slate); margin: 0; line-height: 1.7; flex: 1; }
.srv-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 15px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--teal);
  transition: gap .2s;
}
.srv-link svg { width: 14px; height: 14px; stroke: var(--teal); }
.srv-card:hover .srv-link { gap: 9px; }

/* ══════════════════════════════════════════════════════════════
   AUDIT BAND — teal bg (TopTen "SEO Score" band equivalent)
══════════════════════════════════════════════════════════════ */
.audit-band {
  background: var(--teal);
  padding-block: clamp(32px, 5vw, 52px);
  position: relative; overflow: hidden;
}
.audit-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 100% at 75% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
}
.audit-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
.audit-copy h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin-bottom: 8px; }
.audit-copy p  { font-size: .94rem; margin: 0; max-width: 480px; }
.audit-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── LIGHT ECO SECTION OVERRIDES ─────────────────────────────── */
/* Highlight badge — light theme */
.eco-highlight-lt {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-lt); border: 1.5px solid var(--teal-mid);
  border-radius: var(--r-pill); padding: 7px 16px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  color: var(--teal-dk); margin-bottom: 18px;
}
/* Services list box — light theme */
.eco-services-box-lt {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 22px;
  border-left: 4px solid var(--teal); margin-top: 8px;
  box-shadow: var(--sh-xs);
}
.eco-services-box-lt h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-dk); margin-bottom: 14px;
}
.eco-services-box-lt ul { display: flex; flex-direction: column; gap: 10px; }
.eco-services-box-lt li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; color: var(--slate);
}
.eco-services-box-lt li svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; }

/* Eco cards — light theme */
.eco-card-lt {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 22px 18px;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: border-color .24s, box-shadow .3s, transform .3s var(--ease);
}
.eco-card-lt:hover { border-color: var(--teal); box-shadow: 0 10px 36px rgba(31,119,205,.14); transform: translateY(-4px); }
.eco-card-lt::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.eco-card-lt:nth-child(1)::before { background: var(--teal); }
.eco-card-lt:nth-child(2)::before { background: var(--yellow-dk); }
.eco-card-lt:nth-child(3)::before { background: var(--coral); }
.eco-card-lt:nth-child(4)::before { background: var(--green-acc); }
.eco-card-icon-lt {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-lt); border: 1px solid var(--teal-mid);
  display: flex; align-items: center; justify-content: center; margin-bottom: 11px;
  transition: background .2s;
}
.eco-card-lt:hover .eco-card-icon-lt { background: var(--teal); border-color: var(--teal); }
.eco-card-icon-lt svg { width: 18px; height: 18px; stroke: var(--teal); transition: stroke .2s; }
.eco-card-lt:hover .eco-card-icon-lt svg { stroke: var(--white); }
.eco-card-lt h4 { color: var(--charcoal); font-size: .9rem; margin-bottom: 5px; }
.eco-card-lt p  { color: var(--muted); font-size: .8rem; margin: 0; line-height: 1.6; }

/* Eco stat strip — light theme */
.eco-stat-strip-lt {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 12px;
}
.eco-sc-lt {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 12px; text-align: center;
  box-shadow: var(--sh-xs);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.eco-sc-lt:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.eco-sc-n-lt {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  line-height: 1; margin-bottom: 4px; letter-spacing: -.04em;
}
.eco-sc-l-lt {
  font-size: .62rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════════
   FOUNDER — left photo, right copy
══════════════════════════════════════════════════════════════ */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  aspect-ratio: 3/4; border-radius: var(--r-xl);
  background: linear-gradient(145deg, var(--teal-lt) 0%, var(--teal-mid) 100%);
  overflow: hidden; position: relative;
  box-shadow: var(--sh-md);
}
.founder-photo::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--teal), var(--yellow));
}
.founder-photo-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--teal-dk); font-size: .82rem; text-align: center; padding: 24px;
}
.founder-photo-inner svg { opacity: .3; margin-bottom: 8px; }
/* Floating card */
.founder-float {
  position: absolute; right: -18px; bottom: 36px;
  background: var(--white); border-radius: var(--r-xl);
  padding: 14px 18px; box-shadow: var(--sh-md);
  border: 1.5px solid var(--border); min-width: 148px;
}
.ff-num {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--charcoal); line-height: 1; letter-spacing: -.05em;
}
.ff-num em { color: var(--teal); font-style: normal; }
.ff-lbl { font-size: .66rem; color: var(--muted); margin-top: 4px; font-weight: 600; line-height: 1.4; }

.founder-copy h2 { color: var(--charcoal); margin-bottom: 12px; }
.founder-copy > p { font-size: 1rem; line-height: 1.82; color: var(--slate); margin-bottom: 12px; }
.f-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.f-badge {
  font-family: var(--font-head); font-size: .77rem; font-weight: 700;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--off-white); border: 1.5px solid var(--border); color: var(--charcoal-2);
  transition: background .2s, border-color .2s;
}
.f-badge:hover { background: var(--teal-lt); border-color: var(--teal-mid); color: var(--teal-dk); }
.founder-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ══════════════════════════════════════════════════════════════
   BUSINESS GROWTH ECOSYSTEM — dark section
══════════════════════════════════════════════════════════════ */
.eco-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: start;
}
.eco-copy h2 { color: var(--white); margin-bottom: 12px; }
.eco-copy > p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.82; margin-bottom: 14px; }
.eco-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,214,43,.12); border: 1px solid rgba(200,214,43,.28);
  border-radius: var(--r-pill); padding: 6px 16px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  color: var(--yellow); margin-bottom: 18px;
}
.eco-services-box {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 20px;
  border-left: 3px solid var(--yellow); margin-top: 8px;
}
.eco-services-box h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.eco-services-box ul { display: flex; flex-direction: column; gap: 10px; }
.eco-services-box li {
  display: flex; align-items: center; gap: 9px;
  font-size: .875rem; color: rgba(255,255,255,.68);
}
.eco-services-box li svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; }
/* Right: 4-card grid */
.eco-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.eco-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl); padding: 20px 16px; position: relative; overflow: hidden;
  transition: background .22s, transform .28s var(--ease);
}
.eco-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.eco-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.eco-card:nth-child(1)::before { background: var(--teal); }
.eco-card:nth-child(2)::before { background: var(--yellow); }
.eco-card:nth-child(3)::before { background: var(--coral); }
.eco-card:nth-child(4)::before { background: var(--green-acc); }
.eco-card-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.eco-card-icon svg { width: 17px; height: 17px; stroke: rgba(255,255,255,.65); }
.eco-card h4 { color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.eco-card p  { color: rgba(255,255,255,.45); font-size: .8rem; margin: 0; line-height: 1.58; }
/* Google-color stat strip */
.eco-stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--r-lg); overflow: hidden; }
.eco-sc {
  padding: 11px 8px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.eco-sc:last-child { border-right: none; }
.eco-sc-n { font-family: var(--font-head); font-size: 1.28rem; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.eco-sc-l { font-size: .6rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO / CASE STUDIES
══════════════════════════════════════════════════════════════ */
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.port-card {
  background: var(--white); border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid var(--border); text-decoration: none;
  box-shadow: var(--sh-xs);
  transition: box-shadow .28s, transform .3s var(--ease); display: block;
}
.port-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.port-thumb {
  height: 192px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.port-placeholder {
  font-size: .75rem; color: rgba(255,255,255,.3);
  text-align: center; padding: 16px; font-style: italic; line-height: 1.65; position: relative; z-index: 1;
}
.port-body { padding: 20px; }
.port-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 9px; }
.port-tag {
  font-family: var(--font-head); font-size: .65rem; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-pill);
  background: var(--off-white); color: var(--slate); border: 1px solid var(--border);
}
.port-tag.t { background: var(--teal-lt); color: var(--teal-dk); border-color: var(--teal-mid); }
.port-tag.y { background: var(--yellow-lt); color: var(--yellow-dk); border-color: rgba(200,214,43,.3); }
.port-card h4 { font-size: .97rem; color: var(--charcoal); margin-bottom: 5px; }
.port-card p { font-size: .81rem; color: var(--muted); margin: 0; }
.port-result {
  display: flex; align-items: center; gap: 6px;
  margin-top: 11px; font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--green-acc);
}
.port-result svg { width: 14px; height: 14px; stroke: var(--green-acc); }

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════════════════════ */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 22px 16px;
  text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--sh-xs);
  transition: border-color .24s, background .24s, transform .3s var(--ease), box-shadow .24s;
}
.ind-card:hover { border-color: var(--teal); background: var(--teal-lt); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(31,119,205,.18); }
.ind-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--off-white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .22s, border-color .22s;
}
.ind-icon svg { width: 20px; height: 20px; stroke: var(--muted); transition: stroke .22s; }
.ind-card:hover .ind-icon { background: var(--teal); border-color: var(--teal); }
.ind-card:hover .ind-icon svg { stroke: var(--white); }
.ind-card h4 { font-size: .88rem; color: var(--charcoal); }
.ind-card p  { font-size: .73rem; color: var(--muted); margin: 0; line-height: 1.52; }

/* ══════════════════════════════════════════════════════════════
   CLIENT LOGOS GRID
══════════════════════════════════════════════════════════════ */
.logos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.logo-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  box-shadow: var(--sh-xs);
  transition: border-color .22s, transform .28s var(--ease), box-shadow .22s;
}
.logo-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.logo-ph {
  width: 100%; height: 46px;
  background: var(--off-white); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--charcoal-2);
}
.logo-ind { font-size: .68rem; color: var(--muted); }
.logo-card:nth-child(4n+1) .logo-ph { border-left: 3px solid var(--teal); }
.logo-card:nth-child(4n+2) .logo-ph { border-left: 3px solid var(--yellow-dk); }
.logo-card:nth-child(4n+3) .logo-ph { border-left: 3px solid var(--coral); }
.logo-card:nth-child(4n+4) .logo-ph { border-left: 3px solid var(--green-acc); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 26px 22px;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: box-shadow .28s, transform .3s var(--ease);
  position: relative;
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.testi-card::before {
  content: '\201C'; font-family: var(--font-head); font-size: 3.8rem; line-height: .5;
  color: var(--teal); opacity: .18; display: block; margin-bottom: 10px;
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.testi-star { color: var(--yellow-vivid); font-size: .9rem; }
.testi-text { font-size: .875rem; color: var(--slate); line-height: 1.78; flex: 1; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .845rem; color: var(--charcoal); }
.testi-co { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.testi-link { font-size: .7rem; color: var(--teal); font-weight: 600; margin-top: 2px; display: inline-block; }

/* ══════════════════════════════════════════════════════════════
   PRICING — 5 planet packages (like TopTen packages section)
══════════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: start; }
.price-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-xl); padding: 24px 18px;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: border-color .28s, box-shadow .28s, transform .3s var(--ease);
  position: relative; overflow: hidden;
}
.price-card:hover { border-color: var(--teal); box-shadow: 0 10px 40px rgba(31,119,205,.2); transform: translateY(-4px); }
/* TopTen featured card has top teal bar + slight lift */
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 0 transparent, var(--sh-md);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
/* Teal top bar on featured */
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--teal);
}
.price-ribbon {
  position: absolute; top: 12px; right: -28px;
  background: var(--teal); color: var(--white);
  font-family: var(--font-head); font-size: .6rem; font-weight: 700;
  padding: 4px 36px; transform: rotate(40deg);
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(31,119,205,.4);
}
.price-planet { font-family: var(--font-head); font-size: 1.5rem; line-height: 1; margin-bottom: 2px; }
.price-name { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 11px; }
.price-card h3 { font-size: .98rem; color: var(--charcoal); margin-bottom: 7px; }
.price-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--charcoal); margin-bottom: 3px; letter-spacing: -.04em; }
.price-amount span { font-size: .7rem; font-weight: 500; color: var(--muted); }
.price-note { font-size: .72rem; color: var(--muted); margin-bottom: 12px; }
.price-div { height: 1px; background: var(--border); margin-block: 12px; }
.price-feats { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pf {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: .79rem; color: var(--slate); line-height: 1.55;
}
.pf svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; margin-top: 2px; }
.pf.no svg { stroke: var(--border); }
.pf.no { color: var(--muted); }
.price-cta { margin-top: 16px; }
.price-cta .btn { width: 100%; justify-content: center; }
.price-popular {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-head); font-size: .65rem; font-weight: 700;
  color: var(--teal); background: var(--teal-lt);
  border: 1px solid var(--teal-mid); padding: 3px 9px; border-radius: 5px; margin-bottom: 9px;
}

/* ══════════════════════════════════════════════════════════════
   WOMEN INITIATIVE BAND
══════════════════════════════════════════════════════════════ */
.init-band {
  background: linear-gradient(135deg, #3B0764 0%, #6B21A8 100%);
  padding-block: clamp(26px, 4vw, 44px);
  position: relative; overflow: hidden;
}
.init-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 100% at 88% 50%, rgba(31,119,205,.1) 0%, transparent 60%);
}
.init-inner { position: relative; display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; }
.init-icon { font-size: 2.4rem; flex-shrink: 0; }
.init-copy { flex: 1; min-width: 200px; }
.init-copy h3 { font-family: var(--font-head); font-size: clamp(.98rem, 1.6vw, 1.2rem); font-weight: 800; color: var(--white); margin-bottom: 5px; }
.init-copy p { font-size: .86rem; color: rgba(255,255,255,.58); margin: 0; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 19px 0; text-align: left;
  font-family: var(--font-head); font-size: .97rem; font-weight: 700;
  color: var(--charcoal); cursor: pointer; background: none; border: none;
  transition: color .18s;
}
.faq-btn:hover, .faq-btn[aria-expanded="true"] { color: var(--teal); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: var(--off-white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted);
  transition: background .22s, border-color .22s, transform .28s var(--ease), color .22s;
}
.faq-btn[aria-expanded="true"] .faq-icon { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; font-size: .9rem; color: var(--slate); line-height: 1.8; padding-bottom: 0; transition: padding-bottom .35s; }
.faq-answer.open .faq-answer-inner { padding-bottom: 20px; }
.faq-answer-inner a { color: var(--teal); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA — teal bg (TopTen style)
══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--teal);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 15% 50%, rgba(255,255,255,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 88% 20%, rgba(0,153,100,.2) 0%, transparent 55%);
}
.cta-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--yellow), var(--white), var(--yellow));
}
.cta-inner { position: relative; z-index: 1; text-align: center; padding-block: var(--sec-v); }
.cta-watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-head); font-size: clamp(80px, 14vw, 200px); font-weight: 800;
  color: rgba(255,255,255,.02); letter-spacing: -.04em;
  pointer-events: none; white-space: nowrap; line-height: 1; user-select: none; z-index: 0;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content > p { color: rgba(255,255,255,.52); font-size: 1.02rem; max-width: 500px; margin-inline: auto; margin-bottom: 30px; line-height: 1.82; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-phone-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 18px; padding: 13px 26px;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4);
  border-radius: var(--r-pill);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  color: var(--white); text-decoration: none;
  transition: background .2s, border-color .2s;
}
.cta-phone-link:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }
.cta-phone-link svg { width: 18px; height: 18px; stroke: var(--white); }
.cta-fine { font-size: .76rem; color: rgba(255,255,255,.3); margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — dark navy, high-contrast readable
══════════════════════════════════════════════════════════════ */
.footer {
  background: #101828;
  padding-top: clamp(44px, 6vw, 68px);
  padding-bottom: 26px;
  color: var(--white);
}
/* Google brand color top stripe */
.footer::before {
  content: ''; display: block; height: 4px;
  background: linear-gradient(90deg,
    #1F77CD 0%, #1F77CD 30%,
    #EA4335 30%, #EA4335 55%,
    #FBBC05 55%, #FBBC05 72%,
    #34A853 72%, #34A853 87%,
    #17B8C1 87%, #17B8C1 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px; margin-top: clamp(28px, 4vw, 48px); margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.32rem; font-weight: 800;
  color: var(--white); letter-spacing: -.04em; display: block; margin-bottom: 14px;
}
.fl-teal { color: var(--teal); }
.fl-r    { font-size: .44em; vertical-align: super; color: var(--teal); opacity: .85; margin-left: 1px; }
.footer-desc {
  font-size: .92rem; color: rgba(255,255,255,.82);
  line-height: 1.82; max-width: 280px; margin-bottom: 22px;
}
.footer-col h5 {
  font-family: var(--font-head); font-size: .72rem; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase;
  color: #FFFFFF; margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(31,119,205,.6);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .92rem; color: rgba(255,255,255,.75);
  transition: color .18s, padding-left .18s;
  display: inline-flex; align-items: center; gap: 5px;
  line-height: 1.5;
}
.footer-col ul li a::before {
  content: '›'; color: var(--teal); font-size: 1.15em;
  opacity: 0; transition: opacity .18s, transform .18s; transform: translateX(-4px);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 3px; }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .84rem; color: rgba(255,255,255,.65); }
.footer-copy strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .84rem; color: rgba(255,255,255,.58); transition: color .18s; }
.footer-legal a:hover { color: var(--teal); }

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 500;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-wa); color: var(--white);
  font-family: var(--font-head); font-size: .8rem; font-weight: 700;
  padding: 12px 18px; border-radius: var(--r-pill);
  box-shadow: 0 8px 28px rgba(37,211,102,.38); text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,.5); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   UTILITIES + SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .52s var(--ease), transform .52s var(--ease); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal:nth-child(2) { transition-delay: .07s; }
  .reveal:nth-child(3) { transition-delay: .14s; }
  .reveal:nth-child(4) { transition-delay: .21s; }
  .reveal:nth-child(5) { transition-delay: .28s; }
  .reveal:nth-child(6) { transition-delay: .35s; }
  .reveal:nth-child(7) { transition-delay: .42s; }
  .reveal:nth-child(8) { transition-delay: .49s; }
}
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .srv-grid      { grid-template-columns: repeat(2, 1fr); }
  .ind-grid      { grid-template-columns: repeat(3, 1fr); }
  .logos-grid    { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .founder-grid   { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 340px; margin-inline: auto; }
  .founder-float  { right: 0; bottom: -16px; }
  .eco-inner      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
  .port-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid{ grid-template-columns: repeat(2, 1fr); }
  .sb-stat        { border-right: none; }
  .audit-inner    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .srv-grid       { grid-template-columns: 1fr; }
  .ind-grid       { grid-template-columns: 1fr 1fr; }
  .eco-cards      { grid-template-columns: 1fr; }
  .port-grid      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .logos-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-brand   { grid-column: span 1; }
  .nav-links      { display: none; }
  .nav-phone      { display: none; }
  .nav-actions .btn-sm { display: none; }
  .nav-ham        { display: flex; }
  .cta-btns       { flex-direction: column; align-items: center; }
  .init-inner     { flex-direction: column; text-align: center; }
  .wa-float .wa-label { display: none; }
  .wa-float       { padding: 14px; border-radius: 50%; }
  .trust-strip-row{ flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
  .trust-strip-row::-webkit-scrollbar { display: none; }
  .price-card.featured { transform: none; }
  .eco-stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ind-grid       { grid-template-columns: 1fr; }
  .logos-grid     { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   HERO DONUT CHART PANEL
══════════════════════════════════════════════════════════════ */
.hero-chart-panel {
  position: relative;
  display: flex; flex-direction: column; align-items: stretch;
  animation: panel-enter .9s cubic-bezier(0.22,1,0.36,1) .2s both;
}
@keyframes panel-enter {
  from { opacity: 0; transform: translateX(28px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* Card wrapper */
.chart-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 24px 60px rgba(30,42,58,.1);
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* Multicolor top bar proportional to segments */
.chart-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg,
    #1F77CD 0%,   #1F77CD 32%,
    #EA4335 32%,  #EA4335 56%,
    #FBBC05 56%,  #FBBC05 72%,
    #34A853 72%,  #34A853 82%,
    #17B8C1 82%,  #17B8C1 90%,
    #D9E2EC 90%,  #D9E2EC 100%);
}

/* Chart header */
.chart-header {
  display: flex; align-items: center;
  margin-bottom: 22px; padding-top: 6px;
}
.chart-title {
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #1A2332;
  display: flex; align-items: center; gap: 8px;
}
.chart-title-dot {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--teal); flex-shrink: 0;
}
.chart-subtitle { display: none; }

/* SVG Donut — large */
.chart-donut-wrap {
  position: relative;
  width: 230px; height: 230px;
  margin: 0 auto 24px;
  flex-shrink: 0;
}
.chart-donut-wrap svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 8px 28px rgba(30,42,58,.14));
}
.donut-segment {
  fill: none;
  stroke-linecap: butt;
  transform-origin: center;
  transition: stroke-width .22s cubic-bezier(0.22,1,0.36,1), opacity .22s;
  cursor: pointer;
}
.donut-segment:hover { opacity: .85; stroke-width: 36; }
.donut-segment.active { stroke-width: 36; }

/* Centre label */
.chart-centre {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
}
.chart-centre-n {
  font-family: var(--font-head);
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: #1A2332; letter-spacing: -.05em;
  transition: all .25s;
}
.chart-centre-l {
  font-size: .7rem; font-weight: 700; color: #8898AA;
  text-transform: uppercase; letter-spacing: .1em; margin-top: 4px;
  transition: all .25s;
}

/* Divider */
.chart-divider {
  height: 1px;
  background: #EDF2F7;
  margin: 0 0 14px;
}

/* Legend — circle dots, clean rows, name + pct */
.chart-legend {
  display: flex; flex-direction: column; gap: 0; width: 100%;
}
.legend-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px; border-radius: 8px;
  cursor: pointer;
  transition: background .15s;
  outline: none;
}
.legend-row:hover, .legend-row:focus { background: #F7FAFC; }
.legend-row.active { background: #EBF5FF; }
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .2s;
}
.legend-row:hover .legend-dot { transform: scale(1.3); }
.legend-name {
  font-size: .9rem; color: #4A5568; flex: 1; line-height: 1.3;
  font-family: var(--font-body);
}
.legend-pct {
  font-family: var(--font-head); font-size: .95rem; font-weight: 800;
  color: #1A2332; min-width: 38px; text-align: right;
}



/* ══════════════════════════════════════════════════════════════
   HERO ENQUIRY FORM — Horizontal, compact, premium
══════════════════════════════════════════════════════════════ */
.hero-form-wrap {
  padding-bottom: clamp(24px, 4vw, 40px);
  margin-top: -8px;
}
.hero-form-card {
  background: #FFFFFF;
  border: 1.5px solid #DDE4EE;
  border-radius: 16px;
  padding: 22px 24px 20px;
  box-shadow: 0 4px 24px rgba(30,42,58,.1), 0 1px 4px rgba(30,42,58,.06);
  position: relative;
  overflow: hidden;
}
/* Blue left accent bar */
.hero-form-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1F77CD, #17B8C1);
}

/* Form heading */
.hf-heading {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  color: #1F77CD; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px; padding-left: 4px;
}
.hf-heading svg { flex-shrink: 0; stroke: #1F77CD; }

/* Honeypot — absolutely hidden */
.hf-honeypot-wrap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}

/* Fields row */
.hf-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1.5fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.hf-field {
  display: flex; flex-direction: column; gap: 5px;
}
.hf-field label {
  font-family: var(--font-head); font-size: .68rem; font-weight: 700;
  color: #5A6478; letter-spacing: .04em; text-transform: uppercase;
}
.hf-field label span { color: #EA4335; }
.hf-field input,
.hf-field select {
  font-family: var(--font-body); font-size: .9rem; color: #1A2332;
  background: #F7FAFC; border: 1.5px solid #DDE4EE;
  border-radius: 9px; padding: 10px 13px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%; outline: none;
  appearance: none; -webkit-appearance: none;
}
.hf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6478' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}
.hf-field input:focus,
.hf-field select:focus {
  border-color: #1F77CD;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(31,119,205,.12);
}
.hf-field input::placeholder { color: #B0BBC8; }
.hf-field input:invalid:not(:placeholder-shown) { border-color: #EA4335; }

/* Submit column */
.hf-submit-col {
  display: flex; flex-direction: column; gap: 8px; align-items: stretch;
}
.hf-submit {
  background: #1F77CD;
  color: #FFFFFF;
  border: none; border-radius: 9px;
  font-family: var(--font-head); font-size: .88rem; font-weight: 800;
  padding: 11px 18px;
  cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(31,119,205,.35);
  transition: background .2s, box-shadow .2s, transform .2s;
  position: relative; min-height: 44px;
}
.hf-submit:hover:not(:disabled) {
  background: #1560A8;
  box-shadow: 0 6px 22px rgba(31,119,205,.45);
  transform: translateY(-1px);
}
.hf-submit:active { transform: none; }
.hf-submit:disabled { opacity: .7; cursor: not-allowed; }

/* Loading state */
.hf-btn-loader { display: none; align-items: center; gap: 6px; }
.hf-submit.hf-loading .hf-btn-text { display: none; }
.hf-submit.hf-loading .hf-btn-loader { display: flex; }
.hf-spin {
  width: 16px; height: 16px; flex-shrink: 0;
  animation: hf-rotate 1s linear infinite;
}
@keyframes hf-rotate { to { transform: rotate(360deg); } }

/* Request Quote link */
.hf-quote-link {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font-head); font-size: .74rem; font-weight: 700;
  color: #5A6478; text-decoration: none;
  padding: 6px 4px; border-radius: 6px;
  transition: color .18s;
  text-align: center; white-space: nowrap;
}
.hf-quote-link:hover { color: #1F77CD; }
.hf-quote-link svg { stroke: currentColor; flex-shrink: 0; }

/* Success state */
.hf-success {
  display: flex; align-items: center; gap: 16px;
  background: #E8F5E9; border: 1.5px solid #A5D6A7;
  border-radius: 12px; padding: 18px 20px;
}
.hf-success-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: #34A853; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hf-success-icon svg { width: 22px; height: 22px; stroke: #FFFFFF; }
.hf-success-body {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
}
.hf-success-body strong {
  font-family: var(--font-head); font-size: .95rem; color: #1A2332;
  font-weight: 800; display: block;
}
.hf-success-body span { font-size: .82rem; color: #4A5568; }
.hf-success-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #FFFFFF; border-radius: 8px;
  padding: 9px 16px; font-family: var(--font-head);
  font-size: .8rem; font-weight: 700; text-decoration: none; flex-shrink: 0;
  transition: background .2s;
}
.hf-success-wa:hover { background: #1fba59; }
.hf-success-wa svg { fill: #FFFFFF; }

/* Error state */
.hf-error {
  display: flex; align-items: center; gap: 8px;
  background: #FFF3F3; border: 1.5px solid #FFCDD2;
  border-radius: 9px; padding: 11px 14px; margin-top: 10px;
  font-family: var(--font-head); font-size: .84rem; font-weight: 600; color: #C62828;
}
.hf-error svg { stroke: #C62828; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1100px) {
  .hf-fields { grid-template-columns: 1fr 1fr 1fr; }
  .hf-submit-col { flex-direction: row; align-items: center; }
  .hf-submit { flex: 1; }
}
@media (max-width: 680px) {
  .hf-fields { grid-template-columns: 1fr; }
  .hero-form-card { padding: 18px 16px 16px; }
  .hf-submit-col { flex-direction: column; }
  .hf-success { flex-direction: column; text-align: center; }
  .hf-success-wa { align-self: center; }
}

/* Fix: hidden attribute must override display:flex on form states */
[hidden] { display: none !important; }
