/* =====================================================================
   Avily — healthcare marketing landing page
   Reskinned to the Avily design system (matches new/medical-marketing.html).
   Typeface: Inter (body + headings), IBM Plex Mono (eyebrows).
   Palette:  navy #102A3A · teal #1B6B74 · azure #4B82A8 · sky #9FC6D6
             cyan-teal secondary #2E97A6 · cool off-white #F5F4FB
   ===================================================================== */

/* ---------- Fonts (self-hosted, variable 300–800) ---------- */
/* Avenir LT Std — site-wide brand font (self-hosted) */
@font-face { font-family: "Avenir"; font-style: normal; font-weight: 300; font-display: swap;
  src: url("../assets/fonts/AvenirLTStd-Light.woff2") format("woff2"); }
@font-face { font-family: "Avenir"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../assets/fonts/AvenirLTStd-Book.woff2") format("woff2"); }
@font-face { font-family: "Avenir"; font-style: normal; font-weight: 500 600; font-display: swap;
  src: url("../assets/fonts/AvenirLTStd-Medium.woff2") format("woff2"); }
@font-face { font-family: "Avenir"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../assets/fonts/AvenirLTStd-Heavy.woff2") format("woff2"); }
@font-face { font-family: "Avenir"; font-style: normal; font-weight: 800 900; font-display: swap;
  src: url("../assets/fonts/AvenirLTStd-Black.woff2") format("woff2"); }

/* Raleway (self-hosted, latin subset, variable 400–800) — used by --font-mono; replaces the render-blocking Google Fonts request */
@font-face {
  font-family: "Raleway"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../assets/fonts/raleway-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  /* Avily palette — refined teal + slate, synced to the avily build */
  --navy:       #14222B;
  --brand:      #1E6E78;   /* muted teal — primary brand surface */
  --brand-600:  #195A63;
  --brand-700:  #123A40;   /* deep teal */
  --brand-dark: #102025;   /* charcoal-navy */
  --ink:        #14222B;

  --accent:     #4B82A8;   /* steel blue — standout accent / CTAs */
  --accent-500: #6499BC;
  --accent-600: #3C6E90;
  --lilac:      #9FC6D6;   /* light teal-blue highlight (legacy var name) */
  --cyan:       #5FB3CC;   /* logo light teal-blue */
  --cyan-200:   #BFE3EC;
  --cyan-50:    #E9F5F8;
  --coral:      #E8896B;   /* warm accent, used very subtly */
  --coral-600:  #D9745A;
  --coral-100:  #FBE7DF;
  --violet-50:  #eef3f6;
  --violet-100: #dde8ee;

  --green:      #2E97A6;   /* muted cyan-teal — secondary highlight */
  --green-600:  #25808D;
  --green-700:  #195A63;
  --green-50:   #eef6f7;
  --green-100:  #cfe6ea;

  --white:  #ffffff;
  --s50:  #f8fafc;
  --s100: #f1f5f9;
  --s200: #e2e8f0;
  --s300: #cbd5e1;
  --s400: #94a3b8;
  --s500: #64748b;
  --s600: #475569;
  --s700: #334155;
  --s800: #1e293b;
  --s900: #0f172a;

  --text:    #3a4a52;
  --muted:   #66767e;
  --heading: #14222B;
  --line:    #e3e8ec;

  --cream:  #F5F7F8;   /* cool off-white (light section bg) */
  --mist:   #EDF1F3;
  --font:      "Avenir", "proxima-nova", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Avenir", "proxima-nova", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-btn:  "Avenir", "proxima-nova", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", Menlo, Consolas, monospace;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --pill: 999px;
  --sh-sm: 0 1px 2px rgba(86,60,44,.05), 0 3px 10px rgba(86,60,44,.07);
  --sh:    0 10px 24px rgba(86,60,44,.09), 0 18px 44px rgba(86,60,44,.08);
  --sh-lg: 0 26px 62px rgba(86,60,44,.15), 0 12px 26px rgba(86,60,44,.08);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(60px, 8vw, 104px);
  --header-h: 80px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip-link { position: absolute; left: -9999px; top: auto; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: var(--r-sm); box-shadow: var(--sh); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.14; font-weight: 400; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 3.85rem); line-height: 1.12; }
h2 { font-size: clamp(2rem, 3.9vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
strong, b { font-family: var(--font-head); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt   { background: var(--cream); }
.section--cream { background: #EAEEF1; }
.section--blue  { background: var(--mist); }
.section--brand { background: var(--brand); color: var(--s100); }
.section--brand h2, .section--brand h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--brand .eyebrow { color: var(--green-100); }

.head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 58px); }
.head--center { margin-inline: auto; text-align: center; }
.head h2 { margin-top: 0; }
.head p { margin-top: 14px; color: var(--muted); font-size: 1.12rem; line-height: 1.6; max-width: 60ch; }
.head--center p { margin-inline: auto; }
.section--brand .head p { color: var(--s300); }
.lead { font-size: 1.18rem; color: var(--muted); }
.text-accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-btn); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 30px; border-radius: var(--pill);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(75,130,168,.32); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(75,130,168,.42); }
.btn--ghost { background: transparent; color: var(--brand); border: 2px solid var(--s300); padding: 14px 28px; }
.btn--ghost:hover { border-color: var(--brand); background: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand); box-shadow: var(--sh); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn--white-outline:hover { background: #fff; color: var(--brand); }
.btn--lg { padding: 18px 38px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--brand-dark); color: #fff; font-size: .92rem; font-weight: 600;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 14px; padding-block: 9px; flex-wrap: wrap; text-align: center; }
.announce a { color: var(--green-100); font-weight: 700; }
.announce a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.header.stuck { box-shadow: var(--sh-sm); border-color: var(--line); }
.header .container { max-width: 1360px; padding-inline: clamp(18px, 3vw, 34px); }
.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); height: var(--header-h); }
.logo { flex: none; }
.logo img { height: 42px; width: auto; }
.menu { display: flex; align-items: center; justify-content: space-between; flex: 1 1 auto; gap: 4px; }
.menu > li { flex: none; }
.menu > li > a, .menu > li > button {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-weight: 600; font-size: .97rem; color: var(--s700);
  padding: 10px 13px; border-radius: var(--r-sm);
  transition: color .15s ease, background-color .15s ease;
}
.nav-cta { flex: none; }
.menu > li > a:hover, .menu > li > button:hover { color: var(--brand); background: var(--s100); }
.menu .caret { width: 14px; height: 14px; transition: transform .2s ease; }

.has-dd { position: relative; }
.dd {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 10px; opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .22s cubic-bezier(.22,.61,.36,1), visibility 0s .18s; z-index: 70;
}
/* transparent hover-bridge across the gap, so the menu stays open while the cursor travels to it */
.dd::before { content: ""; position: absolute; left: -10px; right: -10px; top: -18px; height: 20px; }
.has-dd:hover .dd, .has-dd:focus-within .dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.has-dd:hover .caret { transform: rotate(180deg); }
.dd a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: var(--r-sm); transition: background-color .15s ease; }
.dd a:hover { background: var(--s100); }
.dd img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.dd b { display: block; font-size: .95rem; color: var(--ink); }
.dd small { color: var(--muted); font-size: .8rem; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: .97rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--accent); }
.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line); align-items: center; justify-content: center; }
.burger svg { width: 24px; height: 24px; color: var(--ink); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.drawer.open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(15,23,42,.5); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: #fff; box-shadow: var(--sh-lg); padding: 20px; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 4px;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 10px; }
.drawer__panel a { font-weight: 600; color: var(--s700); padding: 12px; border-radius: var(--r-sm); }
.drawer__panel a:hover { background: var(--s100); color: var(--brand); }
.drawer__nav { display: block; }
.dgroup { border-bottom: 1px solid var(--line); }
.dgroup summary { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  list-style: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
  font-size: 1.02rem; font-weight: 700; color: var(--ink); padding: 15px 12px; border-radius: var(--r-sm); }
.dgroup summary::-webkit-details-marker { display: none; }   /* Safari default triangle */
.dgroup summary::marker { content: none; }
.dgroup summary:hover { background: var(--s100); }
.dgroup__caret { width: 16px; height: 16px; color: var(--s400); flex: none; transition: transform .2s ease; }
.dgroup[open] > summary { color: var(--brand); }
.dgroup[open] > summary .dgroup__caret { transform: rotate(180deg); color: var(--brand); }
.dgroup__links { padding: 2px 0 10px; }
.dgroup__links a { display: block; margin-left: 10px; padding: 10px 12px; border-left: 2px solid var(--line);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; font-weight: 600; color: var(--s700); }
.dgroup__links a:hover { border-left-color: var(--brand); }
/* Flat top-level links (Company items) — same row look as group headers, no toggle */
.drawer__flat a { display: block; font-size: 1.02rem; font-weight: 700; color: var(--ink);
  padding: 15px 12px; border-bottom: 1px solid var(--line); border-radius: var(--r-sm); }
.drawer__flat a:hover { background: var(--s100); color: var(--brand); }
.drawer__actions { display: grid; gap: 12px; padding: 18px 12px 10px; }
.drawer__call { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.drawer__call svg { width: 17px; height: 17px; color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .dgroup__caret { transition: none; } }
.drawer .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; object-fit: cover; width: 100%; height: 100%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 78% 18%, rgba(75,130,168,.42), transparent 60%),
    radial-gradient(50% 70% at 12% 92%, rgba(95,179,204,.28), transparent 60%),
    linear-gradient(135deg, rgba(13,34,46,.96) 20%, rgba(30,110,120,.90) 100%);
}
.hero .container { max-width: 1240px; padding-block: clamp(40px, 5vw, 72px) clamp(60px, 8vw, 104px); }
.hero__grid { display: grid; grid-template-columns: 1fr 372px; gap: clamp(32px, 5vw, 84px); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 6vw, 78px); font-weight: 400; line-height: 1.06; }
.hero h1 .hl { color: var(--cyan); }
.hero__sub { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.hero__sub .amt { color: var(--cyan); }
.hero__lead { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 46ch; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__props { display: flex; flex-direction: column; gap: 11px; }
.hero__props li { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); font-weight: 600; font-size: .92rem; color: #fff; }
.hero__props li svg { width: 20px; height: 20px; flex: none; color: var(--green); }
.hero__props li.is-hot { background: var(--accent); border-color: var(--accent-500); color: #fff; box-shadow: 0 12px 30px rgba(75,130,168,.42); }
.hero__props li.is-hot svg { color: #fff; }

.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -12px; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.avatars img:first-child { margin-left: 0; }
.hero__trust .stars { display: inline-flex; gap: 2px; color: #f5b301; }
.hero__trust .stars svg { width: 16px; height: 16px; }
.hero__trust b { color: #fff; font-size: .92rem; display: block; }
.hero__trust small { color: rgba(255,255,255,.7); font-size: .82rem; }

/* Hero badge + trusted-by side panel */
.hero__badge { display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: 9px 16px; border-radius: 8px; margin-bottom: 20px; }
.hero__side { display: block; }
.trustbox { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg); padding: 30px 26px; text-align: center; backdrop-filter: blur(4px); box-shadow: var(--sh-lg); max-width: 340px; width: 100%; }
.trustbox .avatars { justify-content: center; margin-bottom: 16px; }
.trustbox .stars { display: inline-flex; gap: 3px; color: #f5b301; margin-bottom: 10px; }
.trustbox .stars svg { width: 20px; height: 20px; }
.trustbox b { color: #fff; display: block; font-size: 1.1rem; }
.trustbox small { color: rgba(255,255,255,.78); font-size: .86rem; }

/* ---------- Stat snapshot ---------- */
.snap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--sh-sm); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--accent); }
.stat b { display: block; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; color: var(--brand); letter-spacing: -.03em; line-height: 1; }
.stat b.g { color: var(--green-600); }
.stat p { margin-top: 10px; color: var(--muted); font-size: .98rem; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.split--rev .split__media { order: 2; }
.split--rev .namap__wrap { order: 2; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); width: 100%; }
.split p { color: var(--muted); margin-bottom: 16px; }
.split .lead { margin-bottom: 18px; color: var(--muted); }

/* feature list inside split */
.flist { display: grid; gap: 16px; margin-top: 6px; }
.flist li { display: flex; gap: 14px; align-items: flex-start; }
.flist .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.flist .ic svg { width: 22px; height: 22px; }
.flist b { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 2px; }
.flist p { margin: 0; font-size: .96rem; }

/* ---------- CTA band ---------- */
.band {
  background: linear-gradient(135deg, var(--brand), var(--brand-700)); color: #fff;
  border-radius: var(--r-lg); padding: clamp(34px, 5vw, 58px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden; box-shadow: 0 18px 40px rgba(52,92,114,.28);
}
.band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(75,130,168,.55), transparent 70%); }
.band::after { content: ""; position: absolute; left: -50px; bottom: -70px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(46,151,166,.4), transparent 70%); }
.band h2 { color: #fff; margin-bottom: 6px; }
.band p { color: var(--s200); position: relative; z-index: 1; }
.band__txt { max-width: 620px; position: relative; z-index: 1; }
.band .btn { position: relative; z-index: 1; }

/* ---------- Case study ---------- */
.case { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
.case__panel { background: var(--brand); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 42px); color: #fff; box-shadow: 0 18px 40px rgba(52,92,114,.28); }
.case__panel .eyebrow { color: var(--green-100); }
.case__loc { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); padding: 7px 14px; border-radius: var(--pill); font-weight: 600; font-size: .9rem; margin: 14px 0 18px; }
.case__loc svg { width: 16px; height: 16px; color: var(--accent-500); }
.case__metrics { display: grid; gap: 18px; }
.case__m { border-left: 3px solid var(--accent); padding-left: 16px; }
.case__m b { display: block; font-size: 1.7rem; font-weight: 800; color: #fff; }
.case__m b.g { color: var(--green-100); }
.case__m span { color: var(--s300); font-size: .92rem; }
.case__annual { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.case__annual small { color: var(--s300); font-size: .88rem; }
.case__annual b { display: block; font-size: 1.5rem; color: var(--green-100); }
.case__list { display: grid; gap: 14px; margin: 22px 0 24px; }
.case__list li { display: flex; gap: 12px; align-items: flex-start; }
.case__list svg { width: 22px; height: 22px; flex: none; color: var(--green-600); margin-top: 2px; }
.case blockquote { background: var(--green-50); border-left: 4px solid var(--green-600); padding: 16px 20px; border-radius: 0 var(--r) var(--r) 0; color: var(--green-700); font-weight: 600; }

/* ---------- Why choose us ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why__c { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.why__c:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--brand); }
.why__c .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; }
.why__c .ic svg { width: 24px; height: 24px; }
.why__c h3 { font-size: 1.16rem; margin-bottom: 8px; }
.why__c p { color: var(--muted); font-size: .95rem; }

/* ---------- Testimonials + map ---------- */
.tst { display: grid; grid-template-columns: minmax(320px, 400px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.tst__left h2 { margin: 12px 0 24px; }
.tst__cta { margin-top: 28px; }
.tst__cta h3 { margin-bottom: 16px; font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.tst__map { position: relative; }
.tst__map img { width: 100%; display: block; }
.tst__slider { position: relative; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 32px 34px; box-shadow: var(--sh); display: none; }
.tcard.active { display: block; animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.tcard__head { display: flex; align-items: center; gap: 18px; }
.tcard .ph { flex: none; width: 92px; height: 92px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; }
.tcard__meta { flex: 1; min-width: 0; text-align: center; }
.tcard__name { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1.15; color: var(--ink); }
.tcard__practice { font-size: 15px; color: var(--muted); line-height: 1.3; margin-top: 3px; }
.tcard__meta .stars { display: inline-block; margin-top: 8px; color: #f5b301; font-size: 18px; letter-spacing: 2px; line-height: 1; text-shadow: 0 1px 2px rgba(245,179,1,.35); }
.tcard blockquote { margin: 20px 0 0; text-align: center; font-size: 19px; line-height: 1.55; color: var(--text); }
.tst__nav { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.tst__nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; transition: background-color .15s ease, border-color .15s ease; }
.tst__nav button:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.tst__nav button svg { width: 20px; height: 20px; }
.tst__dots { display: flex; gap: 7px; margin-left: 6px; }
.tst__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--s300); padding: 0; }
.tst__dots button.on { background: var(--accent); width: 26px; border-radius: 5px; }

/* ---------- Process ---------- */
.proc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step__n { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-600)); color: #fff; font-weight: 800; font-size: 1.5rem; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 12px 26px rgba(75,130,168,.38); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .98rem; }
.section--brand .step p { color: var(--s300); }

/* ---------- Services (icon cards) ---------- */
.svcs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--sh-sm); text-align: center; transition: transform .2s ease, box-shadow .2s ease; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.svc img { width: 60px; height: 60px; object-fit: contain; margin: 0 auto 16px; }
.svc h3 { font-size: 1.12rem; margin-bottom: 6px; }
.svc .tag { display: block; font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-600); margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq__i { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq__i.open { box-shadow: var(--sh); border-color: var(--brand); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq__q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--s100); display: grid; place-items: center; transition: background-color .2s ease, transform .25s ease; }
.faq__q .pm svg { width: 16px; height: 16px; color: var(--brand); }
.faq__i.open .pm { background: var(--accent); transform: rotate(45deg); }
.faq__i.open .pm svg { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-in { padding: 0 24px 22px; color: var(--muted); }
.faq__a-in strong { color: var(--ink); }
.faq__a-in a { color: var(--brand); font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; transition: color .18s ease, text-decoration-color .18s ease; }
.faq__a-in a:hover { color: var(--brand-700); text-decoration-color: var(--brand-700); }

/* ---------- Final CTA ---------- */
.final { text-align: center; background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, #2C6C78 100%); position: relative; overflow: hidden; isolation: isolate; }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(50% 60% at 80% 12%, rgba(75,130,168,.5), transparent 60%), radial-gradient(40% 55% at 10% 100%, rgba(46,151,166,.4), transparent 60%); }
.final h2 { color: #fff; }
.final p { color: var(--s200); max-width: 620px; margin: 14px auto 28px; font-size: 1.12rem; }
.final .hero__cta { justify-content: center; }
.final .disc { color: var(--s400); font-size: .86rem; margin-top: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--s400); padding-block: clamp(48px, 6vw, 72px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.2fr; gap: 30px 28px; }
.footer__brand img { height: 40px; margin-bottom: 16px; }
.footer__about { color: var(--s400); margin-bottom: 18px; font-size: .95rem; max-width: 34ch; }
.footer__soc { display: flex; gap: 10px; }
.footer__soc a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background-color .15s ease, transform .15s ease; }
.footer__soc a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer__soc svg { width: 18px; height: 18px; color: #fff; }
.footer h4, .footer p.footer__hd { color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 600; line-height: 1.14; letter-spacing: -0.04em; margin-bottom: 16px; }
.footer__col a, .footer__col li { display: block; color: var(--s400); padding: 6px 0; font-size: .95rem; transition: color .15s ease; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; flex: none; color: var(--accent-500); margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid, .case, .split, .tst { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .why { grid-template-columns: repeat(2, 1fr); }
  .svcs { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: 1fr; gap: 20px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .hero__card { max-width: 460px; }
}
@media (max-width: 900px) {
  /* On mobile the header CTA is redundant (burger drawer + sticky bottom bar both
     offer it) and its width pushed the burger off-screen at ~360px. Hide it. */
  .menu, .nav-phone, .nav-cta .btn--coral { display: none; }
  .burger { display: inline-flex; }
  .nav-cta { margin-left: auto; gap: 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .snap, .why, .svcs { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .band, .case__panel { text-align: left; }
  .hero__props { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn, .final .btn { width: 100%; }
}
@media (max-width: 460px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =====================================================================
   MOVEMENT + STANDOUT FEATURES (added in rebuild)
   ===================================================================== */


/* ---------- Gradient text utility ---------- */
.grad {
  background: linear-gradient(100deg, var(--lilac), var(--green-100));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section .grad, .head .grad { background: linear-gradient(100deg, var(--brand) 8%, var(--accent) 48%, var(--cyan) 96%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Animated hero orbs ---------- */
.hero__orbs { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero__orbs span {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: float-orb 16s ease-in-out infinite;
}
.hero__orbs span:nth-child(1) { width: 420px; height: 420px; top: -80px; right: 4%;   background: radial-gradient(circle, #4B82A8, transparent 70%); }
.hero__orbs span:nth-child(2) { width: 360px; height: 360px; bottom: -120px; left: 2%; background: radial-gradient(circle, #2E97A6, transparent 70%); animation-delay: -5s; animation-duration: 20s; }
.hero__orbs span:nth-child(3) { width: 280px; height: 280px; top: 30%; left: 40%;     background: radial-gradient(circle, #9FC6D6, transparent 70%); animation-delay: -9s; animation-duration: 24s; opacity: .4; }
@keyframes float-orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,25px) scale(.95); }
}

/* ---------- Marquee trust strip ---------- */
.marquee { background: var(--brand-dark); color: #fff; overflow: hidden; padding-block: 28px; border-block: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; padding-inline: 42px; font-weight: 700; font-size: 1.16rem; line-height: 1; color: rgba(255,255,255,.92); white-space: nowrap; }
.marquee__item svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
.marquee__item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Card sheen on hover (services + why) ---------- */
.svc, .why__c { position: relative; overflow: hidden; }
.svc::before, .why__c::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(75,130,168,.10), transparent);
  transform: skewX(-18deg); transition: left .7s ease;
}
.svc:hover::before, .why__c:hover::before { left: 130%; }
.why__c:hover .ic { background: var(--accent); color: #fff; transform: scale(1.06) rotate(-3deg); transition: .25s ease; }
.svc:hover img { transform: scale(1.08) rotate(-2deg); transition: transform .3s ease; }
.svc img { transition: transform .3s ease; }

/* ---------- Stat count-up emphasis ---------- */
.stat { transition: transform .25s ease, box-shadow .25s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.stat::after { background: linear-gradient(var(--accent), var(--green)); }

/* ---------- Staggered reveal (delays set inline by JS) ---------- */
.js .reveal { will-change: opacity, transform; }

/* ---------- VIDEO TESTIMONIALS ---------- */
.vid__head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px,5vw,52px); }
.vid__head h2 { margin-top: 14px; }
.vid__head p { margin-top: 14px; color: var(--muted); font-size: 1.1rem; }

.vid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(20px, 3vw, 34px); align-items: start; }
.vidmain {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden;
  background: var(--brand-dark); box-shadow: var(--sh-lg); cursor: pointer;
}
.vidmain img, .vidmain iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.vidmain::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,30,42,.7), transparent 55%);
  transition: opacity .3s ease;
}
.vidmain.playing::after, .vidmain.playing .vidmain__play, .vidmain.playing .vidmain__cap { opacity: 0; pointer-events: none; }
.vidmain__play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; transition: opacity .3s ease;
}
.vidmain__play span {
  width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: #fff; box-shadow: 0 14px 36px rgba(75,130,168,.5);
  transition: transform .25s ease, background-color .25s ease;
}
.vidmain__play span::before { content: ""; width: 0; height: 0; margin-left: 6px; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; }
.vidmain:hover .vidmain__play span { transform: scale(1.1); background: var(--accent-600); }
.vidmain__play span { animation: pulse-ring 2.6s ease-out infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(75,130,168,.5); } 70% { box-shadow: 0 0 0 22px rgba(75,130,168,0); } 100% { box-shadow: 0 0 0 0 rgba(75,130,168,0); } }
.vidmain__cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; transition: opacity .3s ease; }
.vidmain__cap b { display: block; font-size: 1.15rem; font-family: var(--font-head); }
.vidmain__cap small { color: rgba(255,255,255,.8); font-size: .9rem; }

.vidlist { display: grid; gap: 14px; }
.vidthumb {
  display: grid; grid-template-columns: 132px 1fr; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 10px;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: left; width: 100%;
}
.vidthumb:hover, .vidthumb.active { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--accent); }
.vidthumb.active { background: var(--violet-50); }
.vidthumb__img { position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: var(--brand-dark); }
.vidthumb__img img { width: 100%; height: 100%; object-fit: cover; }
.vidthumb__img::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 0; height: 0; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; filter: drop-shadow(0 0 6px rgba(0,0,0,.6)); }
.vidthumb b { display: block; font-size: .98rem; color: var(--ink); font-family: var(--font-head); line-height: 1.2; }
.vidthumb small { color: var(--muted); font-size: .85rem; }
@media (max-width: 880px) { .vid { grid-template-columns: 1fr; } .vidlist { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vidlist { grid-template-columns: 1fr; } .vidthumb { grid-template-columns: 110px 1fr; } }

/* ---------- Google rating badge ---------- */
/* Compact pill — sits on the dark hero */
.gbadge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px); border-radius: var(--pill);
  padding: 9px 18px 9px 12px; transition: background-color .2s ease, transform .2s ease;
}
.gbadge:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.gbadge__g { width: 34px; height: 34px; flex: none; background: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.gbadge__g svg { width: 20px; height: 20px; }
.gbadge__body { display: flex; flex-direction: column; line-height: 1.15; }
.gbadge__top { display: inline-flex; align-items: center; gap: 8px; }
.gbadge__top b { color: #fff; font-size: 1.15rem; font-family: var(--font-head); }
.gbadge__stars { color: #FBBC05; font-size: .95rem; letter-spacing: 1px; }
.gbadge small { color: rgba(255,255,255,.82); font-size: .8rem; }

/* Full card — for light sections */
.grating {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--sh-sm); margin-bottom: 26px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.grating:hover { box-shadow: var(--sh); transform: translateY(-2px); border-color: var(--accent); }
.grating__g { width: 46px; height: 46px; flex: none; display: grid; place-items: center; }
.grating__g svg { width: 40px; height: 40px; }
.grating__body { display: flex; flex-direction: column; line-height: 1.2; }
.grating__top { display: flex; align-items: baseline; gap: 10px; }
.grating__big { font-size: 2.1rem; font-weight: 800; color: var(--ink); font-family: var(--font-head); line-height: 1; }
.grating__stars { color: #f5b301; font-size: 1.15rem; letter-spacing: 2px; text-shadow: 0 1px 2px rgba(245,179,1,.3); }
.grating small { color: var(--muted); font-size: .9rem; margin-top: 3px; }
.grating small b { color: var(--ink); }
.grating__link { margin-left: auto; align-self: center; color: var(--accent); font-weight: 700; font-size: .92rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.grating__link svg { width: 16px; height: 16px; }
.grating__link:hover { text-decoration: underline; }
@media (max-width: 520px) { .grating { flex-wrap: wrap; } .grating__link { margin-left: 0; width: 100%; } }

/* ---------- Light eyebrow (on dark sections) ---------- */
.eyebrow--light { color: var(--lilac); }
.eyebrow--light::before { background: var(--accent-500); }

/* ---------- Client reviews (real Google reviews) — masonry wall ---------- */
.reviews { columns: 3; column-gap: 24px; }
.rev {
  break-inside: avoid; margin: 0 0 24px; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px 24px; box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.rev:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--accent); }
.rev__g { position: absolute; top: 24px; right: 24px; width: 22px; height: 22px; opacity: .95; }
.rev__stars { color: #f5b301; font-size: 1.05rem; letter-spacing: 2px; line-height: 1; text-shadow: 0 1px 2px rgba(245,179,1,.3); }
.rev blockquote { margin: 14px 0 20px; color: var(--text); font-size: 1.02rem; line-height: 1.62; }
.rev__person { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev__img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 2px 10px rgba(15,23,42,.14); }
.rev__id { display: flex; flex-direction: column; line-height: 1.25; }
.rev__id b { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.rev__id small { color: var(--accent-600); font-weight: 700; font-size: .85rem; }
@media (max-width: 920px) { .reviews { columns: 2; } }
@media (max-width: 600px) { .reviews { columns: 1; } }

/* ---------- Care video band ("We take care of you...") ---------- */
.care { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(84px, 12vw, 156px); }
.care__media { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; }
.care__overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(110deg, rgba(11,30,42,.94) 16%, rgba(16,42,58,.80) 52%, rgba(27,107,116,.52) 100%); }
.care::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(46% 64% at 86% 18%, rgba(75,130,168,.42), transparent 60%); }
.care__inner { max-width: 700px; }
.care__title { color: #fff; font-size: clamp(2rem, 4.8vw, 3.5rem); line-height: 1.08; margin: 14px 0 18px; }
.care__sub { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 54ch; margin-bottom: 28px; }
.care__cta { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 640px) { .care__cta .btn { width: 100%; } }

/* ---------- Some of our websites (portfolio) ---------- */
.sites { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 44px); }
.site { display: block; }
.site__shot { position: relative; }
/* laptop frame around the desktop screenshot */
.site__screen { background: #1b2733; border: 1px solid rgba(255,255,255,.08); border-radius: 14px 14px 3px 3px; padding: 11px 11px 0;
  box-shadow: 0 2px 6px rgba(21,35,46,.14), 0 26px 52px -14px rgba(21,35,46,.36); transition: box-shadow .25s ease; }
.site__desk { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; border-radius: 4px 4px 0 0; }
.site__base { height: 15px; margin: 0 -4%; background: linear-gradient(180deg, #d2dadf, #aab6bf); border-radius: 0 0 13px 13px; position: relative;
  box-shadow: 0 14px 18px rgba(21,35,46,.16); }
.site__base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 84px; height: 7px; background: #8b98a1; border-radius: 0 0 7px 7px; }
/* phone frame around the mobile screenshot */
.site__phone { position: absolute; right: -3%; bottom: -24px; width: 23%; max-width: 128px; background: #1b2733; border-radius: 20px; padding: 5px;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 3px 6px rgba(21,35,46,.16), 0 18px 36px -6px rgba(21,35,46,.5); }
.site__phone::before { content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 34%; height: 4px; background: rgba(255,255,255,.25); border-radius: 3px; z-index: 1; }
.site__mob { display: block; width: 100%; aspect-ratio: 9 / 19; object-fit: contain; object-position: top center; border-radius: 15px; background: #fff; }
.site__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 34px; }
.site__meta b { font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); }
.site__meta span { color: var(--accent); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.site__meta svg { width: 15px; height: 15px; transition: transform .2s ease; }
.site:hover .site__desk { transform: translateY(-5px); box-shadow: 0 28px 56px rgba(21,35,46,.24); }
.site:hover .site__meta svg { transform: translateX(4px); }
@media (max-width: 760px) { .sites { grid-template-columns: 1fr; } .site__phone { width: 24%; bottom: -18px; } }

/* ---------- Reviews carousel (influx-style, moving) ---------- */
.rstars { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 8px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--pill); box-shadow: var(--sh-sm); transition: box-shadow .2s ease, transform .2s ease; }
.rstars:hover { box-shadow: var(--sh); transform: translateY(-2px); }
.rstars__g { width: 26px; height: 26px; display: grid; place-items: center; flex: none; }
.rstars__g svg { width: 22px; height: 22px; }
.rstars b { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); }
.rstars__st { color: #f5b301; letter-spacing: 1px; }
.rstars__txt { color: var(--muted); font-weight: 600; font-size: .9rem; }

.rvc { position: relative; margin-top: 10px; }
.rvc__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.rvc__viewport::-webkit-scrollbar { display: none; }
.rvc__track { display: flex; gap: 24px; padding: 12px 2px 20px; }
.rcard {
  scroll-snap-align: start; flex: 0 0 calc((100% - 48px) / 3); min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 26px 28px; box-shadow: var(--sh-sm); text-align: center;
  display: flex; flex-direction: column; align-items: center; position: relative;
}
.rcard__img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 3px solid var(--violet-100); box-shadow: 0 6px 16px rgba(21,35,46,.14); margin-bottom: 14px; }
.rcard__name { font-family: var(--font-head); font-size: 1.12rem; color: var(--ink); line-height: 1.2; }
.rcard__role { color: var(--accent); font-weight: 700; font-size: .85rem; margin-top: 3px; }
.rcard__stars { color: #f5b301; letter-spacing: 2px; font-size: 1rem; margin: 11px 0 12px; text-shadow: 0 1px 2px rgba(245,179,1,.3); }
.rcard blockquote { color: var(--text); font-size: 1rem; line-height: 1.6; }
.rcard__g { position: absolute; top: 18px; right: 18px; width: 20px; height: 20px; opacity: .9; }
.rvc__nav { position: absolute; top: 42%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh); display: grid; place-items: center; z-index: 3; transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.rvc__nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.rvc__nav svg { width: 22px; height: 22px; }
.rvc__prev { left: -10px; }
.rvc__next { right: -10px; }
@media (max-width: 900px) { .rcard { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .rcard { flex-basis: 100%; } .rvc__prev { left: 2px; } .rvc__next { right: 2px; } }

@media (prefers-reduced-motion: reduce) {
  .hero__orbs span, .marquee__track, .vidmain__play span { animation: none !important; }
  .rvc__viewport { scroll-behavior: auto; }
}

/* =====================================================================
   ROUND 3 — stat rings, reach (search+map), affiliations, websites
   coverflow, newsletter, tech-forward textures
   ===================================================================== */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- Animated stat rings ---------- */
.statc { display:flex; flex-direction:column; align-items:center; text-align:center; }
.statc__ring { position:relative; width:clamp(140px,18vw,178px); aspect-ratio:1; margin-bottom:16px; }
.statc__ring svg { width:100%; height:100%; transform:rotate(-90deg); }
.statc__bg { fill:none; stroke:var(--line); stroke-width:8; }
.statc__fg { fill:none; stroke:var(--accent); stroke-width:8; stroke-linecap:round;
  stroke-dasharray:327; stroke-dashoffset:327; transition:stroke-dashoffset 1.5s cubic-bezier(.22,.61,.36,1) .15s; }
.statc__fg--alt { stroke:var(--green); }
.statc.in .statc__fg { stroke-dashoffset:calc(327 - 327 * (var(--fill,88) / 100)); }
.statc__ring b { position:absolute; inset:0; display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:clamp(1.5rem,2.8vw,2.1rem); color:var(--brand); letter-spacing:-.02em; }
.statc__ring b.g { color:var(--green-600); }
.statc p { color:var(--muted); font-size:.98rem; max-width:22ch; }
.js .statc { opacity:0; transform:scale(.7); transition:opacity .5s ease, transform .6s cubic-bezier(.34,1.56,.64,1); }
.js .statc.in { opacity:1; transform:scale(1); }

/* ---------- Reach: search/AI image + SA map ---------- */
.reach { display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(24px,4vw,48px); align-items:center; }
.reach__card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; box-shadow:var(--sh); text-align:center; transition:transform .25s ease, box-shadow .25s ease; }
.reach__card:hover { transform:translateY(-4px); box-shadow:var(--sh-lg); }
.reach__card img { width:100%; border-radius:12px; }
.reach__card--map { background:linear-gradient(180deg,#fff,var(--cream)); }
.reach__card--map img { max-width:340px; margin:0 auto; }
.reach figcaption { margin-top:14px; font-weight:700; color:var(--ink); font-size:.98rem; }
@media (max-width:820px){ .reach { grid-template-columns:1fr; } }

/* ---------- Affiliations (Google / Meta / TikTok) ---------- */
.affil { margin-top:clamp(38px,5vw,58px); text-align:center; position:relative; overflow:hidden;
  background: linear-gradient(135deg, var(--ink), #1d3744); border-radius: var(--r-lg); padding: clamp(28px,4vw,40px); box-shadow: var(--sh); }
.affil::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(460px 190px at 85% -30%, rgba(95,179,204,.22), transparent 70%); }
.affil__label { display:inline-block; position:relative; font-family:var(--font-mono); font-size:.74rem; letter-spacing:.14em; text-transform:uppercase; color:var(--cyan); margin-bottom:18px; }
.affil__row { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; position:relative; }
.affil__badge { display:inline-flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line); border-radius:var(--pill); padding:12px 22px; box-shadow:var(--sh-sm); transition:transform .2s ease, box-shadow .2s ease; }
.affil__badge:hover { transform:translateY(-3px); box-shadow:var(--sh); }
.affil__ic { width:26px; height:26px; flex:none; }
.affil__ic--meta { color:#0081FB; }
.affil__ic--tiktok { color:#0b0b0b; }
.affil__badge span { display:flex; flex-direction:column; line-height:1.15; text-align:left; }
.affil__badge b { font-family:var(--font-head); font-size:1rem; color:var(--ink); }
.affil__badge small { color:var(--muted); font-size:.78rem; }

/* ---------- Websites coverflow (centre biggest) ---------- */
.wcar { position:relative; }
.wcar__viewport { overflow:hidden; padding:18px 0 56px; }
.wcar__track { display:flex; gap:clamp(20px,3vw,40px); align-items:center; transition:transform .55s cubic-bezier(.22,.61,.36,1); will-change:transform; }
.wsite { flex:0 0 clamp(280px,56vw,640px); transform:scale(.8); opacity:.42; filter:saturate(.85); transition:transform .55s ease, opacity .55s ease, filter .55s ease; pointer-events:none; }
.wsite.is-active { transform:scale(1); opacity:1; filter:none; pointer-events:auto; }
.wcar__nav { position:absolute; top:42%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; background:#fff; border:1px solid var(--line); box-shadow:var(--sh); display:grid; place-items:center; z-index:4; transition:background-color .15s ease, border-color .15s ease, color .15s ease; }
.wcar__nav:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
.wcar__nav svg { width:24px; height:24px; }
.wcar__prev { left:clamp(4px,3vw,40px); }
.wcar__next { right:clamp(4px,3vw,40px); }
.wcar__dots { display:flex; justify-content:center; gap:8px; margin-top:8px; }
.wcar__dots button { width:9px; height:9px; border-radius:50%; background:var(--s300); padding:0; transition:background-color .2s ease, width .2s ease; }
.wcar__dots button.on { background:var(--accent); width:26px; border-radius:5px; }
@media (max-width:640px){ .wsite { flex-basis:86vw; } }

/* ---------- Newsletter (footer) ---------- */
.news { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px; padding:clamp(28px,4vw,42px); margin-bottom:clamp(40px,5vw,56px); background:linear-gradient(135deg,var(--brand-700),var(--brand)); border-radius:var(--r-lg); position:relative; overflow:hidden; }
.news::after { content:""; position:absolute; right:-40px; top:-50px; width:220px; height:220px; border-radius:50%; background:radial-gradient(circle, rgba(75,130,168,.5), transparent 70%); }
.news__txt { position:relative; z-index:1; max-width:46ch; }
.news__txt h3, .news__txt p.news__title { color:#fff; font-family:var(--font-head); font-size:clamp(1.3rem,2.4vw,1.7rem); font-weight:600; line-height:1.14; letter-spacing:-0.04em; margin:0; }
.news__txt p { color:rgba(255,255,255,.82); margin-top:6px; font-size:.96rem; }
.news__form { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.news__input { flex:1; min-width:240px; padding:15px 18px; border-radius:var(--pill); border:1px solid rgba(255,255,255,.3); background:rgba(255,255,255,.12); color:#fff; font:inherit; font-size:1rem; }
.news__input::placeholder { color:rgba(255,255,255,.6); }
.news__input:focus { outline:none; border-color:#fff; background:rgba(255,255,255,.2); }
.news__msg { width:100%; margin:0; color:var(--lilac); font-size:.9rem; font-weight:600; }
@media (max-width:760px){ .news { flex-direction:column; align-items:flex-start; } .news__form { width:100%; } .news__input { width:100%; } }

/* ---------- Tech-forward: subtle grid texture on dark sections ---------- */
.care__overlay { background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M46 0H0V46' fill='none' stroke='white' stroke-opacity='.06' stroke-width='1'/%3E%3C/svg%3E"),
  linear-gradient(110deg, rgba(11,30,42,.94) 16%, rgba(16,42,58,.80) 52%, rgba(27,107,116,.52) 100%); }
.final::after { content:""; position:absolute; inset:0; z-index:-1; pointer-events:none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M46 0H0V46' fill='none' stroke='white' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E"); }

@media (prefers-reduced-motion: reduce) {
  .statc, .js .statc { transition:none !important; opacity:1 !important; transform:none !important; }
  .statc__fg { transition:none !important; }
  .wcar__track { transition:none !important; }
}

/* ---------- Round 4: centred reach image + standalone map ---------- */
.reach--single { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
.namap__wrap { display: flex; align-items: center; justify-content: center; }
.namap { width: 100%; max-width: 460px; margin-inline: auto; display: block; }

/* =====================================================================
   PORTED FROM avily build — dark "Growth in 3 steps", case study,
   pricing block (palette-matched to rebuild-za tokens)
   ===================================================================== */
.section--ink { background: var(--ink); color: #aebcc2; position: relative; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .head p { color: #aebcc2; }
/* deep-teal dark variant (brand colour + logo-cyan glow) — overrides ink bg, keeps ink text/step styling */
.section--teal { background: linear-gradient(160deg, var(--brand-700) 0%, var(--brand) 82%); color: #cfe6ea; isolation: isolate; overflow: hidden; position: relative; }
/* subtle grid texture on the pricing gradient */
#pricing::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 42px), repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 42px); }
.section--teal::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(58% 70% at 86% -12%, rgba(95,179,204,.40), transparent 60%),
              radial-gradient(52% 64% at 6% 112%, rgba(95,179,204,.20), transparent 60%); }
.section--teal .head p { color: #d4e8ec; }
/* (flat top — wave divider removed per request) */
/* dark numbered tiles + dashed connector */
.section--ink .step__n { background: linear-gradient(150deg, var(--cyan), var(--brand)); border: 3px solid rgba(255,255,255,.22); color: #fff; box-shadow: 0 10px 24px rgba(8,20,26,.34); }
.section--ink .step h3 { color: #fff; }
.section--ink .step p { color: #9fb0b6; }
.section--ink .proc { position: relative; }
@media (min-width: 1025px) {
  .section--ink .proc::before { content: ""; position: absolute; top: 28px; left: 10%; right: 10%; height: 3px; z-index: 0; border-radius: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan) 14%, var(--cyan) 86%, transparent); opacity: .55; }
  .section--ink .step { position: relative; z-index: 1; }
}

/* ---------- Case study: "Real practices, real growth" ---------- */
.cstudy { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 4vw, 56px); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--sh); }
.cstudy__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.cstudy__media img { width: 100%; display: block; }
.cstudy__loc { font-family: var(--font-mono); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.cstudy__body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 18px; }
.cstudy__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 22px; }
.cstudy__m b { display: block; font-size: 2rem; font-weight: 800; color: var(--brand); line-height: 1; letter-spacing: -.02em; }
.cstudy__m.alt b { color: var(--accent); }
.cstudy__m span { color: var(--muted); font-size: .86rem; font-weight: 600; }
.cstudy blockquote { border-left: 3px solid var(--accent); padding-left: 16px; color: var(--text); font-style: italic; margin-bottom: 20px; }
.cstudy__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .cstudy { grid-template-columns: 1fr; } }

/* ---------- Pricing block ---------- */
.price { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px); color: var(--text); position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
.price::after { content: ""; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,179,204,.16), transparent 70%); }
.price__l { position: relative; z-index: 1; }
.price h2 { color: var(--ink); margin-bottom: 12px; }
.price p { color: var(--muted); max-width: 48ch; }
.price__pts { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; }
.price__pts span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--text); }
.price__pts svg { width: 18px; height: 18px; color: var(--accent); }
.price__r { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 768px) { .price { grid-template-columns: 1fr; } }

/* ---------- Hero vertical rotating carousel (middle enlarged) ---------- */
.hvert { position: relative; height: 472px; overflow: hidden; background: none;
  -webkit-mask: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%); }
.hvert__track { position: absolute; left: 20px; right: 20px; top: 0; will-change: transform; }
.hvitem { height: 74px; margin-bottom: 14px; display: flex; align-items: center; gap: 14px; padding: 0 22px;
  border-radius: 16px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(10px) saturate(150%); backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 0 10px 24px rgba(8,20,26,.22);
  color: #fff; font-weight: 600; font-size: 1.04rem; line-height: 1.25;
  transform: scale(.9); opacity: .85; transform-origin: center;
  transition: transform .55s var(--ease, cubic-bezier(.22,.61,.36,1)), opacity .55s ease, background-color .45s ease, border-color .45s ease, box-shadow .45s ease; }
.hvitem svg { width: 24px; height: 24px; flex: none; color: var(--cyan); transition: color .45s ease; }
.hvitem.is-mid { transform: scale(1.07); opacity: 1; background: var(--accent); border-color: var(--accent-500);
  box-shadow: 0 16px 38px rgba(75,130,168,.55); }
.hvitem.is-mid svg { color: #fff; }
@media (prefers-reduced-motion: reduce) { .hvert__track { transition: none !important; } }

/* =====================================================================
   PORTED FROM avily — beliefs, metrics, growth ecosystem, 2-col why
   (square rounded images, subtle coral, palette-matched)
   ===================================================================== */

/* belief-shifting alternating splits (square rounded images) */
.beliefs { display: flex; flex-direction: column; gap: clamp(32px, 5vw, 60px); }
.belief { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.belief--rev .belief__media { order: 2; }
.belief__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.belief__media img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.belief__body h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.14; margin-bottom: 14px; }
.belief__body p { color: var(--muted); font-size: 1.05rem; max-width: 46ch; }
.belief__cta { margin-top: 22px; }
@media (max-width: 860px) {
  /* Stacked rows breathe: 28px between a visual and its copy read as squashed. */
  .belief { grid-template-columns: 1fr; gap: 40px; }
  .belief--rev .belief__media { order: 0; }
}

/* metrics (flat numbers on the dark band) */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.metric { text-align: center; position: relative; }
.metric:not(:last-child)::after { content: ""; position: absolute; right: calc(-1 * clamp(10px, 1.5vw, 20px)); top: 14%; bottom: 14%; width: 1px; background: rgba(255,255,255,.12); }
.metric b { display: block; font-size: clamp(2.4rem, 4.6vw, 3.5rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.metric b .u { color: var(--coral); }
.metric:nth-child(2) b { color: var(--cyan-200); }
.metric p { margin-top: 10px; color: #9fb0b6; font-weight: 600; font-size: .96rem; }
@media (max-width: 760px) { .metrics { grid-template-columns: 1fr 1fr; gap: 32px 18px; } .metric:nth-child(2)::after { display: none; } }

/* growth ecosystem — connected growth path */
.eco { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.eco--3 { grid-template-columns: repeat(3, 1fr); }
.eco--3 .eco__path { grid-template-columns: repeat(3, 1fr); }
.eco--3 .eco__path::before { left: 16.67%; right: 16.67%; }
/* the connecting spine with numbered stage nodes */
.eco__path { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; margin-bottom: 22px; }
.eco__path::before { content: ""; position: absolute; top: 25px; left: 12.5%; right: 12.5%; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan) 34%, var(--coral) 67%, var(--green)); }
.eco__node { justify-self: center; position: relative; z-index: 1; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 800; font-size: 1.06rem; color: #fff; box-shadow: 0 8px 20px rgba(20,34,43,.28); border: 3px solid var(--cyan-50); }
.eco__node::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 2px; height: 22px; background: linear-gradient(var(--s300), transparent); }
.eco__node.n1 { background: linear-gradient(150deg, var(--brand), var(--brand-700)); }
.eco__node.n2 { background: linear-gradient(150deg, var(--cyan), var(--brand)); }
.eco__node.n3 { background: linear-gradient(150deg, var(--coral), var(--coral-600)); }
.eco__node.n4 { background: linear-gradient(150deg, var(--green), var(--brand)); }

.ecard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: var(--sh-sm); overflow: hidden; transition: transform .28s var(--ease, ease), box-shadow .28s ease, border-color .28s ease; }
.ecard::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; }
.ecard::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.ecard.c1::before { background: linear-gradient(90deg, var(--brand), var(--brand-700)); }
.ecard.c2::before { background: linear-gradient(90deg, var(--cyan), var(--brand)); }
.ecard.c3::before { background: linear-gradient(90deg, var(--coral), var(--coral-600)); }
.ecard.c4::before { background: linear-gradient(90deg, var(--green), var(--brand)); }
.ecard.c1::after { background: linear-gradient(0deg, rgba(30,110,120,.07), transparent); }
.ecard.c2::after { background: linear-gradient(0deg, rgba(95,179,204,.09), transparent); }
.ecard.c3::after { background: linear-gradient(0deg, rgba(232,137,107,.08), transparent); }
.ecard.c4::after { background: linear-gradient(0deg, rgba(46,151,166,.08), transparent); }
.ecard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.ecard:hover::after { opacity: 1; }
.ecard__ic { width: 58px; height: 58px; border-radius: 18px 18px 20px 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; box-shadow: var(--sh); }
.ecard.c1 .ecard__ic { background: linear-gradient(150deg, var(--brand), var(--brand-700)); }
.ecard.c2 .ecard__ic { background: linear-gradient(150deg, var(--cyan), var(--brand)); }
.ecard.c3 .ecard__ic { background: linear-gradient(150deg, var(--coral), var(--coral-600)); }
.ecard.c4 .ecard__ic { background: linear-gradient(150deg, var(--green), var(--brand)); }
.ecard__ic svg { width: 27px; height: 27px; }
.ecard__stage { display: block; font-family: var(--font-mono); font-weight: 800; font-size: 1.18rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 2px 0 10px; }
.ecard.c2 .ecard__stage { color: var(--cyan); }
.ecard.c3 .ecard__stage { color: var(--coral-600); }
.ecard.c4 .ecard__stage { color: var(--green); }
.ecard__desc { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0 0 20px; }
/* service chips — heroed */
.ecard__tags { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: auto; }
.ecard.c3 .ecard__tags { margin-top: 0; }  /* Retain has 2 tags: keep the gap below them, not above */
.etag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--pill); background: var(--cyan-50); border: 1px solid var(--line); font-weight: 600; font-size: .85rem; color: var(--ink); text-decoration: none; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.etag svg { width: 13px; height: 13px; opacity: .55; transition: transform .18s ease, opacity .18s ease; }
a.etag:hover { transform: translateY(-2px); color: #fff; border-color: transparent; }
a.etag:hover svg { opacity: 1; transform: translateX(2px); }
.ecard.c1 a.etag:hover { background: var(--brand); }
.ecard.c2 a.etag:hover { background: var(--cyan); color: var(--ink); }
.ecard.c3 a.etag:hover { background: var(--coral); }
.ecard.c4 a.etag:hover { background: var(--green); }
.etag--static { color: var(--muted); }
.etag--static svg { display: none; }
/* GrowPrac branded bar */
.eco__bar { margin-top: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ink), #1d3744); color: #cdd8dd; border-radius: var(--r-lg); padding: 24px 30px; box-shadow: var(--sh); position: relative; overflow: hidden; }
.eco__bar::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 160px at 88% -20%, rgba(95,179,204,.22), transparent 70%); pointer-events: none; }
.eco__bar-txt { display: flex; align-items: center; gap: 13px; font-size: 1rem; line-height: 1.5; position: relative; }
.eco__bar-txt svg { width: 24px; height: 24px; color: var(--cyan); flex: none; }
.eco__bar strong { color: #fff; }
.eco__bar .btn { flex: none; position: relative; }
@media (max-width: 980px) { .eco { grid-template-columns: 1fr 1fr; } .eco__path { display: none; } }
@media (max-width: 540px) { .eco { grid-template-columns: 1fr; } .eco__bar { flex-direction: column; align-items: flex-start; } }

/* 2-col differentiator list (Why) */
.flist--2 { grid-template-columns: 1fr 1fr; gap: 18px 26px; }
.flist--2 .ic { width: 42px; height: 42px; }
.flist--2 b { font-size: 1rem; }
.flist--2 p { font-size: .9rem; }
@media (max-width: 640px) { .flist--2 { grid-template-columns: 1fr; } }

/* =====================================================================
   ROUND 3 — coral CTA, 5-step process, framed images, laptop + GMB mocks,
   metrics graph line
   ===================================================================== */
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 12px 28px rgba(232,137,107,.4); }
.btn--coral:hover { background: var(--coral-600); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,137,107,.5); }

/* 5-step process */
.proc--5 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.proc--5 .step { text-align: center; }
.proc--5 .step__n { margin-left: auto; margin-right: auto; }
@media (max-width: 1024px) { .proc--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proc--5 { grid-template-columns: 1fr; } }
.proc--3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proc--4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proc--3 .step, .proc--4 .step { text-align: center; }
.proc--3 .step__n, .proc--4 .step__n { margin-left: auto; margin-right: auto; }
@media (max-width: 900px) { .proc--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .proc--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .proc--4 { grid-template-columns: 1fr; } }

/* metrics background graph line */
.statwrap { position: relative; }
.statgraph { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: .55; pointer-events: none; }
.statwrap .metrics { position: relative; z-index: 1; }

/* framed images — white border + stronger 3D shadow */
.belief__media:not(.belief__media--device):not(.belief__media--mock),
.split__media > img,
.cstudy__media {
  border: 7px solid #fff;
  box-shadow: 0 32px 64px rgba(8,20,26,.22), 0 10px 26px rgba(8,20,26,.14);
}
.belief__media--device, .belief__media--mock { overflow: visible; border-radius: 0; box-shadow: none; background: none; }

/* laptop mockup (belief: website on a laptop + phone) */
.laptop { position: relative; width: 100%; max-width: 560px; margin-inline: auto; }
.laptop__screen { background: #1b2733; border-radius: 16px 16px 4px 4px; padding: 12px 12px 0; box-shadow: 0 30px 56px rgba(8,20,26,.34); }
.laptop__screen img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; border-radius: 6px 6px 0 0; }
.laptop__base { height: 18px; margin: 0 -4%; background: linear-gradient(180deg, #cfd8dd, #aab6bf); border-radius: 0 0 14px 14px; position: relative; box-shadow: 0 16px 20px rgba(8,20,26,.18); }
.laptop__base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 8px; background: #8b98a1; border-radius: 0 0 8px 8px; }
.laptop__phone { position: absolute; right: -4%; bottom: -16%; width: 31%; max-width: 158px; background: #1b2733; border-radius: 22px; padding: 6px; box-shadow: 0 22px 42px rgba(8,20,26,.42); border: 1px solid rgba(255,255,255,.12); }
.laptop__phone img { display: block; width: 100%; aspect-ratio: 9 / 19; object-fit: contain; object-position: top center; border-radius: 16px; background: #fff; }
@media (max-width: 768px) {
  /* The phone overhangs the laptop via absolute positioning, which reserves no
     layout space — on mobile the next block crowded straight into it, and the
     right-side phone poked past the viewport. Keep it inside and reserve the
     overhang so text below breathes. */
  .laptop__phone { right: 2%; }
  .laptop { margin-bottom: 34px; }
}

/* Google Business Profile mock (belief: be found) */
.gmb { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px rgba(8,20,26,.2); max-width: 420px; margin-inline: auto; }
.gmb__cover { height: 128px; position: relative; background: linear-gradient(135deg, #e7eef0, #d6e6ea); overflow: hidden; }
.gmb__cover::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, rgba(20,34,43,.05) 0 1px, transparent 1px 28px), repeating-linear-gradient(90deg, rgba(20,34,43,.05) 0 1px, transparent 1px 28px); }
.gmb__cover::after { content: ""; position: absolute; left: -10%; top: 30%; width: 70%; height: 10px; background: rgba(75,130,168,.4); border-radius: 6px; transform: rotate(-8deg); box-shadow: 0 30px 0 -2px rgba(46,151,166,.35); }
.gmb__pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); width: 26px; height: 26px; color: var(--coral); filter: drop-shadow(0 4px 6px rgba(8,20,26,.3)); }
.gmb__body { padding: 18px 20px 20px; }
.gmb__name { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--ink); }
.gmb__rate { display: flex; align-items: center; gap: 7px; margin: 5px 0 3px; flex-wrap: wrap; }
.gmb__rate b { color: var(--ink); font-weight: 800; }
.gmb__stars { color: #f5b301; letter-spacing: 1px; }
.gmb__cnt { color: var(--muted); font-size: .82rem; }
.gmb__meta, .gmb__addr { color: var(--muted); font-size: .88rem; margin-top: 5px; display: flex; align-items: center; gap: 6px; }
.gmb__addr svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.gmb__open { color: #1a9d5a; font-weight: 700; }
.gmb__btns { display: flex; gap: 8px; margin-top: 15px; flex-wrap: wrap; }
.gmb__btn { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem; color: var(--accent); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; }
.gmb__btn svg { width: 14px; height: 14px; }
.gmb__btn--p { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Animated map pins ---------- */
.mapfig { position: relative; width: 100%; max-width: 460px; margin-inline: auto; }
.mapfig .namap { width: 100%; max-width: 100%; margin: 0; }
.mappin { position: absolute; width: 11px; height: 11px; border-radius: 50%; color: var(--accent); background: currentColor; transform: translate(-50%,-50%); box-shadow: 0 1px 5px rgba(8,20,26,.45); z-index: 1; }
.mappin--c { color: var(--coral); }
.mappin--t { color: var(--green); }
.mappin::after { content: ""; position: absolute; left: 50%; top: 50%; width: 100%; height: 100%; border-radius: 50%; border: 2px solid currentColor; transform: translate(-50%,-50%) scale(1); opacity: .7; animation: mapping 2.6s ease-out infinite; animation-delay: var(--d, 0s); }
@keyframes mapping { 0% { transform: translate(-50%,-50%) scale(1); opacity: .7; } 100% { transform: translate(-50%,-50%) scale(4.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .mappin::after { animation: none; opacity: .35; } }

/* =====================================================================
   ROUND 5 — light-blue CTA, mega/simple nav, coloured sections, CTA band
   ===================================================================== */
.btn--sky { background: var(--cyan); color: var(--ink); box-shadow: 0 12px 28px rgba(95,179,204,.42); }
.btn--sky:hover { background: #7cc6d8; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(95,179,204,.52); }
.btn--sky svg { color: var(--ink); }

/* mega + simple nav dropdowns */
.dd--mega { left: 0; transform: translateX(0) translateY(8px); width: min(760px, 94vw); display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 8px; padding: 16px; }
.has-dd:hover .dd--mega, .has-dd:focus-within .dd--mega, .has-dd.open .dd--mega { transform: translateX(0) translateY(0); }
.dd--mega .dd__col h4 { font-family: var(--font-mono); font-weight: 700; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); padding: 8px 12px 6px; margin: 0; }
.dd--mega a { flex-direction: column; align-items: flex-start; gap: 2px; }
.dd--simple { min-width: 304px; }
.dd--simple .di { width: 38px; height: 38px; border-radius: 11px; background: var(--mist); color: var(--brand); display: grid; place-items: center; flex: none; }
.dd--simple .di svg { width: 19px; height: 19px; }
.has-dd.open .dd { opacity: 1; visibility: visible; }
.has-dd.open .dd:not(.dd--mega):not(.dd--grid) { transform: translateX(-50%) translateY(0); }
.has-dd.open .dd--mega { transform: translateX(0) translateY(0); }

/* Services icon-grid dropdown (2-col, icon tiles + descriptions) */
.dd--grid { left: 0; transform: translateX(0) translateY(8px); width: min(600px, 94vw); display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 12px; }
.has-dd:hover .dd--grid, .has-dd:focus-within .dd--grid, .has-dd.open .dd--grid { transform: translateX(0) translateY(0); }
.dd--grid a { gap: 12px; padding: 10px 12px; border-radius: 11px; align-items: center; }
.dd--grid .di { width: 38px; height: 38px; border-radius: 11px; background: var(--cyan-50); color: var(--brand); display: grid; place-items: center; flex: none; transition: background-color .16s ease, color .16s ease, transform .16s ease; }
.dd--grid .di svg { width: 19px; height: 19px; }
.dd--grid a:hover .di { background: var(--brand); color: #fff; transform: scale(1.07) rotate(-3deg); }
.dd--grid b { display: block; font-size: .93rem; color: var(--ink); line-height: 1.2; }
.dd--grid small { color: var(--muted); font-size: .79rem; }
@media (max-width: 560px) { .dd--grid { grid-template-columns: 1fr; width: min(320px, 94vw); } }

/* light-blue tinted section */
.section--sky { background: linear-gradient(180deg, #E6F4F7 0%, #D7ECF1 100%); position: relative; isolation: isolate; }
.section--sky::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(95,179,204,.18) 1.1px, transparent 1.5px); background-size: 24px 24px; opacity: .65;
  -webkit-mask: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
          mask: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%); }

/* CTA band (colour + conversion) */
.ctaband { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff; border-radius: var(--r-lg); padding: clamp(30px, 4vw, 50px); position: relative; overflow: hidden; box-shadow: var(--sh-lg); }
.ctaband::after { content: ""; position: absolute; right: -50px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(95,179,204,.45), transparent 70%); }
.ctaband__t { position: relative; z-index: 1; max-width: 620px; }
.ctaband h2 { color: #fff; margin: 0 0 6px; }
.ctaband p { color: #cfe0e3; margin: 0; }
.ctaband .btn { position: relative; z-index: 1; }
.ctaband__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 640px) { .ctaband { flex-direction: column; align-items: flex-start; } }

/* ── Breadcrumbs (added: on-page SEO spec §5.4) ── */
.crumbs { padding: 14px 0; font-size: .88rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px; }
.crumbs li { color: var(--muted); }
.crumbs li + li::before { content: "›"; margin: 0 6px 0 2px; color: var(--muted); }
/* Darker than --accent for AA contrast on white (5.5:1); padded hit area
   grows the tap target past 24px without shifting layout. */
.crumbs a { color: #3C6E90; text-decoration: none; padding-block: 8px; margin-block: -8px; }
.crumbs a:hover { text-decoration: underline; }

/* ── Related services module (added: on-page SEO spec §6.2.6) ── */
.relgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.relcard { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; text-decoration: none; box-shadow: var(--sh-sm); transition: transform .15s ease, box-shadow .15s ease; }
.relcard:hover { transform: translateY(-2px); }
.relcard b { display: block; color: var(--heading); margin-bottom: 4px; }
.relcard span { color: var(--muted); font-size: .92rem; }


/* ---------- Quick contact modal (opened by Contact Us Today / Free Consultation CTAs) ---------- */
.qmodal { position: fixed; inset: 0; z-index: 120; }
.qmodal[hidden] { display: none; }
.qmodal__scrim { position: absolute; inset: 0; background: rgba(16,32,37,.58); }
.qmodal__panel { position: relative; max-width: 480px; margin: 7vh auto 0; background: #fff;
  border-radius: var(--r-lg); padding: 28px 26px 26px; box-shadow: var(--sh-lg);
  max-height: 86vh; overflow: auto; width: calc(100% - 32px); }
.qmodal__x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: var(--r-sm); border: 1px solid var(--line); display: grid; place-items: center; background: #fff; }
.qmodal__x svg { width: 20px; height: 20px; color: var(--ink); }
.qmodal__title { font-size: 1.45rem; color: var(--ink); margin: 0 44px 6px 0; }
.qmodal__sub { color: var(--muted); font-size: .93rem; margin: 0 0 18px; }
.qfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.qfield label { font-weight: 700; font-size: .86rem; color: var(--ink); }
.qfield input, .qfield textarea { font: inherit; font-size: .98rem; width: 100%; min-width: 0;
  padding: 12px 14px; border: 1px solid var(--s300); border-radius: var(--r-sm);
  background: var(--s50); color: var(--ink); }
.qfield input:focus, .qfield textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.qfield textarea { resize: vertical; min-height: 96px; }

/* ---------- Floating WhatsApp button (mobile only, bottom-right) ---------- */
.wa-float { display: none; }
@media (max-width: 768px) {
  .wa-float { display: grid; place-items: center; position: fixed; right: 16px; bottom: 16px;
    z-index: 45; width: 54px; height: 54px; border-radius: 50%; background: #25D366;
    box-shadow: 0 6px 18px rgba(20,34,43,.28); -webkit-tap-highlight-color: transparent; }
  .wa-float svg { width: 30px; height: 30px; color: #fff; }
  /* Clear the 76px sticky CTA bar on pages that render it. */
  .wa-float--above { bottom: 92px; }
}


/* ---------- Lead form status + honeypot ---------- */
.hp-field { position: absolute !important; left: -5000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 12px 0 0; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.form-status.is-ok { color: var(--accent-ink, #0a5a61); }
.form-status.is-err { color: #b42318; }
/* Newsletter sits on the dark brand gradient — needs light status colors. */
.news .form-status.is-ok { color: #c8f5df; }
.news .form-status.is-err { color: #ffd0c9; }
