    :root {
      --orange: #ff542b;
      --orange-dark: #e6421e;
      --yellow: #f7f748;
      --blue: #6ed6ff;
      --green: #85ff9c;
      --pink: #fc9af7;
      --black: #000000;
      --white: #ffffff;
      --soft: #fff2ed;
      --gray: #f5f5f5;
      --text: #111111;
      --muted: #5f5f5f;
      --radius-xl: 34px;
      --radius-lg: 24px;
      --shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
      --border: 3px solid var(--black);
    }

    * { 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: var(--white);
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    .brand-font { font-family: Fredoka, Inter, sans-serif; }
    .container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--orange);
      border-bottom: 3px solid var(--black);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: Fredoka, Inter, sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -1px;
    }

    .logo-badge {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--black);
      color: var(--yellow);
      transform: rotate(-5deg);
      box-shadow: 4px 4px 0 rgba(0,0,0,.25);
    }



    .brand-logo {
      display: block;
      width: clamp(128px, 12vw, 160px);
      max-height: 54px;
      height: auto;
      object-fit: contain;
    }

    .footer-logo {
      display: block;
      width: min(210px, 100%);
      height: auto;
      margin-bottom: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      font-weight: 800;
      color: var(--white);
      font-size: 15px;
    }

    .btn {
      border: var(--border);
      border-radius: 18px;
      padding: 15px 24px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 var(--black); }
    .btn.dark { background: var(--black); color: var(--white); }
    .btn.light { background: var(--white); color: var(--black); }
    .btn.orange { background: var(--orange); color: var(--white); }
    .btn.yellow { background: var(--yellow); color: var(--black); }

    .hero {
      position: relative;
      min-height: 690px;
      display: grid;
      align-items: stretch;
      background: #111;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.58) 38%, rgba(0,0,0,.18) 76%),
        url("assets/hero-mercado-lima.png") center center/cover;
      transform: scale(1.02);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 96px 0 120px;
      color: var(--white);
      max-width: 760px;
    }

    .hero h1 {
      font-family: Fredoka, Inter, sans-serif;
      font-size: clamp(34px, 4.9vw, 62px);
      font-weight: 400;
      line-height: .92;
      letter-spacing: -3px;
      margin: 0 0 28px;
      max-width: 780px;
    }

    .hero p {
      font-size: clamp(19px, 2vw, 25px);
      line-height: 1.35;
      max-width: 600px;
      margin: 0 0 34px;
      color: rgba(255,255,255,.93);
      font-weight: 600;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .yellow-strip {
      background: var(--yellow);
      border-top: var(--border);
      border-bottom: var(--border);
      padding: 28px 0;
      position: relative;
      overflow: hidden;
    }

    .yellow-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .strip-text {
      font-family: Fredoka, Inter, sans-serif;
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 700;
      letter-spacing: -1px;
    }

    section { padding: 88px 0; }
    .section-title {
      font-family: Fredoka, Inter, sans-serif;
      font-size: clamp(28px, 4.2vw, 48px);
      font-weight: 400;
      line-height: .95;
      letter-spacing: -2px;
      margin: 0 0 18px;
    }

    .section-copy {
      color: var(--muted);
      font-size: 21px;
      line-height: 1.45;
      max-width: 700px;
      font-weight: 600;
      margin: 0;
    }

    .steps { background: var(--white); }

    .steps-grid {
      margin-top: 46px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .step-card, .mini-card {
      background: var(--white);
      border: var(--border);
      border-radius: 26px;
      padding: 26px;
      box-shadow: 7px 7px 0 var(--black);
      min-height: 220px;
    }

    .step-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: var(--white);
      border-radius: 16px;
      border: 2px solid var(--black);
      font-weight: 900;
      margin-bottom: 22px;
    }

    .step-card h3, .mini-card h3 {
      font-family: Fredoka, Inter, sans-serif;
      font-size: 25px;
      line-height: 1;
      margin: 0 0 12px;
    }

    .step-card p, .mini-card p { color: var(--muted); line-height: 1.45; margin: 0; font-weight: 600; }

    .promise { background: var(--soft); }

    .promise-grid {
      display: grid;
      grid-template-columns: .75fr 1.25fr;
      gap: 42px;
      align-items: center;
    }

    .promise-card {
      background: var(--orange);
      color: var(--white);
      border: var(--border);
      border-radius: var(--radius-xl);
      padding: 46px;
      box-shadow: 12px 12px 0 var(--black);
      transform: rotate(-1deg);
    }

    .promise-card h2 { margin-bottom: 18px; }
    .promise-card p { color: rgba(255,255,255,.92); }

    .photo-stack { position: relative; min-height: 430px; }

    .photo-main {
      position: absolute;
      inset: 20px 20px 0 70px;
      border-radius: 38px;
      border: var(--border);
      background: url("assets/persona-celular-bodega-lima.png") center center/cover;
      box-shadow: var(--shadow);
    }

    .photo-pill {
      position: absolute;
      left: 0;
      bottom: 32px;
      background: var(--white);
      border: var(--border);
      border-radius: 24px;
      padding: 20px 24px;
      font-weight: 900;
      box-shadow: 8px 8px 0 var(--black);
    }

    .simulator-section {
      background: var(--black);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .simulator-section::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 999px;
      background: var(--pink);
      opacity: .28;
      right: -80px;
      top: -70px;
      filter: blur(4px);
    }

    .simulator-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 44px;
      align-items: center;
    }

    .simulator-card {
      background: var(--white);
      color: var(--black);
      border: var(--border);
      border-radius: var(--radius-xl);
      padding: 34px;
      box-shadow: 12px 12px 0 var(--orange);
    }

    .selector-group { margin-bottom: 28px; }
    .selector-label { font-weight: 900; margin-bottom: 12px; display: block; }
    .chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

    .chip {
      border: 2px solid var(--black);
      border-radius: 999px;
      background: var(--white);
      color: var(--black);
      padding: 12px 16px;
      font-weight: 900;
      cursor: pointer;
      transition: .2s ease;
    }
    .chip.active { background: var(--yellow); box-shadow: 4px 4px 0 var(--black); transform: translateY(-1px); }

    .result {
      margin: 28px 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .result-box {
      border: 2px solid var(--black);
      border-radius: 20px;
      padding: 18px;
      background: #fff7ef;
    }

    .result-box.total-box {
      background: var(--yellow);
      box-shadow: 5px 5px 0 var(--black);
      transform: translateY(-2px);
    }
    .result-box span { display: block; color: var(--muted); font-weight: 800; margin-bottom: 8px; font-size: 13px; }
    .result-box strong { font-family: Fredoka, Inter, sans-serif; font-size: 28px; }

    .benefits { background: #ffe2d9; }

    .benefit-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 48px;
      align-items: center;
    }

    .benefit-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 2px solid var(--black);
      border-radius: 18px;
      background: var(--yellow);
      margin-bottom: 24px;
      font-size: 24px;
    }

    .form-section {
      background: var(--yellow);
      position: relative;
      overflow: hidden;
    }

    .form-section::before {
      content: "";
      position: absolute;
      inset: auto -80px -120px auto;
      width: 280px;
      height: 280px;
      background: var(--blue);
      border-radius: 999px;
      border: var(--border);
    }

    .form-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 46px;
      align-items: center;
    }

    .lead-form {
      background: var(--white);
      border: var(--border);
      border-radius: var(--radius-xl);
      padding: 36px;
      box-shadow: 12px 12px 0 var(--black);
    }

    .field { margin-bottom: 18px; }
    label { display: block; font-weight: 900; margin-bottom: 8px; }
    input {
      width: 100%;
      border: 2px solid var(--black);
      border-radius: 16px;
      padding: 16px 18px;
      font-size: 17px;
      outline: none;
      background: #fff;
    }
    input:focus { box-shadow: 4px 4px 0 var(--orange); }

    .phone-input {
      display: flex;
      align-items: center;
      border: 2px solid var(--black);
      border-radius: 16px;
      background: var(--white);
      overflow: hidden;
    }

    .phone-prefix {
      flex: 0 0 auto;
      padding: 16px 14px 16px 18px;
      font-size: 17px;
      font-weight: 900;
      border-right: 2px solid var(--black);
      background: #fff7ef;
      color: var(--black);
    }

    .phone-input input {
      border: 0;
      border-radius: 0;
      box-shadow: none;
      padding-left: 14px;
    }

    .phone-input:focus-within { box-shadow: 4px 4px 0 var(--orange); }
    .phone-input input:focus { box-shadow: none; }

    .legal { color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 14px; font-weight: 600; }
    .message { margin-top: 16px; font-weight: 900; display: none; }
    .message.ok { color: #167a28; }
    .message.error { color: #c92f14; }

    .faq-section {
      background: var(--white);
      color: var(--black);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 58px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 18px;
    }

    .faq-item {
      background: #f4f4f4;
      border-radius: 28px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 26px 30px;
      background: transparent;
      border: 0;
      color: var(--black);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      font-family: Fredoka, Inter, sans-serif;
      font-size: 24px;
      font-weight: 600;
      cursor: pointer;
    }

    .faq-icon {
      flex: 0 0 auto;
      font-size: 28px;
      line-height: 1;
      transition: transform .2s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 30px 26px;
      color: var(--muted);
      font-size: 17px;
      font-weight: 600;
      line-height: 1.45;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .final-cta {
      background: var(--orange);
      color: var(--white);
      text-align: center;
      padding: 76px 0;
    }
    .final-cta h2 { max-width: 720px; margin: 0 auto 22px; }
    .final-cta p { margin: 0 auto 30px; color: rgba(255,255,255,.9); }

    footer {
      background: var(--black);
      color: var(--white);
      padding: 58px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 36px;
      border-bottom: 1px solid rgba(255,255,255,.22);
      padding-bottom: 32px;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--orange); font-weight: 800; }
    .mvp-note { color: rgba(255,255,255,.65); font-size: 13px; margin-top: 24px; }

    @media (max-width: 920px) {
  
      .nav-links { display: none; }
      .hero { min-height: 640px; }
      .hero-content { padding: 78px 0 92px; }
      .yellow-strip .container,
      .promise-grid,
      .simulator-grid,
      .benefit-layout,
      .faq-layout,
      .form-grid,
      .footer-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .photo-stack { min-height: 360px; }
      .photo-main { inset: 0 0 40px 30px; }
      .result { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 24px, 1180px); }
      .nav { min-height: 68px; }
      .logo { font-size: 26px; }
      .logo-badge { width: 36px; height: 36px; }
      .brand-logo { width: 132px; max-height: 46px; }
      .footer-logo { width: 190px; }
      .btn { width: 100%; padding: 14px 18px; border-radius: 16px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero h1 { letter-spacing: -1.5px; }
      .steps-grid, .benefit-cards { grid-template-columns: 1fr; }
      section { padding: 66px 0; }
      .promise-card, .lead-form, .simulator-card { padding: 28px; border-radius: 26px; }
      .faq-question { font-size: 20px; padding: 22px 24px; }
      .section-title { letter-spacing: -1px; }
    }

/* Campos de seguridad no visibles para usuarios reales */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.btn[disabled], button[disabled] {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
