/* ===== HiFive Rent a Car — Tema negro & dorado ===== */
:root {
  --bg: #0a0a0a;
  --bg-2: #121110;
  --bg-3: #1a1814;
  --card: #161412;
  --card-2: #1f1b15;
  --line: #2a2620;
  --gold: #d4af37;
  --gold-2: #f2d479;
  --gold-3: #b8902c;
  --gold-soft: rgba(212,175,55,0.12);
  --txt: #f3efe7;
  --txt-2: #b8b2a6;
  --txt-3: #807a6e;
  --danger: #d9534f;
  --green: #2f9e6f;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0,0,0,0.55);
  --gold-grad: linear-gradient(135deg, #f7e7a8 0%, #d4af37 45%, #9c7a22 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Hilos dorados de fondo (detrás de las tarjetas) */
.threads { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.threads svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; }
.threads path { fill: none; will-change: transform; }

/* Barra de scroll oscura (a juego con el diseño) */
* { scrollbar-width: thin; scrollbar-color: #3a352b var(--bg); }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #322e26; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-3); }
.modal-inner::-webkit-scrollbar-track { background: var(--bg-2); }
.modal-inner::-webkit-scrollbar-thumb { border-color: var(--bg-2); }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 18px; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.serif { font-family: var(--serif); }

/* ===== Header ===== */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; border-radius: 8px; }
.brand .bt { display: flex; flex-direction: column; line-height: 1; }
.brand .bt b { font-family: var(--serif); font-size: 22px; font-style: italic; letter-spacing: .5px; }
.brand .bt span { font-size: 9px; letter-spacing: 4px; color: var(--gold-3); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--txt-2); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold-2); }
.btn-wa-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-grad); color: #1a1306 !important; font-weight: 700;
  padding: 9px 16px; border-radius: 999px; font-size: 13px;
}
.menu-toggle { display: none; background: none; border: 0; color: var(--gold); }

/* ===== Intro (tarjeta negra; los hilos pasan por detrás) ===== */
.intro { display: flex; justify-content: center; padding: 44px 18px 10px; }
.intro-card {
  position: relative;
  width: 100%; max-width: 680px;
  text-align: center;
  padding: 42px 34px 38px;
  background: radial-gradient(560px 300px at 50% 0%, rgba(212,175,55,0.10), transparent 70%), #0b0a09;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.6);
}
.intro-logo { height: 152px; width: auto; margin: 0 auto 16px; display: block; }
.intro h1 { font-family: var(--serif); font-size: 39px; line-height: 1.1; font-weight: 800; letter-spacing: -0.5px; max-width: 620px; margin: 0 auto; }
.intro p { color: var(--txt-2); font-size: 16.5px; max-width: 500px; margin: 14px auto 0; }
@media (max-width: 620px) {
  .intro { padding: 28px 14px 4px; }
  .intro-card { padding: 30px 20px 26px; border-radius: 20px; }
  .intro-logo { height: 112px; }
  .intro h1 { font-size: 28px; }
  .intro p { font-size: 14.5px; }
}

/* ===== Hero ===== */
.hero {
  position: relative; padding: 70px 0 60px;
  background:
    radial-gradient(900px 400px at 70% -10%, rgba(212,175,55,0.14), transparent 60%),
    linear-gradient(180deg, #0d0c0a 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 10% 110%, rgba(212,175,55,0.08), transparent 60%);
  pointer-events:none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { font-family: var(--serif); font-size: 52px; line-height: 1.08; font-weight: 800; letter-spacing: -0.5px; }
.hero h1 em { font-style: italic; }
.hero p.sub { color: var(--txt-2); font-size: 17px; margin: 20px 0 28px; max-width: 520px; }
.hero-logo { display: flex; justify-content: center; position: relative; }
.hero-logo img { width: 88%; max-width: 380px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; z-index: 1; }
.hero-logo-glow { position: absolute; inset: 6% 12%; border-radius: 30px; background: radial-gradient(circle at 50% 40%, rgba(212,175,55,0.45), transparent 70%); filter: blur(30px); z-index: 0; animation: glowPulse 4s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .85; transform: scale(1.06); } }

/* Flecha "bajar" en el hero */
.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 6px; width: max-content; margin: 44px auto 0; color: var(--txt-3); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: color .2s; }
.scroll-cue:hover { color: var(--gold-2); }
.scroll-cue svg { color: var(--gold); animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* Sección Cómo funciona */
.como-block { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform .2s, border-color .2s; }
.step:hover { transform: translateY(-5px); border-color: var(--gold-3); }
.step-num { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; font-weight: 700; color: #1a1306; background: var(--gold-grad); box-shadow: 0 6px 18px rgba(212,175,55,0.3); }
.step h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--txt-2); font-size: 14px; }
.to-fleet { display: flex; align-items: center; justify-content: center; gap: 8px; width: max-content; margin: 38px auto 0; padding: 12px 26px; border-radius: 999px; border: 1px solid var(--gold-3); color: var(--gold-2); font-weight: 600; font-size: 15px; transition: background .2s; }
.to-fleet:hover { background: var(--gold-soft); }
.to-fleet svg { animation: bounce 1.8s infinite; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.stats { display: flex; gap: 30px; margin-top: 34px; }
.stats .s b { font-family: var(--serif); font-size: 30px; }
.stats .s span { display: block; color: var(--txt-3); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== Botones ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold-grad); color: #1a1306; box-shadow: 0 8px 24px rgba(212,175,55,0.28); }
.btn-gold:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.42); }
.btn-ghost { background: transparent; color: var(--gold-2); border-color: var(--gold-3); }
.btn-ghost:hover { background: var(--gold-soft); }
.btn-dark { background: var(--card-2); color: var(--txt); border-color: var(--line); }
.btn-dark:hover { border-color: var(--gold-3); }
.btn-wide { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ===== Secciones ===== */
section.block { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head .kicker { color: var(--gold-3); letter-spacing: 4px; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.section-head h2 { font-family: var(--serif); font-size: 38px; margin-top: 8px; }
.section-head p { color: var(--txt-2); margin-top: 10px; }

/* ===== Filtros ===== */
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--card); color: var(--txt-2); font-size: 14px; font-weight: 500; transition: all .2s;
}
.chip:hover { border-color: var(--gold-3); color: var(--gold-2); }
.chip.active { background: var(--gold-grad); color: #1a1306; border-color: transparent; font-weight: 700; }

/* ===== Grid carros ===== */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.car-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; cursor: pointer;
  display: flex; flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); border-color: var(--gold-3); box-shadow: var(--shadow); }
.car-thumb { position: relative; aspect-ratio: 16/10; background: #fff; overflow: hidden; }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; }
.car-badge {
  position: absolute; top: 12px; left: 12px; background: rgba(10,10,10,0.78);
  border: 1px solid var(--gold-3); color: var(--gold-2); font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; letter-spacing: .5px; backdrop-filter: blur(4px);
}
.car-fav { position: absolute; top: 12px; right: 12px; color: var(--gold); }
.car-thumb img.car-brand-logo {
  position: absolute; top: 10px; right: 12px;
  height: 34px; width: auto; max-width: 80px; min-width: 0;
  object-fit: contain;
}
.detail-img img.detail-brand-logo {
  position: absolute; top: 12px; right: 14px;
  height: 42px; width: auto; max-width: 96px; min-width: 0;
  object-fit: contain; aspect-ratio: auto;
}
.car-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.car-brand { color: var(--gold-3); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 2px; }
.car-body h3 { font-size: 19px; font-family: var(--serif); }
.car-specs { display: flex; flex-wrap: wrap; gap: 12px; margin: 10px 0 14px; color: var(--txt-3); font-size: 12.5px; }
.car-specs span { display: inline-flex; align-items: center; gap: 5px; }
.car-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.car-price b { font-family: var(--serif); font-size: 22px; color: var(--gold-2); }
.car-price small { color: var(--txt-3); font-size: 12px; display: block; }
.car-card .btn { padding: 10px 18px; font-size: 13.5px; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line); background: var(--bg-2); padding: 46px 0 30px; margin-top: 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
footer h4 { font-family: var(--serif); font-size: 18px; margin-bottom: 14px; color: var(--gold-2); }
footer p, footer a { color: var(--txt-2); font-size: 14px; margin-bottom: 8px; display: block; }
footer a:hover { color: var(--gold-2); }
.foot-bottom { text-align: center; color: var(--txt-3); font-size: 12.5px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ===== Whatsapp flotante ===== */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(140deg, #1c1813, #0a0a0a);
  border: 1.5px solid var(--gold-3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(0,0,0,.55), 0 0 0 4px rgba(212,175,55,0.08);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,0,0,.6), 0 0 24px rgba(212,175,55,0.4); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float svg path { fill: var(--gold-2); }

/* ===== Detalle de carro ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 40px; align-items: start; }
.detail-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; position: sticky; top: 86px; }
.detail-img img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.detail-info h1 { font-family: var(--serif); font-size: 40px; }
.detail-cat { color: var(--gold-3); letter-spacing: 3px; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.detail-desc { color: var(--txt-2); margin: 16px 0 22px; font-size: 16px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.spec-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 14px;
  display: flex; align-items: center; gap: 12px;
}
.spec-item .ic { color: var(--gold); flex-shrink: 0; }
.spec-item small { color: var(--txt-3); font-size: 11.5px; display: block; }
.spec-item b { font-size: 15px; }
.price-box {
  background: linear-gradient(135deg, var(--card-2), var(--card)); border: 1px solid var(--gold-3);
  border-radius: var(--radius); padding: 22px; margin: 24px 0;
}
.price-box .pp { font-family: var(--serif); font-size: 34px; color: var(--gold-2); }
.price-box .pp small { font-size: 15px; color: var(--txt-3); font-family: var(--font); }

/* ===== Galería de imágenes ===== */
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gthumb { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; border: 2px solid var(--line); cursor: pointer; opacity: .65; background: #fff; transition: opacity .15s, border-color .15s; }
.gthumb:hover { opacity: 1; }
.gthumb.active { opacity: 1; border-color: var(--gold); }

/* ===== Formulario / Reserva ===== */
.form-row { margin-bottom: 16px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label.lbl { display: block; font-size: 13px; color: var(--txt-2); margin-bottom: 7px; font-weight: 500; }
.inp, select.inp {
  width: 100%; padding: 13px 14px; border-radius: 11px; border: 1px solid var(--line);
  background: var(--bg-3); color: var(--txt); font-size: 15px; font-family: inherit; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.inp:focus, select.inp:focus { outline: none; border-color: var(--gold); }
.inp::placeholder { color: var(--txt-3); }
select.inp { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.inp { resize: vertical; min-height: 70px; }
.loc-pick { display: flex; gap: 8px; align-items: stretch; }
.loc-pick .inp { flex: 1; }
.loc-map { flex: 0 0 auto; width: 48px; display: flex; align-items: center; justify-content: center; border-radius: 11px; border: 1px solid var(--gold-3); background: var(--bg-3); color: var(--gold); transition: background .15s, transform .1s; }
.loc-map svg { width: 22px; height: 22px; }
.loc-map:hover { background: rgba(212,175,55,0.12); }
.loc-map:active { transform: scale(.94); }
.loc-map.off { opacity: .3; pointer-events: none; }

/* ===== Modal ===== */
.modal-bg {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(4px);
  z-index: 100; display: none; align-items: flex-end; justify-content: center;
}
.modal-bg.open { display: flex; }
.modal {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px 22px 0 0;
  width: 100%; max-width: 560px; overflow: hidden;
  animation: slideUp .28s ease;
}
.modal-inner { max-height: 92vh; overflow-y: auto; padding: 24px; }
@keyframes slideUp { from { transform: translateY(40px); opacity: .6; } to { transform: translateY(0); opacity: 1; } }

/* Reserva: calendario + opciones */
.booking-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* En computador: ventana centrada y más ancha (no como celular) */
@media (min-width: 760px) {
  .modal-bg { align-items: center; padding: 24px; }
  .modal { max-width: 880px; border-radius: 20px; animation: popIn .24s ease; }
  .modal-inner { max-height: 90vh; }
  .modal .form-row.two { gap: 18px; }
  /* Reserva en dos columnas: calendario a la izquierda, opciones a la derecha */
  .booking-grid { grid-template-columns: 1.05fr 1fr; gap: 24px; align-items: start; }
  .booking-cal { position: sticky; top: 0; }
  /* Que la foto del detalle no quede enorme en pantallas anchas */
  .modal .detail-img img { max-height: 380px; }
}
@keyframes popIn { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }

.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.modal-head h3 { font-family: var(--serif); font-size: 24px; }
.modal-close { background: var(--card); border: 1px solid var(--line); color: var(--txt-2); width: 36px; height: 36px; border-radius: 50%; font-size: 18px; }

/* ===== Calendario ===== */
.cal { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-head b { font-family: var(--serif); font-size: 16px; }
.cal-nav { background: var(--card-2); border: 1px solid var(--line); color: var(--gold); width: 32px; height: 32px; border-radius: 8px; font-size: 16px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; color: var(--txt-3); font-size: 11px; padding: 4px 0; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 9px; font-size: 13.5px; color: var(--txt); border: 1px solid transparent; transition: all .12s;
}
.cal-day.empty { visibility: hidden; }
.cal-day.disabled { color: var(--txt-3); opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.cal-day.selectable { cursor: pointer; }
.cal-day.selectable:hover { border-color: var(--gold-3); background: var(--gold-soft); }
.cal-day.start, .cal-day.end { background: var(--gold-grad); color: #1a1306; font-weight: 700; }
.cal-day.inrange { background: var(--gold-soft); color: var(--gold-2); border-radius: 0; }
.cal-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 11.5px; color: var(--txt-3); flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }

/* ===== Resumen reserva ===== */
.summary { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin: 14px 0; }
.summary .row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; }
.summary .row span { color: var(--txt-3); }
.summary .row.total { border-top: 1px dashed var(--line); margin-top: 8px; padding-top: 12px; }
.summary .row.total b { font-family: var(--serif); font-size: 22px; color: var(--gold-2); }

.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: var(--card-2); border: 1px solid var(--gold-3); color: var(--txt);
  padding: 13px 22px; border-radius: 999px; font-size: 14px; z-index: 200; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }

.success-box { text-align: center; padding: 14px 0; }
.success-box .check { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-soft); border: 2px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 32px; }

.loading { text-align: center; padding: 60px 0; color: var(--txt-3); }
.spinner { width: 38px; height: 38px; border: 3px solid var(--line); border-top-color: var(--gold); border-radius: 50%; margin: 0 auto 14px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 260px; }
  .hero h1 { font-size: 40px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-img { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px; gap: 16px; align-items: flex-start;
  }
  .cars-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step { padding: 20px 12px; }
  .step-num { width: 44px; height: 44px; font-size: 20px; }
  .hero { padding: 44px 0 40px; }
  .hero h1 { font-size: 34px; }
  .hero p.sub { font-size: 15px; }
  .section-head h2 { font-size: 28px; }
  .stats { gap: 20px; }
  .stats .s b { font-size: 24px; }
  .form-row.two { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .modal { max-width: 100%; }
  .wrap { padding: 0 14px; }
}
