/*
Theme Name: Google Lead Child
Theme URI: https://googlelead.fr
Description: Theme enfant Astra pour Google Lead - generation de leads via Google.
Author: Google Lead
Author URI: https://googlelead.fr
Template: astra
Version: 1.0.0
Text Domain: googlelead-child
*/

/* =========================================================
     RESET + TOKENS
  ========================================================= */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    margin: 0;
    font-family: 'Archivo', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
  }

  :root {
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --bg-tint: #eef4ff;
    --ink: #0b1220;
    --ink-2: #4a5568;
    --ink-3: #94a3b8;
    --hair: #e6ebf2;
    --hair-strong: #d2dae5;

    --google-blue: #1a73e8;
    --google-blue-deep: #0d47a1;
    --google-blue-bright: #4285f4;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-yellow-warm: #ffc107;
    --google-green: #34a853;

    --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 2px 4px rgba(11,18,32,.04);
    --shadow-md: 0 8px 24px rgba(11,18,32,.08), 0 2px 6px rgba(11,18,32,.04);
    --shadow-lg: 0 30px 80px -20px rgba(26,115,232,.35), 0 12px 30px rgba(11,18,32,.1);
    --shadow-yellow: 0 14px 40px rgba(251,188,4,.4);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --container: 1240px;
    --space-section: clamp(80px, 10vw, 140px);
  }

  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  h1, h2, h3, h4 {
    font-family: 'Archivo', system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    color: var(--ink);
  }
  h1 {
    font-size: clamp(48px, 7.5vw, 96px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.95;
  }
  h2 {
    font-size: clamp(36px, 5.2vw, 64px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 800; letter-spacing: -0.015em; }
  p { margin: 0; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* =========================================================
     UI ELEMENTS
  ========================================================= */
  .multicolor-bar {
    height: 4px;
    width: 64px;
    border-radius: 999px;
    background: linear-gradient(90deg,
      var(--google-blue) 0% 25%,
      var(--google-red) 25% 50%,
      var(--google-yellow) 50% 75%,
      var(--google-green) 75% 100%);
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    backdrop-filter: blur(8px);
  }
  .eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--google-yellow);
    box-shadow: 0 0 0 4px rgba(251,188,4,.25);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251,188,4,.25); }
    50% { box-shadow: 0 0 0 8px rgba(251,188,4,.1); }
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    white-space: nowrap;
  }
  .btn-yellow {
    background: var(--google-yellow);
    color: var(--ink);
    box-shadow: var(--shadow-yellow);
  }
  .btn-yellow:hover {
    background: #ffd338;
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(251,188,4,.55);
  }
  .btn-primary {
    background: var(--google-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(26,115,232,.4);
  }
  .btn-primary:hover {
    background: var(--google-blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26,115,232,.5);
  }
  .btn-white {
    background: #fff;
    color: var(--ink);
  }
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11,18,32,.18);
  }
  .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
  }
  .btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    transform: translateY(-2px);
  }
  .btn-ghost {
    color: var(--google-blue);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 700;
  }
  .btn-ghost::after { content: '→'; transition: transform .25s ease; }
  .btn-ghost:hover::after { transform: translateX(4px); }

  /* =========================================================
     NAV
  ========================================================= */
  .nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
  }
  .logo-dots { display: flex; gap: 3px; }
  .logo-dots span { width: 8px; height: 8px; border-radius: 50%; }
  .logo-dots span:nth-child(1) { background: var(--google-blue-bright); }
  .logo-dots span:nth-child(2) { background: var(--google-red); }
  .logo-dots span:nth-child(3) { background: var(--google-yellow); }
  .logo-dots span:nth-child(4) { background: var(--google-green); }

  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    transition: color .2s;
  }
  .nav-links a:hover { color: #fff; }
  .nav-cta { display: flex; align-items: center; gap: 16px; }
  .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(37,211,102,.18);
    border: 1px solid rgba(37,211,102,.4);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: all .2s ease;
  }
  .nav-phone:hover {
    background: rgba(37,211,102,.3);
    border-color: rgba(37,211,102,.7);
  }
  .nav-phone svg { color: #4ade80; }
  @media (max-width: 960px) {
    .nav-links, .nav-phone { display: none; }
  }

  /* AI Robot mascot in hero */
  .hero-robot {
    position: absolute;
    top: 88px;
    left: 50%;
    margin-left: -55px;
    width: clamp(90px, 10vw, 130px);
    z-index: 5;
    animation: robotFloat 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.3));
  }
  .hero-robot svg { width: 100%; height: auto; display: block; }
  @keyframes robotFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-10px) rotate(1.5deg); }
  }
  @media (max-width: 960px) {
    .hero-robot {
      top: 74px;
      left: auto;
      right: 14px;
      margin-left: 0;
      width: 80px;
    }
  }
  @media (max-width: 600px) {
    .hero-robot { width: 64px; top: 66px; }
  }

  /* =========================================================
     HERO — Big blue block, white wave cutout, rocket
  ========================================================= */
  .hero {
    position: relative;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    overflow: hidden;
    padding: 140px 0 200px;
    isolation: isolate;
  }
  /* Background AI hand image */
  .hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: 60%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.85;
    mix-blend-mode: screen;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 35%, #000 70%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 35%, #000 70%);
  }
  @media (max-width: 960px) {
    .hero-bg-img {
      max-width: 75%;
      opacity: 0.55;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85) 100%);
    }
  }
  @media (max-width: 600px) {
    .hero-bg-img {
      max-width: 90%;
      opacity: 0.4;
    }
  }
  /* Decorative dots pattern */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    z-index: -1;
  }
  /* Glowing accent */
  .hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251,188,4,.18) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
  }

  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
  }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero { padding: 120px 0 160px; }
  }

  .hero-content { position: relative; }
  .hero h1 {
    color: #fff;
    margin: 28px 0 24px;
    font-family: 'Google Sans', 'DM Sans', 'Archivo', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .hero h1 .hl-yellow {
    color: var(--google-yellow);
    position: relative;
    display: inline-block;
    margin-right: 0.04em;
  }
  .hero h1 .hl-yellow::after {
    content: '';
    position: absolute;
    left: -6px; right: -6px;
    bottom: 4px;
    height: 18px;
    background: rgba(251,188,4,.18);
    z-index: -1;
    transform: skew(-8deg);
    border-radius: 4px;
  }
  .hero h1 .hl-yellow sup {
    font-size: 0.5em;
    font-weight: 900;
    vertical-align: 0.55em;
    margin-left: 0.04em;
    letter-spacing: 0;
  }
  /* Smaller tagline at end of H1 */
  .hero h1 .h1-tail {
    display: block;
    margin-top: 0.15em;
    font-size: 0.45em;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  /* Multicolor Google word in H1 */
  .hero h1 .google-word {
    display: inline-block;
    letter-spacing: -0.04em;
  }
  .hero h1 .google-word span {
    display: inline-block;
  }
  .hero h1 .google-word span:nth-child(1) { color: #4285f4; }
  .hero h1 .google-word span:nth-child(2) { color: #ea4335; }
  .hero h1 .google-word span:nth-child(3) { color: #fbbc04; }
  .hero h1 .google-word span:nth-child(4) { color: #4285f4; }
  .hero h1 .google-word span:nth-child(5) { color: #34a853; }
  .hero h1 .google-word span:nth-child(6) { color: #ea4335; }
  /* "1ER" badge stamp */
  .hero-stamp {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--google-yellow);
    color: var(--ink);
    padding: 8px 18px 10px;
    border-radius: 6px;
    transform: rotate(-3deg);
    box-shadow: 0 8px 24px rgba(251,188,4,.4);
    font-family: 'Archivo', sans-serif;
    margin-bottom: 28px;
  }
  .hero-stamp .num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .hero-stamp .er {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .hero-stamp .txt {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .hero-sub {
    font-size: clamp(17px, 1.5vw, 20px);
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.55;
    font-weight: 500;
  }
  .hero-sub strong {
    color: #fff;
    font-weight: 700;
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .hero-trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.85);
    font-size: 14px;
  }
  .hero-trust-row strong { color: #fff; font-weight: 700; }
  .hero-stars { display: inline-flex; gap: 2px; color: var(--google-yellow); }
  .hero-premier-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(8px);
  }
  .hero-ai-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(90deg, rgba(66,133,244,.25), rgba(52,168,83,.2));
    border: 1px solid rgba(96,165,250,.4);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(8px);
  }
  .hero-ai-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 8px #60a5fa, 0 0 0 0 rgba(96,165,250,0.6);
    animation: aiEyebrowPulse 1.8s ease-in-out infinite;
  }

  /* HERO VISUAL — rocket + SERP mockup */
  .hero-visual {
    position: relative;
    height: 540px;
  }
  @media (max-width: 960px) {
    .hero-visual { height: 480px; }
  }

  /* SERP mockup card */
  .serp-card {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px -10px rgba(0,0,0,.4), 0 12px 24px rgba(0,0,0,.15);
    color: var(--ink);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    animation: floatY 6s ease-in-out infinite;
  }
  .serp-card:hover { transform: rotate(0deg) scale(1.02); }
  @keyframes floatY {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-10px); }
  }

  .serp-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--hair);
  }
  .google-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
  }
  .google-logo span:nth-child(1) { color: #4285f4; }
  .google-logo span:nth-child(2) { color: #ea4335; }
  .google-logo span:nth-child(3) { color: #fbbc04; }
  .google-logo span:nth-child(4) { color: #4285f4; }
  .google-logo span:nth-child(5) { color: #34a853; }
  .google-logo span:nth-child(6) { color: #ea4335; }

  .serp-search {
    flex: 1;
    background: var(--bg-soft);
    border: 1px solid var(--hair);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 13px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .serp-tabs {
    display: flex;
    gap: 24px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--hair);
    font-size: 12px;
    color: var(--ink-2);
    font-weight: 500;
  }
  .serp-tabs span:first-child {
    color: var(--google-blue);
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
  }
  .serp-tabs span:first-child::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--google-blue);
  }

  .serp-result {
    padding: 16px 20px;
    position: relative;
    transition: background .2s;
  }
  .serp-result.first {
    background: linear-gradient(90deg, rgba(251,188,4,.08), transparent);
    border-left: 3px solid var(--google-yellow);
  }
  .serp-result.first::before {
    content: '1';
    position: absolute;
    top: 16px; right: 16px;
    width: 26px; height: 26px;
    background: var(--google-yellow);
    color: var(--ink);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 800;
  }
  .serp-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--ink-2);
    margin-bottom: 4px;
  }
  .serp-result-meta .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--google-blue); }
  .serp-result-title {
    color: #1a0dab;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .serp-result-desc {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .serp-result.faded .serp-result-title { color: #6b6b9c; }
  .serp-result.faded { opacity: 0.55; }

  /* Curved arrow pointing to first result */
  .arrow-curve {
    position: absolute;
    top: 50px;
    left: -90px;
    width: 200px;
    height: 200px;
    z-index: 3;
    pointer-events: none;
  }
  @media (max-width: 960px) {
    .arrow-curve { display: none; }
  }

  /* Rocket */
  /* AI Orb in hero (replaces rocket) */
  .hero-orb-wrap {
    position: absolute;
    top: -10px;
    left: -40px;
    width: 280px;
    height: 280px;
    z-index: 2;
    animation: orbFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(66,133,244,0.35));
  }
  .hero-orb-wrap svg { width: 100%; height: 100%; }
  @keyframes orbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  @media (max-width: 720px) {
    .hero-orb-wrap { width: 200px; height: 200px; left: -20px; }
  }

  /* AI cluster (pill + mobile orb stay together when wrapping) */
  .hero-ai-cluster {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  /* Mobile-only mini IA orb next to AI pill */
  .hero-orb-mobile {
    display: none;
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 12px 30px rgba(66,133,244,0.55));
  }
  .hero-orb-mobile svg { width: 100%; height: 100%; display: block; }
  @media (max-width: 720px) {
    .hero-orb-mobile { display: inline-flex; }
    /* Hide the big orb in hero-visual on mobile */
    .hero-orb-wrap { display: none; }
    /* Give the cluster a full-width line on mobile */
    .hero-ai-cluster {
      flex-basis: 100%;
      gap: 18px;
      margin-top: 4px;
    }
  }
  @media (max-width: 380px) {
    .hero-orb-mobile { width: 120px; height: 120px; }
  }

  /* Floating tag */
  .float-tag {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 4;
  }
  .float-tag.tl { top: 10px; right: 10px; animation: floatY 5s ease-in-out infinite; }
  .float-tag .icn {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--google-green);
    color: #fff;
    flex-shrink: 0;
  }

  /* Hero bottom wave */
  .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
  }
  .hero-wave svg { width: 100%; height: auto; display: block; }

  /* =========================================================
     TRUST STRIP — wraps onto hero
  ========================================================= */
  .trust {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 24px;
  }
  .trust-card {
    max-width: var(--container);
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(11,18,32,.12);
    padding: 40px clamp(24px, 4vw, 56px);
  }
  .trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
  }
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }

  /* New: trust flex layout with hero Premier badge */
  .trust-flex {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 860px) {
    .trust-flex { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  }
  .premier-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
    border-right: 1px solid var(--hair);
  }
  @media (max-width: 860px) {
    .premier-badge {
      flex-direction: column;
      padding-right: 0;
      padding-bottom: 28px;
      border-right: none;
      border-bottom: 1px solid var(--hair);
      text-align: center;
    }
  }
  .premier-svg {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .premier-badge:hover .premier-svg { transform: rotate(-6deg) scale(1.05); }
  .premier-text { line-height: 1.3; }
  .premier-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .premier-sub {
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 600;
  }
  .trust-other-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
  }
  @media (max-width: 720px) {
    .trust-other-badges { grid-template-columns: 1fr; gap: 16px; }
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .badge-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: #fff;
    flex-shrink: 0;
  }
  .badge-text { font-size: 13px; }
  .badge-title { font-weight: 700; color: var(--ink); font-size: 14px; }
  .badge-sub { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

  /* =========================================================
     STATS SECTION — Big chunky numbers
  ========================================================= */
  .stats-section {
    padding: 80px 0 40px;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
  }
  @media (max-width: 720px) {
    .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  }
  .stat {
    position: relative;
  }
  .stat-num {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--google-blue);
  }
  .stat-num.yellow { color: var(--google-yellow-warm); }
  .stat-num.green { color: var(--google-green); }
  .stat-num.red { color: var(--google-red); }
  .stat-label {
    font-size: 14px;
    color: var(--ink-2);
    margin-top: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  /* =========================================================
     SECTION HEAD
  ========================================================= */
  .section { padding: var(--space-section) 0; position: relative; }
  .section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
  }
  .section-head .multicolor-bar { margin: 0 auto 24px; }
  .section-head .label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--google-blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .section-head h2 { margin-bottom: 20px; }
  .section-head h2 .yellow-mark {
    background: linear-gradient(180deg, transparent 60%, rgba(251,188,4,.4) 60%);
    padding: 0 4px;
  }
  .section-head p {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--ink-2);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* =========================================================
     SERVICES — Bigger, more visual cards
  ========================================================= */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

  .service {
    position: relative;
    padding: 36px 32px 32px;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--radius-lg);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
  }
  .service::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent, var(--google-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
  }
  .service:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -20px rgba(11,18,32,.15);
    border-color: transparent;
  }
  .service:hover::before { transform: scaleX(1); }
  .service:nth-child(1) { --accent: var(--google-blue); }
  .service:nth-child(2) { --accent: var(--google-red); }
  .service:nth-child(3) { --accent: var(--google-yellow); }
  .service:nth-child(4) { --accent: var(--google-green); }
  .service:nth-child(5) { --accent: var(--google-blue-bright); }

  .service-num {
    position: absolute;
    top: 28px; right: 28px;
    font-family: 'Archivo', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--bg-soft);
    line-height: 1;
  }
  .service-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: grid; place-items: center;
    margin-bottom: 24px;
  }
  .service:nth-child(1) .service-icon { background: rgba(26,115,232,.1); color: var(--google-blue); }
  .service:nth-child(2) .service-icon { background: rgba(234,67,53,.1); color: var(--google-red); }
  .service:nth-child(3) .service-icon { background: rgba(251,188,4,.15); color: #b07f00; }
  .service:nth-child(4) .service-icon { background: rgba(52,168,83,.1); color: var(--google-green); }
  .service:nth-child(5) .service-icon { background: rgba(66,133,244,.1); color: var(--google-blue-bright); }

  .service h3 { margin-bottom: 12px; }
  .service-desc {
    color: var(--ink-2);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  /* =========================================================
     AI SECTION — Dark, glowing, AI orb
  ========================================================= */
  .ai-section {
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #0d1b3d 50%, #1a2851 100%);
    color: #fff;
    padding: clamp(80px, 10vw, 140px) 0;
    overflow: hidden;
    isolation: isolate;
  }
  .ai-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(66,133,244,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(66,133,244,.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    z-index: -1;
  }
  .ai-section::before {
    content: '';
    position: absolute;
    top: 20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(66,133,244,.18) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
  }
  .ai-section::after {
    content: '';
    position: absolute;
    bottom: 0; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(251,188,4,.1) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
  }

  .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 960px) {
    .ai-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  /* Orb visual */
  .ai-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
  }
  .ai-orb {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .ai-orb svg { width: 100%; height: 100%; }

  .ai-halo { animation: aiHalo 4s ease-in-out infinite; transform-origin: center; }
  @keyframes aiHalo {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  .ai-ring { transform-origin: 200px 200px; }
  .ai-ring-1 { animation: aiRotate 20s linear infinite; }
  .ai-ring-2 { animation: aiRotate 14s linear infinite reverse; }
  .ai-ring-3 { animation: aiRotate 28s linear infinite; }
  @keyframes aiRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .ai-pulse-ring {
    transform-origin: 200px 200px;
    transform: scale(0);
    opacity: 0;
    animation: aiPulse 4s ease-out infinite;
  }
  .ai-pulse-1 { animation-delay: 0s; }
  .ai-pulse-2 { animation-delay: 1.3s; }
  .ai-pulse-3 { animation-delay: 2.6s; }
  @keyframes aiPulse {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
  }

  .ai-core { animation: aiCorePulse 3s ease-in-out infinite; transform-origin: center; }
  @keyframes aiCorePulse {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(66,133,244,0.7)); }
    50% { filter: drop-shadow(0 0 28px rgba(66,133,244,1)); }
  }

  .ai-node { animation: aiNode 2.5s ease-in-out infinite; }
  .ai-n1 { animation-delay: 0s; }
  .ai-n2 { animation-delay: 0.4s; }
  .ai-n3 { animation-delay: 0.8s; }
  .ai-n4 { animation-delay: 1.2s; }
  .ai-n5 { animation-delay: 1.6s; }
  .ai-n6 { animation-delay: 2s; }
  @keyframes aiNode {
    0%, 100% { opacity: 0.5; transform-box: fill-box; transform-origin: center; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
  }

  .ai-line {
    stroke-dasharray: 4 4;
    animation: aiLineFlow 3s linear infinite;
  }
  @keyframes aiLineFlow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -16; }
  }

  /* Floating chips around orb */
  .ai-chip {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: aiChipFloat 4s ease-in-out infinite;
  }
  .ai-chip-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4285f4;
    box-shadow: 0 0 8px currentColor;
  }
  .ai-chip-1 { top: 8%; left: -8%; animation-delay: 0s; }
  .ai-chip-2 { top: 45%; right: -12%; animation-delay: 1.3s; }
  .ai-chip-3 { bottom: 8%; left: 6%; animation-delay: 2.6s; }
  @keyframes aiChipFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @media (max-width: 600px) {
    .ai-chip-1 { left: 0%; }
    .ai-chip-2 { right: 0%; }
  }

  /* AI content */
  .ai-content { color: #fff; }
  .ai-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: rgba(66,133,244,0.15);
    border: 1px solid rgba(66,133,244,0.3);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #93c5fd;
    margin-bottom: 28px;
  }
  .ai-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4285f4;
    box-shadow: 0 0 0 0 rgba(66,133,244,0.7);
    animation: aiEyebrowPulse 1.8s ease-in-out infinite;
  }
  @keyframes aiEyebrowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(66,133,244,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(66,133,244,0); }
  }

  .ai-content h2 {
    color: #fff;
    margin-bottom: 20px;
  }
  .ai-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #fbbc04 50%, #34a853 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .ai-lead {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
  }

  .ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 600px) {
    .ai-features { grid-template-columns: 1fr; }
  }
  .ai-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: all .3s ease;
  }
  .ai-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(66,133,244,0.4);
    transform: translateY(-2px);
  }
  .ai-feature-icon {
    --accent: #4285f4;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(66,133,244,0.15);
    color: var(--accent);
    display: grid; place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(66,133,244,0.3);
  }
  .ai-feature:nth-child(2) .ai-feature-icon { background: rgba(234,67,53,0.15); border-color: rgba(234,67,53,0.3); }
  .ai-feature:nth-child(3) .ai-feature-icon { background: rgba(251,188,4,0.15); border-color: rgba(251,188,4,0.3); }
  .ai-feature:nth-child(4) .ai-feature-icon { background: rgba(52,168,83,0.15); border-color: rgba(52,168,83,0.3); }
  .ai-feature h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .ai-feature p {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.5;
  }

  /* =========================================================
     CRM SECTION — App showcase with phone mockup
  ========================================================= */
  .crm-section {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef4ff 100%);
    overflow: hidden;
  }
  .crm-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(66,133,244,.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .crm-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  @media (max-width: 960px) {
    .crm-grid { grid-template-columns: 1fr; gap: 56px; }
  }

  .crm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: rgba(66,133,244,0.1);
    border: 1px solid rgba(66,133,244,0.2);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--google-blue);
    margin-bottom: 24px;
  }
  .crm-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--google-blue);
    box-shadow: 0 0 0 0 rgba(66,133,244,0.6);
    animation: aiEyebrowPulse 1.8s ease-in-out infinite;
  }
  .crm-content h2 {
    margin-bottom: 20px;
    line-height: 1.05;
  }
  .crm-grad {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .crm-lead {
    font-size: 17px;
    color: var(--ink-2);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
  }
  .crm-lead strong { color: var(--ink); font-weight: 700; }

  .crm-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
  }
  @media (max-width: 600px) {
    .crm-features { grid-template-columns: 1fr; }
  }
  .crm-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .crm-feat-icon {
    --accent: var(--google-blue);
    width: 40px; height: 40px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .crm-feature h4 {
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .crm-feature p {
    color: var(--ink-2);
    font-size: 13px;
    line-height: 1.5;
  }
  .crm-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

  /* CRM Visual side */
  .crm-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
  }
  .crm-glow {
    position: absolute;
    width: 480px; height: 480px;
    background:
      radial-gradient(circle at 30% 30%, rgba(234,67,53,0.18) 0%, transparent 60%),
      radial-gradient(circle at 70% 70%, rgba(66,133,244,0.25) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }

  /* CRM App mockup image (real product shot) */
  .crm-app-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 40px 60px rgba(11,18,32,0.22));
    transition: transform .5s cubic-bezier(.4,0,.2,1);
  }
  .crm-app-img:hover { transform: scale(1.03) translateY(-4px); }
  @media (max-width: 600px) {
    .crm-app-img { max-width: 380px; }
  }

  /* Phone frame */
  .phone-frame {
    position: relative;
    width: 320px;
    height: 660px;
    background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 46px;
    padding: 12px;
    box-shadow:
      0 0 0 2px #2a2a2a,
      0 30px 60px rgba(11,18,32,0.25),
      0 50px 100px -20px rgba(66,133,244,0.3),
      inset 0 0 1px rgba(255,255,255,0.08);
    z-index: 1;
    transform: rotate(-2deg);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
  }
  .phone-frame:hover { transform: rotate(0deg) scale(1.02); }
  @media (max-width: 600px) {
    .phone-frame { width: 280px; height: 580px; transform: none; }
  }
  .phone-notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    z-index: 3;
  }
  .phone-screen {
    width: 100%;
    height: 100%;
    background: #f7f9fc;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* Hide the fake notch when a screen image is shown */
  .phone-frame:has(.phone-screen-img) .phone-notch { display: none; }

  /* App status bar */
  .app-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    height: 32px;
    flex-shrink: 0;
  }
  .app-status-icons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ink);
  }

  /* App header */
  .app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--hair);
    background: #fff;
    flex-shrink: 0;
  }
  .app-back {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--ink);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .app-title { flex: 1; line-height: 1.2; }
  .app-title-main { font-size: 14px; font-weight: 800; color: var(--ink); }
  .app-title-sub { font-size: 11px; color: var(--ink-3); margin-top: 1px; }
  .app-avatars {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 24px;
    padding: 4px;
    border-radius: 50%;
    background: var(--bg-soft);
  }
  .app-avatars span {
    width: 6px; height: 6px;
    border-radius: 50%;
  }
  .app-avatars span:nth-child(1) { background: #4285f4; }
  .app-avatars span:nth-child(2) { background: #ea4335; }
  .app-avatars span:nth-child(3) { background: #fbbc04; }
  .app-avatars span:nth-child(4) { background: #34a853; }

  /* App body */
  .app-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 80px;
  }

  .app-ai-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(66,133,244,0.12), rgba(52,168,83,0.1));
    border: 1px solid rgba(66,133,244,0.25);
    border-radius: 10px;
    font-size: 12px;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .app-ai-badge strong { font-weight: 800; color: var(--google-blue); }
  .ai-spark {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    color: #fff;
    display: grid; place-items: center;
    flex-shrink: 0;
    animation: aiCorePulse 2s ease-in-out infinite;
  }

  .app-client {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .app-client-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--google-blue);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
  }
  .app-client-name { font-size: 13px; font-weight: 800; color: var(--ink); line-height: 1.2; }
  .app-client-meta { font-size: 11px; color: var(--ink-3); margin-top: 1px; line-height: 1.2; }
  .app-client-tag {
    margin-left: auto;
    padding: 3px 8px;
    background: rgba(52,168,83,0.12);
    color: var(--google-green);
    border-radius: var(--radius-pill);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .app-section-title {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin: 12px 0 8px;
  }
  .app-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--hair);
  }
  .app-line:last-of-type { border-bottom: none; }
  .app-line-name { font-size: 12px; font-weight: 700; color: var(--ink); line-height: 1.2; }
  .app-line-detail { font-size: 10px; color: var(--ink-3); margin-top: 2px; }
  .app-line-price { font-size: 13px; font-weight: 800; color: var(--ink); white-space: nowrap; }

  .app-totals {
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: 10px;
  }
  .app-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-2);
    padding: 3px 0;
  }
  .app-total-row.final {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    border-top: 1px solid var(--hair-strong);
    padding-top: 8px;
    margin-top: 6px;
  }

  .app-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 12px 14px 16px;
    background: linear-gradient(180deg, transparent 0%, #fff 30%);
    display: flex;
    gap: 8px;
  }
  .app-btn-secondary, .app-btn-primary {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .app-btn-secondary {
    flex: 0 0 auto;
    background: var(--bg-soft);
    color: var(--ink);
    border: 1px solid var(--hair-strong);
  }
  .app-btn-primary {
    flex: 1;
    background: var(--google-blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26,115,232,0.3);
  }

  /* Floating chips around phone */
  .crm-chip {
    position: absolute;
    background: #fff;
    border: 1px solid var(--hair);
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(11,18,32,0.12);
    z-index: 2;
  }
  .crm-chip-1 {
    top: 4%;
    right: 0;
    color: var(--google-green);
    animation: floatY 5s ease-in-out infinite;
  }
  .crm-chip-2 {
    bottom: 6%;
    left: 0;
    background: linear-gradient(90deg, var(--google-blue), var(--google-green));
    color: #fff;
    border: none;
    animation: floatY 5s ease-in-out infinite 1.5s;
  }
  @media (max-width: 600px) {
    .crm-chip-1 { right: -8px; top: 2%; }
    .crm-chip-2 { left: -8px; bottom: 4%; }
  }
  .why {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
  }
  .why::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,115,232,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  @media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

  .why-card {
    position: relative;
    padding: 36px 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--hair);
    transition: all .3s ease;
    overflow: hidden;
  }
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(11,18,32,.12);
  }
  .why-num {
    font-family: 'Archivo', sans-serif;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--google-blue);
    margin-bottom: 20px;
    display: block;
  }
  .why-card:nth-child(2) .why-num { color: var(--google-red); }
  .why-card:nth-child(3) .why-num { color: var(--google-yellow-warm); }
  .why-card:nth-child(4) .why-num { color: var(--google-green); }
  .why-card:nth-child(5) .why-num { color: var(--google-blue-bright); }
  .why-card:nth-child(6) .why-num { color: var(--google-blue); }

  .why-card h3 { font-size: 20px; margin-bottom: 10px; }
  .why-card p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

  /* =========================================================
     PROCESS — Bigger steps with connectors
  ========================================================= */
  .process {
    position: relative;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: linear-gradient(90deg,
      var(--google-blue) 0%,
      var(--google-red) 33%,
      var(--google-yellow) 66%,
      var(--google-green) 100%);
    border-radius: 999px;
    opacity: 0.25;
    z-index: 0;
  }
  @media (max-width: 860px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
  }
  @media (max-width: 520px) {
    .process-steps { grid-template-columns: 1fr; }
  }
  .step {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .step-num {
    width: 88px; height: 88px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid;
    display: grid; place-items: center;
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    box-shadow: 0 8px 24px rgba(11,18,32,.06);
    transition: transform .3s ease;
  }
  .step:hover .step-num { transform: scale(1.08); }
  .step:nth-child(1) .step-num { border-color: var(--google-blue); color: var(--google-blue); }
  .step:nth-child(2) .step-num { border-color: var(--google-red); color: var(--google-red); }
  .step:nth-child(3) .step-num { border-color: var(--google-yellow); color: #b07f00; }
  .step:nth-child(4) .step-num { border-color: var(--google-green); color: var(--google-green); }
  .step h3 { font-size: 19px; margin-bottom: 10px; }
  .step p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

  /* =========================================================
     SECTEURS — Big visual cards with illustrations
  ========================================================= */
  .sectors {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  }
  .sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .sectors-grid { grid-template-columns: 1fr; gap: 16px; } }

  .sector {
    position: relative;
    padding: 32px 20px 24px;
    background: #fff;
    border: 1px solid var(--hair);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    overflow: hidden;
  }
  .sector:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26,115,232,.18);
    border-color: var(--google-blue);
  }
  .sector::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--google-blue), var(--google-blue-deep));
    transition: height .35s ease;
    z-index: -1;
  }
  .sector:hover::after { height: 100%; }
  .sector:hover .sector-icon { background: rgba(255,255,255,.15); color: #fff; }
  .sector:hover .sector-name { color: #fff; }
  .sector:hover .sector-arrow { color: var(--google-yellow); }

  .sector-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--bg-tint);
    display: grid; place-items: center;
    color: var(--google-blue);
    transition: all .35s ease;
  }
  .sector-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 4px;
    transition: color .35s ease;
  }
  .sector-arrow {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 600;
    transition: color .35s ease;
  }

  /* =========================================================
     FINAL CTA — Massive blue block, rocket
  ========================================================= */
  .final-cta {
    padding: var(--space-section) 0;
  }
  @media (max-width: 600px) {
    .final-cta { padding: 60px 0; }
    .final-cta .container { padding: 0 16px; }
  }
  .cta-card {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: var(--radius-xl);
    padding: clamp(48px, 6vw, 80px);
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(251,188,4,.2) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
  }
  @media (max-width: 860px) {
    .cta-card { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 600px) {
    .cta-card {
      padding: 32px 22px;
      border-radius: var(--radius-lg);
    }
    .cta-form { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
  }
  .cta-card > * { position: relative; z-index: 1; }
  .cta-card h2 {
    color: #fff;
    margin-bottom: 18px;
  }
  .cta-card h2 .yellow {
    color: var(--google-yellow);
  }
  .cta-card .lead {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
  }
  .cta-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 600;
  }
  .cta-meta-item { display: inline-flex; align-items: center; gap: 8px; }
  .check-bullet {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--google-yellow);
    color: var(--ink);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .cta-phone-block {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .cta-phone-icn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: grid; place-items: center;
    flex-shrink: 0;
  }

  /* WhatsApp animated chat (replaces phone block) */
  .wa-chat {
    display: block;
    margin-top: 36px;
    background: #ECE5DD;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.06);
    text-decoration: none;
    color: var(--ink);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    max-width: 420px;
  }
  .wa-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 0 2px rgba(37,211,102,.4);
  }
  .wa-chat:hover .wa-arrow { transform: translateX(4px); }

  .wa-header {
    background: linear-gradient(180deg, #075E54 0%, #128C7E 100%);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
  }
  .wa-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    flex-shrink: 0;
    padding: 4px;
  }
  .wa-avatar span {
    width: 7px; height: 7px;
    border-radius: 50%;
    display: block;
  }
  .wa-avatar { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; align-content: center; justify-content: center; }
  .wa-avatar span:nth-child(1) { background: #4285f4; }
  .wa-avatar span:nth-child(2) { background: #ea4335; }
  .wa-avatar span:nth-child(3) { background: #fbbc04; }
  .wa-avatar span:nth-child(4) { background: #34a853; }
  .wa-meta { flex: 1; line-height: 1.2; }
  .wa-name {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
  .wa-status {
    font-size: 11px;
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
  }
  .wa-online-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74,222,128,.6);
    animation: waPulse 2s ease-in-out infinite;
  }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  }
  .wa-logo {
    width: 22px;
    height: 22px;
    color: rgba(255,255,255,.8);
  }

  .wa-body {
    padding: 16px 14px 12px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%),
      #ECE5DD;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(7,94,84,.04) 1.5px, transparent 1.5px),
      radial-gradient(circle at 80% 70%, rgba(7,94,84,.04) 1.5px, transparent 1.5px);
    background-size: 28px 28px, 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .wa-bubble {
    position: relative;
    max-width: 80%;
    padding: 8px 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0,0,0,.08);
    color: #303030;
    opacity: 0;
    transform: translateY(8px);
    animation: waBubble .4s cubic-bezier(.4,0,.2,1) forwards;
    animation-delay: var(--d, 0s);
  }
  @keyframes waBubble {
    to { opacity: 1; transform: translateY(0); }
  }
  .wa-bubble.in {
    align-self: flex-start;
    background: #fff;
    border-top-left-radius: 2px;
  }
  .wa-bubble.out {
    align-self: flex-end;
    background: #DCF8C6;
    border-top-right-radius: 2px;
  }
  .wa-time {
    position: absolute;
    bottom: 4px;
    right: 8px;
    font-size: 10px;
    color: rgba(0,0,0,.45);
    font-weight: 500;
  }
  .wa-bubble.typing {
    padding: 12px 14px;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    width: auto;
  }
  .wa-bubble.typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #999;
    animation: waTyping 1.4s ease-in-out infinite;
  }
  .wa-bubble.typing span:nth-child(2) { animation-delay: .2s; }
  .wa-bubble.typing span:nth-child(3) { animation-delay: .4s; }
  @keyframes waTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
  }

  .wa-cta-foot {
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.005em;
  }
  .wa-cta-foot svg { color: #fff; flex-shrink: 0; }
  .wa-cta-foot .wa-arrow {
    margin-left: auto;
    font-weight: 900;
    transition: transform .25s ease;
  }

  /* Form */
  .cta-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--ink);
    box-shadow: 0 30px 60px rgba(0,0,0,.2);
  }
  .cta-form h3 { font-size: 22px; margin-bottom: 6px; }
  .cta-form-sub { color: var(--ink-2); font-size: 14px; margin-bottom: 24px; }
  .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .field label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .field input, .field select {
    padding: 14px 16px;
    border: 2px solid var(--hair);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    font-weight: 500;
  }
  .field input:focus, .field select:focus {
    outline: none;
    border-color: var(--google-blue);
    box-shadow: 0 0 0 4px rgba(26,115,232,.12);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cta-form .btn { width: 100%; padding: 16px; margin-top: 8px; font-size: 16px; }
  .cta-form-foot { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; }

  /* =========================================================
     FOOTER
  ========================================================= */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
      var(--google-blue) 0% 25%,
      var(--google-red) 25% 50%,
      var(--google-yellow) 50% 75%,
      var(--google-green) 75% 100%);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
  }
  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }
  footer .logo { color: #fff; margin-bottom: 16px; }
  footer p { font-size: 14px; max-width: 320px; margin-bottom: 20px; line-height: 1.6; }
  footer h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--google-yellow);
    margin-bottom: 20px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
  }
  footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  footer ul a {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: color .2s;
  }
  footer ul a:hover { color: #fff; }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* =========================================================
     SCROLL ANIMATIONS
  ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  }
  .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
  .reveal-stagger.in > *:nth-child(2) { transition-delay: .15s; }
  .reveal-stagger.in > *:nth-child(3) { transition-delay: .25s; }
  .reveal-stagger.in > *:nth-child(4) { transition-delay: .35s; }
  .reveal-stagger.in > *:nth-child(5) { transition-delay: .45s; }
  .reveal-stagger.in > *:nth-child(6) { transition-delay: .55s; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }
/* =========================================================
   PAGES SEO — Hero compact + content area + final CTA
   ========================================================= */

/* Body baseline for SEO pages (same chrome philosophy as home) */
body.googlelead-seo {
  margin: 0;
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Hide Astra's default header/footer wrappers when this template is active */
body.googlelead-seo > .ast-screen-reader-text,
body.googlelead-seo > #wpadminbar { /* keep adminbar */ }

/* SEO HERO ---------------------------------------------------- */
.seo-hero {
  position: relative;
  background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-blue-deep) 100%);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(251,188,4,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(234,67,53,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.seo-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.seo-hero-content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.seo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.seo-hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--google-yellow);
  box-shadow: 0 0 12px rgba(251,188,4,0.8);
  animation: aiEyebrowPulse 1.8s ease-in-out infinite;
}
.seo-hero h1 {
  font-family: 'Google Sans', 'DM Sans', Archivo, system-ui, sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
}
.seo-hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  font-weight: 500;
}
.seo-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.seo-hero-ctas .btn-primary {
  background: var(--google-yellow);
  color: var(--ink);
  font-weight: 800;
  padding: 16px 28px;
  font-size: 15px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-yellow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.seo-hero-ctas .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(251,188,4,0.5); }
.seo-hero-ctas .btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: background .2s ease;
}
.seo-hero-ctas .btn-ghost:hover { background: rgba(255,255,255,0.2); }
.seo-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.seo-hero-trust strong { color: #fff; font-weight: 800; }
.seo-hero-trust .dot { color: rgba(255,255,255,0.4); }

/* CONTENT AREA ----------------------------------------------- */
.seo-main {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 0;
}
.seo-content {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}
.seo-content > *:first-child { margin-top: 0; }
.seo-content > *:last-child { margin-bottom: 0; }

/* Paragraph */
.seo-content p {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
}
.seo-content p strong { color: var(--ink); font-weight: 700; }
.seo-content p em { color: var(--ink); font-style: italic; }

/* Headings */
.seo-content h2 {
  font-family: 'Google Sans', 'DM Sans', Archivo, system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 64px 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--hair);
  position: relative;
}
.seo-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
  border-radius: 999px;
}
.seo-content h3 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin: 36px 0 12px;
  padding-left: 16px;
  border-left: 4px solid var(--google-blue);
}

/* Lists */
.seo-content ul, .seo-content ol {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
  counter-reset: seo-counter;
}
.seo-content ul li, .seo-content ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
}
.seo-content ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--google-blue);
}
.seo-content ol {
  counter-reset: seo-counter;
}
.seo-content ol li {
  counter-increment: seo-counter;
}
.seo-content ol li::before {
  content: counter(seo-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--google-blue), var(--google-blue-deep));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: 'Archivo', sans-serif;
}
.seo-content li strong { color: var(--ink); font-weight: 700; }

/* Blockquote — Testimonial style */
.seo-content blockquote {
  margin: 40px 0;
  padding: 32px 36px 32px 56px;
  background: linear-gradient(135deg, #f0f6ff 0%, #f7f9fc 100%);
  border-radius: var(--radius-md);
  border-left: 6px solid var(--google-blue);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.seo-content blockquote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 18px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--google-blue);
  opacity: 0.2;
  line-height: 1;
}
.seo-content blockquote p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 14px;
}
.seo-content blockquote p:last-child { margin-bottom: 0; }
.seo-content blockquote cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.seo-content blockquote cite strong { color: var(--google-blue); font-weight: 800; }

/* Table — Metrics */
.seo-content figure.wp-block-table,
.seo-content table {
  margin: 30px 0;
  width: 100%;
}
.seo-content figure.wp-block-table {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin: 0;
}
.seo-content thead {
  background: linear-gradient(135deg, var(--google-blue), var(--google-blue-deep));
  color: #fff;
}
.seo-content thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  border: none;
}
.seo-content tbody td {
  padding: 14px 20px;
  border-top: 1px solid var(--hair);
  font-size: 15px;
  color: var(--ink-2);
}
.seo-content tbody tr:nth-child(even) { background: var(--bg-soft); }
.seo-content tbody td strong {
  color: var(--google-blue);
  font-weight: 800;
  font-size: 16px;
}

/* Separator */
.seo-content hr {
  border: none;
  height: 1px;
  background: var(--hair);
  margin: 50px 0;
  position: relative;
}
.seo-content hr::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
  border-radius: 999px;
}

/* Inline links */
.seo-content a {
  color: var(--google-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(26,115,232,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease;
}
.seo-content a:hover { text-decoration-color: var(--google-blue); }
.seo-content code {
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  color: var(--google-blue);
}

/* CTA inside content (the dual-link <p> after H1) */
.seo-content p:has(a + a) {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0 28px;
  font-size: 0; /* hide the · separator */
}
.seo-content p:has(a + a) a {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--google-blue);
  color: #fff !important;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .15s ease;
}
.seo-content p:has(a + a) a:nth-child(2) {
  background: transparent;
  color: var(--google-blue) !important;
  border: 1px solid var(--google-blue);
}
.seo-content p:has(a + a) a:hover { transform: translateY(-1px); }

/* SEO FINAL CTA ---------------------------------------------- */
.seo-cta-final {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
  background: var(--bg-soft);
}
.seo-cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px);
  background: linear-gradient(135deg, var(--google-blue) 0%, var(--google-blue-deep) 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.seo-cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251,188,4,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.seo-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.seo-cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--google-green);
  box-shadow: 0 0 10px rgba(52,168,83,0.8);
  animation: aiEyebrowPulse 1.8s ease-in-out infinite;
}
.seo-cta-card h2 {
  font-family: 'Google Sans', 'DM Sans', Archivo, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.seo-cta-card p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
.seo-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.seo-cta-buttons .btn-lg { padding: 18px 32px; font-size: 16px; }
.seo-cta-buttons .btn-primary {
  background: var(--google-yellow);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-yellow);
}
.seo-cta-buttons .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .seo-hero { padding: 60px 0 50px; }
  .seo-hero-trust { font-size: 12px; gap: 10px; }
  .seo-content { font-size: 16px; }
  .seo-content h2 { margin: 48px 0 16px; }
  .seo-content h3 { margin: 28px 0 10px; }
  .seo-content blockquote { padding: 24px 24px 24px 40px; }
  .seo-content blockquote::before { font-size: 60px; left: 12px; }
  .seo-content table { font-size: 14px; }
  .seo-content thead th, .seo-content tbody td { padding: 12px; }
  .seo-cta-card { padding: 32px 24px; border-radius: var(--radius-lg); }
}
