/* ============ ZAGAZ — Landing Comunidad ============ */
:root{
  --azul-zagaz:#1B4F8A;
  --azul-cielo:#2E87C8;
  --azul-noche:#0D3259;
  --azul-noche-2:#0a2849;
  --azul-noche-3:#071e38;
  --gris-medio:#6B7A8D;
  --gris-claro:#EFF4F8;
  --blanco:#FFFFFF;
  --neon:#5BB8FF;
  --neon-soft:#7CC8FF;
  --neon-strong:#A6DCFF;
  --glow-1: 0 0 12px rgba(91,184,255,.6), 0 0 32px rgba(91,184,255,.35);
  --glow-2: 0 0 20px rgba(91,184,255,.75), 0 0 56px rgba(91,184,255,.45);
  --neon-intensity: 1.2;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*{box-sizing:border-box; margin:0; padding:0}
html, body{
  background: #000;
  color: var(--blanco);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{display:block; max-width:100%}
a{color:inherit; text-decoration:none}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit}

/* ---- Layout ---- */
.wrap{max-width:1240px; margin:0 auto; padding: 0 32px}
section{position:relative}

/* ---- Type ---- */
h1,h2,h3,h4{font-family: var(--font-display); font-weight:600; letter-spacing:-0.02em; line-height:1.05; text-wrap: balance}
h1{font-size: clamp(40px, 5.6vw, 84px); font-weight:700; letter-spacing:-0.035em}
h2{font-size: clamp(32px, 3.6vw, 56px)}
h3{font-size: clamp(22px, 1.8vw, 28px)}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-size:12px; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  color: var(--neon);
  padding: 8px 14px;
  border: 1px solid rgba(91,184,255,.35);
  border-radius: 999px;
  background: rgba(91,184,255,.06);
}
.eyebrow .dot{
  width:6px; height:6px; border-radius:999px; background:var(--neon);
  box-shadow: 0 0 8px var(--neon), 0 0 16px var(--neon);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:1; transform:scale(1)}
  50%{opacity:.55; transform:scale(.7)}
}
.muted{color: rgba(255,255,255,.65)}
.text-balance{text-wrap:balance}

/* ---- Header ---- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index:50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(7,30,56,.65);
  border-bottom: 1px solid rgba(91,184,255,.12);
}
body{ padding-top: 84px; }
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:16px; padding-bottom:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:52px; width:auto}
.nav{display:flex; gap:32px; align-items:center}
.nav a{
  font-size:14px; color:rgba(255,255,255,.7); font-weight:500;
  transition: color .2s;
}
.nav a:hover{color: var(--neon-strong)}
.nav-cta{
  font-family: var(--font-body); font-size:14px; font-weight:600;
  padding: 10px 18px; border-radius: 999px;
  background: var(--neon); color: var(--azul-noche);
  box-shadow: var(--glow-1);
  transition: all .25s;
}
.nav-cta:hover{box-shadow: var(--glow-2); transform: translateY(-1px)}
@media (max-width: 760px){ .nav{display:none} }

/* ---- Hero ---- */
.hero{
  padding: 96px 0 80px;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}
@media (max-width: 980px){
  .hero-grid{gap:48px}
  .hero{padding: 56px 0 48px}
}
.hero-copy{
  text-align: center;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 .accent{
  background: linear-gradient(180deg, #fff 0%, var(--neon-strong) 100%);
  -webkit-background-clip:text; background-clip:text;
  color: transparent;
}
.hero p.lead{
  font-size: clamp(16px, 1.25vw, 20px);
  color: rgba(255,255,255,.78);
  max-width: 680px;
  margin: 28px auto 0;
}
.hero-meta{
  display:flex; gap:32px; margin-top:40px; flex-wrap:wrap;
  font-size:16px; color: rgba(255,255,255,.78);
  justify-content: center;
  font-weight: 500;
}
.hero-meta div{display:flex; align-items:center; gap:10px}
.hero-meta .check{
  width:24px; height:24px; border-radius:999px;
  border:1px solid rgba(91,184,255,.55);
  display:inline-flex; align-items:center; justify-content:center;
  color: var(--neon);
  font-size: 13px;
}
.hero-cta-row{display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; align-items:center; justify-content:center}
.video-col{ width: 100%; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:600; font-size:15px;
  padding: 16px 26px; border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--neon); color: var(--azul-noche);
  box-shadow: var(--glow-1);
}
.btn-primary:hover{box-shadow: var(--glow-2); transform: translateY(-2px)}
.btn-ghost{
  border: 1px solid rgba(255,255,255,.2);
  color: var(--blanco);
}
.btn-ghost:hover{border-color: var(--neon); color: var(--neon-strong)}
.btn .arrow{transition: transform .25s}
.btn:hover .arrow{transform: translateX(3px)}

/* ---- Video frame ---- */
.video-shell{
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-height: none;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a2849 0%, #061427 100%);
  border: 1px solid rgba(91,184,255,.18);
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(91,184,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
.video-shell::before{
  /* Neon corner brackets, like FB campaign style */
  content:'';
  position:absolute; inset: 14px;
  border-radius: 20px;
  pointer-events: none;
  background:
    linear-gradient(var(--neon),var(--neon)) top left/24px 2px no-repeat,
    linear-gradient(var(--neon),var(--neon)) top left/2px 24px no-repeat,
    linear-gradient(var(--neon),var(--neon)) top right/24px 2px no-repeat,
    linear-gradient(var(--neon),var(--neon)) top right/2px 24px no-repeat,
    linear-gradient(var(--neon),var(--neon)) bottom left/24px 2px no-repeat,
    linear-gradient(var(--neon),var(--neon)) bottom left/2px 24px no-repeat,
    linear-gradient(var(--neon),var(--neon)) bottom right/24px 2px no-repeat,
    linear-gradient(var(--neon),var(--neon)) bottom right/2px 24px no-repeat;
  filter: drop-shadow(0 0 6px rgba(91,184,255,.6));
}
.video-placeholder{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(46,135,200,.35), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(91,184,255,.25), transparent 60%),
    linear-gradient(160deg, #0a2849 0%, #061427 100%);
  text-align:center;
  padding: 48px 32px;
}
.video-placeholder .play{
  width:88px; height:88px; border-radius:999px;
  background: var(--neon);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--glow-2);
  margin-bottom:24px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.video-placeholder .play::before{
  content:''; position:absolute; inset:-6px;
  border-radius: 999px; border: 1px solid rgba(91,184,255,.5);
  animation: ping 2.2s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping{
  0%{transform:scale(1); opacity:.9}
  80%,100%{transform:scale(1.6); opacity:0}
}
.video-placeholder .play:hover{transform: scale(1.05)}
.video-placeholder .play svg{fill: var(--azul-noche); margin-left:6px}
.video-placeholder .label{
  font-family: var(--font-display); font-size: 22px; color: white;
  font-weight: 600; letter-spacing:-0.01em;
}
.video-placeholder .sublabel{
  font-size: 13px; color: rgba(255,255,255,.55);
  margin-top: 8px; font-family: ui-monospace, 'SF Mono', monospace;
  letter-spacing: 0.04em;
}
.video-tag{
  position: absolute; top: 28px; left: 28px;
  font-size: 11px; letter-spacing:0.18em; text-transform:uppercase;
  color: var(--neon); font-weight:600;
  display:flex; align-items:center; gap:8px;
}
.video-tag .live{
  width:8px; height:8px; border-radius:999px; background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}
.video-caption-bar{
  position:absolute; bottom: 28px; left: 28px; right: 28px;
  padding: 14px 18px;
  background: rgba(7,20,40,.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(91,184,255,.2);
  border-radius: 14px;
  font-size: 13px; color: rgba(255,255,255,.85);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.video-caption-bar .duration{
  font-family: ui-monospace, monospace;
  color: var(--neon); font-size: 12px;
}

/* ---- Background neon decoration ---- */
.neon-bg{
  position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:0;
}
.neon-bg svg{position:absolute; opacity: var(--neon-intensity);}

.bg-glow{
  position:absolute; border-radius:50%; filter: blur(90px);
  pointer-events: none; opacity: calc(.55 * var(--neon-intensity));
}

/* ---- Section common ---- */
.section{padding: 120px 0; position: relative; z-index:1}
@media (max-width: 760px){ .section{padding: 80px 0} }
.section-head{
  text-align:center; max-width: 760px; margin: 0 auto 64px;
}
.section-head .eyebrow{margin-bottom:20px}
.section-head p{
  margin-top: 20px; color: rgba(255,255,255,.65);
  font-size: clamp(15px, 1.1vw, 17px);
}

/* ---- Beneficios ---- */
.benefits-section{
  background: #000;
}
.tier-tabs{
  display:flex; gap: 8px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: rgba(13,50,89,.5);
  border: 1px solid rgba(91,184,255,.15);
  border-radius: 999px;
  width: fit-content; margin-left:auto; margin-right:auto;
}
.tier-tab{
  padding: 10px 22px; border-radius: 999px;
  font-size: 13px; font-weight:600; letter-spacing:.02em;
  color: rgba(255,255,255,.6);
  transition: all .25s;
  display: flex; align-items: center; gap: 8px;
}
.tier-tab .lock{font-size: 11px; opacity: .5}
.tier-tab.active{
  background: var(--neon);
  color: var(--azul-noche);
  box-shadow: var(--glow-1);
}
.tier-tab:hover:not(.active){color:#fff}

.benefits-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:20px;
}
@media (max-width:980px){ .benefits-grid{grid-template-columns: repeat(2,1fr)} }
@media (max-width:640px){ .benefits-grid{grid-template-columns: 1fr} }
.benefit-card{
  position: relative;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(13,50,89,.7), rgba(7,30,56,.7));
  border: 1px solid rgba(91,184,255,.15);
  border-radius: 18px;
  transition: all .35s;
  overflow: hidden;
}
.benefit-card::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--neon), transparent);
  opacity: 0; transition: opacity .35s;
  filter: drop-shadow(0 0 6px var(--neon));
}
.benefit-card:hover{
  border-color: rgba(91,184,255,.4);
  transform: translateY(-3px);
  background: linear-gradient(160deg, rgba(13,50,89,.95), rgba(7,30,56,.95));
}
.benefit-card:hover::before{opacity:1}
.benefit-card .num{
  font-family: ui-monospace, monospace;
  font-size: 11px; color: var(--neon);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.benefit-card .num::after{
  content:''; flex:1; height:1px;
  background: linear-gradient(90deg, rgba(91,184,255,.3), transparent);
}
.benefit-card h4{
  font-family: var(--font-display); font-size: 19px;
  font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em;
}
.benefit-card p{
  font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55;
}
.benefit-card.locked{opacity:.55}
.benefit-card.locked h4::after{
  content:' 🔒'; opacity:.5;
}

.benefits-cta{
  text-align:center; margin-top: 64px;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.benefits-cta strong{
  color: var(--neon-strong);
  font-weight: 700;
  text-shadow: 0 0 18px rgba(91,184,255,.45);
}

/* ---- Pasos ---- */
.steps-section{
  background: #000;
  overflow: hidden;
}
.steps-track{
  position: relative;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width:980px){ .steps-track{grid-template-columns: 1fr 1fr} }
@media (max-width:640px){ .steps-track{grid-template-columns: 1fr} }
.steps-track::before{
  content:''; position:absolute; left: 8%; right:8%; top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), var(--neon), transparent);
  opacity: 0.35;
  filter: drop-shadow(0 0 4px var(--neon));
}
@media (max-width:980px){ .steps-track::before{display:none} }

.step{
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step .badge{
  width: 96px; height: 96px;
  border-radius: 999px;
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 24px;
  background: var(--azul-noche-3);
  border: 1px solid rgba(91,184,255,.3);
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--neon);
  position: relative;
  z-index: 1;
}
.step .badge::before{
  content:''; position:absolute; inset: -1px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, transparent, var(--neon), transparent 50%);
  animation: rotate 6s linear infinite;
  z-index: -1;
  filter: blur(2px);
  opacity: .8;
}
.step .badge::after{
  content:''; position:absolute; inset:3px;
  border-radius:999px; background: var(--azul-noche-3);
  z-index:-1;
}
@keyframes rotate{ to{transform: rotate(360deg)} }

.step h3{font-size: 19px; margin-bottom: 10px; font-weight: 600}
.step p{font-size: 13px; color: rgba(255,255,255,.6); max-width: 220px; margin: 0 auto}
.step .micro{
  display:inline-block; margin-top: 12px;
  font-size:11px; letter-spacing:.14em; text-transform: uppercase;
  color: var(--neon); font-weight:600;
}

/* ---- Testimonios ---- */
.testimonials-section{
  background: #000;
  position:relative;
}
.testimonials-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:24px;
}
@media (max-width:980px){ .testimonials-grid{grid-template-columns: 1fr} }
.testimonial{
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(13,50,89,.6), rgba(7,30,56,.6));
  border: 1px solid rgba(91,184,255,.15);
  border-radius: 20px;
  position: relative;
}
.testimonial .quote-mark{
  position: absolute; top: 18px; right: 22px;
  font-family: 'Sora', serif; font-size: 64px; line-height: 1;
  color: var(--neon); opacity: .3;
}
.testimonial blockquote{
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.45;
  font-weight: 500; letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.testimonial .author{
  display:flex; align-items:center; gap: 14px;
  border-top: 1px solid rgba(91,184,255,.12);
  padding-top: 18px;
}
.testimonial .avatar{
  width: 48px; height: 48px; border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(91,184,255,.25);
}
.testimonial .avatar img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.testimonial .info{display:flex; flex-direction:column}
.testimonial .name{font-size: 14px; font-weight: 600}
.testimonial .role{font-size: 12px; color: rgba(255,255,255,.5)}

/* ---- Form ---- */
.form-section{
  background: #000;
  padding: 120px 0 140px;
}
.form-wrap{
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: linear-gradient(160deg, rgba(13,50,89,.7), rgba(7,30,56,.7));
  border: 1px solid rgba(91,184,255,.18);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}
@media (max-width:860px){ .form-wrap{grid-template-columns: 1fr} }

.form-side{
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(46,135,200,.18), rgba(13,50,89,.4));
  border-right: 1px solid rgba(91,184,255,.15);
  display:flex; flex-direction:column;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width:860px){ .form-side{border-right:none; border-bottom:1px solid rgba(91,184,255,.15)} }
.form-side h3{font-size: 26px; margin-bottom: 14px; font-weight: 600}
.form-side p{font-size: 14px; color: rgba(255,255,255,.7); line-height:1.55}
.form-side .free-tag{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 14px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--azul-noche); font-weight:700;
  background: var(--neon);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--glow-1);
  margin-bottom: 22px;
}
.form-side .free-tag::before{
  content:''; width:8px; height:8px; border-radius:999px;
  background: var(--azul-noche);
}
.form-side .checks{display:flex; flex-direction:column; gap:18px; margin-top:8px}
.form-side .checks div{display:flex; align-items:center; gap:12px; font-size:15px; color:rgba(255,255,255,.85); line-height:1.4}
.form-side .checks svg{flex-shrink:0; color: var(--neon)}

.form-fields{
  padding: 44px 36px;
  display:flex; flex-direction:column; gap: 18px;
}
.field{display:flex; flex-direction:column; gap: 6px}
.field label{
  font-size: 12px; font-weight:600; letter-spacing:.06em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.field input, .field select{
  background: rgba(7,20,40,.65);
  border: 1px solid rgba(91,184,255,.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: inherit; font-size: 15px;
  transition: all .2s;
  outline: none;
}
.field input::placeholder{color: rgba(255,255,255,.3)}
.field input:focus, .field select:focus{
  border-color: var(--neon);
  background: rgba(7,20,40,.85);
  box-shadow: 0 0 0 3px rgba(91,184,255,.12);
}
.field select{appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235BB8FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 16px center; padding-right: 40px}
.field.error input, .field.error select{border-color:#ff7070}
.field .err{font-size:11px; color:#ff9a9a; margin-top:2px}
.err-global{
  font-size: 13px; color: #ff9a9a;
  padding: 12px 14px;
  background: rgba(255,112,112,.08);
  border: 1px solid rgba(255,112,112,.25);
  border-radius: 10px;
}
.field-row{display:grid; grid-template-columns: 1fr 1fr; gap:14px}

.form-submit{
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.form-submit:disabled{
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.form-success{
  padding: 60px 36px; text-align:center;
}
.form-success .check-circle{
  width: 72px; height: 72px; border-radius: 999px;
  background: var(--neon); color: var(--azul-noche);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 24px;
  box-shadow: var(--glow-2);
}
.form-success h3{margin-bottom: 12px}
.form-success p{color: rgba(255,255,255,.65); max-width: 380px; margin: 0 auto}

/* ---- Neon decorative SVG strokes ---- */
.deco-line{
  position:absolute; pointer-events:none; opacity: var(--neon-intensity);
  filter:
    drop-shadow(0 0 6px rgba(91,184,255,.7))
    drop-shadow(0 0 18px rgba(91,184,255,.45))
    drop-shadow(0 0 36px rgba(91,184,255,.25));
}

/* ---- Footer ---- */
.footer{
  background: #000;
  border-top: 1px solid rgba(91,184,255,.14);
  padding: 64px 0 32px;
  position: relative;
}
.footer-grid{
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
@media (max-width:760px){ .footer-grid{grid-template-columns: 1fr 1fr; gap:32px} }
.footer .brand img{height: 32px}
.footer-col h5{
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--neon); margin-bottom: 16px;
}
.footer-col ul{list-style:none; display:flex; flex-direction:column; gap:10px}
.footer-col a{font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s}
.footer-col a:hover{color: var(--neon-strong)}
.footer-tag{font-size: 13px; color: rgba(255,255,255,.55); max-width: 280px; margin-top: 16px; line-height: 1.55}
.footer-bottom{
  border-top: 1px solid rgba(91,184,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 16px;
}
.socials{display:flex; gap:10px}
.socials a{
  width:34px; height:34px; border-radius: 999px;
  border: 1px solid rgba(91,184,255,.2);
  display:flex; align-items:center; justify-content:center;
  transition: all .25s;
}
.socials a:hover{border-color: var(--neon); color: var(--neon)}

/* ---- Light mode (tweak) ---- */
body.light-mode{
  background: var(--gris-claro);
  color: var(--azul-noche);
}
body.light-mode .site-header{
  background: rgba(255,255,255,.85);
  border-bottom-color: rgba(27,79,138,.12);
}
body.light-mode .nav a{color: rgba(13,50,89,.7)}
body.light-mode .nav a:hover{color: var(--azul-zagaz)}
body.light-mode .nav-cta{color: #fff; background: var(--azul-zagaz)}
body.light-mode .muted{color: rgba(13,50,89,.65)}
body.light-mode .hero p.lead{color: rgba(13,50,89,.7)}
body.light-mode .hero-meta{color: rgba(13,50,89,.55)}
body.light-mode .benefit-card{
  background: #fff;
  border-color: rgba(27,79,138,.12);
  box-shadow: 0 4px 18px rgba(13,50,89,.06);
}
body.light-mode .benefit-card p{color: rgba(13,50,89,.65)}
body.light-mode .testimonial{background:#fff; border-color: rgba(27,79,138,.12)}
body.light-mode .testimonial blockquote{color: var(--azul-noche)}
body.light-mode .testimonial .role{color: rgba(13,50,89,.55)}
body.light-mode .testimonial .author{border-top-color: rgba(27,79,138,.1)}
body.light-mode .form-wrap{background: #fff; border-color: rgba(27,79,138,.12)}
body.light-mode .form-side{background: linear-gradient(180deg, #EFF4F8, #fff); border-right-color: rgba(27,79,138,.1)}
body.light-mode .form-side p{color: rgba(13,50,89,.7)}
body.light-mode .field input, body.light-mode .field select{
  background: var(--gris-claro); color: var(--azul-noche);
  border-color: rgba(27,79,138,.12);
}
body.light-mode .field input::placeholder{color: rgba(13,50,89,.35)}
body.light-mode .footer{background: #fff; border-top-color: rgba(27,79,138,.1)}
body.light-mode .footer-col a{color: rgba(13,50,89,.65)}
body.light-mode .footer-bottom{color: rgba(13,50,89,.45); border-top-color: rgba(27,79,138,.08)}
body.light-mode .step .badge{background: #fff}
body.light-mode .step .badge::after{background: #fff}
body.light-mode .step p{color: rgba(13,50,89,.6)}
body.light-mode .tier-tabs{background: #fff; border-color: rgba(27,79,138,.12)}
body.light-mode .tier-tab{color: rgba(13,50,89,.55)}
body.light-mode .tier-tab.active{color: #fff; background: var(--azul-zagaz)}
body.light-mode .section-head p{color: rgba(13,50,89,.65)}
body.light-mode .video-shell{
  background: linear-gradient(160deg, #1B4F8A, #0D3259);
  border-color: rgba(27,79,138,.2);
}
