/* =========================================================
   HOME (Compatible CSS)
   Tema: Amarillo / Negro (alto contraste)
   ========================================================= */

:root{
  --yellow: #ffd800;
  --yellow-2: #facc15;
  --yellow-dark:#eab308;

  --black:#000000;
  --ink:#0b0b0b;
  --slate:#111827;

  --text:#ffffff;
  --text-dark:#0f172a;
  --muted:#9ca3af;

  --card:#111827;
  --card-2:#0f172a;

  --radius-lg:18px;
  --radius-md:12px;
  --radius-pill:999px;

  --shadow-soft: 0 12px 30px rgba(0,0,0,.55);
  --shadow-card: 0 10px 26px rgba(0,0,0,.45);
  --ring: 0 0 0 3px rgba(255,216,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  background: radial-gradient(circle at top, #1f2933 0%, #000 70%);
  color:var(--text);
}

/* ================= HEADER ================= */

header{
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  padding: 10px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  position: sticky;
  top:0;
  z-index:40;
  box-shadow: 0 6px 22px rgba(255,216,0,.18);
  border-bottom: 1px solid rgba(255,216,0,.18);
  flex-wrap: wrap; /* responsive */
}

.header-left{
  display:flex;
  align-items:center;
  gap:16px;
}

.header-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-badge{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color:#000;
  font-weight:900;
  box-shadow: 0 10px 18px rgba(255,216,0,.25);
}

.logo-text-main{
  font-weight:800;
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.05;
}

.logo-text-sub{
  font-size: 11px;
  color: var(--muted);
}

.header-nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:13px;
}

.header-link{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:600;
}

.header-link:hover{ color: var(--yellow); }

.header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.header-cta{
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border:none;
  cursor:pointer;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color:#000;
  box-shadow: 0 10px 18px rgba(255,216,0,.22);
}

.header-cta:hover{ filter: brightness(1.02); transform: translateY(-1px); }

.steps-bar{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap: wrap;
  font-size:12px;
}

.step-indicator{
  display:flex;
  align-items:center;
  gap:6px;
  color: var(--muted);
  white-space: nowrap;
}

.step-indicator-number{
  width:24px;height:24px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
}

.step-indicator.active{
  color: var(--yellow);
  font-weight:800;
}

.step-indicator.active .step-indicator-number{
  border-color: var(--yellow);
  background: rgba(255,216,0,.12);
  color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,216,0,.18);
}

/* mobile */
@media (max-width: 720px){
  header{ padding: 8px 12px; }
  .header-nav{ display:none; }
  .header-right{ width:100%; justify-content:center; flex-wrap:wrap; row-gap:8px; }
}
@media (max-width: 520px){
  .step-indicator span{ display:none; }
  .step-indicator-number{ width:22px;height:22px; font-size:11px; }
}

/* ================= HERO ================= */

main{ min-height: calc(100vh - 64px); }

.hero{
  position:relative;
  overflow:hidden;
  padding-bottom: 40px;
}

.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform .8s ease;
}

.hero-slide.active{
  opacity:1;
  transform: scale(1.0);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(255,216,0,.18), rgba(0,0,0,.86));
}

.hero-dots{
  position:absolute;
  left:16px;
  bottom:18px;
  display:flex;
  gap:8px;
  z-index:2;
}

.hero-dot{
  width:9px;height:9px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .25s ease;
}

.hero-dot.active{
  width:22px;
  background: var(--yellow);
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 2px rgba(255,216,0,.35);
}

.hero-inner{
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
  padding: 32px 16px 32px;
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy{ align-self:center; max-width: 560px; }

.hero-eyebrow{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
}

.hero-title{
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 10px;
  color: #ffffff;
}

.hero-title span{ color: var(--yellow); }

.hero-subtitle{
  font-size: 15px;
  color: rgba(255,255,255,.82);
  margin: 0 0 18px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,216,0,.14);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,216,0,.18);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-cta-main{
  margin-top: 8px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta-btn{
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border:none;
  cursor:pointer;
  font-weight: 900;
  color:#000;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  box-shadow: 0 12px 22px rgba(255,216,0,.18);
}

.hero-cta-btn:hover{ transform: translateY(-1px); }

.hero-cta-note{
  font-size: 12px;
  color: rgba(255,255,255,.70);
}

.hero-right{
  display:flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

/* Responsive hero */
@media (max-width: 1024px){
  .hero-inner{
    grid-template-columns: minmax(0,1fr);
    padding-top: 36px;
  }
  .hero-right{ max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px){
  .hero{ padding-bottom: 24px; }
  .hero-title{ font-size: 26px; }
  .hero-inner{ padding-inline: 12px; }
  .hero-dots{ left: 12px; bottom: 12px; }
}

/* ================= TARJETAS / FORM ================= */

.card{
  background: rgba(17,24,39,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 22px;
  position: relative;
  overflow:hidden;
  border: 1px solid rgba(255,216,0,.16);
}

.card::before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
}

.step-header h2{
  margin: 0 0 6px;
  font-size: 22px;
  color: #ffffff;
  font-weight: 900;
}

.step-header p{
  margin: 0 0 18px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
  display:block;
  margin-bottom: 4px;
}

.input-group{ margin-bottom: 16px; }

input[type="text"],
input[type="date"],
input[type="email"],
input[type="tel"],
select{
  width:100%;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 14px;
  padding: 10px 14px;
  outline:none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  background: rgba(0,0,0,.35);
  color: #ffffff;
}

input::placeholder{ color: rgba(255,255,255,.45); }

input:focus,
select:focus{
  border-color: rgba(255,216,0,.75);
  box-shadow: var(--ring);
  background: rgba(0,0,0,.45);
}

.help-text{
  font-size: 11px;
  color: rgba(255,255,255,.62);
  margin-top: 4px;
  line-height: 1.35;
}

.text-danger{
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
}

.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.checkbox-row input[type="checkbox"]{
  margin-top: 2px;
  accent-color: var(--yellow);
}

.step{ display:none; }
.step.active{ display:block; }

.step-footer{
  margin-top: 18px;
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  border-radius: var(--radius-pill);
  border: none;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 900;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  transition: transform .1s, box-shadow .1s, background .1s, opacity .1s;
}

.btn-primary{
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color:#000;
  box-shadow: 0 10px 18px rgba(255,216,0,.18);
}

.btn-primary:hover{ transform: translateY(-1px); }

.btn-outline{
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,216,0,.45);
}

.btn-outline:hover{
  background: rgba(255,216,0,.10);
}

.btn[disabled]{ opacity:.6; cursor: default; box-shadow:none; transform:none; }

.btn-full{ width:100%; }

/* ================= RIGHT SUMMARY ================= */

.side-card{
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.summary-card,
.vehicle-card{
  background: rgba(17,24,39,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,216,0,.16);
}

.summary-title{
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 4px;
  color: #ffffff;
}

.summary-price{
  font-size: 24px;
  font-weight: 1000;
  color: var(--yellow);
}

.summary-note{
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  line-height: 1.4;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin-top: 6px;
}

#validationSummary{
  color: rgba(255,255,255,.92);
}

#validationSummary strong{
  color: #ffffff;
  font-weight: 900;
}

#validationSummary span{
  color: rgba(255,255,255,.82);
}

.badge-pill{
  font-size: 11px;
  border-radius: var(--radius-pill);
  background: rgba(255,216,0,.14);
  border: 1px solid rgba(255,216,0,.18);
  padding: 4px 10px;
  color: rgba(255,255,255,.92);
  display:inline-flex;
  align-items:center;
  gap: 4px;
  margin-top: 10px;
}

.vehicle-card h3{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #ffffff;
}

.vehicle-row{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  display:flex;
  justify-content:space-between;
  margin-top: 6px;
}

.vehicle-row span:first-child{ font-weight: 800; }

/* ================= MODAL ================= */

.modal-backdrop{
  position: fixed;
  inset:0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 99999;
  padding: 14px;
  isolation: isolate;
}

.modal-backdrop.active{ display:flex; }

body.modal-open{ overflow:hidden; }

.modal{
  background: rgba(17,24,39,.98);
  border-radius: 20px;
  padding: 22px 24px 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
  border: 1px solid rgba(255,216,0,.18);
  position: relative;
  z-index: 1;
}

.modal-title{
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 12px;
  text-align:center;
  color: #ffffff;
}

.modal-plate-pill{
  display:inline-flex;
  align-items:center;
  background: rgba(255,216,0,.14);
  border: 1px solid rgba(255,216,0,.18);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-weight: 900;
  margin: 4px auto 14px;
  font-size: 13px;
}

.modal-box{
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px 18px 14px;
  text-align:center;
}

.modal-label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,.75);
  margin-bottom: 4px;
}

.modal-price{
  font-size: 26px;
  font-weight: 1000;
  color: var(--yellow);
}

.modal-note{
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
  text-align:center;
}

.modal-footer{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

@media (max-width: 480px){
  .modal-footer{ flex-direction: column; }
}

/* ================= SECCIONES (content) ================= */

.why-section,
.steps-section,
.faq-section,
.compare-section,
.testimonials-section,
.info-wrapper{
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 0 16px;
}

.info-wrapper{ margin-bottom: 56px; }

.section-kicker{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  font-weight: 800;
  margin-bottom: 4px;
}

.section-title-main{
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 8px;
}

.section-description{
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin-bottom: 20px;
}

/* Steps cards */
.steps-wrapper{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 18px;
}

.step-card{
  border-radius: 14px;
  background: rgba(17,24,39,.92);
  border: 1px solid rgba(255,216,0,.16);
  padding: 16px 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.30);
}

.step-number{
  width:30px;height:30px;
  border-radius: var(--radius-pill);
  background: rgba(255,216,0,.14);
  border: 1px solid rgba(255,216,0,.18);
  color: var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  font-size: 15px;
  margin-bottom: 8px;
}

.step-title{ font-weight: 900; font-size: 14px; margin-bottom: 4px; color:#fff; }
.step-text{ font-size: 13px; color: rgba(255,255,255,.72); margin: 0; }

/* Why */
.why-grid{
  display:grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 16px;
}
.why-item{
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(17,24,39,.92);
  border: 1px solid rgba(255,216,0,.16);
  display:flex;
  gap: 10px;
  align-items:flex-start;
  box-shadow: 0 8px 18px rgba(0,0,0,.30);
}
.why-icon{ font-size: 22px; }
.why-text-title{ font-size: 14px; font-weight: 900; color:#fff; margin-bottom: 4px; }
.why-text-body{ font-size: 13px; color: rgba(255,255,255,.72); }

/* Products */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.product-card{
  background: rgba(17,24,39,.92);
  border-radius: 18px;
  padding: 18px 16px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  border: 1px solid rgba(255,216,0,.16);
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
}
.product-card img{ max-width: 110px; margin-bottom: 12px; }
.product-title{ font-size: 16px; font-weight: 900; color:#fff; margin: 0 0 4px; }
.product-text{ font-size: 13px; color: rgba(255,255,255,.72); margin: 0 0 14px; }
.btn-info{
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,216,0,.55);
  background: rgba(255,216,0,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor:pointer;
}
.btn-info:hover{ background: rgba(255,216,0,.14); }

/* Benefits + amparos */
.benefits-section{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap: 30px;
  margin-bottom: 32px;
}
.info-wrapper h2.section-title{
  font-size: 26px;
  font-weight: 1000;
  color:#fff;
  margin: 0 0 6px;
}
.info-wrapper p.section-subtitle{
  font-size: 14px;
  color: rgba(255,255,255,.72);
  margin: 0 0 22px;
}
.benefits-section p{ font-size: 14px; color: rgba(255,255,255,.72); }

.benefits-list{ display:flex; flex-direction: column; gap: 10px; }
.benefit-item{
  background: rgba(17,24,39,.92);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,216,0,.16);
  box-shadow: 0 8px 18px rgba(0,0,0,.30);
  display:grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items:flex-start;
}
.benefit-icon{
  width:40px;height:40px;
  border-radius: 12px;
  background: rgba(255,216,0,.14);
  border: 1px solid rgba(255,216,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  color: var(--yellow);
}
.benefit-title{ font-size: 14px; font-weight: 900; color:#fff; margin-bottom: 2px; }
.benefit-text{ font-size: 12px; color: rgba(255,255,255,.70); }
.benefits-note{ font-size: 11px; color: rgba(255,255,255,.62); margin-top: 6px; }

.amparos-section{ margin-top: 10px; }
.amparos-section h3{ font-size: 20px; font-weight: 1000; color:#fff; margin: 0 0 4px; }
.amparos-section p{ font-size: 14px; color: rgba(255,255,255,.72); margin: 0 0 14px; }
.amparo-card{
  background: rgba(17,24,39,.92);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,216,0,.16);
  box-shadow: 0 8px 18px rgba(0,0,0,.30);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.amparo-icon{
  width:40px;height:40px;
  border-radius: var(--radius-pill);
  background: rgba(255,216,0,.14);
  border: 1px solid rgba(255,216,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  color: var(--yellow);
}
.amparo-content h4{ font-size: 15px; font-weight: 900; color:#fff; margin: 0 0 3px; }
.amparo-content p{ margin:0; font-size: 13px; color: rgba(255,255,255,.72); }

/* Compare table */
.compare-table{
  width:100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 16px;
  background: rgba(17,24,39,.92);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  border: 1px solid rgba(255,216,0,.16);
}
.compare-table th,
.compare-table td{
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 8px;
  text-align:left;
  color: rgba(255,255,255,.78);
}
.compare-table th{
  background: rgba(0,0,0,.35);
  font-weight: 900;
  color: #ffffff;
}
.compare-tag{
  display:inline-flex;
  align-items:center;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  border: 1px solid rgba(255,216,0,.18);
}
.compare-tag.soat{ background: rgba(255,216,0,.14); color: #fff; }
.compare-tag.tercero{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.88); }

/* Testimonials */
.testimonials-grid{
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 18px;
}
.testimonial-card{
  background: rgba(17,24,39,.92);
  border-radius: 14px;
  border: 1px solid rgba(255,216,0,.16);
  padding: 14px 14px 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.testimonial-text{ font-size: 13px; color: rgba(255,255,255,.72); margin: 0 0 10px; }
.testimonial-author{ font-size: 13px; font-weight: 900; color: #fff; }
.testimonial-meta{ font-size: 11px; color: rgba(255,255,255,.62); }

/* FAQ */
.faq-list details{
  border-radius: 12px;
  border: 1px solid rgba(255,216,0,.16);
  background: rgba(17,24,39,.92);
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,.30);
}
.faq-list summary{
  font-size: 14px;
  font-weight: 900;
  cursor:pointer;
  list-style:none;
  color:#fff;
}
.faq-list summary::marker,
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-answer{ font-size: 13px; color: rgba(255,255,255,.72); margin-top: 8px; }

/* ================= FOOTER ================= */

.site-footer{
  margin-top: 48px;
  background: #000;
  border-top: 1px solid rgba(255,216,0,.18);
  box-shadow: 0 -10px 24px rgba(0,0,0,.45);
}

.footer-inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 18px;
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items:flex-start;
}

.footer-brand{
  display:flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.footer-brand-name{
  font-weight: 1000;
  font-size: 14px;
  color: var(--yellow);
}

.footer-links h4{
  font-size: 13px;
  font-weight: 1000;
  color: #ffffff;
  margin: 0 0 8px;
}

.footer-links ul{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin-bottom: 6px; }

.footer-links a{
  font-size: 13px;
  color: rgba(255,255,255,.72);
  text-decoration:none;
}
.footer-links a:hover{ color: var(--yellow); text-decoration: underline; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 8px;
  padding: 10px 16px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  text-align:center;
}

/* Responsive footer */
@media (max-width: 800px){
  .footer-inner{ grid-template-columns: 1fr; gap: 16px; }
}

/* Responsive content sections */
@media (max-width: 900px){
  .product-grid{ grid-template-columns: 1fr; }
  .benefits-section{ grid-template-columns: 1fr; }
}

/* Utility: reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}
