  /* ============================================================
     DESIGN TOKENS
     ============================================================ */
  :root {
    --navy: #2d3a7d;
    --navy-dark: #232e66;
    --navy-deeper: #1a2452;
    --navy-50: #eef0f8;
    --pink: #e91e85;
    --pink-soft: #ffb3d9;
    --pink-50: #fdeaf3;
    --orange: #f58024;
    --orange-soft: #fcb549;
    --orange-50: #fff2e6;
    --red: #e64644;
    --magenta: #d823cd;
    --green: #1d8a4a;
    --green-soft: #e8f7ee;

    --grad: linear-gradient(90deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-tilt: linear-gradient(135deg, #fcb549 0%, #e64644 50%, #d823cd 100%);
    --grad-soft: linear-gradient(135deg, #fff2e6 0%, #fdeaf3 100%);

    --bg: #ffffff;
    --surface: #f7f8fc;
    --surface-2: #f2f4f8;
    --border: #e8eaef;
    --text: #151515;
    --text-muted: #6f6f6f;

    --font: 'Figtree', system-ui, -apple-system, sans-serif;

    --sh-md: 0 4px 8px rgba(35, 46, 102, 0.06), 0 8px 24px rgba(35, 46, 102, 0.08);
    --sh-lg: 0 12px 24px -8px rgba(35, 46, 102, 0.12), 0 24px 64px -12px rgba(35, 46, 102, 0.18);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img, video, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ::selection { background: var(--pink); color: #fff; }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============================================================
     BUTTONS
     ============================================================ */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    box-shadow: 0 12px 28px -8px rgba(230, 70, 68, 0.55);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-family: var(--font);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -8px rgba(230, 70, 68, 0.7);
  }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #fff;
    color: var(--navy-dark);
    border: 1px solid var(--border);
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    transition: all 0.2s;
    cursor: pointer;
    font-family: var(--font);
  }
  .btn-secondary:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
  }

  .hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero-page {
    padding: 160px 0 88px;
    background: linear-gradient(180deg, #eef3ff 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero-page::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-page-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-page-inner { max-width: 640px; }
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .hero-page .kicker {
    color: var(--navy);
    margin-bottom: 20px;
  }
  .hero-page h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .hero-page h1 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero-page .hero-lead {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 36px;
  }

  /* ============================================================
     HERO VISUAL — Speed meter
     ============================================================ */
  .speed-visual {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    position: relative;
    margin: 0 auto;
  }
  .speed-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--sh-lg);
    padding: 18px 22px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
  }
  .speed-card .sc-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .speed-card .sc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
  }
  .speed-card .sc-dot.good { background: var(--green); }
  .speed-card .sc-dot.warn { background: var(--orange); }
  .speed-card .sc-dot.bad  { background: var(--red); }

  /* Score dial card */
  .sc-score-main {
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .sc-arc-svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .sc-score-number {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 14px;
  }
  .sc-score-num {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
  }
  .sc-score-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Metric rows */
  .sc-metrics { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
  .sc-metric-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }
  .sc-metric-name { flex: 1; font-weight: 600; color: var(--navy-dark); }
  .sc-metric-val {
    font-weight: 800;
    white-space: nowrap;
  }
  .sc-metric-val.good { color: var(--green); }
  .sc-metric-val.warn { color: var(--orange); }
  .sc-metric-val.bad  { color: var(--red); }
  .sc-metric-bar {
    width: 50px;
    height: 4px;
    border-radius: 99px;
    background: var(--border);
    flex-shrink: 0;
    overflow: hidden;
  }
  .sc-metric-fill {
    height: 100%;
    border-radius: 99px;
  }
  .sc-metric-fill.good { background: var(--green); }
  .sc-metric-fill.warn { background: var(--orange); }
  .sc-metric-fill.bad  { background: var(--red); }

  /* Card positions */
  .sc-card-score {
    top: 2%;
    left: 4%;
    width: 58%;
    transform: rotate(-4deg);
    z-index: 2;
    animation: scFloatA 7s ease-in-out infinite;
  }
  .sc-card-before {
    top: 6%;
    right: 0;
    width: 52%;
    transform: rotate(3deg);
    z-index: 3;
    animation: scFloatB 6s ease-in-out infinite;
  }
  .sc-card-after {
    bottom: 0;
    left: 12%;
    width: 66%;
    transform: rotate(-2deg);
    z-index: 1;
    animation: scFloatC 8s ease-in-out infinite;
  }

  @keyframes scFloatA {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50%       { transform: rotate(-4deg) translateY(-10px); }
  }
  @keyframes scFloatB {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50%       { transform: rotate(3deg) translateY(-12px); }
  }
  @keyframes scFloatC {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50%       { transform: rotate(-2deg) translateY(-8px); }
  }

  /* ============================================================
     SECTION HEAD
     ============================================================ */
  .block { padding: 100px 0; }
  .block.alt { background: var(--surface); }
  .section-head {
    margin-bottom: 64px;
    max-width: 880px;
  }
  .section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
  }
  .kicker.orange  { color: var(--orange); }
  .kicker.pink    { color: var(--pink); }
  .kicker.navy    { color: var(--navy); }
  .kicker.green   { color: var(--green); }
  .section-title {
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.015em;
  }
  .section-title .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
  }
  .section-head.center .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  /* ============================================================
     STATS STRIP — why speed matters
     ============================================================ */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sh-md);
  }
  .stat-block {
    padding: 36px 32px;
    position: relative;
  }
  .stat-block + .stat-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
  }
  .stat-block-num {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }
  .stat-block-label {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 500;
  }
  .stat-block-label strong {
    color: var(--text);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
  }

  /* ============================================================
     CWV CARDS — LCP, INP, CLS
     ============================================================ */
  .cwv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .cwv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  }
  .cwv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .cwv-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.06;
  }
  .cwv-card.lcp::after { background: var(--orange); }
  .cwv-card.inp::after { background: var(--pink); }
  .cwv-card.cls::after { background: var(--navy); }
  .cwv-acronym {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .cwv-card.lcp .cwv-acronym { color: var(--orange); }
  .cwv-card.inp .cwv-acronym { color: var(--pink); }
  .cwv-card.cls .cwv-acronym { color: var(--navy); }
  .cwv-fullname {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .cwv-desc {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .cwv-threshold {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .cwv-threshold-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }
  .cwv-threshold-label { color: var(--text-muted); font-weight: 500; }
  .cwv-threshold-val {
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 12px;
    white-space: nowrap;
  }
  .cwv-threshold-val.good { background: var(--green-soft); color: var(--green); }
  .cwv-threshold-val.warn { background: var(--orange-50); color: var(--orange); }
  .cwv-threshold-val.bad  { background: #fdeaea; color: var(--red); }

  /* ============================================================
     PILLAR CARDS — what we optimize
     ============================================================ */
  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  .pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
  }
  .pillar:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-soft);
  }
  .pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pillar-icon.orange { background: var(--orange-50); color: var(--orange); }
  .pillar-icon.pink   { background: var(--pink-50);   color: var(--pink); }
  .pillar-icon.navy   { background: var(--navy-50);   color: var(--navy); }
  .pillar-icon.green  { background: var(--green-soft); color: var(--green); }
  .pillar-icon.grad   { background: var(--grad); color: #fff; }
  .pillar h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .pillar p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
  }
  .pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }
  .pillar-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
  }

  /* ============================================================
     WORDPRESS SECTION — dark band
     ============================================================ */
  .wp-band {
    background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, #2e1e5e 130%);
    color: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .wp-band::before {
    content: '';
    position: absolute;
    top: -160px;
    left: -160px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .wp-band::after {
    content: '';
    position: absolute;
    bottom: -180px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .wp-band .section-head { position: relative; z-index: 2; }
  .wp-band .section-title { color: #fff; }
  .wp-band .section-lead { color: rgba(255,255,255,0.75); }
  .wp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 2;
  }
  .wp-problems { display: flex; flex-direction: column; gap: 18px; }
  .wp-problem {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    transition: background 0.3s, border-color 0.3s;
  }
  .wp-problem:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(232,30,133,0.35);
  }
  .wp-problem-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(230, 70, 68, 0.18);
    color: #ff8f8f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .wp-problem-text { flex: 1; }
  .wp-problem-text strong {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .wp-problem-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
  }
  .wp-solutions { display: flex; flex-direction: column; gap: 18px; }
  .wp-solution {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    transition: background 0.3s, border-color 0.3s;
  }
  .wp-solution:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(29, 138, 74, 0.40);
  }
  .wp-solution-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(29, 138, 74, 0.18);
    color: #5ddaa0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .wp-solution-text { flex: 1; }
  .wp-solution-text strong {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .wp-solution-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
  }
  .wp-band-head-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .wp-band-head-label.red  { color: #ff8f8f; }
  .wp-band-head-label.green { color: #5ddaa0; }

  /* ============================================================
     ALYSIVUT BAND — cross-promo
     ============================================================ */
  .alysivut-promo {
    background: var(--grad-soft);
    border: 1px solid var(--pink-soft);
    border-radius: 28px;
    padding: 48px 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .alysivut-promo::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .alysivut-promo-text { position: relative; z-index: 2; }
  .alysivut-promo-text .promo-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    display: block;
  }
  .alysivut-promo-text h3 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: 14px;
  }
  .alysivut-promo-text h3 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .alysivut-promo-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 560px;
  }
  .alysivut-promo-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .promo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    color: var(--pink);
    padding: 12px 20px;
    border: 1.5px solid var(--pink-soft);
    border-radius: 999px;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .promo-link:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
  }

  /* ============================================================
     PROCESS STEPS
     ============================================================ */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: process;
  }
  .process-step {
    position: relative;
    padding-top: 8px;
  }
  .process-step::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .process-step h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .process-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ============================================================
     INLINE CTA BOX
     ============================================================ */
  .inline-cta {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 36px;
    background: var(--grad-soft);
    border: 1px solid var(--pink-soft);
    border-radius: 22px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .inline-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .inline-cta-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 240px;
    position: relative;
    z-index: 2;
  }
  .inline-cta-text strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .inline-cta-text span {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }
  .inline-cta-text a { color: var(--pink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--pink-soft); text-underline-offset: 3px; }
  .inline-cta-text a:hover { text-decoration-color: var(--pink); }
  .inline-cta .btn-primary { position: relative; z-index: 2; flex-shrink: 0; }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .faq-item:hover {
    border-color: var(--pink-soft);
    box-shadow: var(--sh-md);
  }
  .faq-item summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--pink);
    transition: transform 0.25s;
    line-height: 1;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
  }
  .faq-item p a { color: var(--pink); font-weight: 700; }

  /* ============================================================
     CTA BAND
     ============================================================ */
  .cta-band {
    background: var(--navy-deeper);
    padding: 110px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(45, 58, 125, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(232, 30, 133, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .cta-band-inner {
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta-lead {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .cta-band h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.88);
  }
  .cta-band h2 .gr {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
  }

  /* ============================================================
     REVEAL
     ============================================================ */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal].in { opacity: 1; transform: translateY(0); }

  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  [data-reveal-stagger].in > * { opacity: 1; transform: translateY(0); }
  [data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.05s; }
  [data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.10s; }
  [data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.15s; }
  [data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.20s; }
  [data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.25s; }
  [data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.30s; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1100px) {
    .hero-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .speed-visual { max-width: 400px; }
    .cwv-grid { grid-template-columns: 1fr; }
    .wp-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .alysivut-promo { grid-template-columns: 1fr; gap: 28px; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-block + .stat-block::before { top: 0; left: 20%; width: 60%; height: 1px; }
  }
  @media (max-width: 760px) {
    .cwv-grid { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .hero-page { padding: 120px 0 60px; }
    .block { padding: 70px 0; }
    .wp-band { padding: 80px 0; }
    .cta-band { padding: 80px 0; }
    .section-head { margin-bottom: 48px; }
    .pillar { padding: 28px 24px; }
    .cwv-card { padding: 28px 24px; }
    .hero-cta-row { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .speed-visual { max-width: 320px; }
    .speed-card { padding: 14px 16px; font-size: 12.5px; }
    .inline-cta { flex-direction: column; align-items: stretch; padding: 24px 22px; gap: 18px; }
    .inline-cta .btn-primary { justify-content: center; }
    .alysivut-promo { padding: 32px 28px; }
    .process-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-step::before { font-size: 60px; }
  }

  /* ============================================================
     AI-HI FORM (Kipinä)
     ============================================================ */
  .ai-hi {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 16px 28px;
    background: #fff;
    color: var(--navy-dark);
    border: 1px solid var(--border);
    font-weight: 800;
    font-size: 15px;
    border-radius: 999px;
    font-family: var(--font);
    transition: all 0.2s;
  }
  .ai-hi:hover, .ai-hi:focus-within {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
  }
  .ai-hi-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
    user-select: none;
    cursor: default;
  }
  .ai-hi-wave {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transform-origin: 70% 70%;
    animation: aiWave 3.4s ease-in-out 2s infinite;
  }
  @keyframes aiWave {
    0%, 78%, 100% { transform: rotate(0deg); }
    82%  { transform: rotate(14deg); }
    86%  { transform: rotate(-8deg); }
    90%  { transform: rotate(14deg); }
    94%  { transform: rotate(-4deg); }
    98%  { transform: rotate(10deg); }
  }
  .ai-hi-input {
    width: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--navy-dark);
    font: 500 14px/1 var(--font);
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease 0.05s, padding 0.3s ease, margin 0.3s ease;
  }
  .ai-hi-input::placeholder { color: var(--text-muted); font-weight: 400; }
  .ai-hi:hover .ai-hi-input,
  .ai-hi:focus-within .ai-hi-input {
    width: 200px;
    opacity: 1;
    padding: 0 12px;
    margin-left: 10px;
    border-left: 1px solid var(--border);
  }
  .ai-hi-send {
    width: 0;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--navy-dark);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.65);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease 0.1s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  }
  .ai-hi-send svg { width: 14px; height: 14px; stroke-width: 2.6; }
  .ai-hi:hover .ai-hi-send,
  .ai-hi:focus-within .ai-hi-send {
    width: 32px;
    opacity: 1;
    transform: scale(1);
  }
  .ai-hi-send:hover, .ai-hi-send:focus-visible { color: var(--orange); }

  /* Tumma variantti CTA-bandissa */
  .cta-band .ai-hi {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
  }
  .cta-band .ai-hi:hover,
  .cta-band .ai-hi:focus-within {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
  }
  .cta-band .ai-hi-input { color: #fff; }
  .cta-band .ai-hi-input::placeholder { color: rgba(255,255,255,0.55); }
  .cta-band .ai-hi:hover .ai-hi-input,
  .cta-band .ai-hi:focus-within .ai-hi-input { border-left-color: rgba(255,255,255,0.25); }
  .cta-band .ai-hi-send { color: #fff; }
  .cta-band .ai-hi-send:hover,
  .cta-band .ai-hi-send:focus-visible { color: var(--orange-soft); }

  @media (prefers-reduced-motion: reduce) {
    .ai-hi-wave { animation: none; }
  }

  @media (max-width: 600px) {
    .ai-hi { justify-content: center; }
    .ai-hi:hover .ai-hi-input,
    .ai-hi:focus-within .ai-hi-input { width: 140px; }
  }

/* ============================================================
   CTA-RIVI: WIDGET JA KAKSI NAPPIA
   Rivillä on widget ja kaksi nappia, jotka eivät mahdu yhdelle
   riville edes kenttä suljettuna. base.css pitää widget + nappi
   -rivit yhtenäisinä, mutta täällä rivitys sallitaan, jottei
   sisältö valu tekstipalstan ulkopuolelle.
   ============================================================ */
@media (min-width: 861px) {
  div.hero-cta-row:has(> .ai-hi.ai-hi) { flex-wrap: wrap; }
}
