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

  :root {
    --black:       #000000;
    --white:       #FFFFFF;
    --cyan:        #00BFFF;
    --cyan-dark:   #0099CC;
    --cyan-dim:    rgba(0,191,255,0.12);
    --navy:        #003366;
    --slate:       #708090;
    --ink:         #0f0f0e;
    --ink-2:       #2a2a28;
    --ink-3:       #6a6a66;
    --ink-4:       #9a9a96;
    --paper:       #FFFFFF;
    --paper-2:     #f5f7fa;
    --paper-3:     #e4e8ed;
    --serif:       'Urbanist', 'DM Sans', system-ui, sans-serif;
    --display:     'Urbanist', 'DM Sans', system-ui, sans-serif;
    --sans:        'DM Sans', system-ui, sans-serif;
    --max:         1160px;
    --nav-h:       68px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--paper-3);
    z-index: 100;
    display: flex;
    align-items: center;
  }
  .nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-full {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--ink-2);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(0,51,102,0.08);
    border: 1px solid rgba(0,51,102,0.2);
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
  }
  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--white) !important;
    background: var(--navy);
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .nav-cta:hover { background: var(--slate) !important; }

  /* ── HERO ── */
  .hero-wrap {
    position: relative;
    overflow: hidden;
    background: #050a12;
    padding-top: var(--nav-h);
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: var(--max);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
  }
  /* hero-top handled by graphic CSS below */
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s ease forwards;
  }
  .hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
  }
  .hero-headline {
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0.01em;
    color: var(--ink);
    max-width: 820px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s ease forwards;
  }
  .hero-headline em { font-style: italic; color: var(--cyan); }
  .hero-headline { color: var(--white) !important; }
  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s ease forwards;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s ease forwards;
  }


  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: var(--navy);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.1s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--slate); transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 24px;
    border-radius: 8px;
    transition: border-color 0.15s, color 0.15s;
    background: transparent;
  }
  .btn-ghost:hover { border-color: var(--cyan); color: var(--white); }

  /* ── HERO STATS ── */
  /* Stats strip — full width, sits at bottom of hero-wrap */
  .hero-stats-strip {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 36px 40px;
    position: relative;
    z-index: 2;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.7s 0.65s ease forwards;
  }
  .stat-item {
    padding-left: 32px;
    padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child  { border-right: none; }
  /* Google Partner in stats strip */
  .stat-item--gp { display: flex; align-items: center; }
  .stat-gp { display: flex; align-items: center; gap: 14px; }
  .stat-gp svg { flex-shrink: 0; border-radius: 6px; background: #fff; padding: 2px; }
  .stat-gp-title {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.01em;
  }
  .stat-gp-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
  }
  .stat-num {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.0em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
  }

  /* ── GOOGLE PARTNER BANNER (prominent) ── */
  .gp-banner {
    background: var(--black);
    padding: 36px 60px;
    border-top: 3px solid var(--navy);
    border-bottom: 1px solid rgba(0,51,102,0.15);
  }
  .gp-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .gp-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .gp-badge-large {
    background: var(--white);
    border-radius: 10px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    overflow: hidden;
  }
  .gp-banner-text h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  .gp-banner-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .gp-dots-row {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .gp-dot-lg { width: 16px; height: 16px; border-radius: 50%; }
  .gp-google-wordmark {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .gp-banner-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .gp-spec {
    text-align: center;
  }
  .gp-spec-val {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2px;
  }
  .gp-spec-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .gp-divider-v {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
  }

  /* ── CLIENTS BAR ── */
  /* ── CLIENTS BAR — scrolling marquee ── */
  .clients-bar {
    background: var(--paper-2);
    border-top: 1px solid var(--paper-3);
    border-bottom: 1px solid var(--paper-3);
    padding: 20px 0 16px;
    overflow: hidden;
  }
  .clients-bar-header {
    text-align: center;
    margin-bottom: 18px;
  }
  .clients-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-4);
  }
  /* Scrolling track */
  .clients-track-wrap {
    overflow: hidden;
    position: relative;
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .clients-track {
    display: flex;
    width: max-content;
  }
  @media (prefers-reduced-motion: no-preference) {
    .clients-track { animation: marquee 22s linear infinite; }
    .clients-track:hover { animation-play-state: paused; }
  }
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
  }
  .clients-track-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
  }
  .clients-gp-badge { width: 40px; height: auto; border-radius: 6px; }
  .clients-gp-text { font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; }

  /* ── SECTION COMMONS ── */
  section { padding: 96px 40px; background: var(--paper); }
  .section-inner { max-width: var(--max); margin: 0 auto; }
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--cyan);
  }
  .section-headline {
    font-family: var(--display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .section-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--ink-2);
    max-width: 500px;
    line-height: 1.65;
  }
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 48px;
  }

  /* ── AI SECTION ── */
  .ai-section { background: var(--black); }
  .ai-section .section-label { color: rgba(255,255,255,0.35); }
  .ai-section .section-label::before { background: var(--cyan); opacity: 0.6; }
  .ai-section .section-headline { color: var(--white); }
  .ai-section .section-sub { color: rgba(255,255,255,0.55); max-width: 520px; }

  .ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,51,102,0.3);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 52px;
  }
  .ai-card {
    background: rgba(255,255,255,0.02);
    padding: 36px 32px;
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }
  .ai-card:hover { background: rgba(0,191,255,0.06); }
  .ai-card-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0,191,255,0.1);
    border: 1px solid rgba(0,191,255,0.2);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 18px;
  }
  .ai-card h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .ai-card p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .ai-card-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
  }
  .ai-card:hover .ai-card-link { color: var(--cyan); }
  .ai-card-link svg { width: 14px; height: 14px; transition: transform 0.15s; }
  .ai-card:hover .ai-card-link svg { transform: translateX(3px); }

  /* ── SERVICES ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--paper-3);
    border: 1px solid var(--paper-3);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 52px;
  }
  .service-card {
    background: var(--paper);
    padding: 36px;
    transition: background 0.15s;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
  }
  .service-card:hover { background: var(--paper-2); border-left-color: var(--navy); }
  .service-num {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 18px;
  }
  .service-card h3 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .service-card p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .service-tag {
    font-size: 11px;
    color: var(--ink-3);
    border: 1px solid var(--paper-3);
    padding: 3px 9px;
    border-radius: 20px;
  }

  /* ── LEAD MAGNET ── */
  .lead-section {
    background: var(--navy);
    border-top: none;
  }
  .lead-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .lead-content .section-label { color: rgba(255,255,255,0.4); }
  .lead-content .section-label::before { background: var(--cyan); }
  .lead-content .section-headline { color: var(--white); }
  .lead-content .section-sub { color: rgba(255,255,255,0.65); }
  .lead-steps { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .lead-step { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
  .lead-step-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13px;
    color: var(--cyan);
    width: 20px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .lead-form-card {
    background: var(--white);
    border: 1px solid rgba(0,51,102,0.12);
    border-radius: 16px;
    padding: 36px;
  }
  .lead-form-card h3 {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 5px;
  }
  .lead-form-card > p { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-2);
    margin-bottom: 5px;
    letter-spacing: 0.03em;
  }
  .form-group input, .form-group select {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus { border-color: var(--navy); background: var(--white); }
  .form-submit {
    width: 100%;
    padding: 13px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: var(--navy);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 6px;
  }
  .form-submit:hover { background: var(--slate); }
  .form-note { font-size: 11px; color: var(--ink-4); text-align: center; margin-top: 10px; }

  /* ── RESULTS ── */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
  }
  .result-card {
    background: var(--paper);
    border: 1px solid var(--paper-3);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.15s, transform 0.15s;
  }
  .result-card:hover { border-color: var(--navy); transform: translateY(-2px); }
  .result-type {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 16px;
  }
  .result-metric {
    font-family: var(--display);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.0em;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 4px;
  }
  .result-metric-label { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
  .result-desc {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.6;
    border-top: 1px solid var(--paper-3);
    padding-top: 16px;
  }

  /* ── ABOUT ── */
  .about-strip { background: var(--paper-2); border-top: 1px solid var(--paper-3); }
  .about-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-headline {
    font-family: var(--display);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .about-body {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .about-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
  .about-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-2);
    background: var(--paper-3);
    padding: 5px 12px;
    border-radius: 20px;
  }
  .about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-fact {
    background: var(--white);
    border: 1px solid var(--paper-3);
    border-radius: 10px;
    padding: 22px;
  }
  .about-fact-num {
    font-family: var(--display);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.0em;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .about-fact-label { font-size: 12px; color: var(--ink-3); line-height: 1.4; }

  /* ── CTA BANNER ── */
  .cta-banner { background: var(--black); padding: 76px 40px; }
  .cta-banner-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .cta-banner h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--white);
    line-height: 1.1;
    max-width: 540px;
  }
  .cta-banner h2 em { font-style: italic; color: var(--cyan); }
  .cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    background: var(--cyan);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
  }
  .btn-cyan:hover { background: #33ccff; }
  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
  }
  .btn-outline-white:hover { border-color: var(--white); color: var(--white); }

  /* ── FOOTER ── */
  footer { background: #050505; padding: 52px 40px 32px; }
  .footer-inner { max-width: var(--max); margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
  }
  .footer-logo-wrap { margin-bottom: 14px; }
  .footer-logo-full {
    height: 32px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 210px; }
  .footer-col-label {
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.25); margin-bottom: 14px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
  .footer-location { font-size: 12px; color: rgba(255,255,255,0.2); display: flex; align-items: center; gap: 5px; }
  .footer-gp-note { font-size: 11px; color: rgba(0,191,255,0.4); display: flex; align-items: center; gap: 5px; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to   { width: 20px; opacity: 1; }
  }
  @keyframes wordReveal {
    from { opacity: 0; transform: translateY(28px) skewY(2deg); }
    to   { opacity: 1; transform: translateY(0) skewY(0deg); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,191,255,0); }
    50%       { box-shadow: 0 0 0 6px rgba(0,191,255,0.08); }
  }
  @keyframes navSlideDown {
    from { transform: translateY(-4px); opacity: 0.8; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Stagger children inside a revealed grid */
  .stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                transform 0.55s cubic-bezier(0.22,1,0.36,1);
  }
  .stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
  .stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
  .stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; }
  .stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; }
  .stagger-children.visible > * { opacity: 1; transform: translateY(0); }

  /* Section label line draw */
  .section-label.line-animate::before {
    width: 0;
    opacity: 0;
    transition: width 0.5s cubic-bezier(0.22,1,0.36,1) 0.2s,
                opacity 0.3s ease 0.2s;
  }
  .section-label.line-animate.line-visible::before {
    width: 20px;
    opacity: 1;
  }

  /* Word-by-word headline reveal */
  .word-reveal-wrap { overflow: hidden; display: inline; }
  .word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px) skewY(2deg);
    transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1),
                transform 0.5s cubic-bezier(0.22,1,0.36,1);
  }
  .word-reveal.visible { opacity: 1; transform: translateY(0) skewY(0deg); }

  /* Counter number shimmer after count */
  .stat-num.counted {
    background: linear-gradient(90deg, var(--ink) 0%, var(--navy) 40%, var(--ink) 60%, var(--ink) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 1.2s ease forwards;
  }

  /* Service card hover tilt */
  .service-card {
    transform-style: preserve-3d;
    will-change: transform;
  }

  /* Nav scrolled state */
  nav.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    border-bottom-color: rgba(0,51,102,0.12);
  }
  nav { animation: navSlideDown 0.4s ease forwards; }

  /* Btn-primary pulse on load */
  .btn-primary {
    animation: pulseGlow 3s ease-in-out 1.5s 3;
  }
  .btn-primary:hover { animation: none; }

  /* Client names fade stagger */
  .client-name {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.15s;
  }
  .clients-bar.visible .client-name:nth-child(1) { transition-delay: 0.05s; }
  .clients-bar.visible .client-name:nth-child(2) { transition-delay: 0.12s; }
  .clients-bar.visible .client-name:nth-child(3) { transition-delay: 0.19s; }
  .clients-bar.visible .client-name:nth-child(4) { transition-delay: 0.26s; }
  .clients-bar.visible .client-name:nth-child(5) { transition-delay: 0.33s; }
  .clients-bar.visible .client-name { opacity: 1; transform: translateY(0); }

  /* Result metric count */
  .result-metric {
    transition: color 0.3s ease;
  }
  .result-card.visible .result-metric { color: var(--navy); }

  /* GP banner spec values slide up */
  .gp-spec { overflow: hidden; }
  .gp-spec-val {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  }
  .gp-banner.visible .gp-spec-val { opacity: 1; transform: translateY(0); }
  .gp-banner.visible .gp-spec:nth-child(1) .gp-spec-val { transition-delay: 0.1s; }
  .gp-banner.visible .gp-spec:nth-child(3) .gp-spec-val { transition-delay: 0.2s; }
  .gp-banner.visible .gp-spec:nth-child(5) .gp-spec-val { transition-delay: 0.3s; }

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .nav-links { display: none; }

    .ai-cards { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .lead-inner { grid-template-columns: 1fr; gap: 40px; }
    .results-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 16px; }
    .about-inner { grid-template-columns: 1fr; }
    .gp-banner-inner { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    section { padding: 68px 24px; }
    .hero { padding-left: 24px; padding-right: 24px; }
    .clients-bar, .gp-banner, .cta-banner { padding-left: 24px; padding-right: 24px; }
    footer { padding: 44px 24px 28px; }
  }
  @media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .about-right { grid-template-columns: 1fr 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats-strip { padding: 28px 24px; }
    .stat-item { padding-left: 16px; padding-right: 16px; margin-bottom: 20px; }
    .stat-item:first-child { padding-left: 0; }
    .stat-item:nth-child(2n) { border-right: none; }
  }

  /* ── NICHE CALLOUT ── */
  .niche-section { background: var(--paper-2); border-top: 1px solid var(--paper-3); }
  .niche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
  .niche-point {
    background: var(--paper);
    border: 1px solid var(--paper-3);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: border-color 0.15s, transform 0.2s;
  }
  .niche-point:hover { border-color: var(--navy); transform: translateY(-2px); }
  .niche-icon {
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 14px;
  }
  .niche-point h4 {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  .niche-point p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.65;
  }
  .niche-clients {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--paper-3);
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .niche-clients-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
    white-space: nowrap;
  }
  .niche-client-names {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .niche-client-names span {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--ink-2);
  }

  /* ── GP INLINE NOTE ── */
  .gp-inline-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    border-radius: var(--border-radius-lg);
    border-left: 3px solid var(--navy);
  }
  .gp-inline-badge {
    background: var(--white);
    border: 1px solid var(--paper-3);
    border-radius: 8px;
    padding: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gp-inline-note p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
  }
  .gp-inline-note strong { color: var(--navy); }

  @media (max-width: 960px) {
    .niche-grid { grid-template-columns: 1fr; }
  }

  .hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }
  .hero-top > div:first-child { flex: 1; }
  .hero-graphic {
    flex-shrink: 0;
    animation: heroFadeIn 1.4s 0.5s ease forwards;
    opacity: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-graphic .spin-slow { transform-origin: 140px 162px; animation: spinSlow 32s linear infinite; }
    .hero-graphic .spin-med  { transform-origin: 140px 162px; animation: spinSlow 20s linear infinite reverse; }
    .hero-graphic .beat-core { animation: beatCore 1.8s ease-out infinite; }
    .hero-graphic .beat-r1   { animation: beatRing 1.8s ease-out infinite 0.05s; }
    .hero-graphic .beat-r2   { animation: beatRing 1.8s ease-out infinite 0.18s; }
    .hero-graphic .beat-r3   { animation: beatRing 1.8s ease-out infinite 0.34s; }
    .hero-graphic .spoke     { animation: spokeFade 1.8s ease-out infinite; }
  }
  @keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  /* Heartbeat: quick bright flash, long quiet rest */
  @keyframes beatCore {
    0%   { opacity: 0.9; r: 8;  }
    6%   { opacity: 1;   r: 11; }
    14%  { opacity: 0.9; r: 8;  }
    18%  { opacity: 1;   r: 10; }
    28%  { opacity: 0.85; r: 8; }
    100% { opacity: 0.85; r: 8; }
  }
  @keyframes beatRing {
    0%   { opacity: 0;    r: 12; }
    4%   { opacity: 0.55; r: 22; }
    20%  { opacity: 0.18; r: 48; }
    45%  { opacity: 0;    r: 78; }
    100% { opacity: 0;    r: 78; }
  }
  @keyframes spokeFade {
    0%   { opacity: 0.3; }
    6%   { opacity: 0.75; }
    28%  { opacity: 0.3; }
    100% { opacity: 0.3; }
  }
  @media (max-width: 768px) { .hero-graphic { display: none; } }


  .ai-card-icon { margin-bottom: 16px; }
  .ai-card-icon svg { display: block; }


  .service-icon { margin-bottom: 16px; }
  .service-icon svg { display: block; }
  .service-num { display: none; }


  /* ★ About photo — uncomment when founder image is ready */
  /* .about-photo-wrap { display: flex; justify-content: center; } */


  /* ── CLIENT LOGOS ── */
  .client-logo {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(15%);
    transition: opacity 0.2s, filter 0.2s;
    flex-shrink: 0;
  }
  .client-logo:hover { opacity: 1; filter: grayscale(0%); }
  .client-logo-svg { display: flex; align-items: center; opacity: 0.8; transition: opacity 0.2s; flex-shrink: 0; }
  .client-logo-svg:hover { opacity: 1; }
  .client-logo-svg svg { height: 44px !important; width: auto !important; }
/* WordPress core overrides */
.admin-bar nav { top: 32px; }
.admin-bar .hero-wrap { padding-top: calc(var(--nav-h) + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .hero-wrap { padding-top: calc(var(--nav-h) + 46px); }
}
.wpforms-container input,
.wpforms-container select,
.wpforms-container textarea { font-family: var(--sans) !important; }
