 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --purple: #6C5CE7;
    --purple-light: #A29BFE;
    --purple-pale: #EEEEFF;
    --purple-dark: #4834D4;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8888AA;
    --bg-page: #F7F7FC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F0E2A;
    --radius: 16px;
    --border: 1px solid #EEEEF8;
    --shadow: 0 4px 24px rgba(108,92,231,0.09);
  }
  body { font-family: 'DM Sans', sans-serif; background: var(--bg-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

  /* ── HERO ── */
  .hero-section {background: linear-gradient(135deg, #0D0B1A 0%, #1B1040 50%, #0F0A25 100%); }
  .hero { padding: 120px 5% 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1400px; margin: 0 auto;min-height: 100vh;}
  .hero-label { display: inline-block; font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
  .hero-title {font-size: clamp(2.4rem, 4.5vw, 3.8rem);font-weight: 800; line-height: 1.1;color: var(--white); margin-bottom: 1.25rem;letter-spacing: -0.03em;}
  .hero h1 span { color: var(--purple); }
  .hero-desc{color: rgba(255, 255, 255, 0.65);font-size: 1.05rem;line-height: 1.7;max-width: 480px;margin-bottom: 2rem;}
  .boton-center{
    width: 100%;
    justify-content: center;
  }

  /* SEO Dashboard card */
  .dashboard{position:relative; padding-bottom:50px;}
  .seo-dashboard {
    position: relative; background: white; border-radius: 18px;
    box-shadow: 0 20px 60px rgba(108,92,231,0.15); padding: 24px;
    border: var(--border);
  }
  .dash-top-bar { display: flex; gap: 6px; margin-bottom: 18px; }
  .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dash-dot-r { background: #FF5F57; } .dash-dot-y { background: #FFBD2E; } .dash-dot-g { background: #28CA41; }
  .dash-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }
  .dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
  .dash-stat { }
  .dash-stat-label { font-size: 10px; color: var(--text-light); margin-bottom: 3px; }
  .dash-stat-value { font-size: 22px; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; }
  .dash-stat-change { font-size: 11px; font-weight: 600; color: #27AE60; margin-top: 2px; }

  /* Mini line chart */
  .dash-chart { background: #FAFAFF; border-radius: 10px; padding: 12px 14px; margin-bottom: 0; position: relative; }
  .chart-svg { width: 100%; height: 70px; }
  .growth-badge { position: absolute; top: 10px; right: 10px; background: var(--purple); color: white; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 8px; }

  /* Keywords card */
  .keywords-card {
    position: absolute; bottom: -30px; right: -30px;
    background: white; border-radius: 14px; padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(108,92,231,0.15); border: var(--border);
    width: 200px;
  }
  .kw-title { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
  .kw-donut-wrap { display: flex; gap: 14px; align-items: center; }
  .kw-donut { flex-shrink: 0; }
  .kw-legend { display: flex; flex-direction: column; gap: 5px; }
  .kw-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-mid); }
  .kw-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .kw-item span:last-child { margin-left: auto; font-weight: 700; color: var(--text-dark); }

/* SEO INTRO */

.seo-intro{
  padding:100px 5%;
  background:#fff;
}

.seo-intro-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}
@media (max-width: 768px){
  .seo-intro-container{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .keywords-card{
    display: none;
  }
}
.section-label{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:var(--purple);
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.seo-intro-content h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.15;
  font-weight:800;
  color:var(--text-dark);
  margin-bottom:24px;
  letter-spacing:-1px;
}

.seo-intro-content p{
  font-size:16px;
  line-height:1.8;
  color:var(--text-mid);
  margin-bottom:18px;
  max-width:650px;
}

.seo-highlight-card{
  background:#fff;
  border:1px solid #ececf3;
  border-radius:24px;
  padding:40px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.stat-number{
  font-size:64px;
  font-weight:800;
  color:var(--purple);
  line-height:1;
  margin-bottom:20px;
}

.seo-highlight-card h3{
  font-size:24px;
  margin-bottom:15px;
  color:var(--text-dark);
}

.seo-highlight-card p{
  color:var(--text-mid);
  line-height:1.7;
}
.seo-benefits{padding:100px 5%;background:#f8f9fc;position:relative;overflow:hidden;}
.seo-benefits-container{max-width:1200px;margin:0 auto;}
.section-heading{text-align:center;max-width:700px;margin:0 auto 60px;}
.section-heading h2{font-size:clamp(32px,4vw,48px);font-weight:800;color:var(--text-dark);margin-bottom:16px;}
.section-heading p{color:var(--text-mid);line-height:1.8;}

.benefits-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media (min-width: 768px) and (max-width: 1000px){
  .benefits-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px){
  .benefits-cards{
    grid-template-columns: 1fr;
  }
}
.benefit-card{
  background:rgba(255,255,255,0.9);
  padding:32px;
  border-radius:22px;
  border:1px solid rgba(108,92,231,0.15);
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.benefit-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,.10);
  border-color:rgba(108,92,231,0.35);
}

.benefit-header{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.benefit-header h3{margin:0;font-size:18px;font-weight:700;color:var(--text-dark);}

.check-icon{width:38px;height:38px;border-radius:32px;background:linear-gradient(135deg,var(--purple),#8b7cff);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.check-icon svg{width:14px;height:14px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.benefit-card p{font-size:14px;line-height:1.7;color:var(--text-mid);margin:0;}

  /* ── PROCESS ── */
  .process-section { padding: 72px 5%; background: white; }
  .section-header { text-align: center; margin-bottom: 52px; }
  .section-label { display: inline-block; font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
  .section-header h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--text-dark); letter-spacing: -1px; }
  .underline-deco { width: 40px; height: 4px; background: var(--purple); border-radius: 2px; margin: 12px auto 0; }

  .process-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; position: relative; }
  .process-connector { position: absolute; top: 36px; left: 10%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, var(--purple-light) 0, var(--purple-light) 6px, transparent 6px, transparent 14px); z-index: 0; }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
  .step-circle { width: 72px; height: 72px; background: white; border: 2px solid var(--purple-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(108,92,231,0.10); flex-direction: column; gap: 2px; }
  .step-num { font-size: 11px; font-weight: 700; color: var(--purple); }
  .step-circle svg { width: 22px; height: 22px; stroke: var(--purple); fill: none; stroke-width: 1.7; }
  .process-step h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
  .process-step p { font-size: 12px; color: var(--text-mid); line-height: 1.5; max-width: 160px; }

  /* ── CTA ── */
  .cta-section { background: var(--bg-dark); padding: 72px 5%; }
  .cta-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .cta-text h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 10px; }
  .cta-text p { color: rgba(255,255,255,0.5); font-size: 14px; }
  .btn-cta { background: var(--purple); color: white; border: none; padding: 15px 30px; border-radius: 12px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; white-space: nowrap; flex-shrink: 0; }
  .btn-cta:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.4); }

  @media (max-width: 1000px) {
    .areas-grid { grid-template-columns: repeat(3,1fr); }
    .results-grid { grid-template-columns: repeat(2,1fr); }
    .process-steps { grid-template-columns: repeat(3,1fr); }
    .process-connector { display: none; }
  }
  @media (max-width: 760px) {
    .hero { grid-template-columns: 1fr; }
    .seo-dashboard { display: none; }
    .seo-what-inner { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2,1fr); }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .hero-label { padding:8px 14px;border:1px solid rgba(255,255,255,.15);border-radius:30px;letter-spacing:2px;margin-bottom:24px; }
    .hero{min-height:100vh;  text-align: center;}
    .hero-desc {max-width: none;}
    .dashboard{display: none;}
  } 