:root {
      --bg-1: #070b17;
      --bg-2: #0e1730;
      --panel: rgba(15, 23, 42, 0.82);
      --panel-2: rgba(9, 14, 28, 0.78);
      --line: rgba(255,255,255,0.1);
      --text: #f7f9ff;
      --muted: #b7c3de;
      --blue: #53d7ff;
      --violet: #7c5cff;
      --pink: #ff4fa3;
      --yellow: #ffce57;
      --green: #33d17a;
      --shadow: 0 24px 80px rgba(0,0,0,0.35);
      --radius: 24px;
      --radius-sm: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(83,215,255,0.18), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(255,79,163,0.18), transparent 26%),
        radial-gradient(circle at 50% 80%, rgba(124,92,255,0.18), transparent 24%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, #08101f 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .wrap {
      width: min(calc(100% - 28px), var(--max));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .glow {
      position: fixed;
      border-radius: 999px;
      filter: blur(90px);
      pointer-events: none;
      opacity: .45;
      z-index: 0;
    }
    .glow.g1 { width: 260px; height: 260px; top: 100px; left: -80px; background: rgba(83,215,255,.28); }
    .glow.g2 { width: 340px; height: 340px; top: 140px; right: -120px; background: rgba(255,79,163,.24); }
    .glow.g3 { width: 260px; height: 260px; bottom: 80px; left: 35%; background: rgba(124,92,255,.24); }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 0 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .01em;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #0b1020;
      background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
      box-shadow: var(--shadow);
      font-size: 1rem;
      font-weight: 900;
    }

    .brand small {
      display: block;
      color: var(--muted);
      font-size: .8rem;
      font-weight: 600;
    }

    .nav {
      display: none;
      gap: 18px;
      align-items: center;
      color: var(--muted);
      font-size: .96rem;
    }

    .nav a:hover { color: var(--text); }

    .nav .cta-link {
      color: var(--text);
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }

    .section { padding: 74px 0; }

    .hero {
      padding-top: 52px;
      display: grid;
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      color: #d9ecff;
      font-size: .82rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    h1, h2, h3, h4, p { margin: 0; }

    h1 {
      font-size: clamp(2.5rem, 8vw, 5.4rem);
      line-height: .98;
      letter-spacing: -.05em;
      max-width: 12ch;
    }

    h1 .gradient,
    .gradient-text {
      background: linear-gradient(90deg, var(--blue), var(--yellow), var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.75;
      margin-top: 18px;
      max-width: 58ch;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: #0b1020;
      background: linear-gradient(135deg, var(--blue), var(--violet), var(--pink));
      box-shadow: 0 18px 40px rgba(124,92,255,.32);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.14);
    }

    .hero-grid-points {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .card,
    .mini-card,
    .mock-browser,
    .pricing-box,
    .step-card,
    .contact-card,
    .contact-form,
    .offer-card {
      background: linear-gradient(180deg, rgba(15,23,42,.9), rgba(8,14,28,.78));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .mini-card {
      padding: 18px;
      border-radius: var(--radius-sm);
    }

    .mini-card strong,
    .metric strong,
    .pricing-box strong,
    .contact-list strong,
    .offer-card h3,
    .step-card h3,
    .mock-browser h3 {
      display: block;
      margin-bottom: 6px;
    }

    .mini-card span,
    .section-copy p,
    .card p,
    .mock-browser p,
    .pricing-box p,
    .step-card p,
    .contact-card p,
    .contact-form p,
    .offer-card p,
    .badge-note {
      color: var(--muted);
      line-height: 1.72;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
    }

    .hero-stack {
      width: min(100%, 520px);
      display: grid;
      gap: 18px;
    }

    .dashboard {
      padding: 22px;
      border-radius: 30px;
      overflow: hidden;
      position: relative;
    }

    .dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(83,215,255,.08), rgba(255,79,163,.05), rgba(124,92,255,.07));
      pointer-events: none;
    }

    .traffic {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .metric {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }

    .metric small {
      display: block;
      color: #dce8ff;
      margin-bottom: 8px;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .metric strong {
      font-size: clamp(1.4rem, 4vw, 2.4rem);
      line-height: 1;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 700;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      font-size: clamp(2rem, 6vw, 3.3rem);
      line-height: 1.04;
      letter-spacing: -.04em;
    }

    .section-head p {
      color: var(--muted);
      line-height: 1.75;
      margin-top: 14px;
      font-size: 1rem;
    }

    .grid-2 {
      display: grid;
      gap: 18px;
    }

    .card {
      border-radius: var(--radius);
      padding: 26px;
    }

    .list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .list-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--muted);
      line-height: 1.65;
    }

    .list-item::before {
      content: "✓";
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(51,209,122,.18);
      color: #b8ffd8;
      font-weight: 900;
      margin-top: 2px;
    }

    .offers {
      display: grid;
      gap: 18px;
    }

    .offer-card {
      border-radius: 22px;
      padding: 22px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .tag {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      color: #eaf3ff;
      font-size: .88rem;
      font-weight: 700;
    }

    .examples {
      display: grid;
      gap: 20px;
    }

    .mock-browser {
      border-radius: 24px;
      overflow: hidden;
    }

    .example-link-card {
      display: block;
      cursor: pointer;
      transform: scale(1);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .example-link-card:hover,
    .example-link-card:focus-visible {
      transform: translateY(-3px) scale(1.015);
      border-color: rgba(83, 215, 255, .38);
      box-shadow: 0 30px 90px rgba(0,0,0,.44), 0 0 0 1px rgba(83,215,255,.12);
    }

    .example-link-card:focus-visible {
      outline: 3px solid rgba(83, 215, 255, .45);
      outline-offset: 4px;
    }

    .browser-bar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.34);
    }

    .address {
      margin-left: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: #dcebff;
      font-size: .88rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: calc(100% - 40px);
    }

    .browser-view {
      padding: 22px;
      min-height: 280px;
      display: grid;
      gap: 18px;
      align-content: start;
      position: relative;
    }

    .preview-hero {
      padding: 22px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(83,215,255,.16), rgba(124,92,255,.12), rgba(255,79,163,.14));
      border: 1px solid rgba(255,255,255,.08);
    }

    .preview-title {
      font-size: 1.4rem;
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -.03em;
      max-width: 11ch;
    }

    .preview-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .preview-box {
      min-height: 72px;
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
    }

    .example-copy {
      padding: 0 22px 22px;
    }

    .example-copy h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .text-link {
      display: inline-flex;
      margin-top: 14px;
      font-weight: 800;
      color: #dff4ff;
    }

    .pricing-box {
      padding: 28px;
      border-radius: 26px;
    }

    .price-highlight {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 18px;
      padding: 14px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(83,215,255,.16), rgba(124,92,255,.14), rgba(255,79,163,.12));
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 18px 48px rgba(124,92,255,.18);
      font-weight: 900;
    }

    .price-value {
      color: #ffffff;
      font-size: clamp(1.45rem, 5vw, 2.15rem);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .price-detail {
      color: var(--muted);
      font-size: .95rem;
      font-weight: 800;
    }

    .steps {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }

    .step-card {
      padding: 22px;
      border-radius: 22px;
    }

    .step-num {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), var(--violet));
      color: #09111f;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .contact-grid {
      display: grid;
      gap: 18px;
    }

    .contact-card,
    .contact-form {
      padding: 24px;
      border-radius: 24px;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .contact-link {
      display: block;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      font-weight: 700;
      word-break: break-word;
    }

    .note-box {
      margin-top: 18px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
    }

    .form-grid {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    label {
      display: grid;
      gap: 8px;
      font-size: .95rem;
      font-weight: 700;
      color: #edf5ff;
    }

    input, textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.05);
      color: var(--text);
      border-radius: 16px;
      padding: 14px 16px;
      font: inherit;
      outline: none;
    }

    input::placeholder, textarea::placeholder { color: #8ea0bf; }
    input:focus, textarea:focus {
      border-color: rgba(83,215,255,.55);
      box-shadow: 0 0 0 4px rgba(83,215,255,.12);
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    .footer {
      padding: 40px 0 70px;
      color: var(--muted);
      text-align: center;
      font-size: .95rem;
    }

    .footer strong { color: var(--text); }

    @media (min-width: 760px) {
      .nav { display: flex; }
      .hero,
      .grid-2,
      .contact-grid,
      .examples,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .hero-grid-points { grid-template-columns: repeat(3, minmax(0,1fr)); }
    }

    @media (min-width: 980px) {
      .topbar { padding-top: 22px; }
      .hero { grid-template-columns: 1.08fr .92fr; }
      .offers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .examples { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }


/* Hover estético para ejemplos de páginas */
.project-card,
.portfolio-card,
.example-card,
.work-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-card:hover,
.portfolio-card:hover,
.example-card:hover,
.work-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}


/* Cartel principal de precio */
.hero-price-card {
  width: fit-content;
  max-width: 100%;
  margin: 1.4rem 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-price-card .hero-price-label {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price-card strong {
  display: block;
  font-size: clamp(2.7rem, 9vw, 5.3rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-price-card small {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  opacity: 0.92;
}

.hero-price-card p {
  max-width: 360px;
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .hero-price-card {
    width: 100%;
    padding: 1rem;
  }
}
