<style>
  /* =========================================================
     RESET & BASE
     ========================================================= */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root{
    --bg: #0A0A0B;
    --bg-elev: #111114;
    --surface: #131316;
    --surface-2: #1A1A1F;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --text: #EDEDF0;
    --text-dim: #A0A0A8;
    --text-muted: #6B6B74;
    --violet: #8B5CF6;
    --violet-soft: #A78BFA;
    --violet-bg: rgba(139,92,246,0.08);
    --violet-border: rgba(139,92,246,0.25);
    --green: #4ADE80;
    --green-bg: rgba(74,222,128,0.08);
    --green-border: rgba(74,222,128,0.25);
    --yellow: #FBBF24;
    --red: #F87171;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px -8px rgba(0,0,0,0.5);
    --shadow-elev: 0 20px 60px -20px rgba(0,0,0,0.7);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--violet); color: #fff; }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* =========================================================
     TYPOGRAPHY
     ========================================================= */
  h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: #fff; }
  h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.035em; font-weight: 600; }
  h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.025em; }
  h3 { font-size: 1.125rem; font-weight: 500; }
  p { color: var(--text-dim); }
  .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--violet-soft);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--violet-bg);
    border: 1px solid var(--violet-border);
    border-radius: 999px;
    margin-bottom: 18px;
  }
  .section-intro { max-width: 640px; margin: 0 auto 60px; text-align: center; }
  .section-intro h2 { margin-bottom: 16px; }
  .section-intro p { font-size: 1.05rem; }

  /* =========================================================
     NAVIGATION
     ========================================================= */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    background: rgba(10,10,11,0.7);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease);
  }
  .nav.scrolled { border-bottom-color: var(--border); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  }
  .logo-mark {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, var(--violet), var(--violet-soft));
    border-radius: 7px;
    position: relative;
  }
  .logo-mark::after {
    content: ""; position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: 0.9rem; color: var(--text-dim);
    transition: color .2s var(--ease);
  }
  .nav-links a:hover { color: #fff; }
  .nav-cta {
    padding: 8px 16px;
    background: #fff;
    color: #000;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(255,255,255,0.3); }
  .nav-burger { display: none; }

  /* =========================================================
     BUTTONS
     ========================================================= */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all .25s var(--ease);
    white-space: nowrap;
  }
  .btn-primary {
    background: #fff;
    color: #000;
  }
  .btn-primary:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -8px rgba(255,255,255,0.3);
  }
  .btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-strong);
  }
  .btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.04);
  }
  .btn .arrow { transition: transform .2s var(--ease); }
  .btn:hover .arrow { transform: translateX(3px); }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--violet-bg) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at top, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 70%);
    z-index: -1;
  }
  .hero h1 {
    max-width: 820px;
    margin: 0 auto 24px;
    background: linear-gradient(180deg, #fff 20%, #a5a5ad 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero .sub {
    max-width: 620px; margin: 0 auto 36px;
    font-size: 1.125rem;
    color: var(--text-dim);
  }
  .hero-cta {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }
  .hero-meta {
    display: flex; gap: 32px; justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
  }
  .hero-meta span {
    font-size: 0.85rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 8px;
  }
  .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    display: inline-block;
  }

  /* =========================================================
     SECTION BASE
     ========================================================= */
  section { padding: 100px 0; position: relative; }

  /* =========================================================
     MUCHO MÁS QUE UNA AUDITORÍA
     ========================================================= */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  .feature {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .feature::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
    opacity: 0;
    transition: opacity .3s var(--ease);
  }
  .feature:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    background: var(--surface-2);
  }
  .feature:hover::before { opacity: 1; }
  .feature-icon {
    width: 36px; height: 36px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--violet-bg);
    border: 1px solid var(--violet-border);
    border-radius: 9px;
    color: var(--violet-soft);
  }
  .feature h3 { margin-bottom: 8px; color: #fff; }
  .feature p { font-size: 0.95rem; }

 /* =========================================================
   CSS Icons (features & analysis)
   Todos usan currentColor para heredar el color del contenedor
   ========================================================= */
.i-arrow-up, .i-handshake, .i-bolt, .i-star, .i-chat, .i-chart {
  position: relative;
  width: 18px; height: 18px;
}

/* --- Flecha ascendente: Conversión / Atraer visitantes --- */
.i-arrow-up::before, .i-arrow-up::after {
  content: ""; position: absolute;
  background: currentColor;
}
.i-arrow-up::before { /* shaft */
  left: 8px; top: 4px; width: 2px; height: 11px; border-radius: 1px;
}
.i-arrow-up::after { /* head */
  left: 4px; top: 7px; width: 10px; height: 2px; border-radius: 1px;
  transform: rotate(45deg);
  transform-origin: 5px 1px;
}

/* --- Corazón: Confianza / Generar confianza --- */
.i-handshake::before,
.i-handshake::after {
  content: ""; position: absolute;
  width: 8px; height: 12px;
  background: currentColor;
  border-radius: 8px 8px 0 0;
  top: 3px;
}
.i-handshake::before {
  left: 2px;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}
.i-handshake::after {
  left: 8px;
  transform: rotate(45deg);
  transform-origin: 0% 100%;
}

/* --- Rayo: UX / Convertir en clientes --- */
.i-bolt::before {
  content: ""; position: absolute;
  left: 4px; top: 1px;
  width: 10px; height: 16px;
  background: currentColor;
  clip-path: polygon(65% 0%, 15% 58%, 42% 58%, 35% 100%, 85% 42%, 58% 42%);
}

/* --- Estrella: SEO / Destacar frente a la competencia --- */
.i-star::before {
  content: ""; position: absolute;
  left: 1px; top: 1px;
  width: 16px; height: 16px;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* --- Burbuja de chat: Propuesta de valor / Facilitar contacto --- */
.i-chat::before {
  content: ""; position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 10px;
  border: 2px solid currentColor;
  border-radius: 5px;
}
.i-chat::after {
  content: ""; position: absolute;
  left: 5px; top: 13px;
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
}

/* --- Gráfico de barras: Presencia digital / Apoyar crecimiento --- */
.i-chart::before {
  content: ""; position: absolute;
  left: 2px; bottom: 3px;
  width: 3px; height: 6px;
  background: currentColor;
  border-radius: 1px;
}
.i-chart::after {
  content: ""; position: absolute;
  left: 7px; bottom: 3px;
  width: 3px; height: 9px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 5px -4px 0 0 currentColor;
}
/* =========================================================
   TARJETA NUEVA (AEO) — badges y destaque
   ========================================================= */
.analysis-card.is-new {
  position: relative;
  border-color: var(--violet-border);
  background: linear-gradient(135deg, var(--violet-bg), var(--surface) 50%);
}
.analysis-card.is-new:hover {
  border-color: var(--violet-soft);
}

.badge-group {
  position: absolute;
  top: 14px; right: 14px;
  display: flex; gap: 6px; align-items: center;
  z-index: 2;
}
.badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  line-height: 1.4;
}
.badge-new {
  color: #0A0A0B;
  background: var(--violet-soft);
  box-shadow: 0 0 14px rgba(167,139,250,0.4);
}
.badge-optional {
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
}

/* Ícono AEO: destello IA (sparkle) */
.i-sparkle { position: relative; width: 18px; height: 18px; }
.i-sparkle::before {
  content: ""; position: absolute;
  left: 2px; top: 3px;
  width: 13px; height: 13px;
  background: currentColor;
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
}
.i-sparkle::after {
  content: ""; position: absolute;
  left: 13px; top: 1px;
  width: 5px; height: 5px;
  background: currentColor;
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  opacity: 0.75;
}

  /* =========================================================
     CÓMO FUNCIONA
     ========================================================= */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
  }
  .step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: all .3s var(--ease);
  }
  .step:hover {
    border-color: var(--violet-border);
    transform: translateY(-2px);
  }
  .step-num {
    font-size: 0.75rem;
    color: var(--violet-soft);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .step-illu {
    width: 100%;
    height: 110px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(139,92,246,0.04), transparent);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .step h3 { margin-bottom: 8px; color: #fff; font-size: 1rem; }
  .step p { font-size: 0.9rem; color: var(--text-muted); }

  /* Step 1 illustration: URL bar */
  .illu-url {
    width: 80%; height: 26px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    display: flex; align-items: center; padding: 0 10px;
    gap: 6px;
  }
  .illu-url::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    box-shadow: 10px 0 0 var(--yellow);
  }
  .illu-url::after {
    content: "auditaweb.app/";
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 11px;
    color: var(--text-dim);
    margin-left: 4px;
  }

  /* Step 2 illustration: Analyzing dots */
  .illu-analyze {
    display: flex; gap: 8px; align-items: center;
  }
  .illu-analyze span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--violet-soft);
    animation: pulse 1.4s infinite ease-in-out;
  }
  .illu-analyze span:nth-child(2) { animation-delay: .2s; }
  .illu-analyze span:nth-child(3) { animation-delay: .4s; }
  .illu-analyze span:nth-child(4) { animation-delay: .6s; }
  @keyframes pulse {
    0%, 100% { opacity: .3; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.1); }
  }

  /* Step 3 illustration: Document */
  .illu-report {
    width: 60px; height: 70px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    padding: 8px 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .illu-report::before, .illu-report::after {
    content: ""; position: absolute; left: 6px; right: 6px;
    height: 2px; background: #c4c4c4; border-radius: 1px;
  }
  .illu-report::before { top: 12px; width: 70%; }
  .illu-report::after { top: 20px; width: 50%; }
  .illu-report span {
    position: absolute; top: 32px; left: 6px; right: 6px; height: 20px;
    background: linear-gradient(180deg, var(--violet), var(--violet-soft));
    border-radius: 3px;
  }

  /* Step 4 illustration: Network */
  .illu-network {
    position: relative; width: 70px; height: 70px;
  }
  .illu-network::before {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(var(--violet-border), var(--violet-border)) center/100% 1px no-repeat,
      linear-gradient(90deg, var(--violet-border), var(--violet-border)) center/1px 100% no-repeat;
  }
  .illu-network span {
    position: absolute;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--violet-soft);
    border: 2px solid var(--bg);
  }
  .illu-network span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
  .illu-network span:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); }
  .illu-network span:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); }
  .illu-network span:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%); }
  .illu-network span:nth-child(5) {
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 14px; height: 14px; background: #fff;
  }

  /* =========================================================
     QUÉ ANALIZAMOS
     ========================================================= */
  .analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
  }
  .analysis-card {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
  }
  .analysis-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }
  .analysis-card .big-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--violet-bg), var(--green-bg));
    border: 1px solid var(--violet-border);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--violet-soft);
  }
  .analysis-card h3 { margin-bottom: 10px; }
  .analysis-card .short { font-size: 0.92rem; color: var(--text-dim); margin-bottom: 10px; }
  .analysis-card .detail { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

  /* =========================================================
     QUÉ RECIBIRÁS
     ========================================================= */
  .receive-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .checklist { list-style: none; }
  .checklist li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .checklist li:last-child { border-bottom: none; }
  .check {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
  }
  .check::after {
    content: "";
    position: absolute;
    left: 6px; top: 3px;
    width: 5px; height: 9px;
    border: solid var(--green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .checklist strong { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; }
  .checklist span { color: var(--text-muted); font-size: 0.9rem; }
  .receive-note {
    background: linear-gradient(135deg, var(--violet-bg), transparent);
    border: 1px solid var(--violet-border);
    border-radius: var(--radius);
    padding: 24px;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.7;
  }
  .receive-note strong { color: #fff; font-weight: 500; display: block; margin-bottom: 6px; }

  @media (max-width: 768px) {
    .receive-wrap { grid-template-columns: 1fr; }
  }

  /* =========================================================
     EJEMPLO DEL INFORME (DASHBOARD MOCKUP)
     ========================================================= */
  .dashboard {
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: var(--shadow-elev);
    position: relative;
  }
  .dashboard::before {
    content: ""; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
  }
  .dashboard-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap; gap: 12px;
  }
  .dashboard-header h4 { color: var(--text-muted); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
  .dashboard-header .site { color: #fff; font-size: 1.05rem; font-weight: 500; display: block; }
  .dashboard-badge {
    font-size: 0.78rem; color: var(--text-muted);
    padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px;
  }

  .dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  @media (max-width: 640px) { .dash-grid { grid-template-columns: 1fr; } }

  .dash-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
  }
  .dash-label {
    font-size: 0.78rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 12px; font-weight: 500;
  }

  /* Score ring */
  .score-wrap {
    display: flex; align-items: center; gap: 20px;
  }
  .score-ring {
    width: 84px; height: 84px;
    border-radius: 50%;
    background:
      conic-gradient(var(--violet) 0deg, var(--violet) 252deg, rgba(255,255,255,0.06) 252deg);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .score-ring::before {
    content: "";
    position: absolute;
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--bg-elev);
  }
  .score-num {
    position: relative; z-index: 1;
    font-size: 1.5rem; font-weight: 600; color: #fff;
    letter-spacing: -0.02em;
  }
  .score-text h4 { color: #fff; font-size: 1rem; margin-bottom: 2px; font-weight: 500; }
  .score-text p { font-size: 0.85rem; color: var(--text-muted); }

  /* Traffic light */
  .traffic {
    display: flex; gap: 14px;
    padding: 12px 0;
  }
  .traffic-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: var(--text-dim);
  }
  .traffic-dot {
    width: 10px; height: 10px; border-radius: 50%;
    position: relative;
  }
  .traffic-dot.red { background: var(--red); box-shadow: 0 0 10px var(--red); }
  .traffic-dot.yellow { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
  .traffic-dot.green { background: var(--green); box-shadow: 0 0 10px var(--green); }

  /* Before/After bars */
  .compare-row {
    margin-bottom: 14px;
  }
  .compare-row:last-child { margin-bottom: 0; }
  .compare-label {
    display: flex; justify-content: space-between;
    font-size: 0.82rem; color: var(--text-dim);
    margin-bottom: 6px;
  }
  .compare-bars {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  }
  .bar-track {
    height: 8px; background: rgba(255,255,255,0.05);
    border-radius: 4px; overflow: hidden;
  }
  .bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.2s var(--ease);
    width: 0;
  }
  .bar-fill.before { background: linear-gradient(90deg, var(--red), #fca5a5); }
  .bar-fill.after { background: linear-gradient(90deg, var(--green), #86efac); }

  /* Actions list */
  .actions-list { list-style: none; }
  .actions-list li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-dim);
    border-bottom: 1px dashed var(--border);
  }
  .actions-list li:last-child { border-bottom: none; }
  .actions-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--violet-soft);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
  }

  .dashboard-cta {
    text-align: center;
    margin-top: 32px;
  }

  /* =========================================================
     FORM
     ========================================================= */
  .form-section {
    background: linear-gradient(180deg, var(--bg), #0e0e12);
    position: relative;
  }
  .form-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
    pointer-events: none;
  }
  .form-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-elev);
    position: relative;
    z-index: 1;
  }
  .form-wrap h2 { text-align: center; margin-bottom: 12px; }
  .form-wrap .sub { text-align: center; margin-bottom: 32px; font-size: 1rem; }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .form-wrap { padding: 28px 20px; } }

  .form-field { position: relative; }
  .form-field.full { grid-column: 1 / -1; }

  .form-field label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .form-field input,
  .form-field select {
    width: 100%;
    padding: 13px 14px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    transition: border-color .2s var(--ease), background .2s var(--ease);
    outline: none;
  }
  .form-field input:focus,
  .form-field select:focus {
    border-color: var(--violet);
    background: #15151a;
    box-shadow: 0 0 0 3px var(--violet-bg);
  }
  .form-field input::placeholder { color: var(--text-muted); }

  .checkbox-field {
    grid-column: 1 / -1;
    display: flex; gap: 10px; align-items: flex-start;
    margin-top: 8px;
  }
  .checkbox-field input {
    appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 5px;
    background: var(--bg-elev);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all .2s var(--ease);
  }
  .checkbox-field input:checked {
    background: var(--violet);
    border-color: var(--violet);
  }
  .checkbox-field input:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 4px; height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .checkbox-field label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
  }

  .form-submit {
    grid-column: 1 / -1;
    margin-top: 10px;
  }
  .form-submit button {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 500;
    background: #fff;
    color: #000;
    border-radius: var(--radius);
    transition: all .25s var(--ease);
  }
  .form-submit button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -8px rgba(255,255,255,0.3);
  }
  .form-submit button:disabled {
    opacity: 0.6; cursor: not-allowed;
  }

  .form-note {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
  }

  .form-status {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
    text-align: center;
  }
  .form-status.success {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    color: var(--green);
    display: block;
  }
  .form-status.error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: var(--red);
    display: block;
  }


  /* =========================================================
     AUDIT PROCESSING / WAITING EXPERIENCE
     ========================================================= */
  .audit-processing {
    max-width: 680px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-elev);
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .audit-processing[hidden] { display: none; }

  .processing-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--violet-border);
    border-radius: 16px;
    background: var(--violet-bg);
  }

  .processing-icon span {
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: var(--violet-soft);
    animation: processingPulse 1.25s ease-in-out infinite;
  }

  .processing-icon span:nth-child(2) { animation-delay: .15s; }
  .processing-icon span:nth-child(3) { animation-delay: .3s; }

  @keyframes processingPulse {
    0%, 100% { opacity: .3; transform: scaleY(.65); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  .audit-processing .eyebrow {
    margin-bottom: 14px;
  }

  .audit-processing h2 {
    margin-bottom: 12px;
  }

  .audit-processing > p {
    max-width: 520px;
    margin: 0 auto;
  }

  .processing-steps {
    max-width: 500px;
    margin: 32px auto 0;
    text-align: left;
    display: grid;
    gap: 10px;
  }

  .processing-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-elev);
    opacity: .55;
    transition: all .3s var(--ease);
  }

  .processing-step-icon {
    width: 12px;
    height: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    flex: 0 0 12px;
    position: relative;
    transition: all .3s var(--ease);
  }

  .processing-step strong {
    display: block;
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 500;
  }

  .processing-step small {
    display: block;
    color: var(--text-muted);
    font-size: .76rem;
    margin-top: 1px;
  }

  .processing-step.active {
    opacity: 1;
    border-color: var(--violet-border);
    background: var(--violet-bg);
  }

  .processing-step.active .processing-step-icon {
    border-color: var(--violet-soft);
    box-shadow: 0 0 0 4px var(--violet-bg);
    animation: processingDot 1.4s ease-in-out infinite;
  }

  .processing-step.active strong {
    color: #fff;
  }

  .processing-step.done {
    opacity: .9;
    border-color: var(--green-border);
  }

  .processing-step.done .processing-step-icon {
    border-color: var(--green);
    background: var(--green);
  }

  .processing-step.done .processing-step-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 2px;
    width: 3px;
    height: 5px;
    border-right: 1.5px solid var(--bg);
    border-bottom: 1.5px solid var(--bg);
    transform: rotate(45deg);
  }

  .processing-step.done strong {
    color: var(--text-dim);
  }

  @keyframes processingDot {
    0%, 100% { transform: scale(.85); opacity: .65; }
    50% { transform: scale(1.1); opacity: 1; }
  }

  .processing-complete {
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .processing-complete[hidden],
  .processing-error[hidden] { display: none; }

  .processing-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin-bottom: 4px;
  }

  .processing-score span {
    color: var(--text-muted);
    font-size: .82rem;
    margin-right: 5px;
  }

  .processing-score strong {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -.04em;
  }

  .processing-score small {
    color: var(--text-muted);
    font-size: .85rem;
  }

  .processing-complete p {
    margin-bottom: 18px;
  }

  .processing-error {
    margin-top: 24px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: rgba(248,113,113,.08);
    border: 1px solid rgba(248,113,113,.25);
  }

  .processing-error p {
    color: var(--red);
    font-size: .9rem;
    margin-bottom: 12px;
  }

  @media (max-width: 600px) {
    .audit-processing { padding: 28px 20px; }
    .processing-step { padding: 12px; }
  }

  /* =========================================================
     FAQ
     ========================================================= */
  .faq-list {
    max-width: 720px; margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-q {
    width: 100%;
    padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    transition: color .2s var(--ease);
  }
  .faq-q:hover { color: var(--violet-soft); }
  .faq-toggle {
    width: 24px; height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
  }
  .faq-toggle::before, .faq-toggle::after {
    content: ""; position: absolute;
    background: currentColor;
    top: 50%; left: 50%;
    transition: transform .3s var(--ease);
  }
  .faq-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
  .faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
  }
  .faq-a-inner {
    padding: 0 0 22px 0;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; }

  /* =========================================================
     FOOTER
     ========================================================= */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    background: #08080a;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  .footer-brand p {
    font-size: 0.9rem; color: var(--text-muted);
    margin-top: 14px; max-width: 340px; line-height: 1.6;
  }
  .footer-col h5 {
    font-size: 0.8rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 14px; font-weight: 500;
  }
  .footer-col a {
    display: block; padding: 6px 0;
    font-size: 0.92rem; color: var(--text-dim);
    transition: color .2s var(--ease);
  }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 14px;
    font-size: 0.85rem; color: var(--text-muted);
  }

  /* =========================================================
     REVEAL ANIMATION
     ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* Utility */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    section { padding: 70px 0; }
    .hero { padding: 130px 0 80px; }
    .form-wrap { padding: 28px 20px; }
  }
  /* =========================================================
   MODAL LEGAL
   ========================================================= */
.legal-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(5, 5, 7, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.legal-overlay.open { opacity: 1; visibility: visible; }

.legal-modal {
  width: 100%;
  max-width: 780px;
  max-height: calc(100vh - 48px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02);
  transform: scale(0.96) translateY(10px);
  transition: transform .35s var(--ease);
}
.legal-overlay.open .legal-modal { transform: scale(1) translateY(0); }

.legal-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
  flex-shrink: 0;
  gap: 16px;
}

.legal-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.legal-tab {
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-radius: 7px;
  transition: all .2s var(--ease);
  font-weight: 500;
  white-space: nowrap;
}
.legal-tab:hover { color: #fff; }
.legal-tab.active {
  background: var(--violet-bg);
  color: #fff;
  border: 1px solid var(--violet-border);
}

.legal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .2s var(--ease);
  flex-shrink: 0;
}
.legal-close:hover { background: var(--surface-2); }
.legal-close span {
  position: absolute;
  width: 14px; height: 1.5px;
  background: var(--text-dim);
  border-radius: 1px;
}
.legal-close span:first-child { transform: rotate(45deg); }
.legal-close span:last-child { transform: rotate(-45deg); }

.legal-modal-body {
  overflow-y: auto;
  padding: 36px 40px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 8px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

.legal-content { display: none; }
.legal-content.active { display: block; animation: fadeInLegal .3s var(--ease); }

@keyframes fadeInLegal {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.legal-h1 {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 8px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}
.legal-content h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 16px 0 6px;
}
.legal-content p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul, .legal-content ol {
  margin: 8px 0 14px 20px;
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.7;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: #fff; font-weight: 500; }
.legal-content a {
  color: var(--violet-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--violet-border);
  transition: color .2s var(--ease);
}
.legal-content a:hover { color: #fff; }

body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .legal-modal-body { padding: 24px 20px 28px; }
  .legal-modal-header { padding: 12px 12px 12px 16px; }
  .legal-tab { padding: 7px 12px; font-size: 0.82rem; }
}
</style>