  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #0d1f4b;
    --gold:   #f5d800;
    --gold2:  #e8960a;
    --white:  #ffffff;
    --light:  #f4f6fb;
    --gray:   #6b7280;
    --border: #d1d5db;
    --radius: 10px;
  }

  html { font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: #1a1a2e;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* CONTENEDOR GLOBAL */
.page-wrapper{
  width:100%;
  max-width:2000px;
  margin:0 auto;
}
/* ══════════════════════════════
   HERO LAYOUT
══════════════════════════════ */

.hero-layout{
  width:100%;
  background:var(--navy);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */

.hero{

  position:relative;

  width:100%;

  min-height:520px;

  background:

    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,.22) 65%,
      rgba(0,0,0,.88) 100%
    ),

    linear-gradient(
      to bottom,
      rgba(13,31,75,0) 0%,
      rgba(13,31,75,.12) 72%,
      rgba(13,31,75,.45) 88%,
      rgba(13,31,75,1) 100%
    ),

    url('img/bg.webp') center 28% / cover no-repeat;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:20px 20px 0;

  overflow:hidden;
}

/* CONTENT */

.hero__content{
  position:relative;
  z-index:3;
}

/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */

.hero__topbar{

  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  width:100%;

  position:relative;
  z-index:5;
}

/* LOGOS */

.logo-repsol img,
.logo-farenet img{

  height:22px;

  object-fit:contain;

  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,.45));
}

/* ══════════════════════════════
   BADGE
══════════════════════════════ */

.hero__badge{

  display:inline-block;

  background:var(--gold);

  color:var(--navy);

  font-family:'Barlow Condensed', sans-serif;

  font-size:11px;

  font-weight:800;

  letter-spacing:.08em;

  padding:5px 12px;

  border-radius:4px;

  margin-top:28px;

  box-shadow:
    0 4px 14px rgba(0,0,0,.45);
}

/* ══════════════════════════════
   HEADLINE
══════════════════════════════ */

.hero__headline{
  margin-top:10px;
}

.hero__headline .line1{

  display:block;

  font-family:'Barlow Condensed', sans-serif;

  font-size:clamp(28px,4vw,54px);

  font-weight:700;

  color:var(--white);

  line-height:1;

  text-shadow:
    0 5px 10px rgba(0,0,0,.84);
}

.hero__headline .line2,
.hero__headline .line3{

  display:block;

  font-family:'Barlow Condensed', sans-serif;

  font-size:clamp(42px,6vw,74px);

  font-weight:800;

  color:var(--gold);

  line-height:.92;

  letter-spacing:-.02em;

  text-transform:uppercase;

  text-shadow:
    0 4px 7px rgba(0,0,0,.6);
}

/* SUBTEXT */

.hero__sub{

  font-size:clamp(11px,1.2vw,16px);

  color:rgba(255,255,255,.95);

  line-height:1.5;

  margin-top:14px;

  max-width:420px;

  text-shadow:
    0 3px 12px rgba(0,0,0,.95);
}
/* ══════════════════════════════
   DESKTOP HERO OVERLAY
══════════════════════════════ */

@media (min-width:992px){

  /* LAYOUT */

.hero-layout{

  position:relative;

  min-height:100vh;

  display:flex;

  align-items:stretch;

  overflow:hidden;
}

  /* HERO */

  .hero{

  flex:1;

  min-height:100vh;

  padding:
    34px
    60px
    34px;

  background:

    linear-gradient(
      90deg,
      rgba(4,12,32,.88) 0%,
      rgba(4,12,32,.52) 30%,
      rgba(4,12,32,.12) 58%,
      rgba(4,12,32,.18) 100%
    ),

    linear-gradient(
      to bottom,
      rgba(4,12,32,.08) 0%,
      rgba(4,12,32,.12) 58%,
      rgba(4,12,32,.88) 100%
    ),

    url('img/bg.webp') center center / cover no-repeat;

  position:relative;
}

  /* HERO CONTENT */

  .hero__content{

    position:relative;

    z-index:3;

    margin-top:70px;
    max-width:560px;
  }

  /* LOGOS */

  .logo-repsol img,
  .logo-farenet img{
    height:30px;
  }

  /* TITLES */

  .hero__headline .line1{
    font-size:56px;
  }

  .hero__headline .line2,
  .hero__headline .line3{
    font-size:82px;
  }

  .hero__sub{
    font-size:16px;
    max-width:430px;
    margin-top:20px;
    
  }

.hero__fade{

  height:110px;

  width:calc(100% + 40px);

  background:
    linear-gradient(
      to bottom,
      rgba(13,31,75,0) 0%,
      rgba(13,31,75,.18) 30%,
      rgba(13,31,75,.58) 68%,
      var(--navy) 100%
    );
}

  /* FORM SECTION */

 .form-section{

  position:absolute;

  top: 100px;
  
  right:30px;
  bottom:0;

  width: 650px;
  height: 620px;

  padding:
    34px
    40px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:transparent;

  z-index:20;
}

  /* CARD */

  .form-card{

  width:100%;

  max-height:100%;

  overflow:auto;

  padding:10px 12px;

  border-radius:24px;

  background:
    rgba(255,255,255,.94);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  border:
    1px solid rgba(255,255,255,.12);

  box-shadow:
    0 18px 20px rgba(0,0,0,.28);
}
  /* TITLE */
.form-card__title{

  font-size:50px;

  line-height:1;

  margin-bottom:2px;
}

  .form-card__sub{

  font-size:10px;

  line-height:0.5;

  margin-bottom:18px;
}
  /* INPUTS */

  .field input,
.field select{

  height:40px;

  font-size:14px;

  padding:
    10px
    6px
    10px
    20px;
}
.btn-register{

  height: 30px;

  font-size:20px;
}
}
/* ══════════════════════════════
   MOBILE
══════════════════════════════ */

@media (max-width:767px){

  .hero{
    min-height:460px;
  }

  .hero__headline{
    max-width:320px;
  }

  .hero__sub{
    max-width:240px;
  }

}

/* SMALL MOBILE */

@media (max-width:390px){

  .hero{
    min-height:430px;
  }

  .hero__headline .line2,
  .hero__headline .line3{
    font-size:38px;
  }

  .hero__headline .line1{
    font-size:26px;
  }

}

  /* ══════════════════════════════
     FORM SECTION
  ══════════════════════════════ */
  .form-section {
    background: transparent;
    padding: 0 16px 32px;
  }

  .form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 26px 20px 22px;
    box-shadow: 0 8px 32px rgba(13,31,75,0.18);
  }

  .form-card__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.01em;
  }
  .form-card__underline {
    width: 44px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 6px auto 12px;
  }
  .form-card__sub {
    font-size: 15px;
    color: var(--gray);
    text-align: center;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  /* inputs */
  .field {
    position: relative;
    width: 100%;
    margin-bottom: 12px;
  }
  .field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    opacity: 0.55;
    font-size: 15px;
    pointer-events: none;
  }
  .field input,
  .field select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px 12px 38px;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    color: #1a1a2e;
    outline: none;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s;
  }
  .field input::placeholder { color: #9ca3af; }
  .field input:focus,
  .field select:focus { border-color: var(--navy); }

  .field select {
    color: #9ca3af;
  }
  .field select option { color: #1a1a2e; }

  /* caret for selects */
  .field--select::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    opacity: 0.5;
    font-size: 15px;
    pointer-events: none;
  }

  /* two-col row */
  .field-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }
  .field-row .field { margin-bottom: 0; flex: 1; }

  /* checkbox */
  .check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 18px;
  }
  .check-row input[type="checkbox"] {
    width: 12px;
    height: 12px;
    min-width: 12px;
    accent-color: var(--navy);
    margin-top: 1px;
    cursor: pointer;
  }
  .check-row label {
    font-size: 10px;
    color: var(--gray);
    line-height: 1.45;
    cursor: pointer;
  }

  .terms-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration-color: var(--gold2);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
  }

  .terms-link:hover {
    color: var(--gold2);
  }

/* --------------------------------------------------------------------------------------------------------------------------------------------- */
/* TERMINOS MODAL */

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.terms-modal.is-open {
  display: flex;
}

.terms-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 32, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.terms-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(82vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(245, 216, 0, 0.25);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.terms-modal__header {
  background: var(--navy);
  color: var(--white);
  padding: 24px 56px 20px 24px;
  border-bottom: 4px solid var(--gold);
}

.terms-modal__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.terms-modal__header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.terms-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.terms-modal__close:hover {
  background: var(--gold2);
}

.terms-modal__content {
  padding: 24px;
  overflow-y: auto;
  color: #1a1a2e;
  font-size: 14px;
  line-height: 1.58;
}

.terms-modal__content h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.terms-modal__content h3:first-of-type {
  margin-top: 18px;
}

.terms-modal__content p,
.terms-modal__content li {
  margin-bottom: 10px;
  text-align: justify;
}

.terms-modal__content ul {
  padding-left: 18px;
}

.terms-modal__content li::marker {
  color: var(--gold2);
}

  /* CTA */
  .btn-register {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    padding: 1px;
    cursor: pointer;
    transition: background 0.18s, transform 0.12s;
    text-transform: uppercase;
  }
  .btn-register:active {
    background: var(--gold2);
    transform: scale(0.985);
  }

  .form-card__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--gray);
    margin-top: 12px;
  }
  .form-card__security span { font-size: 13px; }

/* --------------------------------------------------------------------------------------------------------------------------------------------- */
/* ══════════════════════════════
   BENEFITS CARD
══════════════════════════════ */

.benf-card{
  width:100%;
  max-width:100%;

  background:var(--white);

  border-radius:18px;

  padding:
    clamp(18px, 2vw, 10px)
    clamp(5%, 2vw, 12.5px)
    clamp(18px, 2vw, 12px);

  box-shadow:
    0 8px 32px rgba(13,31,75,0.18);

  overflow:hidden;
}

/* SECTION */

.benefits-section{
  background:var(--navy);

  padding:0 16px 32px;

  margin-top: 20px;

  position:relative;
  z-index:4;

  overflow:hidden;
}

/* TITLE */

.benefits-section__title{
  font-family:'Barlow Condensed', sans-serif;

  font-size:clamp(20px, 6vw, 20px);

  font-weight:800;

  color:var(--black);

  text-align:center;

  letter-spacing:0.04em;

  text-transform:uppercase;

  line-height:1.05;

  text-shadow:
    0 6px 25px rgba(0,0,0,0.55);

  word-wrap:break-word;
}

.benefits-section__title em{
  color:#e8960a;
  font-style:normal;

 text-shadow:
0 6px 14px rgba(0,0,0,1),
}

/* GRID RESPONSIVO */

.benefits-grid{
  display:grid;

  /* RESPONSIVE REAL */
  grid-template-columns:
    repeat(auto-fit, minmax(120px, 1fr));

  gap:20px 12px;

  margin-top:28px;

  padding-bottom:18px;

  width:100%;
}

/* ITEM */

.benefit-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

  position:relative;

  min-width:0;
}

/* ICON */

.benefit-icon{
  width:
    clamp(62px, 10vw, 82px);

  height:
    clamp(62px, 10vw, 82px);

  border-radius:50%;

  background:var(--navy); 
  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 0 0 8px rgba(245,168,0,0.06),
    0 10px 22px rgba(0,0,0,0.38),
    inset 0 2px 6px rgba(255,255,255,0.12);

  position:relative;

  flex-shrink:0;
}

/* GLOW */

.benefit-icon::after{
  content:"";

  position:absolute;

  inset:-8px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(245,168,0,0.16) 0%,
      rgba(245,168,0,0) 70%
    );

  z-index:-1;
}

/* ICON IMG */

.benefit-icon img{
  width:30%;
  height:auto;

  object-fit:contain;

  display:block;

  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,0.45));
}

/* LABEL */

.benefit-label{
  margin-top:12px;

  font-family:'Barlow Condensed', sans-serif;

  font-size:
    clamp(10px, 1.8vw, 13px);

  font: weight 2px;

  color:var(--black);

  text-align:center;

  line-height:1.15;

  text-transform:uppercase;

  letter-spacing:0.02em;

  text-shadow:
    0 3px 10px rgba(0,0,0,0.25);

  max-width:100px;

  word-break:break-word;
}
/* --------------------------------------------------------------------------------------------------------------------------------------------- */

/* ══════════════════════════════
   SUCCESS BANNER
══════════════════════════════ */

.success-banner{
  background:var(--white);
  
}

/* CARD */

.success-card{
  position:relative;

  background:var(--navy);

  border-radius:20px;

 padding:16px 20px 16px 14px;

  display:flex;
  align-items:center;

  gap:5px;

  overflow:hidden;

  min-height:50px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.22),
    0 4px 12px rgba(0,0,0,0.18);
}

/* GLOW */

.success-glow{
  position:absolute;

  top:-40px;
  right:-20px;

  width:180px;
  height:180px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0) 70%
    );

  pointer-events:none;
}

/* CHECK */

.success-check{
  width:58px;
  height:58px;

  min-width:58px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;
  z-index:3;

  background:
    linear-gradient(
      180deg,
      #04183f 0%,
      #000e2c 100%
    );

  border:3px solid rgba(245,168,0,0.45);

  box-shadow:
    0 0 0 8px rgba(245,168,0,0.08),
    0 10px 24px rgba(0,0,0,0.35);
}

/* CHECK PNG */

.success-check img{
  width:28px;
  height:28px;

  object-fit:contain;

  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,0.45));
}

/* TEXT */

.success-text{
  position:relative;
  z-index:3;

  flex:1;

  min-width:0;

  padding-left:2px;
}

.success-text h3{
  font-family:'Barlow Condensed', sans-serif;
  text-align: left;
  font-size:20px;
  font-weight:200;

  color:var(--white);

  line-height:0.95;

  letter-spacing:-0.02em;

  text-shadow:
    0 4px 14px rgba(0,0,0,0.5);
}

.success-text p{
  font-size:9px;
  color:rgba(255,255,255,0.72);
text-align: justify;
  line-height:1.45;

  margin-top:5px;

  max-width:150px;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.45);
}

/* CAR IMAGE */

.success-car{
  position:absolute;

  right:-8px;
  bottom:0;

  height:100%;

  display:flex;
  align-items:flex-end;

  z-index:1;
}

.success-car img{
  height:80px;
  width:auto;

  object-fit:contain;

  filter:
    drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}



/* ══════════════════════════════
   FOOTER
══════════════════════════════ */

.footer{
  background: var(--navy);
  padding: 18px 16px;
  margin-top: 24px;
  border-top: 2px solid rgba(245,168,0,0.2);
}

/* CONTENEDOR PRINCIPAL */

.footer__container{
  display:grid;
  grid-template-columns:auto 1px auto 1px auto;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* DIVISOR */

.divider-v{
  width:1px;
  height:38px;
  background:rgba(255,255,255,0.16);
}

/* BLOQUES */

.footer__block{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* LOGOS */

.footer__logo{
  object-fit:contain;

  filter:
    drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.footer__logo--farenet{
  height:15px;
}

.footer__logo--repsol{
  height:20px;
}

/* SOCIAL */

.footer__social{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.footer__social-label{
  font-family:'Barlow Condensed', sans-serif;
  font-size:11px;
  font-weight:700;

  color:var(--gold);

  letter-spacing:0.08em;
  text-transform:uppercase;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.65);
}

/* ICONOS */

.footer__icons{
  display:flex;
  align-items:center;
  gap:8px;
}

.social-icon{
  width:24px;
  height:24px;

  border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.28);

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--white);
  text-decoration:none;

  transition:all .2s ease;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.35);
}

.social-icon i{
  font-size:11px;
}

.social-icon:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--navy);

  transform:translateY(-2px);

  box-shadow:
    0 8px 18px rgba(0,0,0,0.4);
}

/* --------------------------------------------------------------------------------------------------------------------------------------------- */
/* ══════════════════════════════
   RESPONSIVE GLOBAL
══════════════════════════════ */

/* DESKTOP */
@media (min-width: 992px){

  .check-row label{
    font-size: 10px;
  }

  /* BENEFITS */

  .benefits-section{
    padding: 0 40px 60px;
  }

  .benf-card{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }

  .benefits-section__title{
    font-size: 46px;
  }

  .benefits-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .benefit-icon{
    width: 120px;
    height: 120px;
  }

  .benefit-label{
    font-size: 20px;
    max-width: 180px;
    margin-top: 18px;
  }

  /* SUCCESS */

  .success-card{
    min-height: 180px;
    padding: 30px;
    gap: 20px;
  }

  .success-check{
    width: 90px;
    height: 90px;
    min-width: 90px;
  }

  .success-check img{
    width: 42px;
    height: 42px;
  }

  .success-text h3{
    font-size: 44px;
  }

  .success-text p{
    font-size: 17px;
    max-width: 520px;
  }

  .success-car img{
    height: 150px;
  }

  /* FOOTER */

  .footer{
    padding: 32px 40px;
  }

  .footer__container{
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer__logo--farenet{
    height: 28px;
  }

  .footer__logo--repsol{
    height: 34px;
  }

  .footer__social-label{
    font-size: 16px;
  }

  .social-icon{
    width: 42px;
    height: 42px;
  }

  .social-icon i{
    font-size: 18px;
  }

}

/* TABLET */
@media (min-width: 768px) and (max-width: 991px){

  

  .logo-repsol img,
  .logo-farenet img{
    height: 34px;
  }

  .hero__headline .line1{
    font-size: 52px;
  }

  .hero__headline .line2,
  .hero__headline .line3{
    font-size: 66px;
  }

  .hero__sub{
    font-size: 16px;
    max-width: 420px;
  }

  .form-card,
  .benf-card{
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
  }

  .benefits-grid{
    grid-template-columns: repeat(4,1fr);
  }

  .benefit-icon{
    width: 90px;
    height: 90px;
  }

  .benefit-label{
    font-size: 16px;
  }

  .success-text h3{
    font-size: 32px;
  }

  .success-text p{
    font-size: 14px;
    max-width: 340px;
  }

  .success-car img{
    height: 110px;
  }

}

/* MOBILE FIXES */
@media (max-width: 767px){


  .field-row{
    flex-direction: column;
    gap: 12px;
  }

  .benefits-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .success-card{
    align-items: flex-start;
    padding-right: 90px;
  }

  .success-car{
    right: -14px;
  }

  .success-car img{
    height: 80px;
  }

  .check-row input[type="checkbox"] {
    width: 12px;
    height: 12px;
    min-width: 12px;
    accent-color: var(--navy);
    margin-top: 1px;
    cursor: pointer;
  }
  .check-row label {
    font-size: 10px;
    color: var(--gray);
    line-height: 1.45;
    cursor: pointer;
  }

}

/* EXTRA SMALL */
@media (max-width: 480px){

  .hero{
    padding: 18px 18px 0;
  }

  .form-section,
  .benefits-section{
    padding-left: 14px;
    padding-right: 14px;
  }

  .benefits-grid{
    gap: 18px 14px;
  }

  .check-row input[type="checkbox"] {
    width: 12px;
    height: 12px;
    min-width: 12px;
    accent-color: var(--navy);
    margin-top: 1px;
    cursor: pointer;
  }
  .check-row label {
    font-size: 10px;
    color: var(--gray);
    line-height: 1.45;
    cursor: pointer;
  }

  .terms-modal {
    padding: 12px;
  }

  .terms-modal__dialog {
    max-height: 88vh;
    border-radius: 14px;
  }

  .terms-modal__header {
    padding: 20px 50px 16px 18px;
  }

  .terms-modal__content {
    padding: 18px;
    font-size: 13px;
    line-height: 1.52;
  }

  .terms-modal__content h3 {
    font-size: 19px;
  }
}
