  :root {
    --bg: #ffffff;
    --surface: #fafafa;
    --surface-2: #f3f3f3;
    --light: #F6F6F4;
    --accent: #293bff;
    --accent-soft: rgba(41, 59, 255, 0.10);
    --text: #101211;
    --text-dim: #3a455c;
    --text-dark: #101211;
    --border: #e3e3ea;
    --maxw: 1200px;
    --radius: 18px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 100px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 30px var(--accent-soft); }
  .btn-primary:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(34,197,94,0.38); }
  .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--text); }
  .btn-ghost:hover { background: var(--text); color: #fff; transform: translateY(-2px); }
  .btn-dark { background: var(--text-dark); color: #fff; }
  .btn-dark:hover { transform: translateY(-2px); }

  /* NAV */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
  }
  header.scrolled { box-shadow: 0 4px 20px rgba(16, 18, 17, 0.05); }
  .nav { display: flex; align-items: center; padding-top: 24px; padding-bottom: 24px; }
  .logo {
    display: inline-flex; flex-direction: column;
    font-family: 'Inter Tight', sans-serif; font-weight: 900;
    font-size: 20px; line-height: 0.82; letter-spacing: -0.045em;
    text-transform: uppercase; color: var(--text);
  }
  .logo .l2 { color: var(--accent); }
  .logo-tag {
    font-family: 'JetBrains Mono', monospace; font-weight: 400;
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-dim); margin: 10px 0 18px;
  }
  .nav-links { display: flex; align-items: center; gap: 38px; margin-left: 48px; }
  .nav-links a { font-size: 16.5px; font-weight: 500; color: var(--text); transition: color 0.2s; display: inline-flex; align-items: center; gap: 7px; }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
  .menu-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0; }
  .menu-toggle .mt-bar { width: 24px; height: 2px; border-radius: 2px; background: #0f1b3d; transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }
  .menu-toggle .mt-mid { background: #22c55e; }
  .menu-toggle.open .mt-bar:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open .mt-mid { opacity: 0; }
  .menu-toggle.open .mt-bar:last-child { transform: translateY(-7px) rotate(-45deg); }
  .nav-links a.nav-menu-cta { display: none; }

  .nav-cta .btn { border-radius: 12px; padding: 16px 28px; font-size: 16px; }
  .btn-soft { background: #f2f2fa; color: var(--text); }
  .btn-soft:hover { background: #e9e9f4; transform: translateY(-2px); }
  .nav-cta .btn-dark { background: #141b4e; }
  .nav-cta .btn-dark:hover { background: #1d2566; }

  .has-caret .caret { display: inline-flex; transition: transform 0.2s ease; color: var(--text); margin-top: 2px; }
  .has-caret .caret svg { width: 15px; height: 10px; }
  .has-caret:hover .caret { color: var(--accent); }
  .has-caret.open { color: var(--accent); }
  .has-caret.open .caret { transform: rotate(180deg); color: var(--accent); }

  /* MEGA MENU */
  .mega {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 50px rgba(16, 18, 17, 0.08);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .mega.open { opacity: 1; visibility: visible; transform: none; }
  .mega-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px 28px; padding-top: 34px; padding-bottom: 34px;
  }
  .mega-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px; border-radius: 12px; transition: background 0.2s ease;
  }
  .mega-item:hover { background: var(--surface); }
  .mega-icon { color: #35c984; display: inline-flex; flex: none; margin-top: 2px; }
  .hero .hero-actions { margin-top: 38px; }
  .mega-icon svg { width: 22px; height: 22px; }
  .mega-item strong { display: block; font-size: 17px; font-weight: 700; color: var(--text); }
  .mega-item em { display: block; font-style: normal; font-size: 14.5px; color: var(--text-dim); margin-top: 2px; }

  /* HERO */
  .hero { padding: 170px 0 110px; position: relative; text-align: center; overflow: hidden; isolation: isolate; }
  /* dotted grid, fades out toward edges */
  .hero::before {
    content: ""; position: absolute; inset: -1px 0 0 0; z-index: -3;
    background-image: radial-gradient(circle at 1px 1px, rgba(41,59,255,0.10) 1px, transparent 0);
    background-size: 30px 30px;
    -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 32%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 78%);
    mask-image: radial-gradient(ellipse 72% 62% at 50% 32%, #000 0%, rgba(0,0,0,0.35) 55%, transparent 78%);
  }
  /* soft layered aurora glows */
  .hero::after {
    content: ""; position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
    width: min(1180px, 130vw); height: 820px; z-index: -2; pointer-events: none;
    background:
      radial-gradient(closest-side at 34% 40%, rgba(41,59,255,0.20), transparent 72%),
      radial-gradient(closest-side at 70% 36%, rgba(77,101,255,0.16), transparent 70%),
      radial-gradient(closest-side at 52% 70%, rgba(53,201,132,0.07), transparent 72%);
    filter: blur(54px);
  }
  /* cursor-follow glow, site-wide */
  .site-glow {
    position: fixed; top: 0; left: 0; width: 600px; height: 600px; border-radius: 50%; z-index: 60;
    background: radial-gradient(circle, rgba(41,59,255,0.16) 0, rgba(77,101,255,0.10) 42%, transparent 70%);
    pointer-events: none; opacity: 0; transition: opacity 0.6s ease;
    filter: blur(44px); mix-blend-mode: multiply; will-change: transform, opacity;
  }
  /* availability pill */
  .avail-pill {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.02em;
    color: var(--text); background: #fff;
    border: 1px solid var(--border); border-radius: 100px;
    padding: 9px 18px 9px 14px; margin-bottom: 28px;
    box-shadow: 0 2px 10px rgba(16,18,17,0.04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  .avail-pill:hover { border-color: #cdd2dd; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(16,18,17,0.08); }
  .avail-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #35c984; flex: none; }
  .avail-dot::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%; background: #35c984;
    animation: avail-pulse 2.2s ease-out infinite;
  }
  @keyframes avail-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70%, 100% { transform: scale(2.8); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) { .avail-dot::after { animation: none; } }

  .hero .eyebrow {
    color: var(--text); font-size: clamp(17px, 2vw, 21px); font-weight: 700;
    text-transform: none; letter-spacing: -0.01em; margin-bottom: 56px;
  }
  .hero h1 {
    font-size: clamp(40px, 5.9vw, 76px);
    font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
    max-width: 870px; margin: 0 auto 36px;
  }
  .hero h1 .hl { color: var(--accent); }
  .hero h1 .hl-green { color: #35c984; }
  .hero p.lead { font-size: clamp(17px, 2vw, 20px); color: var(--text); max-width: 38ch; margin: 0 auto 38px; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* PHOTO STRIP, Periscope-exact: straight full-bleed images slide across; two white
     SVG covers (top + bottom) mask the strip edges into one gentle arc, no side taper. */
  .gallery { margin: 10px 0 80px; }
  .gallery-wrap { position: relative; overflow: hidden; }
  .gallery-track { display: flex; width: max-content; animation: gallery-slide 55s linear infinite; will-change: transform; }
  .gallery-wrap:hover .gallery-track { animation-play-state: paused; }
  .gallery-item { flex: none; width: 50vw; margin-right: 2rem; }
  .g-ratio { position: relative; width: 100%; padding-top: 75%; overflow: hidden; background: var(--surface-2); }
  .g-ratio img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-cover { position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; color: var(--bg); line-height: 0; }
  .gallery-cover svg { display: block; width: 100%; height: 8vw; }
  .gallery-cover.top { top: -2vw; }
  .gallery-cover.bottom { bottom: -2vw; }
  @keyframes gallery-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .gallery-track { animation: none; } }
  @media (max-width: 900px) {
    .gallery { margin-bottom: 60px; }
    .gallery-item { width: 80vw; margin-right: 1rem; }
    .gallery-cover svg { height: 11vw; }
    .gallery-cover.top { top: -3vw; }
    .gallery-cover.bottom { bottom: -3vw; }
  }

  /* LOGO STRIP */
  .logos { padding: 60px 0 30px; }
  .logos p { text-align: center; color: var(--text-dim); font-size: 17px; margin-bottom: 48px; }
  .logo-row { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; align-items: center; gap: 28px 56px; flex-wrap: wrap; }
  .logo-row span { font-size: 20px; font-weight: 700; color: #9aa3ad; white-space: nowrap; }
  @media (max-width: 600px) { .logo-row { gap: 18px 32px; } .logo-row span { font-size: 17px; } }

  /* SECTION BASE */
  section { padding: 100px 0; }
  .section-head { max-width: 640px; margin-bottom: 60px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px; }
  .section-head p { color: var(--text-dim); font-size: 18px; }

  /* STATS */
  .stats { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .stat { text-align: center; }
  .stat .num { font-size: clamp(40px, 6vw, 64px); font-weight: 900; letter-spacing: -0.03em; color: var(--text); }
  .stat .num .accent { color: var(--accent); }
  .stat .label { color: var(--text-dim); font-size: 15px; margin-top: 8px; }

  /* SERVICES */
  .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s;
    box-shadow: 0 2px 10px rgba(16,18,17,0.04);
  }
  @media (hover: hover) { .card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 16px 32px rgba(16,18,17,0.06); } }
  .card .icon { width: 52px; height: 52px; border-radius: 13px; background: #eafaf2; display: grid; place-items: center; color: #35c984; margin-bottom: 22px; }
  .card .icon svg { width: 26px; height: 26px; }
  .card h3 { font-size: 23px; font-weight: 700; margin-bottom: 12px; }
  .card p { color: var(--text-dim); font-size: 16px; }

  /* PROCESS */
  .process { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step { position: relative; }
  .step .n { font-size: 15px; font-weight: 700; color: var(--accent); margin-bottom: 16px; letter-spacing: 0.05em; }
  .step h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
  .step p { color: var(--text-dim); font-size: 15px; }

  /* WORK / CASE STUDIES */
  .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .case {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px; transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  }
  @media (hover: hover) { .case:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 16px 32px rgba(16,18,17,0.06); } }
  .case .tag { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
  .case .big { font-size: 46px; font-weight: 900; color: var(--accent); margin: 16px 0 6px; letter-spacing: -0.02em; }
  .case h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .case p { color: var(--text-dim); font-size: 15px; }

  /* TESTIMONIALS */
  .quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
  .quote .stars { color: var(--accent); margin-bottom: 16px; letter-spacing: 2px; }
  .quote p { font-size: 16px; margin-bottom: 22px; line-height: 1.6; }
  .quote .who { display: flex; align-items: center; gap: 12px; }
  .quote .ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #6b8cff); display: grid; place-items: center; font-weight: 700; color: #fff; }
  .quote .who .name { font-weight: 700; font-size: 15px; }
  .quote .who .role { font-size: 13px; color: var(--text-dim); }

  /* CTA BAND */
  .cta-band { text-align: center; }
  .cta-inner {
    background: linear-gradient(135deg, var(--accent), #1c3bd6); border-radius: 28px;
    padding: 80px 40px; position: relative; overflow: hidden; color: #fff;
  }
  .cta-inner h2 { font-size: clamp(30px, 4.5vw, 50px); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 18px; max-width: 18ch; margin-inline: auto; }
  .cta-inner p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px; }

  /* FOOTER */
  footer { padding: 70px 0 40px; border-top: 1px solid var(--border); }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
  .foot-grid .logo { margin-bottom: 16px; }
  .foot-grid p { color: var(--text-dim); font-size: 15px; max-width: 30ch; }
  .foot-col h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 18px; }
  .foot-col a { display: block; color: var(--text-dim); font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
  .foot-col a:hover { color: var(--accent); }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 14px; flex-wrap: wrap; gap: 12px; }

  /* REVEAL ANIMATION */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-cta .btn-soft { display: none; }
    .nav-cta .btn-dark { display: inline-flex; padding: 10px 18px; font-size: 14.5px; border-radius: 10px; }
    .mega { display: none; }
    .has-caret .caret { display: none; }
    .nav-links.open {
      display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; margin: 0;
      background: #fff; padding: 22px 24px; gap: 18px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      box-shadow: 0 18px 40px rgba(16,18,17,0.08);
    }
    .nav-links a.nav-menu-cta { display: block; margin-top: 6px; text-align: center; background: #141b4e; color: #fff; padding: 13px 18px; border-radius: 10px; font-weight: 600; }
    .nav-links a.nav-menu-cta:hover { background: #1d2566; color: #fff; }
    .stats-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .cards, .work-grid, .quotes, .foot-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .stats-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
  }

  /* HERO TRUST ROW */
  .hero-trust {
    margin-top: 48px; display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
  }
  .rating-pill {
    display: inline-flex; align-items: center; gap: 12px;
    background: #f2f2fa; border-radius: 100px; padding: 16px 30px;
    font-size: 18px; color: var(--text);
  }
  .rating-pill .stars { display: inline-flex; gap: 5px; color: #35c984; }
  .rating-pill .stars svg { width: 21px; height: 21px; }
  .rating-pill .rdiv { color: #c3c7d4; font-weight: 300; }
  .rating-pill b { font-weight: 600; }
  .gpartner {
    position: relative; display: inline-block; text-align: center;
    background: #fff; border: 1px solid var(--border); border-radius: 6px;
    padding: 16px 22px 0; box-shadow: 0 4px 14px rgba(16, 18, 17, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .gpartner:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16, 18, 17, 0.09); }
  .gpartner .ext { position: absolute; top: 7px; right: 7px; color: #1a73e8; }
  .gpartner .ext svg { width: 13px; height: 13px; }
  .gpartner .glogo { width: 38px; height: 38px; display: block; margin: 0 auto; }
  .gpartner .gp-name { display: block; color: #5f6368; font-size: 14px; margin-top: 7px; font-weight: 500; }
  .gpartner .gp-band {
    display: block; background: #5f6368; color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 0; margin: 13px -22px 0; border-radius: 0 0 5px 5px;
  }

  /* ===== SUBPAGES ===== */
  .page-hero { padding: 170px 0 90px; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
  .page-hero::before {
    content: ""; position: absolute; inset: -1px 0 0 0; z-index: -3;
    background-image: radial-gradient(circle at 1px 1px, rgba(41,59,255,0.09) 1px, transparent 0);
    background-size: 30px 30px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 28%, #000 0%, rgba(0,0,0,0.3) 52%, transparent 76%);
    mask-image: radial-gradient(ellipse 70% 70% at 50% 28%, #000 0%, rgba(0,0,0,0.3) 52%, transparent 76%);
  }
  .page-hero::after {
    content: ""; position: absolute; top: -130px; left: 50%; transform: translateX(-50%);
    width: min(1080px, 125vw); height: 680px; z-index: -2; pointer-events: none;
    background:
      radial-gradient(closest-side at 38% 42%, rgba(41,59,255,0.16), transparent 72%),
      radial-gradient(closest-side at 66% 38%, rgba(77,101,255,0.13), transparent 70%);
    filter: blur(50px);
  }
  .page-hero h1 {
    font-size: clamp(38px, 5vw, 64px); font-weight: 900;
    line-height: 1.05; letter-spacing: -0.03em;
    max-width: 880px; margin: 0 auto 24px;
  }
  .page-hero h1 .hl { color: var(--accent); }
  .page-hero .lead { font-size: 19px; color: var(--text-dim); max-width: 58ch; margin: 0 auto 36px; }
  .page-hero .hero-actions { justify-content: center; }

  .stats-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

  /* FAQ */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item summary {
    list-style: none; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; gap: 24px; padding: 24px 0; font-size: 18px; font-weight: 700;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .plus {
    flex: none; width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--text); display: grid; place-items: center;
    font-size: 16px; font-weight: 500; transition: transform 0.25s ease;
  }
  .faq-item[open] .plus { transform: rotate(45deg); }
  .faq-item .answer { padding: 0 54px 24px 0; color: var(--text-dim); font-size: 16px; }

  /* PRICING */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .price-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 32px; display: flex; flex-direction: column;
  }
  .price-card.featured { border-color: var(--accent); box-shadow: 0 18px 40px rgba(41,59,255,0.10); position: relative; }
  .price-card .badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  }
  .price-card .plan { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
  .price-card .price { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; margin: 14px 0 2px; }
  .price-card .per { color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
  .price-card ul { list-style: none; margin: 0 0 28px; display: grid; gap: 11px; }
  .price-card li { font-size: 15px; color: var(--text-dim); padding-left: 24px; position: relative; }
  .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
  .price-card .btn { margin-top: auto; justify-content: center; }
  .price-note { text-align: center; color: var(--text-dim); font-size: 14px; margin-top: 24px; }

  /* ARTICLES */
  .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .article-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px; transition: transform 0.25s ease, border-color 0.25s; display: block;
  }
  @media (hover: hover) { .article-card:hover { transform: translateY(-6px); border-color: var(--accent); } }
  .article-card .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
  .article-card h3 { font-size: 20px; font-weight: 700; margin: 12px 0 10px; line-height: 1.3; }
  .article-card p { color: var(--text-dim); font-size: 15px; }
  .article-card .meta { margin-top: 18px; font-size: 13px; color: var(--text-dim); }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .contact-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px; text-align: center;
  }
  .contact-card .icon {
    width: 52px; height: 52px; border-radius: 13px; background: var(--accent-soft);
    color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px;
  }
  .contact-card .icon svg { width: 26px; height: 26px; }
  .contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .contact-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; }
  .contact-card a.link { color: var(--accent); font-weight: 700; font-size: 17px; }

  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .split h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
  .split p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 14px; }

  @media (max-width: 900px) {
    .price-grid, .article-grid, .contact-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .stats-grid.cols-3 { grid-template-columns: 1fr; }
    .faq-item .answer { padding-right: 0; }
  }


  /* INDUSTRIES */
  .ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .ind-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px; display: block; transition: transform 0.25s ease, border-color 0.25s;
  }
  @media (hover: hover) { .ind-card:hover { transform: translateY(-5px); border-color: var(--accent); } }
  .ind-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
  .ind-card span { color: var(--accent); font-size: 14px; font-weight: 600; }
  @media (max-width: 900px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .ind-grid { grid-template-columns: 1fr; } }

  /* ARTICLES / POSTS */
  .post { max-width: 760px; margin: 0 auto; padding: 0 24px 50px; }
  .post h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 42px 0 14px; }
  .post p { color: var(--text-dim); font-size: 17px; margin-bottom: 16px; line-height: 1.7; }
  .post ul, .post ol { color: var(--text-dim); font-size: 17px; margin: 0 0 16px 22px; line-height: 1.7; }
  .post li { margin-bottom: 8px; }
  .post strong { color: var(--text); }
  .post-meta { color: var(--text-dim); font-size: 14px; margin-top: 18px; }

  /* ===== WELCOME INTRO ===== */
  .welcome { text-align: center; padding-bottom: 30px; background: #dde0ea; }
  #services { background: #dde0ea; }
  .welcome-inner { max-width: 820px; margin: 0 auto; }
  .welcome-mark { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--accent); }
  .welcome-mark svg { width: 100%; height: 100%; display: block; }
  .welcome-label { display: block; font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 16px; }
  .welcome-h { font-size: clamp(30px, 4.2vw, 48px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.08; margin-bottom: 24px; }
  .welcome-h .hl { color: var(--accent); }
  .welcome-copy { color: var(--text-dim); font-size: 18px; line-height: 1.65; }

  /* ===== FEATURE SPLIT (Find Your Audience) ===== */
  .feat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .feat-img { border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--surface-2); }
  .feat-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .feat-body h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; }
  .feat-intro { color: var(--text-dim); font-size: 17px; line-height: 1.6; margin-bottom: 32px; }
  .feat-intro a { color: var(--accent); font-weight: 600; }
  .feat-list { display: grid; gap: 22px; }
  .feat-item { display: flex; gap: 16px; align-items: flex-start; }
  .feat-item .fi-icon { flex: none; width: 30px; height: 30px; color: var(--accent); margin-top: 2px; }
  .feat-item .fi-icon svg { width: 100%; height: 100%; display: block; }
  .feat-item h4 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
  .feat-item p { color: var(--text-dim); font-size: 15.5px; line-height: 1.55; }

  /* ===== BOOST VISIBILITY ===== */
  .boost { text-align: center; background: #dde0ea; }
  .boost-head { max-width: 880px; margin: 0 auto 56px; }
  .boost-mark { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--accent); }
  .boost-mark svg { width: 100%; height: 100%; display: block; }
  .boost-head h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 22px; }
  .boost-head p { color: var(--text-dim); font-size: 17px; line-height: 1.65; }
  .boost-card { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 32px; align-items: center; text-align: left; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
  .boost-card .bc-img { border-radius: 16px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--surface-2); }
  .boost-card .bc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .boost-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
  .boost-card p { color: var(--text-dim); font-size: 15.5px; line-height: 1.6; }

  @media (max-width: 900px) {
    .feat-split { grid-template-columns: 1fr; gap: 32px; }
    .feat-img { aspect-ratio: 16 / 10; }
    .boost-card { grid-template-columns: 1fr; }
    .boost-card .bc-img { aspect-ratio: 16 / 10; }
  }

  /* ===== TESTIMONIAL CAROUSEL ===== */
  .testi { text-align: center; }
  .testi-carousel { position: relative; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
  .testi-viewport { flex: 1; }
  .testi-quote { display: none; }
  .testi-quote.active { display: block; animation: testiFade 0.5s ease; }
  @keyframes testiFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  .testi-stars { color: #35c984; letter-spacing: 6px; font-size: 22px; margin-bottom: 30px; }
  .testi-quote p { font-size: clamp(26px, 4.2vw, 50px); font-weight: 800; line-height: 1.22; letter-spacing: -0.02em; color: var(--text); max-width: 1080px; margin: 0 auto 32px; }
  .testi-quote .hl { color: var(--accent); }
  .testi-name { font-weight: 700; font-size: 16px; color: var(--text); }
  .testi-name span { color: var(--text-dim); font-weight: 500; }
  .testi-nav { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--text-dim); font-size: 20px; cursor: pointer; display: grid; place-items: center; transition: all 0.2s ease; }
  .testi-nav:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
  .testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
  .testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: all 0.2s ease; }
  .testi-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }
  @media (max-width: 600px) {
    .testi-nav { width: 38px; height: 38px; font-size: 18px; }
    .testi-carousel { gap: 6px; }
  }

  /* ===== WHY CHOOSE ===== */
  .wc-head { text-align: center; max-width: 1000px; margin: 0 auto 50px; }
  .wc-head h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px; }
  .wc-head p { color: var(--text-dim); font-size: 16.5px; line-height: 1.65; }
  .wc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .wc-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
  .wc-card .wc-icon { flex: none; width: 30px; height: 30px; color: #35c984; margin-top: 2px; }
  .wc-card .wc-icon svg { width: 100%; height: 100%; display: block; }
  .wc-card h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
  .wc-card p { color: var(--text-dim); font-size: 15.5px; line-height: 1.55; }
  .wc-wide { grid-column: 1 / -1; }
  @media (hover: hover) { .wc-card:hover { border-color: #35c984; box-shadow: 0 16px 32px rgba(16,18,17,0.06); transform: translateY(-4px); } }
  @media (max-width: 760px) { .wc-grid { grid-template-columns: 1fr; } }

  /* ===== CONTENT BUTTONS ===== */
  .cbtns { display: flex; gap: 12px; flex-wrap: wrap; }
  .cbtns .btn { border-radius: 12px; padding: 14px 26px; }
  .btn-navy { background: #141b4e; color: #fff; }
  .btn-navy:hover { background: #1d2566; transform: translateY(-2px); }
  .btn-light { background: #eef0f6; color: var(--text); }
  .btn-light:hover { background: #e3e6f0; transform: translateY(-2px); }

  /* PPC bullets + pill label */
  .pill-label { display: inline-block; background: #eef0f6; color: var(--text); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: 8px; margin: 6px 0 20px; }
  .feat-bullets { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
  .feat-bullets li { position: relative; padding-left: 22px; color: var(--text-dim); font-size: 15.5px; line-height: 1.55; }
  .feat-bullets li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--text); }
  .feat-bullets a { color: var(--accent); font-weight: 600; }
  .feat-bullets strong { color: var(--text); font-weight: 700; }

  /* ===== SEO BACKBONE (duo cards) ===== */
  .duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .duo-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 40px; }
  .duo-card.dark { background: #0e1430; border-color: #0e1430; color: #fff; }
  .duo-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: #eafaf2; color: #35c984; margin-bottom: 24px; }
  .duo-card.dark .duo-icon { background: #fff; }
  .duo-icon svg { width: 24px; height: 24px; }
  .duo-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
  .duo-card p { font-size: 16px; line-height: 1.6; color: var(--text-dim); }
  .duo-card.dark p { color: rgba(255,255,255,0.72); }

  /* ===== WEB DEV COLLAGE ===== */
  .webdev-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .webdev-collage { columns: 3; column-gap: 12px; }
  .webdev-collage img { width: 100%; border-radius: 10px; margin-bottom: 12px; display: block; }

  /* ===== CONTACT SECTION ===== */
  .contact-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: stretch; }
  .contact-left { background: #eef0f6; border-radius: 24px; padding: 48px; display: flex; flex-direction: column; justify-content: center; }
  .cl-person { display: flex; gap: 14px; align-items: center; }
  .cl-ava { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; flex: none; }
  .cl-name { font-weight: 700; font-size: 16px; }
  .cl-role { color: var(--text-dim); font-size: 14px; }
  .cl-rating { display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: 100px; padding: 9px 18px; margin: 22px 0; font-size: 14px; width: fit-content; }
  .cl-rating .rp-stars { display: inline-flex; gap: 2px; color: #35c984; }
  .cl-rating .cl-div { color: #c3c7d4; }
  .contact-left h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 24px; }
  .contact-left h2 .hl { color: var(--accent); }
  .cl-contacts { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
  .cl-contacts li { display: flex; gap: 12px; align-items: center; font-size: 16px; color: var(--text); }
  .cl-contacts li svg { width: 18px; height: 18px; color: var(--text); flex: none; }
  .contact-left .btn-navy { width: fit-content; border-radius: 12px; padding: 14px 26px; background: #22c55e; }
  .contact-left .btn-navy:hover { background: #1ba84e; }
  .contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 40px; box-shadow: 0 20px 50px rgba(16,18,17,0.06); }
  .contact-form-card h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 28px; }
  .contact-form-card h3 .hl { color: var(--accent); }
  .cf-hp { position: absolute; left: -9999px; }
  .cf-input { width: 100%; padding: 16px 18px; border: 1px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 15px; color: var(--text); margin-bottom: 14px; background: #fff; }
  .cf-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(41,59,255,0.12); }
  .cf-input::placeholder { color: #9aa3ad; }
  .cf-send { width: 100%; justify-content: center; background: #141b4e; color: #fff; border-radius: 12px; padding: 16px; margin-top: 6px; }
  .cf-send:hover { background: #1d2566; transform: translateY(-1px); }

  @media (max-width: 900px) {
    .duo-grid { grid-template-columns: 1fr; }
    .webdev-split { grid-template-columns: 1fr; gap: 32px; }
    .contact-split { grid-template-columns: 1fr; }
    .contact-left, .contact-form-card { padding: 32px; }
  }

  .cf-recaptcha { margin: 6px 0 14px; min-height: 0; }

  /* ===== SERVICES BENTO ===== */
  .bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .bento-card {
    background: #fff; border: none; border-radius: 18px;
    padding: 24px; display: flex; flex-direction: column;
    box-shadow: 0 4px 24px rgba(16,18,17,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .bento-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(16,18,17,0.12); }
  .bento-card h3 { font-size: 25px; font-weight: 800; color: #0f1b3d; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 10px; }
  .bento-card p { color: var(--text-dim); font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
  .bento-btn {
    display: inline-block; width: fit-content; background: #0e1740; color: #fff;
    font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 9px;
    transition: background 0.2s ease;
  }
  .bento-card:hover .bento-btn { background: #22c55e; }
  .bento-img { border-radius: 14px; overflow: hidden; background: var(--surface-2); }
  .bento-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* SEO tall card spans both rows, image on top grows */
  .b-tall { grid-row: 1 / 3; grid-column: 1; }
  .b-tall .bento-grow { flex: 1; min-height: 150px; margin-bottom: 18px; }
  /* Paid Ads wide card spans cols 2-3, text left + image right */
  .b-wide { grid-column: 2 / 4; grid-row: 1; flex-direction: row; align-items: center; gap: 24px; }
  .b-wide .bw-text { flex: 1; }
  .b-wide .bw-text p { margin-bottom: 20px; }
  .b-wide .bw-img { flex: 1; align-self: center; aspect-ratio: 16 / 10; min-height: 0; }
  /* bottom cards: image below text */
  .bottom-img { margin-top: auto; aspect-ratio: 16 / 10; }
  @media (max-width: 860px) {
    .bento { grid-template-columns: 1fr; }
    .b-tall, .b-wide { grid-column: auto; grid-row: auto; }
    .b-wide { flex-direction: column; align-items: stretch; }
    .b-tall .bento-grow { aspect-ratio: 16 / 10; min-height: 0; }
    .b-wide .bw-img { aspect-ratio: 16 / 10; min-height: 0; margin-top: 18px; }
  }

  /* ===== DATA DRIVEN DECISIONS ===== */
  .ddd { background: #dde0ea; }
  .ddd-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .ddd-text h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; color: #0f1b3d; letter-spacing: -0.02em; margin-bottom: 20px; }
  .ddd-text p { color: #3a455c; font-size: 16.5px; line-height: 1.6; margin-bottom: 30px; }
  .ddd-text p a { color: #0f1b3d; text-decoration: underline; font-weight: 500; }
  .chart-card { background: #fff; border-radius: 18px; padding: 22px 24px; box-shadow: 0 16px 44px rgba(16,18,17,0.12); }
  .chart-stats { display: flex; gap: 48px; margin-bottom: 16px; }
  .cs-label { display: block; font-size: 13px; color: #8a94a6; margin-bottom: 3px; }
  .cs-num { font-size: 24px; font-weight: 800; color: #0f1b3d; display: inline-flex; align-items: center; gap: 6px; letter-spacing: -0.01em; }
  .chart-svg { width: 100%; height: auto; display: block; }
  @media (max-width: 900px) { .ddd-split { grid-template-columns: 1fr; gap: 32px; } }

  /* ===== HEADING COLOR PARITY (Periscope dark navy) ===== */
  .hero h1, .page-hero h1, .section-head h2, .welcome-h,
  .boost-head h2, .wc-head h2, .feat-body h2, .ddd-text h2,
  .testi-quote p, .faq-item summary, .feat-item h4, .wc-card h4 {
    color: #0f1b3d;
  }

  /* even alignment for the two bottom bento cards (Paid Ads / Web Design) */
  .bento-card:not(.b-tall):not(.b-wide) p { min-height: 4.65em; }
  .bento-card:not(.b-tall):not(.b-wide) .bento-btn { margin-bottom: 22px; }
  .bento-card:not(.b-tall):not(.b-wide) .bottom-img { margin-top: 0; }

  /* footer brand sign-off */
  .foot-tagline { font-size: clamp(18px, 2vw, 22px); font-weight: 800; color: #0f1b3d; letter-spacing: -0.015em; }

  /* spacing for the Find Your Audience buttons */
  .feat-cbtns { margin-top: 40px; gap: 14px; padding-top: 4px; }
