  :root {
    /* ===== OFFICIAL BRAND PALETTE — blue leads, navy for depth, green is the spark ===== */
    --blue: #1788fd;          /* primary brand blue (dominant) */
    --blue-bright: #3a9bff;   /* lighter blue for gradient highlights */
    --blue-deep: #0d6ce0;     /* deeper interactive blue */
    --blue-text: #0a5cc4;     /* AA-safe blue for small text / links on white (4.9:1) */
    --navy: #0a3a6c;          /* brand navy — deep text, dark sections, depth */
    --navy-900: #062544;      /* darkest navy for flagship dark section */
    --navy-soft: #3a5577;     /* softened navy for secondary text */
    --ink: #14253b;           /* near-black ink for body headings */
    --green: #32d98e;         /* ACCENT ONLY — sparks, up indicators, single gradient stop */
    --green-deep: #0c9b5f;    /* AA-safe accent green for large numbers / icons (3.6:1, passes AA-large) */
    --green-text: #0c7a4c;    /* AA-safe green for small labels (5.4:1 on white) */
    --muted: #5d6f86;         /* muted captions */
    --bg: #ffffff;
    --bg-alt: #f4f8ff;        /* faint blue-tinted alt sections */
    --bg-tint: #e9f2ff;       /* blue tint for chips/icon wells */
    --bg-mint: #e7faf1;       /* faint green tint (accent wells only) */
    --border: #dde7f3;        /* blue-gray border */
    --border-soft: #eaf1fa;
    --star: #f5a623;
    --shadow-sm: 0 1px 2px rgba(10,58,108,.06), 0 1px 3px rgba(10,58,108,.05);
    --shadow-md: 0 6px 18px rgba(10,58,108,.09), 0 2px 6px rgba(10,58,108,.06);
    --shadow-lg: 0 22px 56px rgba(10,58,108,.14), 0 8px 22px rgba(10,58,108,.08);
    --shadow-blue: 0 12px 30px rgba(23,136,253,.30);
    /* Blue-led gradient (navy → blue → a single green spark at the very end) */
    --grad: linear-gradient(120deg, var(--navy) 0%, var(--blue) 58%, var(--blue-bright) 100%);
    --grad-spark: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 55%, var(--green) 130%);
    --grad-soft: linear-gradient(120deg, #1788fd14, #0a3a6c10);
    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1200px;
    --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.16; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.018em; }
  h2 { font-size: clamp(1.8rem, 4.2vw, 2.7rem); }
  h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
  p { margin: 0 0 1rem; }
  a { color: var(--blue-text); text-decoration: none; }
  a:hover { text-decoration: underline; }
  /* In-paragraph links must be distinguishable without relying on color (WCAG 1.4.1) */
  p a, .form-foot a, .footer-bottom a, .about-card a { text-decoration: underline; text-underline-offset: 2px; }

  .grad-text {
    background: var(--grad-spark); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--blue);
  }

  .skip-link {
    position: absolute; left: -999px; top: 0; z-index: 999;
    background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
  }
  .skip-link:focus { left: 0; }

  :focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

  .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .section-head { max-width: 760px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head.center .lead { margin-left: auto; margin-right: auto; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-head); font-weight: 600; font-size: .98rem;
    padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
    text-decoration: none; line-height: 1; white-space: nowrap;
  }
  .btn:hover { text-decoration: none; transform: translateY(-2px); }
  .btn-primary { background: linear-gradient(120deg, var(--blue-deep), var(--blue) 70%, var(--blue-bright)); color: #fff; box-shadow: var(--shadow-blue); }
  .btn-primary:hover { box-shadow: 0 16px 36px rgba(23,136,253,.40); }
  .btn-ghost { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-sm); }
  .btn-ghost:hover { border-color: var(--blue); color: var(--blue-text); }
  .btn-light { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.45); }
  .btn-light:hover { background: rgba(255,255,255,.26); }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600;
    font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--blue-text); margin-bottom: .9rem;
  }
  .eyebrow::before {
    content: ""; width: 22px; height: 2px; border-radius: 2px;
    background: var(--grad-spark); flex: none;
  }
  .section-head.center .eyebrow { justify-content: center; }
  .lead { font-size: 1.12rem; color: var(--navy-soft); max-width: 62ch; }

  section { padding: 86px 0; }
  .section-alt { background: var(--bg-alt); }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-soft);
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
  .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
  .brand:hover { text-decoration: none; }
  .brand-logo { height: 34px; width: auto; display: block; flex: none; }

  .nav { display: flex; align-items: center; gap: 4px; }
  .nav a.nav-link {
    font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--navy-soft);
    padding: 8px 12px; border-radius: 9px; transition: color .15s, background .15s;
  }
  .nav a.nav-link:hover { color: var(--navy); background: var(--bg-tint); text-decoration: none; }
  .nav .btn { margin-left: 8px; padding: 10px 18px; font-size: .9rem; }
  .nav-toggle { display: none; }

  /* ---------- Premium trust badges (credential seals) ---------- */
  .seals { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; padding: 0; list-style: none; }
  .seal {
    display: inline-flex; align-items: center; gap: 11px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 10px 16px 10px 12px; box-shadow: var(--shadow-md);
    position: relative;
  }
  .seal::after {
    content: ""; position: absolute; inset: 0; border-radius: 14px; pointer-events: none;
    border: 1px solid rgba(23,136,253,.16);
  }
  .seal-ico {
    width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
  }
  .seal-ico svg { width: 20px; height: 20px; }
  .seal-txt { display: flex; flex-direction: column; line-height: 1.15; }
  .seal-txt b { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--navy); letter-spacing: -.01em; }
  .seal-txt span { font-size: .72rem; color: var(--muted); font-weight: 500; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; overflow: hidden;
    background:
      radial-gradient(1100px 520px at 88% -10%, rgba(23,136,253,.16), transparent 62%),
      radial-gradient(820px 420px at 2% 6%, rgba(10,58,108,.08), transparent 58%),
      var(--bg);
    padding: 84px 0 78px;
  }
  .hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .5em; }
  .hero-sub { font-size: 1.16rem; color: var(--navy-soft); max-width: 56ch; margin-bottom: 1.7rem; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1rem; }
  .micro-trust { font-size: .9rem; color: var(--muted); margin-bottom: 1.6rem; }
  .hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
  .hero-rating .stars { color: var(--star); font-size: 1.05rem; letter-spacing: 1px; }
  .hero-rating .txt { font-size: .92rem; color: var(--navy-soft); font-weight: 500; }
  .hero-rating .txt b { color: var(--navy); font-family: var(--font-head); }

  /* Hero visual panel (right column) */
  .hero-panel {
    position: relative; border-radius: 24px; padding: 30px 30px 26px;
    color: #eaf3ff; overflow: hidden;
    background:
      radial-gradient(560px 280px at 100% 0%, rgba(23,136,253,.40), transparent 60%),
      radial-gradient(420px 240px at 0% 100%, rgba(50,217,142,.18), transparent 60%),
      linear-gradient(155deg, #0a3a6c 0%, #062a52 70%, #06203f 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.08);
  }
  .hero-panel .panel-eyebrow {
    font-family: var(--font-head); font-weight: 600; font-size: .74rem; letter-spacing: .12em;
    text-transform: uppercase; color: #8fc4ff; margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
  }
  .hero-panel .panel-eyebrow::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(50,217,142,.25); }
  .panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .panel-stat {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 16px 16px;
  }
  .panel-stat .pnum { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: #fff; line-height: 1; letter-spacing: -.02em; }
  .panel-stat .pnum .accent { color: var(--green); }
  .panel-stat .plbl { display: block; margin-top: 6px; font-size: .78rem; color: #aecbed; font-weight: 500; }
  .panel-foot {
    display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: #b9d3f0;
  }
  .panel-foot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; box-shadow: 0 0 0 4px rgba(50,217,142,.22); }

  /* ---------- Authority strip ---------- */
  .strip-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
  .strip-head .eyebrow { justify-content: center; }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .stat {
    background: #fff; padding: 26px 22px; text-align: left; border: 1px solid var(--border);
    border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c7ddf7; }
  .stat-ico {
    width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
    background: var(--bg-tint); margin-bottom: 14px;
  }
  .stat-ico svg { width: 21px; height: 21px; }
  .stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.05rem);
    color: var(--navy); letter-spacing: -.02em; }
  .stat .num .accent { color: var(--green-deep); }
  .stat .lbl { display: block; margin-top: 4px; font-size: .85rem; color: var(--muted); font-weight: 500; }
  .strip-foot { text-align: center; color: var(--muted); font-size: .9rem; margin: 2rem 0 0; }

  /* ---------- Real Results ---------- */
  .results-head { max-width: 760px; }
  .results-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 30px; margin-top: 2.8rem; align-items: stretch; }

  /* Headline metric — dark hero card on the left */
  .results-hero {
    position: relative; overflow: hidden; border-radius: 22px; padding: 32px 32px;
    color: #eaf3ff; display: flex; flex-direction: column;
    background:
      radial-gradient(440px 240px at 110% -10%, rgba(23,136,253,.45), transparent 60%),
      radial-gradient(360px 220px at -10% 120%, rgba(50,217,142,.22), transparent 60%),
      linear-gradient(155deg, #0a3a6c 0%, #08305c 60%, #06223f 100%);
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  }
  .results-hero .rh-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #8fc4ff; font-family: var(--font-head); font-weight: 600; margin-bottom: 14px; }
  .results-hero .rh-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(3rem, 7vw, 4.4rem); line-height: .95; color: #fff; letter-spacing: -.03em; }
  .results-hero .rh-num .accent { color: var(--green); }
  .results-hero .rh-sub { font-size: 1.02rem; color: #c3dcf6; margin: 14px 0 0; }
  .results-hero .rh-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
  .results-hero .rh-chips span {
    font-size: .78rem; font-weight: 600; color: #d8e9fc;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px; padding: 5px 12px;
  }

  /* Supporting metric cards with bar motif */
  .results-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rmetric {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 20px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between;
  }
  .rmetric .rm-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--navy); letter-spacing: -.02em; line-height: 1; }
  .rmetric .rm-lbl { font-size: .82rem; color: var(--muted); font-weight: 500; margin-top: 5px; }
  .rmetric .rm-bar { height: 7px; border-radius: 4px; background: var(--bg-tint); margin-top: 14px; overflow: hidden; }
  .rmetric .rm-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }
  .rmetric.is-spark .rm-bar i { background: linear-gradient(90deg, var(--blue), var(--green)); }

  /* Keyword movement chips */
  .results-jumps-head { margin: 2.6rem 0 1.1rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy); }
  .results-jumps {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  }
  .jump {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 16px 18px; box-shadow: var(--shadow-sm);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  }
  .jump:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #c7ddf7; }
  .jump-kw { font-weight: 600; font-size: .96rem; color: var(--navy); flex: 1 1 200px; min-width: 0; }
  .jump-move { display: inline-flex; align-items: center; gap: 8px; flex: none; }
  .jump-pos {
    font-family: var(--font-head); font-weight: 700; font-size: .92rem;
    padding: 6px 12px; border-radius: 9px; line-height: 1; white-space: nowrap;
  }
  .jump-pos.from { background: var(--bg-alt); color: var(--muted); border: 1px solid var(--border); }
  .jump-pos.to { background: linear-gradient(120deg, var(--blue-deep), var(--blue)); color: #fff; box-shadow: 0 4px 12px rgba(23,136,253,.28); }
  .jump-delta { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--green-text); white-space: nowrap; }
  .jump-arrow { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-mint); color: var(--green-deep); flex: none; }
  .jump-arrow svg { width: 15px; height: 15px; display: block; }
  .results-note { margin: 2.2rem 0 0; font-size: .85rem; color: var(--muted); max-width: 74ch; }

  /* ---------- Services ---------- */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.8rem; }
  .card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 28px; box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex; flex-direction: column; position: relative; overflow: hidden;
  }
  .card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
    background: var(--grad-spark); opacity: 0; transition: opacity .18s ease;
  }
  .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c7ddf7; }
  .card:hover::before { opacity: 1; }
  .card.is-flagship { border-color: #bcd9ff; background: linear-gradient(180deg, #f4f9ff, #fff 40%); }
  .card.is-flagship::before { opacity: 1; }
  .card-icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--bg-tint); margin-bottom: 18px; flex: none; color: var(--blue);
  }
  .card.is-flagship .card-icon { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
  .card-icon svg { width: 26px; height: 26px; }
  .card h3 { font-size: 1.18rem; margin-bottom: .35em; }
  .card-flag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-text); margin-bottom: 8px; }
  .card-flag .spark { color: var(--green-deep); }
  .price { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .86rem;
    color: var(--blue-text); background: var(--bg-tint); border: 1px solid #cfe2fb; border-radius: 999px;
    padding: 4px 12px; margin-bottom: 12px; }
  .price.scoped { color: var(--muted); background: var(--bg-alt); border-color: var(--border); }
  .card p { color: var(--navy-soft); font-size: .98rem; margin-bottom: 1.1rem; }
  .card .micro-cta { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--blue-text); }
  .services-foot { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 2.4rem; }
  .services-foot a { font-weight: 600; }

  /* ---------- GEO flagship section ---------- */
  .geo {
    position: relative; color: #eaf3ff;
    background:
      radial-gradient(960px 520px at 88% 0%, rgba(23,136,253,.30), transparent 60%),
      radial-gradient(760px 460px at 2% 100%, rgba(50,217,142,.14), transparent 58%),
      linear-gradient(160deg, #0a3a6c 0%, #082c54 55%, #06203f 100%);
  }
  .geo .eyebrow { color: #8fc4ff; }
  .geo .eyebrow::before { background: var(--green); }
  .geo h2 { color: #fff; }
  .geo h2 .grad-text {
    background: linear-gradient(110deg, #5ab0ff, #32d98e 130%); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: #5ab0ff;
  }
  .geo .lead, .geo p { color: #c8ddf6; }
  .geo-thesis {
    border-left: 3px solid var(--green); padding: 4px 0 4px 20px;
    margin: 1.6rem 0 2.6rem; font-size: 1.06rem; color: #dceaf9;
  }
  .geo-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 32px; align-items: start; }
  .geo-inside h3 { color: #fff; margin-bottom: 1.2rem; }
  .geo-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
  .geo-features li {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 16px 18px 16px 52px; position: relative; color: #cfe0f4; font-size: .98rem;
  }
  .geo-features li strong { color: #fff; }
  .geo-features li::before {
    content: ""; position: absolute; left: 16px; top: 18px; width: 22px; height: 22px;
    border-radius: 7px; background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
  }
  .geo-aside { display: grid; gap: 18px; }
  .geo-panel {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 22px 22px;
  }
  .geo-panel h4 { color: #fff; font-size: 1.05rem; margin-bottom: .5em; }
  .geo-panel p { color: #c8ddf6; font-size: .96rem; margin-bottom: 0; }
  .geo-scorecard { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
  .geo-scorecard span {
    font-size: .78rem; font-weight: 600; color: #dceaf9;
    background: rgba(23,136,253,.20); border: 1px solid rgba(90,176,255,.34);
    border-radius: 999px; padding: 5px 11px;
  }
  .geo-ranked { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
  .geo-ranked .pill { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; padding: 8px 18px; border-radius: 12px; }
  .geo-ranked .ranked { background: rgba(255,255,255,.08); color: #a7bfd8; border: 1px solid rgba(255,255,255,.16); }
  .geo-ranked .arrow { color: var(--green); font-size: 1.3rem; font-weight: 700; }
  .geo-ranked .cited { background: linear-gradient(120deg, var(--blue), var(--green) 150%); color: #06203f; }
  .geo-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.8rem; }

  /* ---------- Why us ---------- */
  .why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
  .pull-quote {
    font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.85rem);
    line-height: 1.32; color: #fff; margin: 0;
    padding: 40px 38px; border-radius: var(--radius); position: relative; overflow: hidden;
    background:
      radial-gradient(420px 240px at 100% 0%, rgba(50,217,142,.20), transparent 60%),
      linear-gradient(155deg, #0a3a6c, #082c54 70%, #06223f);
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08);
  }
  .pull-quote::before { content: "“"; font-family: var(--font-head); font-size: 4rem; color: var(--green); line-height: 0; position: absolute; top: 42px; left: 22px; opacity: .5; }
  .pull-quote { padding-left: 60px; }
  .pull-quote cite { display: block; margin-top: 20px; font-style: normal; font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: #a7c6e8; padding-left: 0; }

  /* ---------- Reviews ---------- */
  .reviews-head { text-align: center; max-width: 760px; margin: 0 auto 1.4rem; }
  .reviews-head .lead { margin: 0 auto 1rem; }
  .reviews-subline { text-align: center; color: var(--muted); font-size: .88rem; margin-top: .2rem; }
  .reviews-grid {
    columns: 3; column-gap: 22px; margin-top: 2.6rem;
  }
  .review {
    break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 22px 22px; margin: 0 0 22px; box-shadow: var(--shadow-sm);
  }
  .review { transition: transform .16s ease, box-shadow .16s ease; }
  .review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .review .stars { color: var(--star); font-size: .95rem; letter-spacing: 1px; margin-bottom: 10px; }
  .review-text { color: var(--navy-soft); font-size: .96rem; margin-bottom: 14px; }
  .review-meta { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--border-soft); padding-top: 13px; }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  }
  .review-id { line-height: 1.3; }
  .review-id .user { font-weight: 600; font-size: .9rem; color: var(--navy); }
  .review-id .loc { font-size: .8rem; color: var(--muted); }

  /* Reviews summary band */
  .rating-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 1.8rem auto .4rem; max-width: 720px; }
  .rating-metric {
    display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--navy-soft); font-weight: 500;
    background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm);
  }
  .rating-metric b { color: var(--navy); font-family: var(--font-head); font-size: 1rem; }

  /* ---------- Team ---------- */
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.8rem; }
  .member {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 28px; box-shadow: var(--shadow-sm); text-align: left;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .member:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c7ddf7; }
  .member-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
  .member-avatar {
    width: 72px; height: 72px; border-radius: 50%; flex: none; object-fit: cover;
    border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue), var(--shadow-md);
    background: var(--bg-tint);
  }
  .member-headtext { min-width: 0; }
  .member h3 { font-size: 1.18rem; margin-bottom: .1em; }
  .member .role { font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--blue-text); margin: 0; }
  .member p { color: var(--navy-soft); font-size: .96rem; margin: 0; }
  .team-foot {
    text-align: center; color: var(--navy-soft); font-size: .96rem; margin-top: 2.4rem;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 18px 24px; max-width: 760px; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-sm);
  }
  .team-foot b { color: var(--navy); }

  /* ---------- About ---------- */
  .about-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: start; }
  .about-grid p { color: var(--navy-soft); }
  .about-milestones { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 0; }
  .about-milestone {
    flex: 1 1 130px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 16px 18px; box-shadow: var(--shadow-sm);
  }
  .about-milestone .am-num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
  .about-milestone .am-num .accent { color: var(--green-deep); }
  .about-milestone .am-lbl { display: block; margin-top: 5px; font-size: .8rem; color: var(--muted); font-weight: 500; }
  .about-card {
    background: linear-gradient(180deg, #f4f9ff, #fff 45%);
    border: 1px solid #cfe2fb; border-radius: var(--radius); padding: 32px 32px; box-shadow: var(--shadow-md);
    position: relative;
  }
  .about-card h3 { display: flex; align-items: center; gap: 10px; }
  .about-card h3 .vcheck { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; flex: none; }
  .about-card h3 .vcheck svg { width: 15px; height: 15px; }
  .eco-links { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 10px; }
  .eco-links li a { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); padding: 13px 16px; border: 1px solid var(--border); border-radius: 12px; background: #fff; transition: border-color .15s, background .15s, transform .15s; }
  .eco-links li a:hover { border-color: var(--blue); background: var(--bg-tint); text-decoration: none; transform: translateX(3px); }
  .eco-links .eco-ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--bg-tint); color: var(--blue); flex: none; }
  .eco-links li a:hover .eco-ico { background: #fff; }
  .eco-links .eco-ico svg { width: 17px; height: 17px; }
  .eco-links .ext { margin-left: auto; color: var(--muted); font-size: .85rem; }
  .about-credlist { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 9px; }
  .about-credlist li { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--navy); }
  .about-credlist .cred-check { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-tint); color: var(--green-deep); font-size: .72rem; font-weight: 800; flex: none; }
  .about-eco-note { margin: 1.3rem 0 0; padding-top: 1.1rem; border-top: 1px solid var(--border); font-size: .86rem; color: var(--muted); }

  /* ---------- FAQ ---------- */
  .faq-wrap { max-width: 1040px; margin: 2.6rem auto 0; }
  .faq-group { margin-bottom: 2.4rem; }
  .faq-group:last-child { margin-bottom: 0; }
  .faq-group-title {
    display: flex; align-items: center; gap: 12px; margin: 0 0 1.1rem;
    font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy);
  }
  .faq-group-title .fg-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--bg-tint); color: var(--blue); flex: none; }
  .faq-group-title .fg-ico svg { width: 18px; height: 18px; }
  .faq-columns { columns: 2; column-gap: 16px; }
  details.faq {
    break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin: 0 0 16px; box-shadow: var(--shadow-sm); overflow: hidden;
  }
  details.faq[open] { border-color: #bcd9ff; box-shadow: var(--shadow-md); }
  details.faq summary {
    cursor: pointer; list-style: none; padding: 18px 50px 18px 20px; position: relative;
    font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy); line-height: 1.4;
  }
  details.faq summary:hover { color: var(--blue-text); }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::after {
    content: "+"; position: absolute; right: 18px; top: 18px;
    font-size: 1.4rem; font-weight: 400; color: var(--blue); line-height: 1.2; transition: transform .2s;
  }
  details.faq[open] summary::after { content: "−"; }
  details.faq .faq-a { padding: 0 20px 20px; color: var(--navy-soft); font-size: .96rem; }

  /* ---------- Contact ---------- */
  .contact {
    position: relative;
    background:
      radial-gradient(900px 460px at 90% 0%, rgba(23,136,253,.10), transparent 60%),
      radial-gradient(700px 400px at 0% 100%, rgba(50,217,142,.07), transparent 58%),
      var(--bg-alt);
  }
  .contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
  .contact-intro .lead { margin-bottom: 1.6rem; }
  .contact-reassure {
    display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--navy-soft); margin-top: 1.4rem;
    background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow-sm);
  }
  .contact-reassure .star { color: var(--star); }
  .form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 30px; box-shadow: var(--shadow-md); }
  .form-card h3 { margin-bottom: .2em; }
  .form-intro { color: var(--muted); font-size: .92rem; margin-bottom: 1.4rem; }
  .field { margin-bottom: 16px; }
  .field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
  .field input, .field select, .field textarea {
    width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--navy);
    padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 11px; background: #fff;
    transition: border-color .15s, box-shadow .15s;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,136,253,.16);
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .form-card .btn-primary { width: 100%; justify-content: center; margin-top: 4px; }
  .form-foot { font-size: .85rem; color: var(--muted); margin: 16px 0 0; text-align: center; }
  .contact-fiverr { margin-top: 14px; }
  .contact-fiverr .btn { width: 100%; justify-content: center; }

  /* ---------- Footer ---------- */
  .site-footer {
    position: relative; overflow: hidden; color: #cfe0f4; padding: 64px 0 32px;
    background:
      radial-gradient(800px 360px at 90% -10%, rgba(23,136,253,.22), transparent 60%),
      radial-gradient(700px 340px at 2% 110%, rgba(50,217,142,.12), transparent 58%),
      linear-gradient(160deg, #082a52 0%, #0a3a6c 60%, #062544 100%);
  }
  .footer-top { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 36px; align-items: start; }
  .footer-brand { max-width: 440px; }
  .footer-logo-circle { width: 72px; height: 72px; display: block; margin-bottom: 16px; }
  .footer-tagline { color: #a9c2de; font-size: .98rem; margin: 0 0 14px; }
  .footer-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .footer-trust-row span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .8rem; font-weight: 600; color: #d4e6fb;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px; padding: 5px 12px;
  }
  .footer-trust-row .star { color: var(--star); }
  .footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin: 4px 0 14px; font-family: var(--font-head); }
  .footer-links { display: grid; gap: 10px; }
  .footer-links a { color: #b9d0ea; font-size: .93rem; }
  .footer-links a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
  .footer-bottom p { margin: 0; font-size: .84rem; color: #9fbada; }
  .footer-bottom a { color: #cfe0f4; }
  .footer-bottom a:hover { color: #fff; }
  .footer-eco { color: #9fbada; }
  .footer-eco a { color: #cfe0f4; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .hero-panel { max-width: 540px; }
    .results-layout { grid-template-columns: 1fr; gap: 22px; }
    .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .geo-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .reviews-grid { columns: 2; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 1.4fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 820px) {
    .nav .nav-link { display: none; }
    .nav .btn { margin-left: 0; }
    .faq-columns { columns: 1; }
  }
  @media (max-width: 768px) {
    section { padding: 62px 0; }
    .hero { padding: 60px 0 52px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .results-metrics { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { columns: 1; }
    .services-grid, .team-grid { grid-template-columns: 1fr; }
    .results-jumps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    body { font-size: 16px; }
    .wrap { padding: 0 16px; }
    .hero-ctas .btn, .geo-ctas .btn { width: 100%; justify-content: center; }
    .seals { width: 100%; }
    .seal { flex: 1 1 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .panel-stats { grid-template-columns: 1fr 1fr; }
    .results-metrics { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .brand-logo { height: 30px; }
    .member-head { flex-direction: row; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .btn:hover, .card:hover { transform: none; }
  }

  /* ---------- Contact form: AJAX result + Option-C reveal ---------- */
  .form-result { font-size: .9rem; color: var(--navy-soft); margin: 12px 0 0; text-align: center; min-height: 1em; }
  #sent { display: none; }
  #sent:target { display: block; }
  .form-sent {
    margin: 14px 0 0; padding: 14px 16px; font-size: .92rem; color: var(--navy);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px;
  }
