:root {
  --green-950: #032b1b;
  --green-900: #053b25;
  --green-800: #005f35;
  --green-700: #007a42;
  --green-600: #009551;
  --green-100: #dff3e8;
  --green-50: #f0f8f4;
  --gold: #c9a24b;
  --gold-light: #f1d999;
  --ink: #0b1711;
  --muted: #5d6a63;
  --line: #dce5df;
  --white: #ffffff;
  --surface: #f7faf8;
  --shadow: 0 22px 70px rgba(1, 36, 20, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.demo-strip {
  min-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--gold);
  color: #1e1707;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
}
.demo-strip__divider { opacity: 0.5; }

.site-header {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(3, 43, 27, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  animation: headerDown .35s ease;
}
@keyframes headerDown { from { transform: translateY(-100%); } }
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; }
.brand img { width: 42px; height: 55px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(0,0,0,.25)); }
.brand__wordmark { font-family: "Arial Narrow", Impact, sans-serif; font-size: 25px; letter-spacing: 0.08em; font-weight: 700; }
.brand__wordmark span { color: var(--gold-light); }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu > a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 600; transition: .2s ease; }
.nav-menu > a:hover { color: white; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: white; margin: 5px 0; transition: .25s; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 40px; padding-inline: 18px; font-size: 12px; }
.button--primary { background: var(--green-600); color: white; box-shadow: 0 14px 32px rgba(0,149,81,.28); }
.button--primary:hover { background: #00a65a; box-shadow: 0 18px 38px rgba(0,149,81,.38); }
.button--outline { color: white; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.04); }
.button--outline:hover { border-color: white; background: rgba(255,255,255,.12); }
.button--ghost { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--ghost:hover { background: rgba(255,255,255,.16); }
.button--gold { background: var(--gold); color: #171104; box-shadow: 0 14px 30px rgba(201,162,75,.23); }
.button--gold:hover { background: #d6b35d; }
.button--plan { background: var(--green-50); border-color: #cae6d7; color: var(--green-800); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: 820px;
  color: white;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  isolation: isolate;
}
.hero__media, .hero__overlay, .hero__pattern { position: absolute; inset: 0; }
.hero__media {
  background: url("assets/florencio-sola.jpg") center 54% / cover no-repeat;
  transform: scale(1.015);
  z-index: -4;
}
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(2, 27, 17, .97) 0%, rgba(2, 41, 24, .88) 42%, rgba(1, 38, 23, .54) 68%, rgba(1, 24, 15, .62) 100%),
    linear-gradient(0deg, rgba(2,32,20,.95) 0%, transparent 45%);
  z-index: -3;
}
.hero__pattern {
  z-index: -2;
  opacity: .11;
  background-image: repeating-linear-gradient(135deg, transparent 0 32px, rgba(255,255,255,.28) 32px 33px);
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.hero__content { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 80px; }
.hero__copy { max-width: 700px; }
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  color: rgba(255,255,255,.72);
}
.eyebrow span { width: 34px; height: 2px; background: var(--gold); }
.eyebrow--green { color: var(--green-700); }
.eyebrow--green span { background: var(--green-600); }
.hero h1, .section h2, .final-cta h2 {
  font-family: "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .98;
}
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(56px, 7vw, 96px); }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero__lead { max-width: 610px; margin: 28px 0 0; font-size: 18px; color: rgba(255,255,255,.78); }
.hero__actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero__note { margin: 18px 0 0; color: rgba(255,255,255,.52); font-size: 12px; }
.hero-card {
  position: relative;
  max-width: 380px;
  margin-left: auto;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255,255,255,.17), rgba(255,255,255,.05));
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% 20%;
  height: 250px;
  background: radial-gradient(circle, rgba(201,162,75,.35), transparent 65%);
}
.hero-card__top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.status-dot { color: #bbffd9; font-weight: 800; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; background: #5df5a4; border-radius: 50%; margin-right: 6px; box-shadow: 0 0 12px #5df5a4; }
.hero-card__crest { width: 112px; height: 150px; object-fit: contain; margin: 40px auto 26px; filter: drop-shadow(0 20px 22px rgba(0,0,0,.4)); }
.hero-card__number { text-align: center; font-family: "Arial Narrow", Impact, sans-serif; font-size: 15px; letter-spacing: .18em; color: var(--gold-light); }
.hero-card__bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; margin-top: 36px; }
.hero-card__bottom small { display: block; font-size: 9px; letter-spacing: .15em; opacity: .56; }
.hero-card__bottom strong { display: block; margin-top: 4px; font-size: 14px; letter-spacing: .08em; }
.hero-card__qr { width: 44px; height: 44px; display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 4px; border-radius: 5px; background: white; }
.hero-card__qr span { background: var(--ink); }
.hero__stats {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 56px;
}
.hero__stats article { display: flex; align-items: baseline; gap: 9px; }
.hero__stats strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: 28px; }
.hero__stats span { color: rgba(255,255,255,.58); font-size: 12px; }

.section { padding: 110px 0; }
.section--light { background: var(--surface); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 50px; }
.section-heading h2, .steps-copy h2, .credential-copy h2, .faq-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 66px); max-width: 760px; }
.section-heading > p { max-width: 410px; margin: 0 0 7px; color: var(--muted); }
.section-heading--center { display: block; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center h2 { margin-inline: auto; }
.section-heading--center > p { margin: 18px auto 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.benefit-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: #b8d8c5; }
.benefit-card__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--green-50); color: var(--green-700); font-family: "Arial Narrow", Impact, sans-serif; font-weight: 700; }
.benefit-card h3 { margin: 58px 0 12px; font-size: 20px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; }

.steps-section { background: var(--green-950); color: white; position: relative; overflow: hidden; }
.steps-section::before { content: "1896"; position: absolute; right: -25px; bottom: -130px; font-family: "Arial Narrow", Impact, sans-serif; font-size: 310px; line-height: 1; font-weight: 700; color: rgba(255,255,255,.025); }
.steps-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.steps-copy p:last-child { color: rgba(255,255,255,.6); max-width: 460px; }
.steps-list { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 26px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.045); }
.step > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #1b1405; font-family: "Arial Narrow", Impact, sans-serif; font-weight: 700; }
.step h3 { margin: 0 0 5px; font-size: 18px; }
.step p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.section--plans { background: #eef5f1; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; padding: 34px; border-radius: 26px; border: 1px solid #d4e2da; background: white; overflow: hidden; transition: .3s ease; }
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan-card--featured { border: 2px solid var(--green-600); box-shadow: 0 24px 70px rgba(0,106,58,.14); }
.plan-card--dark { background: var(--green-950); color: white; border-color: var(--green-950); }
.plan-card__ribbon { position: absolute; top: 20px; right: -38px; transform: rotate(35deg); background: var(--green-600); color: white; padding: 7px 43px; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.plan-card__tag { font-size: 10px; font-weight: 800; letter-spacing: .16em; color: var(--green-600); }
.plan-card--dark .plan-card__tag { color: var(--gold-light); }
.plan-card h3 { font-family: "Arial Narrow", Impact, sans-serif; text-transform: uppercase; font-size: 42px; line-height: 1; margin: 12px 0; }
.plan-card__header p { min-height: 48px; color: var(--muted); font-size: 14px; }
.plan-card--dark .plan-card__header p { color: rgba(255,255,255,.58); }
.plan-card__price { display: flex; align-items: flex-start; margin: 30px 0; }
.plan-card__price span { font-size: 22px; font-weight: 800; margin-top: 7px; }
.plan-card__price strong { font-family: "Arial Narrow", Impact, sans-serif; font-size: 55px; line-height: 1; letter-spacing: -.02em; }
.plan-card__price small { align-self: flex-end; color: var(--muted); margin: 0 0 6px 5px; }
.plan-card--dark .plan-card__price small { color: rgba(255,255,255,.5); }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 14px; flex: 1; }
.plan-card li { position: relative; padding-left: 26px; font-size: 14px; color: #3c4942; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 900; }
.plan-card--dark li { color: rgba(255,255,255,.76); }
.plan-card--dark li::before { color: var(--gold-light); }
.plans-note { text-align: center; margin: 28px auto 0; max-width: 850px; color: #6b756f; font-size: 11px; }

.credential-section { background: var(--green-800); color: white; overflow: hidden; }
.credential-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.credential-copy > p:last-of-type { max-width: 540px; color: rgba(255,255,255,.67); }
.credential-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.credential-features span { padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); font-size: 12px; color: rgba(255,255,255,.76); }
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-wrap::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 66%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.phone { position: relative; width: 330px; padding: 12px; border: 7px solid #09120e; border-radius: 42px; background: #f5f8f6; color: var(--ink); box-shadow: 0 40px 100px rgba(0,0,0,.36); transform: rotate(3deg); }
.phone__top { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; padding: 3px 12px 10px; }
.phone__appbar { display: flex; align-items: center; justify-content: space-between; padding: 7px 8px 12px; }
.phone__appbar img { width: 25px; height: 32px; object-fit: contain; }
.phone__appbar span { font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.phone__appbar button { border: 0; background: none; font-weight: 900; }
.digital-card { position: relative; min-height: 390px; padding: 25px; border-radius: 25px; color: white; overflow: hidden; background: linear-gradient(145deg, #073f28, #007a42); box-shadow: 0 20px 50px rgba(0,95,53,.28); }
.digital-card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(125deg, transparent 0 27px, rgba(255,255,255,.04) 27px 28px); }
.digital-card__shine { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(201,162,75,.2); filter: blur(25px); right: -90px; bottom: -70px; }
.digital-card__head { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.digital-card__head img { width: 53px; height: 72px; object-fit: contain; }
.digital-card__head span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 9px; font-weight: 800; color: #b9ffd7; }
.digital-card > small { position: relative; display: block; margin-top: 35px; color: rgba(255,255,255,.56); font-size: 9px; letter-spacing: .14em; }
.digital-card h3 { position: relative; margin: 5px 0 20px; font-family: "Arial Narrow", Impact, sans-serif; font-size: 28px; }
.digital-card__meta { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.digital-card__meta small { display: block; font-size: 8px; opacity: .5; }
.digital-card__meta strong { font-size: 11px; }
.large-qr { position: absolute; right: 25px; bottom: 24px; width: 76px; height: 76px; border-radius: 8px; background:
 linear-gradient(90deg, #fff 8px, transparent 8px 14px, #fff 14px 22px, transparent 22px 30px, #fff 30px 38px, transparent 38px 44px, #fff 44px 54px, transparent 54px 62px, #fff 62px),
 linear-gradient(#fff 8px, transparent 8px 15px, #fff 15px 24px, transparent 24px 31px, #fff 31px 40px, transparent 40px 47px, #fff 47px 56px, transparent 56px 64px, #fff 64px);
 border: 6px solid white;
 background-color: var(--ink);
}
.phone__actions { display: grid; gap: 8px; padding: 14px 2px 4px; }
.phone__actions button { min-height: 42px; border-radius: 13px; border: 1px solid var(--line); background: white; font-size: 11px; font-weight: 700; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-heading p:last-child { color: var(--muted); max-width: 420px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 22px; color: var(--green-700); transition: .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -8px 0 22px; color: var(--muted); max-width: 720px; font-size: 14px; }

.final-cta { padding: 65px 0; background: var(--green-950); color: white; }
.final-cta__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.final-cta img { width: 68px; height: 90px; object-fit: contain; }
.final-cta p { margin: 0 0 7px; font-size: 10px; letter-spacing: .16em; color: var(--gold-light); font-weight: 800; }
.final-cta h2 { margin: 0; font-size: clamp(33px, 4vw, 50px); }

.footer { background: #041d13; color: rgba(255,255,255,.68); padding: 70px 0 25px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 50px; }
.brand--footer { margin-bottom: 20px; }
.footer__brand p { max-width: 460px; font-size: 13px; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 13px; }
.footer__grid strong { color: white; font-size: 10px; letter-spacing: .15em; margin-bottom: 5px; }
.footer__grid a:hover { color: white; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 22px; font-size: 10px; }

.modal { width: min(94vw, 680px); max-height: 92vh; padding: 0; border: 0; border-radius: 28px; background: transparent; overflow: visible; }
.modal::backdrop { background: rgba(0, 20, 12, .78); backdrop-filter: blur(8px); }
.modal__panel { position: relative; margin: 0; padding: 36px; border-radius: 28px; background: white; box-shadow: 0 35px 100px rgba(0,0,0,.35); overflow-y: auto; max-height: 92vh; }
.modal__panel--compact { max-width: 470px; margin-inline: auto; }
.modal__close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--green-50); color: var(--green-900); font-size: 26px; cursor: pointer; }
.modal__eyebrow { color: var(--green-700); font-size: 10px; font-weight: 800; letter-spacing: .16em; margin-bottom: 9px; }
.modal h2 { margin: 0; font-family: "Arial Narrow", Impact, sans-serif; font-size: 42px; text-transform: uppercase; line-height: 1; }
.modal h2 + p { margin: 13px 0 25px; color: var(--muted); font-size: 13px; }
.selected-plan { display: flex; justify-content: space-between; gap: 20px; padding: 18px; margin-bottom: 22px; border-radius: 16px; background: var(--green-50); }
.selected-plan small, .success-member small { display: block; color: var(--muted); font-size: 8px; letter-spacing: .12em; }
.selected-plan strong { display: block; margin-top: 2px; color: var(--green-800); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal label { display: block; color: #2d3a33; font-size: 12px; font-weight: 700; }
.modal label span { color: #8a948f; font-weight: 400; }
.modal input[type="text"], .modal input[type="email"], .modal input[type="date"], .modal input[type="password"] { width: 100%; min-height: 49px; margin-top: 7px; padding: 0 14px; border: 1px solid #d5dfd9; border-radius: 12px; outline: none; background: white; }
.modal input:focus { border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(0,149,81,.12); }
.checkbox-row { display: grid !important; grid-template-columns: auto 1fr; gap: 10px; align-items: flex-start; margin: 20px 0; font-weight: 500 !important; }
.checkbox-row input { margin-top: 3px; accent-color: var(--green-600); }
.security-note { margin: 12px 0 0; text-align: center; color: #88918c; font-size: 10px; }
.modal__step { display: none; }
.modal__step--active { display: block; }
.modal__success { text-align: center; padding: 20px 0 8px; }
.success-check { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--green-100); color: var(--green-700); font-size: 35px; font-weight: 900; }
.success-member { padding: 24px; margin: 24px 0; border-radius: 18px; background: var(--green-950); color: white; }
.success-member strong { display: block; font-family: "Arial Narrow", Impact, sans-serif; font-size: 34px; color: var(--gold-light); letter-spacing: .05em; }
.success-member span { font-size: 12px; color: rgba(255,255,255,.65); }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 30px; transform: translate(-50%, 25px); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: 12px; opacity: 0; pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

@media (max-width: 1000px) {
  .hero__content { grid-template-columns: 1fr .6fr; gap: 35px; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid, .credential-grid, .faq-grid { gap: 50px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 700px; margin-inline: auto; }
  .plan-card__header p { min-height: 0; }
}

@media (max-width: 760px) {
  .demo-strip { font-size: 8px; letter-spacing: .1em; }
  .demo-strip__divider, .demo-strip span:last-child { display: none; }
  .site-header { top: 28px; }
  .nav { min-height: 70px; }
  .brand img { width: 34px; height: 45px; }
  .brand__wordmark { font-size: 22px; }
  .nav-toggle { display: block; z-index: 3; }
  .nav-menu { position: absolute; top: 100%; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border-radius: 18px; background: var(--green-950); box-shadow: 0 22px 55px rgba(0,0,0,.35); }
  .nav-menu.open { display: flex; }
  .nav-menu > a { padding: 13px 8px; }
  .nav-menu .button { margin-top: 10px; }
  .hero { min-height: auto; padding: 150px 0 120px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .hero__lead { font-size: 16px; }
  .hero-card { display: none; }
  .hero__stats { gap: 20px; justify-content: space-between; width: min(calc(100% - 40px), var(--container)); }
  .hero__stats article { display: block; }
  .hero__stats strong { display: block; font-size: 23px; }
  .section { padding: 80px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .section-heading h2, .steps-copy h2, .credential-copy h2, .faq-heading h2 { font-size: 44px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 230px; }
  .benefit-card h3 { margin-top: 35px; }
  .steps-grid, .credential-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps-section::before { font-size: 180px; bottom: -60px; }
  .step { grid-template-columns: 46px 1fr; padding: 20px; gap: 15px; }
  .step > span { width: 42px; height: 42px; }
  .plan-card { padding: 28px; }
  .plan-card__price strong { font-size: 48px; }
  .credential-copy { text-align: left; }
  .phone { width: 305px; }
  .final-cta__inner { grid-template-columns: auto 1fr; }
  .final-cta__inner .button { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .modal__panel { padding: 30px 22px; }
  .selected-plan { display: block; }
  .selected-plan > div + div { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Checkout de tarjeta de demostración */
.payment-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.checkout-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 18px;
  margin-bottom: 16px;
  border: 1px solid #dce9e1;
  border-radius: 16px;
  background: var(--green-50);
}
.checkout-summary small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}
.checkout-summary strong {
  display: block;
  margin-top: 3px;
  color: var(--green-900);
  font-size: 17px;
}
.checkout-summary__total { text-align: right; }
.payment-methods { margin-bottom: 16px; }
.payment-method {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #cfe2d7;
  border-radius: 15px;
  background: white;
  text-align: left;
}
.payment-method--active {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(0,149,81,.08);
}
.payment-method__icon {
  width: 38px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--green-900);
  color: var(--gold-light);
}
.payment-method strong,
.payment-method small { display: block; }
.payment-method small { color: var(--muted); font-size: 10px; }
.payment-method__check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-600);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
.card-preview {
  position: relative;
  min-height: 205px;
  margin: 18px 0 20px;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(201,162,75,.35), transparent 30%),
    repeating-linear-gradient(125deg, transparent 0 28px, rgba(255,255,255,.035) 28px 29px),
    linear-gradient(145deg, #063922, #008047);
  box-shadow: 0 22px 48px rgba(0,95,53,.24);
}
.card-preview::after {
  content: "DEMO";
  position: absolute;
  right: -12px;
  bottom: -25px;
  color: rgba(255,255,255,.07);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 96px;
  letter-spacing: .04em;
}
.card-preview__brand {
  position: relative;
  z-index: 1;
  text-align: right;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
}
.card-preview__brand span { color: var(--gold-light); }
.card-preview__chip {
  width: 44px;
  height: 32px;
  margin: 10px 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0d98e, #ad8430);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
}
.card-preview__number {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(20px, 4.8vw, 27px);
  letter-spacing: .08em;
  white-space: nowrap;
}
.card-preview__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}
.card-preview__footer small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 7px;
  letter-spacing: .14em;
}
.card-preview__footer strong {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: .04em;
}
.field--full { grid-column: 1 / -1; }
.test-card-fill {
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  border: 1px dashed #abcdb9;
  border-radius: 12px;
  background: #f5fbf7;
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.payment-security {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  color: #7a8780;
  text-align: left;
}
.payment-security p { margin: 0; font-size: 10px; line-height: 1.45; }
.payment-security strong { color: #4d5a53; }

.payment-error-box {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid #efb8b3;
  border-radius: 14px;
  background: #fff4f3;
  color: #7d211a;
}
.payment-error-box[hidden] { display: none; }
.payment-error-box__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #b3261e;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.payment-error-box strong { display: block; margin-bottom: 4px; font-size: 13px; }
.payment-error-box p { margin: 0; font-size: 10px; line-height: 1.5; }
.payment-error-box small { display: block; margin-top: 7px; color: #9b4c45; font-size: 8px; font-weight: 800; letter-spacing: .04em; }
.button--loading { cursor: wait; opacity: .78; }

@media (max-width: 760px) {
  .checkout-summary { display: block; }
  .checkout-summary__total { margin-top: 10px; text-align: left; }
  .card-preview { min-height: 190px; padding: 20px; }
  .card-preview__number { font-size: 19px; letter-spacing: .045em; }
  .card-preview__footer { margin-top: 20px; }
}

/* Cuenta local y panel superior */
.account-shell {
  position: relative;
  display: flex;
  align-items: center;
}
.account-menu-wrap { position: relative; }
.account-trigger {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .2s ease;
}
.account-trigger:hover,
.account-trigger[aria-expanded="true"] {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.16);
}
.account-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #241a05;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.account-avatar--large { width: 48px; height: 48px; font-size: 14px; }
.account-trigger__copy { min-width: 78px; text-align: left; line-height: 1.1; }
.account-trigger__copy small { display: block; color: rgba(255,255,255,.56); font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.account-trigger__copy strong { display: block; max-width: 105px; margin-top: 3px; overflow: hidden; color: white; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.account-trigger__chevron { margin-right: 2px; font-size: 15px; transition: transform .2s ease; }
.account-trigger[aria-expanded="true"] .account-trigger__chevron { transform: rotate(180deg); }
.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
  animation: accountDrop .2s ease;
}
@keyframes accountDrop { from { opacity: 0; transform: translateY(-8px) scale(.98); } }
.account-dropdown__head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.account-dropdown__head div { min-width: 0; }
.account-dropdown__head strong { display: block; max-width: 220px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.account-dropdown__head small { display: block; max-width: 220px; margin-top: 2px; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.account-membership {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
  padding: 14px;
  border-radius: 14px;
  background: var(--green-50);
}
.account-membership small,
.account-details small { display: block; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.account-membership strong { display: block; margin-top: 3px; color: var(--green-900); font-size: 13px; }
.account-status {
  padding: 5px 8px;
  border-radius: 999px;
  background: #e3e8e5;
  color: #65706a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}
.account-status--active { background: #d5f5e3; color: #006a39; }
.account-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.account-details div { padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; }
.account-details strong { display: block; margin-top: 4px; color: #28352e; font-size: 10px; }
.account-action {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-radius: 11px;
  background: var(--green-800);
  color: white;
  font-size: 11px;
  font-weight: 800;
}
.account-action:hover { background: var(--green-700); }
.account-logout {
  width: 100%;
  min-height: 39px;
  margin-top: 8px;
  border: 0;
  border-radius: 11px;
  background: #f1f4f2;
  color: #4e5b54;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.account-logout:hover { background: #e8edea; }
.account-dropdown > p { margin: 10px 0 0; color: #929b96; text-align: center; font-size: 8px; }

/* Registro e inicio de sesión */
.auth-panel { overflow-x: hidden; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  margin-bottom: 20px;
  border-radius: 13px;
  background: #eef4f0;
}
.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #66736c;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.auth-tab--active { background: white; color: var(--green-800); box-shadow: 0 5px 18px rgba(0,54,30,.1); }
.auth-view { display: none; }
.auth-view--active { display: block; }
.auth-view form { display: grid; gap: 13px; }
.auth-view .checkbox-row { margin: 2px 0 0; }
.auth-secondary {
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.form-error { min-height: 16px; margin: -3px 0 0; color: #b3261e; font-size: 10px; font-weight: 700; }

@media (max-width: 760px) {
  .account-shell { width: 100%; margin-top: 10px; }
  .account-menu-wrap { width: 100%; }
  .account-trigger { width: 100%; border-radius: 14px; }
  .account-trigger__copy { flex: 1; }
  .account-dropdown { position: static; width: 100%; margin-top: 8px; box-shadow: none; }
  .nav-menu .account-shell .button { width: 100%; margin-top: 0; }
}
