﻿:root {
    /* paleta nueva â€” blanco frÃ­o + azul/violeta elÃ©ctrico */
    --ink: #0a0a12;             /* casi-negro con tinte azul */
    --ink-2: #14141c;
    --ink-3: #1d1d28;
    --paper: #ffffff;
    --paper-cool: #f4f4f7;      /* gris-blanco frÃ­o (reemplaza beige) */
    --paper-cool-2: #ebebf0;
    --muted: #6b6b78;
    --muted-2: #9a9aa8;
    --hairline: #e6e6ec;
    --hairline-strong: #c9c9d3;

    /* electric accents */
    --electric: #3a3aff;        /* azul elÃ©ctrico, el "principal" */
    --electric-deep: #2020d8;
    --violet: #6b3aff;          /* violeta para gradiente */
    --glow-blue: rgba(74, 74, 255, 0.55);
    --glow-violet: rgba(120, 70, 255, 0.45);

    /* gradiente firma â€” usado en hero, agitaciÃ³n, oferta */
    --beam: radial-gradient(60% 90% at 50% 50%,
              rgba(120, 90, 255, 0.55) 0%,
              rgba(58, 58, 255, 0.45) 35%,
              rgba(30, 20, 90, 0.0) 70%);

    --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --display: "Space Grotesk", "Geist", system-ui, sans-serif;
    --serif: "Instrument Serif", "Source Serif Pro", Georgia, "Times New Roman", serif;
    --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
  body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
  }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  .narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
  .mid { max-width: 920px; margin: 0 auto; padding: 0 32px; }

  /* ---------- nav ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--hairline);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 120px;
    max-width: 1180px; margin: 0 auto; padding: 0 32px;
  }
  .logo {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
  }
  .logo .dot { color: var(--electric); }
  .logo-img img {
    display: block;
    height: 88px;
    width: auto;
  }
  .nav-meta {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 18px;
  }
  .nav-meta .dot-live {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: #1f8a3a; box-shadow: 0 0 0 3px rgba(31,138,58,0.18), 0 0 10px rgba(31,138,58,0.5);
    vertical-align: middle; margin-right: 6px;
  }
  .nav-cta {
    font-family: var(--sans);
    font-size: 14px; font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    padding: 88px 0 56px;
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
  }
  /* signature beam: vertical electric strip behind the hero */
  .hero::before {
    content: "";
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    max-width: 520px;
    pointer-events: none;
    background:
      radial-gradient(60% 70% at 50% 40%, var(--glow-violet) 0%, transparent 60%),
      linear-gradient(180deg, transparent 0%, var(--glow-blue) 35%, var(--glow-blue) 65%, transparent 100%);
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
  }
  .hero .container { position: relative; z-index: 1; }
  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--ink);
  }
  h1.hero-h {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 7.2vw, 112px);
    line-height: 0.96;
    letter-spacing: -0.032em;
    margin: 0 0 44px;
    color: var(--ink);
  }
  h1.hero-h .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.018em;
    background: linear-gradient(92deg, var(--electric-deep) 0%, var(--electric) 55%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .hero-sub {
    font-size: 20px;
    line-height: 1.45;
    color: var(--ink-2);
    max-width: 620px;
    margin: 0 0 36px;
  }
  .hero-sub strong { font-weight: 600; }
  .hero-sub .price {
    font-family: var(--mono);
    font-weight: 500;
    background: var(--paper-cool);
    padding: 2px 6px;
    border-radius: 3px;
  }
  .hero-meta {
    display: flex; flex-wrap: wrap; gap: 14px 32px;
    font-family: var(--mono); font-size: 12px;
    color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 44px;
  }
  .hero-meta span::before {
    content: "âœ—"; margin-right: 8px; color: var(--ink); font-family: var(--sans);
  }
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    padding: 16px 22px 16px 26px;
    border: 1px solid var(--ink);
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
    position: relative;
  }
  .btn:hover {
    background: var(--ink-2);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -10px var(--glow-blue), 0 0 0 1px rgba(58,58,255,0.25);
  }
  .btn .arrow { font-family: var(--mono); font-weight: 400; }
  .btn.ghost {
    background: transparent; color: var(--ink);
  }
  .btn.ghost:hover { background: var(--paper-cool); }

  .hero-cta-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
    margin-bottom: 64px;
  }
  .hero-cta-note {
    font-family: var(--mono); font-size: 12px; color: var(--muted);
    max-width: 240px; line-height: 1.5;
  }

  /* hero visual: before / after */
  .ba {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    align-items: stretch;
  }
  .ba-card {
    border: 1px solid var(--hairline);
    background: var(--paper-cool);
    position: relative;
    overflow: hidden;
  }
  .ba-card.tall { aspect-ratio: 4/3; }
  .ba-card.wide { aspect-ratio: 16/10; }
  .ba-tag {
    position: absolute; top: 14px; left: 14px;
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    background: var(--ink); color: var(--paper);
    padding: 5px 9px;
    z-index: 2;
  }
  .ba-tag.alt { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
  .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background:
      repeating-linear-gradient(45deg, transparent 0 18px, rgba(58,58,255,0.04) 18px 19px),
      var(--paper-cool-2);
    color: var(--muted);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .ph .ph-label {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .ph .ph-label small {
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--muted-2);
    text-transform: uppercase;
    max-width: 260px;
    text-align: center;
    line-height: 1.5;
  }
  .ph svg { opacity: 0.45; }

  /* ---------- agitaciÃ³n ---------- */
  .agit {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: 120px 0 140px;
    overflow: hidden;
  }
  .agit::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    max-width: 900px;
    pointer-events: none;
    background:
      radial-gradient(closest-side, var(--glow-violet) 0%, transparent 70%),
      radial-gradient(closest-side, var(--glow-blue) 0%, transparent 75%);
    filter: blur(50px);
    opacity: 0.85;
    z-index: 0;
  }
  .agit > * { position: relative; z-index: 1; }
  .agit .narrow { color: #c9c9d3; }
  .agit h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    color: var(--paper);
    margin: 0 0 44px;
  }
  .agit p {
    font-size: 19px;
    line-height: 1.6;
    margin: 0 0 22px;
  }
  .agit p strong { color: var(--paper); font-weight: 500; }
  .agit .kicker {
    font-family: var(--mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted-2);
    margin-bottom: 28px;
  }

  /* Trustpilot-style review cards */
  .reviews {
    margin-top: 72px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    align-items: start;
  }
  .review {
    background: #ffffff;
    border-radius: 4px;
    padding: 20px 22px 22px;
    display: flex; flex-direction: column; gap: 8px;
    color: #4a525a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
  }
  .review-h {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #6b727a;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 4px;
  }
  .review-reviewer {
    display: inline-flex; align-items: center; gap: 10px;
    flex: 1; min-width: 0;
  }
  .reviewer-name {
    font-size: 13px;
    color: #6b727a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .reviewer-name strong {
    color: #191919;
    font-weight: 600;
  }
  .review-time {
    font-size: 12px;
    color: #8a929a;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .review-stars {
    display: inline-flex; gap: 2px;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .review-stars .s {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: #dcdce6;
    color: #ffffff;
  }
  .review-stars .s svg { width: 13px; height: 13px; display: block; }
  .review-stars[data-rating="1"] .s:nth-child(-n+1) { background: #FF3722; }
  .review-stars[data-rating="2"] .s:nth-child(-n+2) { background: #FF8622; }
  .review-stars[data-rating="3"] .s:nth-child(-n+3) { background: #FFCE00; }
  .review-stars[data-rating="4"] .s:nth-child(-n+4) { background: #73CF11; }
  .review-stars[data-rating="5"] .s:nth-child(-n+5) { background: #00B67A; }
  .review-q {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: #191919;
    margin: 2px 0 0;
    text-transform: none;
  }
  .review-body {
    font-size: 14px;
    color: #4a525a;
    margin: 0;
    line-height: 1.55;
  }
  .review-meta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #8a929a;
    margin-top: 6px;
    text-transform: none;
    letter-spacing: 0;
    border-top: 1px solid #ececef;
    padding-top: 10px;
  }

  /* Google review card variant */
  .review.google {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 18px 20px 16px;
    gap: 0;
    color: #1f1f1f;
    font-family: -apple-system, "Roboto", "Segoe UI", Arial, sans-serif;
  }
  .review.google .g-head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
  }
  .review.google .g-av {
    width: 38px; height: 38px; border-radius: 50%;
    background: #1a8870;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: -apple-system, "Roboto", "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    font-size: 17px;
    flex-shrink: 0;
    letter-spacing: 0;
  }
  .review.google .g-meta-block {
    display: flex; flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .review.google .g-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f1f1f;
    line-height: 1.2;
  }
  .review.google .g-date {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.2;
  }
  .review.google .g-stars {
    display: inline-flex; align-items: center; gap: 3px;
    margin-bottom: 12px;
  }
  .review.google .g-stars svg { width: 18px; height: 18px; display: block; }
  .review.google .g-stars .star { color: #fbbc04; display: inline-flex; }
  .review.google .g-stars .star.off { color: #dadce0; }
  .review.google .g-stars .check {
    margin-left: 6px;
    color: #1a73e8;
    display: inline-flex;
  }
  .review.google .g-body {
    font-size: 14px;
    line-height: 1.45;
    color: #202124;
    margin: 0 0 10px;
    letter-spacing: 0;
    font-family: -apple-system, "Roboto", "Segoe UI", Arial, sans-serif;
  }
  .review.google .g-more {
    font-size: 13px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    font-family: -apple-system, "Roboto", "Segoe UI", Arial, sans-serif;
  }
  .review.google .g-more:hover { text-decoration: underline; }

  /* Reddit-style post card */
  .review.reddit {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px 12px;
    gap: 0;
    color: #1a1a1b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Arial, sans-serif;
  }
  .review.reddit .r-head {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #787c7e;
  }
  .review.reddit .r-av {
    width: 22px; height: 22px; border-radius: 50%;
    background: #ff4500;
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
  }
  .review.reddit .r-av svg { width: 14px; height: 14px; display: block; }
  .review.reddit .r-user {
    color: #ff4500;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }
  .review.reddit .r-dot {
    color: #b7bbbd;
    font-size: 13px;
    line-height: 1;
  }
  .review.reddit .r-time {
    color: #787c7e;
    font-size: 12px;
  }
  .review.reddit .r-more {
    margin-left: auto;
    color: #787c7e;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .review.reddit .r-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: #1a1a1b;
    margin: 0 0 6px;
    text-transform: none;
  }
  .review.reddit .r-body {
    font-size: 13px;
    line-height: 1.45;
    color: #1a1a1b;
    margin: 0 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Arial, sans-serif;
  }
  .review.reddit .r-actions {
    display: flex; gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }
  .review.reddit .r-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f6f7f8;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1b;
    letter-spacing: 0;
    text-transform: none;
  }
  .review.reddit .r-pill svg { width: 14px; height: 14px; display: block; flex-shrink: 0; }
  .review.reddit .r-up { color: #ff4500; }
  .review.reddit .r-down { color: #787c7e; }
  .review.reddit .r-pill.share svg { color: #1a1a1b; }

  /* ---------- mecanismo problema ---------- */
  .mech {
    padding: 140px 0 120px;
    border-bottom: 1px solid var(--hairline);
  }
  .section-eyebrow {
    font-family: var(--mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-eyebrow .num {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid var(--hairline-strong);
    color: var(--ink);
  }
  h2.section-h {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.028em;
    margin: 0 0 56px;
    max-width: 760px;
  }
  h2.section-h .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.018em;
    color: var(--muted);
  }

  .reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .reason {
    padding: 32px 28px 36px;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }
  .reason:nth-child(2n) { border-right: none; }
  .reason:nth-last-child(-n+2) { border-bottom: none; }
  .reason h3 {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.005em;
    margin: 0 0 12px;
    color: var(--ink);
  }
  .reason h3::before {
    content: attr(data-num);
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    margin-right: 10px;
    letter-spacing: 0.1em;
  }
  .reason p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
  }
  .reasons-footer {
    margin-top: 40px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.022em;
    color: var(--ink);
    max-width: 720px;
  }

  /* compare table */
  .compare {
    margin-top: 80px;
    border: 1px solid var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .compare-col { padding: 28px 28px 32px; }
  .compare-col.left {
    background: var(--paper-cool);
    border-right: 1px solid var(--ink);
  }
  .compare-col.right { background: var(--ink); color: var(--paper); }
  .compare-h {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--hairline-strong);
  }
  .compare-col.right .compare-h { color: var(--muted-2); border-bottom-color: #2a2a26; }
  .compare-h .compare-logo {
    display: inline-block;
    height: 34px;
    width: auto;
    vertical-align: middle;
    filter: invert(1) hue-rotate(180deg);
    margin: -6px 0;
  }
  .compare ul { list-style: none; margin: 0; padding: 0; }
  .compare li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dotted var(--hairline-strong);
    font-size: 15px;
  }
  .compare-col.right li { border-bottom-color: #2a2a26; }
  .compare li:last-child { border-bottom: none; }
  .compare li .k {
    font-family: var(--mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--muted);
  }
  .compare-col.right li .k { color: var(--muted-2); }
  .compare li .v { font-weight: 500; color: var(--ink); }
  .compare-col.right li .v { color: var(--paper); }
  .compare li .v.bad { text-decoration: line-through; text-decoration-color: rgba(200,70,44,0.6); text-decoration-thickness: 1.5px; }

  /* ---------- cÃ³mo trabajamos ---------- */
  .howwework {
    padding: 140px 0 120px;
    border-bottom: 1px solid var(--hairline);
  }
  .hw-thread {
    display: grid;
    gap: 4px;
    max-width: 840px;
    margin-top: 8px;
  }
  .hw-msg--client {
    background: linear-gradient(135deg, rgba(58,58,255,0.07), rgba(120,70,255,0.07));
    border: 1px solid rgba(58,58,255,0.22);
    padding: 24px 26px 26px;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 18px 50px -28px var(--glow-blue);
  }
  .hw-msg--client::after {
    content: "";
    position: absolute;
    left: 36px;
    bottom: -10px;
    width: 18px; height: 18px;
    background: linear-gradient(135deg, rgba(58,58,255,0.10), rgba(120,70,255,0.10));
    border-right: 1px solid rgba(58,58,255,0.22);
    border-bottom: 1px solid rgba(58,58,255,0.22);
    transform: rotate(45deg);
  }
  .hw-msg-meta {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--electric);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .hw-msg-meta::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--electric);
    box-shadow: 0 0 0 3px rgba(58,58,255,0.18), 0 0 10px var(--glow-blue);
  }
  .hw-msg-body {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(22px, 2.3vw, 28px);
    line-height: 1.22;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0;
  }
  .hw-msg-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.4;
    letter-spacing: -0.012em;
    color: var(--ink);
  }
  .hw-msg-list > li {
    position: relative;
    padding-left: 22px;
    margin: 0 0 6px;
  }
  .hw-msg-list > li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.65em;
    width: 12px; height: 2px;
    background: var(--electric);
  }
  .hw-msg-list ul {
    list-style: none;
    margin: 6px 0 4px 6px;
    padding: 0;
    font-size: 0.88em;
    color: var(--muted);
    font-weight: 500;
  }
  .hw-msg-list ul li {
    position: relative;
    padding-left: 24px;
    margin: 0;
  }
  .hw-msg-list ul li::before {
    content: "\21B3";
    position: absolute;
    left: 0; top: -0.05em;
    color: var(--muted-2);
    font-weight: 400;
    font-family: var(--mono);
    font-size: 1em;
  }
  .hw-msg-trail {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 12px 0 0;
  }
  .hw-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    padding: 26px 0 28px;
    border-bottom: 1px solid var(--hairline);
    align-items: start;
  }
  .hw-step:last-child { border-bottom: none; }
  .hw-step-k {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    padding-top: 6px;
  }
  .hw-step-lead {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.16;
    letter-spacing: -0.024em;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .hw-step-lead .grad {
    background: linear-gradient(92deg, var(--electric), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hw-step-sub {
    font-size: 17px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
    max-width: 620px;
  }
  .hw-step-sub strong { color: var(--ink); font-weight: 600; }
  .hw-neg {
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 20px 0;
    margin: 14px 0 10px;
  }
  .hw-neg ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 12px 32px;
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
  }
  .hw-neg li::before {
    content: "âœ• ";
    color: var(--electric);
    margin-right: 8px;
    font-weight: 600;
  }

  /* ---------- soluciÃ³n / proceso ---------- */
  .sol {
    padding: 140px 0 120px;
    background: var(--paper-cool);
    border-bottom: 1px solid var(--hairline);
  }
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--ink);
  }
  .step {
    display: grid;
    grid-template-columns: 90px 1fr 280px;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--hairline-strong);
    align-items: start;
  }
  .step-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--electric);
  }
  .step-body h3 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 20px;
    margin: 6px 0 8px;
    letter-spacing: -0.01em;
  }
  .step-body p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 480px;
  }
  .step-deliv {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 8px 12px;
    background: var(--paper);
    align-self: start;
    margin-top: 10px;
  }
  .step-deliv .label { color: var(--muted); margin-right: 8px; }

  /* timeline */
  .timeline {
    margin-top: 80px;
    border: 1px solid var(--ink);
    background: var(--paper);
    padding: 36px 32px 28px;
  }
  .timeline-h {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .tl-track {
    position: relative;
    margin: 30px 0 0;
    height: 2px;
    background: var(--ink);
  }
  .tl-points {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin-top: -7px;
  }
  .tl-pt {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 14px;
    padding-right: 12px;
  }
  .tl-pt .pin {
    width: 12px; height: 12px;
    background: var(--ink);
    border-radius: 0;
  }
  .tl-pt.major .pin {
    width: 14px; height: 14px;
    background: var(--paper); border: 2px solid var(--ink);
  }
  .tl-pt .when {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .tl-pt .what {
    font-size: 14px; line-height: 1.4; color: var(--ink);
    font-weight: 500;
    max-width: 140px;
  }

  /* ---------- caso ---------- */
  .case {
    padding: 140px 0 120px;
    border-bottom: 1px solid var(--hairline);
  }
  .case-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .case-left .label-row {
    display: flex; gap: 24px;
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .case-left h3 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1;
    letter-spacing: -0.028em;
    margin: 0 0 28px;
  }
  .case-block {
    margin-bottom: 28px;
  }
  .case-block .ck {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .case-block p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.55; }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }
  .stat { padding: 22px 18px; border-right: 1px solid var(--hairline-strong); }
  .stat:last-child { border-right: none; }
  .stat .v {
    font-family: var(--display);
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .stat .v .it { font-family: var(--mono); font-style: normal; font-weight: 500; color: var(--muted); font-size: 0.42em; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 4px; vertical-align: middle; }
  .stat .k {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--muted);
  }

  .case-right .ph { font-size: 12px; }
  .case-screens { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .case-screens .ba-card.wide { aspect-ratio: 16/10; }
  .case-screens .ba-card.before { aspect-ratio: 16/7; }

  /* ---------- oferta ---------- */
  .offer {
    position: relative;
    padding: 140px 0 120px;
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
  }
  .offer::before {
    content: "";
    position: absolute;
    inset: -10% -20% auto auto;
    width: 60%;
    height: 70%;
    pointer-events: none;
    background:
      radial-gradient(closest-side, var(--glow-violet) 0%, transparent 70%),
      radial-gradient(closest-side, var(--glow-blue) 0%, transparent 80%);
    filter: blur(60px);
    opacity: 0.7;
    z-index: 0;
  }
  .offer > * { position: relative; z-index: 1; }
  .offer h2.section-h { color: var(--paper); }
  .offer h2.section-h .it { color: var(--muted-2); }
  .offer .section-eyebrow { color: var(--muted-2); }
  .offer .section-eyebrow .num { border-color: #3a3a34; color: var(--paper); }

  .offer-doc {
    border: 1px solid #3a3a34;
    background: #0f0f0d;
    padding: 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
  }
  .offer-left { padding: 36px 36px 40px; border-right: 1px solid #3a3a34; }
  .offer-right { padding: 36px 36px 40px; }

  .doc-h {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding-bottom: 18px;
    border-bottom: 1px solid #3a3a34;
    margin-bottom: 28px;
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted-2);
  }
  .doc-h .doc-title { color: var(--paper); }

  .incl {
    list-style: none; margin: 0; padding: 0;
  }
  .incl li {
    padding: 12px 0;
    border-bottom: 1px dotted #2a2a26;
    display: grid; grid-template-columns: 22px 1fr;
    gap: 12px;
    font-size: 15px;
    color: #d7d4cb;
  }
  .incl li:last-child { border-bottom: none; }
  .incl li .chk {
    font-family: var(--mono); color: var(--paper); font-weight: 500;
  }
  .incl li strong { color: var(--paper); font-weight: 500; }

  .price-block {
    background: var(--paper);
    color: var(--ink);
    padding: 28px 28px 24px;
    margin-bottom: 24px;
  }
  .price-big {
    font-family: var(--display);
    font-weight: 700;
    font-size: 72px;
    line-height: 0.92;
    letter-spacing: -0.04em;
  }
  .price-big .cur {
    font-family: var(--mono);
    font-size: 18px;
    color: var(--muted);
    vertical-align: top;
    margin-right: 6px;
    margin-top: 6px;
    display: inline-block;
  }
  .price-big .unit { font-family: var(--mono); font-size: 14px; color: var(--muted); margin-left: 8px; }
  .price-meta {
    font-family: var(--mono); font-size: 12px;
    color: var(--muted);
    margin-top: 14px; line-height: 1.5;
  }
  .price-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid var(--hairline);
  }
  .price-split div {
    padding: 14px 0 0;
  }
  .price-split div:first-child { border-right: 1px solid var(--hairline); padding-right: 18px; }
  .price-split div:last-child { padding-left: 18px; }
  .price-split .pct { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
  .price-split .amt { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.025em; }

  .plans {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid #3a3a34;
  }
  .plan { padding: 22px; }
  .plan:first-child { border-right: 1px solid #3a3a34; }
  .plan h4 {
    font-family: var(--sans); font-weight: 600; font-size: 15px;
    margin: 0 0 6px; color: var(--paper);
  }
  .plan .pcost {
    font-family: var(--display);
    font-weight: 700;
    font-size: 34px; line-height: 1;
    letter-spacing: -0.03em;
    color: var(--paper); margin: 10px 0 8px;
  }
  .plan p { margin: 0; font-size: 13px; color: #b3b0a8; line-height: 1.5; }

  .stamp-row {
    margin-top: 36px;
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap;
  }
  .signature {
    border: 1px dashed #3a3a34;
    padding: 14px 18px;
    flex: 1;
    min-width: 240px;
    display: flex; align-items: center; gap: 18px;
  }
  .signature .sig-line {
    flex: 1; height: 1px; background: #3a3a34;
    position: relative;
  }
  .signature .sig-mark {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--paper);
    transform: rotate(-3deg);
  }
  .signature .sig-meta {
    font-family: var(--mono); font-size: 10px; color: var(--muted-2);
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .stamp {
    border: 2px solid var(--electric);
    color: var(--electric);
    background: rgba(58, 58, 255, 0.06);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 8px 14px;
    transform: rotate(-4deg);
    box-shadow: 0 0 0 3px rgba(58, 58, 255, 0.08), 0 4px 22px -8px var(--glow-blue);
  }

  .offer-cta {
    margin-top: 40px;
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  }
  .offer-cta .btn {
    background: var(--paper); color: var(--ink); border-color: var(--paper);
  }
  .offer-cta .btn:hover { background: #f0eee5; }
  .offer-cta .note {
    font-family: var(--mono); font-size: 12px; color: var(--muted-2);
    max-width: 320px; line-height: 1.5;
  }

  /* ---------- objeciones ---------- */
  .obj {
    padding: 140px 0 120px;
    border-bottom: 1px solid var(--hairline);
  }
  .faq {
    border-top: 1px solid var(--ink);
  }
  .faq-item { border-bottom: 1px solid var(--hairline-strong); }
  .faq-q {
    width: 100%;
    background: transparent; border: none;
    text-align: left; cursor: pointer;
    padding: 26px 0;
    display: grid; grid-template-columns: 50px 1fr 40px; gap: 16px; align-items: center;
    font-family: var(--sans);
  }
  .faq-q .qn {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
  }
  .faq-q .qt {
    font-family: var(--display);
    font-size: 28px; line-height: 1.15;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.022em;
  }
  .faq-q .qi {
    justify-self: end;
    font-family: var(--mono);
    font-size: 22px;
    line-height: 1;
    color: var(--ink);
    transition: transform 0.2s ease;
  }
  .faq-item[data-open="true"] .qi { transform: rotate(45deg); }
  .faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .faq-a-inner {
    padding: 0 0 28px 66px;
    color: var(--ink-2);
    font-size: 16px; line-height: 1.6;
    max-width: 780px;
  }
  .faq-a-inner p { margin: 0 0 10px; }

  /* ---------- final CTA ---------- */
  .final {
    position: relative;
    padding: 140px 0 140px;
    background: var(--paper-cool);
    overflow: hidden;
  }
  .final::before {
    content: "";
    position: absolute;
    right: -10%; top: 50%;
    transform: translateY(-50%);
    width: 50%; height: 80%;
    pointer-events: none;
    background:
      radial-gradient(closest-side, var(--glow-violet) 0%, transparent 60%),
      radial-gradient(closest-side, var(--glow-blue) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.45;
    z-index: 0;
  }
  .final > * { position: relative; z-index: 1; }
  .final-grid {
    display: grid; grid-template-columns: 1fr; gap: 56px;
    align-items: start;
  }
  .final-photo {
    aspect-ratio: 16/9;
    width: 100%;
    background: var(--paper-cool-2);
    border: 1px solid var(--hairline-strong);
    position: relative;
  }
  .final-name {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--muted);
    margin-top: 18px;
  }
  .final-name strong { color: var(--ink); font-weight: 500; }
  .final h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
  }
  .final h2 .it {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.018em;
    background: linear-gradient(92deg, var(--electric-deep) 0%, var(--electric) 55%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .final-quote {
    font-family: var(--serif); font-style: italic;
    font-size: 22px; line-height: 1.45;
    color: var(--ink-2);
    max-width: 540px;
    border-left: 2px solid var(--ink);
    padding-left: 20px;
    margin: 28px 0 36px;
  }
  .final-pipeline {
    font-family: var(--mono); font-size: 13px;
    color: var(--muted);
    margin: 20px 0 36px;
    letter-spacing: 0.04em;
  }
  .final-pipeline span { color: var(--ink); }
  .final-warranty {
    font-family: var(--mono); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--ink);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 14px 0;
    margin-bottom: 32px;
    display: flex; gap: 14px; align-items: center;
  }
  .final-warranty .badge {
    background: var(--ink); color: var(--paper); padding: 3px 8px; font-size: 11px;
  }

  /* footer */
  footer {
    background: var(--ink); color: var(--muted-2);
    padding: 56px 0 48px;
    font-family: var(--mono); font-size: 12px;
  }
  footer .container {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 24px;
  }
  footer .logo { color: var(--paper); letter-spacing: 0.18em; }
  footer .logo-img img {
    display: block;
    height: 56px;
    width: auto;
    filter: invert(1) hue-rotate(180deg);
  }
  footer .ftr-meta { display: flex; gap: 26px; align-items: center; text-transform: uppercase; letter-spacing: 0.1em; }

  /* ---------- client strip (iOS card style) ---------- */
  .strip {
    background: #000;
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
  }
  .strip::before {
    content: "";
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 50%; height: 80%;
    pointer-events: none;
    background:
      radial-gradient(closest-side, var(--glow-violet) 0%, transparent 70%),
      radial-gradient(closest-side, var(--glow-blue) 0%, transparent 80%);
    filter: blur(70px);
    opacity: 0.6;
    z-index: 0;
  }
  .strip > * { position: relative; z-index: 1; }
  .strip-h {
    max-width: 1180px; margin: 0 auto 36px; padding: 0 32px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
  }
  .strip-eyebrow {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: #8a8a86;
  }
  .strip-meta {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: #f1efe9;
  }
  .strip-meta .dot-live {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--electric); box-shadow: 0 0 0 3px rgba(58, 58, 255, 0.25), 0 0 12px var(--glow-blue);
    vertical-align: middle; margin-right: 8px;
  }

  .strip-grid {
    max-width: 1180px; margin: 0 auto; padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* the iOS-style card */
  .ios-card {
    background: #1c1c1e;
    border-radius: 28px;
    padding: 14px 14px 18px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Geist", system-ui, sans-serif;
    position: relative;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.04) inset,
      0 22px 50px -20px rgba(0,0,0,0.55);
    transition: transform 0.2s ease;
  }
  .ios-card:hover { transform: translateY(-3px); }

  /* top thumbnail tray (the row of small rounded icons) */
  .ios-tray {
    display: flex;
    gap: 8px;
    padding: 6px 8px 14px;
    justify-content: center;
  }
  .ios-thumb {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(160deg, #3a3a3c, #2a2a2d);
    flex: 0 0 46px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: #6e6e72;
    font-family: var(--mono); font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .ios-thumb::before {
    content: "";
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,255,255,0.025) 6px 7px);
  }
  .ios-thumb span { position: relative; z-index: 1; }

  /* hero image */
  .ios-hero {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    background: #2a2a2d;
  }
  .ios-hero .ph {
    background:
      repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,0.04) 16px 17px),
      linear-gradient(160deg, #3a3a3c 0%, #2a2a2d 100%);
    color: #8a8a86;
  }
  .ios-hero .ph small { color: #5a5a5e; }
  .ios-pill {
    position: absolute;
    left: 12px; bottom: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: -apple-system, "SF Pro Text", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    padding: 6px 10px;
    border-radius: 10px;
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .ios-pill svg { width: 12px; height: 12px; }

  /* card body */
  .ios-body {
    padding: 16px 8px 4px;
  }
  .ios-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.018em;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 4px;
  }
  .ios-loc {
    font-size: 14px;
    color: #98989d;
    margin: 0 0 14px;
    letter-spacing: -0.005em;
  }

  /* avatars row + heart */
  .ios-people {
    display: flex; align-items: center;
    margin-bottom: 16px;
    gap: 8px;
  }
  .ios-people .stack {
    display: flex;
  }
  .ios-people .av {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid #1c1c1e;
    margin-left: -8px;
    background: linear-gradient(135deg, #555, #2c2c2e);
    overflow: hidden;
    position: relative;
  }
  .ios-people .av:first-child { margin-left: 0; }
  .ios-people .av:nth-child(2) { background: linear-gradient(135deg, #6b6b6b, #3a3a3c); }
  .ios-people .av:nth-child(3) { background: linear-gradient(135deg, #4a4a4d, #2a2a2d); }
  .ios-people .av:nth-child(4) {
    background: linear-gradient(135deg, #3a3aff, #6b3aff);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
  }
  .ios-people .av svg { width: 12px; height: 12px; }

  /* bottom quote */
  .ios-quote {
    background: #2a2a2d;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.45;
    color: #d8d8dc;
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .ios-quote::before {
    content: "";
    display: inline-block;
    width: 16px; height: 1px;
    background: #98989d;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 3px;
  }

  /* stats row */
  .ios-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #2a2a2d;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }
  .ios-stats::before {
    content: "";
    position: absolute;
    left: 50%; top: 10px; bottom: 10px;
    width: 1px; background: rgba(255,255,255,0.08);
  }
  .ios-stat {
    padding: 11px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px;
    color: #d8d8dc;
    letter-spacing: -0.005em;
  }
  .ios-stat svg { width: 14px; height: 14px; color: #98989d; flex: 0 0 14px; }
  .ios-stat strong { color: #fff; font-weight: 600; }

  @media (max-width: 980px) {
    .strip-grid { grid-template-columns: 1fr; max-width: 460px; }
  }

  /* responsive */
  @media (max-width: 880px) {
    .ba { grid-template-columns: 1fr; }
    .reasons { grid-template-columns: 1fr; }
    .reason { border-right: none !important; border-bottom: 1px solid var(--hairline) !important; }
    .reason:last-child { border-bottom: none !important; }
    .compare { grid-template-columns: 1fr; }
    .compare-col.left { border-right: none; border-bottom: 1px solid var(--ink); }
    .step { grid-template-columns: 60px 1fr; }
    .step-deliv { grid-column: 1 / -1; margin-top: 4px; justify-self: start; }
    .tl-points { grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
    .case-grid { grid-template-columns: 1fr; }
    .offer-doc { grid-template-columns: 1fr; }
    .offer-left { border-right: none; border-bottom: 1px solid #3a3a34; }
    .plans { grid-template-columns: 1fr; }
    .plan:first-child { border-right: none; border-bottom: 1px solid #3a3a34; }
    .reviews { grid-template-columns: 1fr; }
    .final { padding: 96px 0 96px; }
    .final-grid { gap: 32px; }
    .final-photo { aspect-ratio: 16/9; max-width: 100%; }
    .final-quote { font-size: 19px; padding-left: 16px; margin: 24px 0 28px; }
    .final-pipeline { font-size: 12px; margin: 16px 0 28px; }
    .final-warranty { font-size: 11px; gap: 10px; align-items: flex-start; }
    .faq-q .qt { font-size: 22px; }
    .faq-a-inner { padding-left: 0; }
  }
