  :root {
    --bg: #0A0A0A;
    --surface: #1A1A1A;
    --surface2: #222222;
    --accent: #FF6B00;
    --accent-dim: rgba(255,107,0,0.12);
    --accent-glow: rgba(255,107,0,0.35);
    --text: #FFFFFF;
    --text-secondary: #9E9E9E;
    --warning: #F5A623;
    --error: #FF3B30;
    --cta-text: #000000;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(255,107,0,0.3);
    --radius: 18px;
    --radius-sm: 10px;
    --radius-lg: 28px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

  a { color: inherit; text-decoration: none; }

  /* ── UTILS ── */
  .container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
  .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-dim);
    border: 1px solid var(--border-accent); border-radius: 100px;
    padding: 5px 14px;
  }
  .section-header { text-align: center; margin-bottom: 64px; }
  .section-header h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin: 16px 0 20px; }
  .section-header p { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
    padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; overflow: hidden; white-space: nowrap;
  }
  .btn::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s ease;
  }
  .btn:hover::after { background: rgba(255,255,255,0.08); }
  .btn:active { transform: scale(0.96); }

  .btn-primary {
    background: var(--accent); color: var(--cta-text);
    box-shadow: 0 0 0 0 var(--accent-glow);
  }
  .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px var(--accent-glow);
  }

  .btn-ghost {
    background: rgba(255,255,255,0.05); color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }

  .btn-lg { padding: 18px 36px; font-size: 16px; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all 0.3s ease;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1260px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
    padding: 0 24px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 8px;
    justify-content: space-between;
    img.logo {
      width: 65px;
    }
  }
  .logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; animation: pulse-dot 2s ease infinite; }
  @keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 6px transparent; } }

  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; }
  .nav-links a:hover { color: var(--text); }

  .nav-cta { display: flex; align-items: center; gap: 12px; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    nav.menu-open .nav-links {
      display: flex; flex-direction: column; position: absolute;
      top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.97);
      backdrop-filter: blur(20px); padding: 24px; gap: 24px;
      border-bottom: 1px solid var(--border);
    }
    nav.menu-open .nav-cta { display: flex; flex-direction: column; position: absolute; top: 240px; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); padding: 0 24px 24px; }
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 0 80px;
  }

  .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
  }
  .hero-glow-1 {
    position: absolute; width: 700px; height: 700px;
    border-radius: 50%; top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    animation: float1 8s ease-in-out infinite;
  }
  .hero-glow-2 {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
    animation: float2 10s ease-in-out infinite;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,107,0,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,107,0,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  }
  @keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 40px) scale(1.05); } }
  @keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.03); } }

  .hero-inner {
    display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.1); border: 1px solid var(--border-accent);
    border-radius: 100px; padding: 6px 16px; font-size: 13px;
    color: var(--accent); margin-bottom: 28px;
    animation: hero-in 0.8s ease both;
  }
  .hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s ease infinite; }

  .hero-h1 {
    font-size: clamp(40px, 5.5vw, 68px); font-weight: 800; line-height: 1.08;
    letter-spacing: -0.02em; margin-bottom: 24px;
    animation: hero-in 0.8s ease 0.1s both;
  }
  .hero-h1 em { font-style: normal; color: var(--accent); }

  .hero-sub {
    font-size: 18px; color: var(--text-secondary); max-width: 480px;
    line-height: 1.7; margin-bottom: 40px;
    animation: hero-in 0.8s ease 0.2s both;
  }

  .hero-ctas {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    animation: hero-in 0.8s ease 0.3s both;
  }

  .hero-stats {
    display: flex; gap: 40px; margin-top: 56px;
    animation: hero-in 0.8s ease 0.4s both;
  }
  .hero-stat-divider {
    width: 1px;
    flex-shrink: 0;
    align-self: stretch;
    min-height: 2.5rem;
    background: var(--border);
  }
  .hero-stat-value { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); }
  .hero-stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }

  @keyframes hero-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  /* ── PHONE MOCKUP ── */
  .hero-visual { display: flex; justify-content: center; align-items: center; animation: hero-in 0.8s ease 0.2s both; }

  .phone-wrap {
    position: relative;
    animation: phone-float 6s ease-in-out infinite;
    margin-top: 20px;
  }
  @keyframes phone-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

  .phone-glow {
    position: absolute; inset: -40px;
    background: radial-gradient(ellipse at center, rgba(255,107,0,0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: phone-float 6s ease-in-out infinite;
  }

  .phone {
    width: 260px; height: 520px;
    background: var(--surface);
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.12);
    overflow: hidden; position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05) inset;
  }
  .phone-notch {
    width: 80px; height: 24px;
    background: var(--bg); border-radius: 16px;
    margin: 6px auto; position: relative; z-index: 2;
  }
  .phone-screen { padding: 0px 12px 12px; height: calc(100% - 24px); display: flex; flex-direction: column; gap: 8px; }

  .phone-header { display: flex; align-items: center; justify-content: space-between; padding: 4px 0 0; }
  .phone-header-title .logo { 
    width: 35px;
  }
  .phone-header .hamburger {
    display: flex;
    cursor: pointer;
  }
  .phone-search {
    background: rgba(255,255,255,0.06); border-radius: 10px; padding: 8px 12px;
    font-size: 11px; color: var(--text-secondary); display: flex; align-items: center; gap: 6px;
  }

  .phone-cats { display: flex; gap: 6px; overflow: hidden; }
  .phone-cat {
    font-size: 10px; padding: 4px 10px; border-radius: 100px; white-space: nowrap;
    background: rgba(255,255,255,0.06); color: var(--text-secondary);
  }
  .phone-cat.active { background: var(--accent); color: var(--cta-text); font-weight: 600; }

  .phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; }
  .phone-card {
    background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border);
  }
  .phone-card-img {
    height: 75px; display: flex; align-items: center; justify-content: center;
    font-size: 28px;
  }
  .phone-card-info { padding: 6px 8px 4px; }
  .phone-card-name { font-size: 10px; font-weight: 600; color: var(--text); }
  .phone-card-price { font-size: 10px; color: var(--accent); font-weight: 700; margin-top: 2px; }
  .phone-card-pickup {
    display: inline-flex;
    align-items: anchor-center;
    gap: 6px;
    font-size: 9px;
    color: var(--text-secondary);
  }
  .pickup-icon {
    color: var(--accent);
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
  }

  .phone-card-img.c1 { background: linear-gradient(135deg, #1e1e1e, #2a1500); }
  .phone-card-img.c2 { background: linear-gradient(135deg, #1a1e1e, #00150a); }
  .phone-card-img.c3 { background: linear-gradient(135deg, #1e1a1e, #150015); }
  .phone-card-img.c4 { background: linear-gradient(135deg, #1e1e1a, #151500); }

  .phone-wa-btn {
    background: var(--accent);
    border-radius: 10px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    justify-content: center;
    margin-inline: 5px;
  }

  /* floating badges */
  .phone-badge {
    position: absolute; background: var(--surface);
    border: 1px solid var(--border); border-radius: 14px;
    padding: 8px 14px; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    font-size: 12px; white-space: nowrap; z-index: 10;
  }
  .badge-left { left: -112px; top: 120px; animation: badge-float-l 5s ease-in-out infinite; }
  .badge-right { right: -135px; bottom: 160px; animation: badge-float-r 5s ease-in-out 1s infinite; }
  @keyframes badge-float-l { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-8px); } }
  @keyframes badge-float-r { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

  .badge-icon { font-size: 18px; }
  .badge-label { font-size: 10px; color: var(--text-secondary); }
  .badge-value { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }

  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .badge-left {
      left: -67px;
      top: 73px;
    }
    .badge-right { 
      right: -67px;
      bottom: 137px;
    }
  }

  /* Hero: móvil (prioridad de tráfico) */
  @media (max-width: 768px) {
    #hero {
      min-height: 100dvh;
      min-height: 100svh;
      align-items: flex-start;
      padding: calc(72px + env(safe-area-inset-top, 0px) + 12px) 0 calc(40px + env(safe-area-inset-bottom, 0px));
      overflow-x: clip;
    }

    .hero-inner {
      gap: 28px;
      text-align: left;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      min-width: 0;
    }

    .hero-badge {
      margin-bottom: 20px;
      max-width: 100%;
      white-space: normal;
      text-align: left;
    }

    .hero-h1 {
      font-size: clamp(28px, 8.2vw, 42px);
      line-height: 1.12;
      margin-bottom: 16px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .hero-sub {
      margin-left: 0;
      margin-right: 0;
      font-size: 16px;
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: none;
    }

    .hero-ctas {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: 12px;
    }

    .hero-ctas .btn {
      width: 100%;
      justify-content: center;
      white-space: normal;
      text-align: center;
    }

    .hero-ctas .btn-lg {
      padding: 16px 22px;
      font-size: 15px;
    }

    .hero-stats {
      width: 100%;
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px 8px;
      align-items: start;
      justify-content: stretch;
    }

    .hero-stat-divider {
      display: none;
    }

    .hero-stat-value {
      font-size: 22px;
    }

    .hero-stat-label {
      font-size: 12px;
      line-height: 1.35;
    }

    .hero-visual {
      width: 100%;
      justify-content: center;
      padding: 0 4px;
      overflow: hidden;
    }

    .phone-glow {
      inset: -24px;
    }

    .phone {
      width: 232px;
      height: 464px;
      border-radius: 36px;
    }

    .phone-notch {
      width: 72px;
      height: 22px;
    }

    .phone-screen {
      height: calc(100% - 22px);
    }
    #how, #features, #pricing, #faq {
      padding: 50px 0 !important;
    }
  }

  @media (max-width: 380px) {
    #hero {
      padding-top: calc(68px + env(safe-area-inset-top, 0px) + 8px);
    }

    .hero-h1 {
      font-size: clamp(26px, 7.5vw, 34px);
    }

    .phone {
      width: 210px;
      height: 420px;
      border-radius: 32px;
    }

    .phone-notch {
      width: 68px;
      height: 20px;
    }

    .phone-screen {
      height: calc(100% - 20px);
    }

    .hero-stats {
      gap: 10px 6px;
    }

    .hero-stat-value {
      font-size: 20px;
    }
  }

  /* ── HOW IT WORKS ── */
  #how { padding: 120px 0; position: relative; }
  #how::before {
    content: '';
    position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .step {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .step:hover { border-color: var(--border-accent); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
  .step:hover::before { opacity: 1; }

  .step-num {
    font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800;
    color: rgba(255,107,0,0.08); line-height: 1;
    position: absolute; top: 16px; right: 24px;
  }
  .step-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 24px;
  }
  .step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
  .step p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

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

  /* ── FEATURES ── */
  #features { padding: 120px 0; }

  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .feature {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 28px;
    transition: all 0.3s ease;
  }
  .feature:hover {
    border-color: var(--border-accent);
    background: rgba(255,107,0,0.04);
    transform: translateY(-4px);
  }
  .feature-icon {
    font-size: 32px; margin-bottom: 20px;
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: var(--accent-dim); border-radius: 14px;
    transition: transform 0.3s ease;
  }
  .feature:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
  .feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

  /* big feature */
  .feature.big { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
  .feature.big .feature-visual {
    background: var(--surface2); border-radius: var(--radius-sm);
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
    font-size: 48px; border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255,107,0,0.05), rgba(255,107,0,0.01));
  }

  @media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .feature.big { grid-column: span 2; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature.big { grid-column: span 1; display: flex; flex-direction: column; }
  }

  /* ── PRICING ── */
  #pricing { padding: 120px 0; }

  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

  .plan {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px;
    transition: all 0.3s ease; position: relative; overflow: hidden;
  }
  .plan:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }

  .plan.popular {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(255,107,0,0.08) 0%, var(--surface) 60%);
    transform: scale(1.03);
  }
  .plan.popular:hover { transform: scale(1.03) translateY(-4px); }
  .plan.popular::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent);
  }

  .popular-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--accent); color: var(--cta-text);
    font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.05em;
  }

  .plan-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 20px; }
  .plan.popular .plan-name { color: var(--accent); }

  .plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
  .plan-currency { font-size: 20px; font-weight: 700; color: var(--text); margin-top: 4px; }
  .plan-amount { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; }
  .plan-period { font-size: 14px; color: var(--text-secondary); }

  .plan-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

  .plan-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
  .plan-feature-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(39,174,96,0.15); color: #27AE60; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
  .plan-feature-cross { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,59,48,0.1); color: var(--error); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
  .plan-feature-text { color: var(--text-secondary); }
  .plan-feature-text.active { color: var(--text); }

  .plan-cta { width: 100%; text-align: center; justify-content: center; }

  .plan-note { text-align: center; font-size: 12px; color: var(--text-secondary); margin-top: 12px; }

  @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .plan.popular { transform: none; } .plan.popular:hover { transform: translateY(-4px); } }

  /* ── FAQ ── */
  #faq { padding: 120px 0; }

  .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

  .faq-item {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color 0.3s ease;
  }
  .faq-item.open { border-color: var(--border-accent); }

  .faq-q {
    padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-size: 16px; font-weight: 600; gap: 16px;
    transition: color 0.2s ease;
  }
  .faq-q:hover { color: var(--accent); }

  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.3s ease; color: var(--accent); font-size: 16px;
  }
  .faq-item.open .faq-icon { background: var(--accent); color: var(--cta-text); transform: rotate(45deg); }

  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }
  .faq-a p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

  /* ── FINAL CTA ── */
  #cta { padding: 140px 0; position: relative; overflow: hidden; }

  .cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,107,0,0.1) 0%, transparent 70%);
  }
  .cta-ring {
    position: absolute; inset: -100px;
    border: 1px solid rgba(255,107,0,0.08); border-radius: 50%;
    animation: ring-expand 8s linear infinite;
  }
  .cta-ring-2 {
    position: absolute; inset: -200px;
    border: 1px solid rgba(255,107,0,0.05); border-radius: 50%;
    animation: ring-expand 8s linear 4s infinite;
  }
  @keyframes ring-expand { from { transform: scale(0.8); opacity: 1; } to { transform: scale(1.1); opacity: 0; } }

  .cta-inner { text-align: center; position: relative; z-index: 1; }
  .cta-inner h2 { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.1; margin: 20px 0 24px; }
  .cta-inner h2 em { font-style: normal; color: var(--accent); }
  .cta-inner p { font-size: 18px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 40px; }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border); padding: 60px 0 40px;
  }
  .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand p { font-size: 14px; color: var(--text-secondary); max-width: 280px; margin-top: 12px; line-height: 1.7; }
  .footer-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; }
  .footer-logo span { color: var(--accent); }

  .footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: var(--text-secondary); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--text); }

  .footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: gap; gap: 16px; }
  .footer-copy { font-size: 13px; color: var(--text-secondary); }

  .footer-social-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-badge--wa {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
  }

  .footer-badge--wa:hover {
    color: #25d366;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  }
  .footer-badge--ig {
    background: rgba(211, 127, 37, 0.1);
    border: 1px solid rgba(211, 121, 37, 0.35);
    color: #f09433;
  }

  .footer-badge--ig:hover {
    color: #f09433;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(211, 133, 37, 0.25);
  }

  .footer-badge svg {
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
  }

  .social-footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
  }
  .wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
  .wa-float svg { width: 30px; height: 30px; fill: white; }
  .wa-float::before {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3);
    animation: wa-pulse 2s ease-out infinite;
  }
  @keyframes wa-pulse { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

  /* ── SECTION DIVIDER ── */
  .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent); margin: 0 24px; }

  /* shimmer util */
  @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

  /* ── LEGAL PAGES (sin cabecera ni barra de navegación del sitio) ── */
  body.page-legal {
    overflow-x: clip;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  body.page-legal .legal-doc {
    padding-top: max(40px, env(safe-area-inset-top, 0px) + 28px);
  }

  .legal-doc {
    padding: 48px 0 80px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.page-legal main.container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .legal-doc h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 5.5vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .legal-doc .legal-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
  }

  .legal-doc h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(17px, 4vw, 20px);
    font-weight: 700;
    margin: 36px 0 14px;
    color: var(--text);
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .legal-doc ul { margin: 0 0 16px 1rem; padding-left: 1.25rem; }
  .legal-doc li { margin-bottom: 10px; padding-left: 0.15rem; }
  .legal-doc .legal-toc {
    margin: 0 0 28px 0;
    padding-left: 1.35rem;
    list-style: decimal;
  }
  .legal-doc .legal-toc li { margin-bottom: 8px; }
  .legal-doc .legal-toc a { color: var(--accent); font-weight: 500; text-decoration: none; }
  .legal-doc .legal-toc a:hover { text-decoration: underline; }
  .legal-doc h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--text);
  }
  .legal-doc strong { color: var(--text); }

  .legal-doc a {
    color: var(--accent);
    text-underline-offset: 3px;
  }

  .legal-doc .legal-note {
    margin-top: 48px;
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-footer-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 14px;
    align-items: flex-start;
  }

  .legal-footer-links a {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    padding: 10px 4px;
    margin: -10px -4px;
    border-radius: var(--radius-sm);
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
  }

  .legal-footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  @media (max-width: 640px) {
    body.page-legal .legal-doc {
      padding-top: max(28px, env(safe-area-inset-top, 0px) + 20px);
      padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }

    body.page-legal main.container {
      padding-left: max(14px, env(safe-area-inset-left, 0px));
      padding-right: max(14px, env(safe-area-inset-right, 0px));
    }

    .legal-doc .legal-meta {
      margin-bottom: 28px;
      padding-bottom: 18px;
      font-size: 13px;
    }

    .legal-doc h2 {
      margin-top: 28px;
      margin-bottom: 10px;
    }

    .legal-doc p,
    .legal-doc li {
      font-size: 15px;
      line-height: 1.72;
      margin-bottom: 12px;
    }

    .legal-doc ul {
      margin-bottom: 14px;
      padding-left: 1rem;
    }

    .legal-doc .legal-note {
      margin-top: 36px;
      padding: 14px 14px;
      font-size: 12px;
    }

    .legal-footer-links {
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
      margin-top: 32px;
      padding-top: 20px;
    }

    .legal-footer-links a {
      padding: 12px 12px;
      margin: 0 -12px;
      border-radius: var(--radius-sm);
      min-height: 44px;
      display: flex;
      align-items: center;
    }
  }

  @media (max-width: 380px) {
    .legal-doc h1 {
      font-size: clamp(22px, 6vw, 30px);
    }

    body.page-legal main.container {
      padding-left: max(12px, env(safe-area-inset-left, 0px));
      padding-right: max(12px, env(safe-area-inset-right, 0px));
    }

    .legal-doc p,
    .legal-doc li {
      font-size: 14px;
    }
  }

  /* ── HELP MODAL ── */
  .modal-help {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .modal-help.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .modal-help-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
  }
  .modal-help-dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90dvh;
    overflow: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  }
  .modal-help-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
  }
  .modal-help-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
  }
  .modal-help-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
  }
  .modal-help-close:hover { background: rgba(255, 255, 255, 0.12); }
  .modal-help-intro {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .help-form-field { margin-bottom: 16px; }
  .help-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
  }
  .help-form-field input,
  .help-form-field textarea,
  .help-form-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
  }
  .help-form-field input:focus,
  .help-form-field textarea:focus,
  .help-form-field select:focus {
    outline: none;
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
  }
  .help-form-field textarea { min-height: 120px; resize: vertical; }
  .help-form-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
  .help-form-msg {
    font-size: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    display: none;
  }
  .help-form-msg.is-visible { display: block; }
  .help-form-msg.is-error {
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.35);
    color: #ffb4b0;
  }
  .help-form-msg.is-success {
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.35);
    color: #a8e6c5;
  }
  .footer-col button.footer-link-btn {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
  }
  .footer-col button.footer-link-btn:hover { color: var(--text); }
