/* ===== Tokens ===== */
:root {
  --bg-0: #0b0d11;
  --bg-1: #101319;
  --bg-2: #171a21;
  --bg-3: #1f232c;
  --bg-3-hover: #272b36;
  --border: #262a34;
  --border-light: #343947;

  --text-1: #f5f5f7;
  --text-2: #b4b8c2;
  --text-3: #7a7f8c;

  --accent: #ff5a1f;
  --accent-light: #ff8a50;
  --accent-dark: #d6440f;
  --accent-2: #ffb020;
  --accent-rgb: 255, 90, 31;

  --success: #22c55e;
  --danger: #ef4444;
  --white: #ffffff;

  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --gradient-dark: linear-gradient(180deg, rgba(11, 13, 17, 0) 0%, var(--bg-0) 100%);

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 8px 28px rgba(var(--accent-rgb), 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ===== Reset ===== */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--bg-0);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-1); font-weight: 600; line-height: 1.15; }
::selection { background: var(--accent); color: var(--white); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: var(--radius-full); border: 2px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; flex-shrink: 0; }

/* ===== Layout helpers ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 112px 0; position: relative; }
.section-alt { background: var(--bg-1); }
.section-header { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gradient-accent); border-radius: 2px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-header p { color: var(--text-2); font-size: 17px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--gradient-accent); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.45); }
.btn-outline { border: 1.5px solid var(--border-light); color: var(--text-1); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11, 13, 17, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 14px; font-family: var(--font-heading); font-weight: 700; font-size: 23px; color: var(--text-1); }
.logo img { width: 44px; height: 44px; }
.logo span { letter-spacing: 0.02em; }
.logo span em { color: var(--accent); font-style: normal; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  position: relative; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  padding: 6px 0; transition: color .2s var(--ease);
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gradient-accent); border-radius: 2px; transition: width .25s var(--ease);
}
.nav-menu a:hover, .nav-menu a.is-active { color: var(--text-1); }
.nav-menu a:hover::after, .nav-menu a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
}
.menu-toggle span { width: 20px; height: 2px; background: var(--text-1); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); margin: 0 auto; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
  background: radial-gradient(120% 100% at 80% 0%, #1a1410 0%, var(--bg-0) 55%);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 80px 0 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--accent-rgb), 0.12); border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--accent-light); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-full); margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
.hero-title { font-size: clamp(38px, 6vw, 68px); max-width: 780px; letter-spacing: -0.01em; }
.hero-title .line-accent { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-subtitle { font-size: 18px; max-width: 560px; margin: 22px 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 40px; }
.hero-stat .num { font-family: var(--font-heading); font-size: clamp(26px, 3vw, 36px); color: var(--text-1); font-weight: 700; }
.hero-stat .num::after { content: attr(data-suffix); color: var(--accent); }
.hero-stat .label { font-size: 13.5px; color: var(--text-3); margin-top: 4px; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-3); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue .icon { width: 16px; height: 16px; }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== Trust bar ===== */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-1); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 12px; padding: 26px 20px;
  border-left: 1px solid var(--border);
}
.trust-item:first-child { border-left: none; }
.trust-item .icon { width: 24px; height: 24px; color: var(--accent); }
.trust-item strong { display: block; color: var(--text-1); font-size: 14.5px; font-weight: 600; }
.trust-item span { font-size: 12.5px; color: var(--text-3); }

/* ===== Fleet ===== */
.fleet-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px; border-radius: var(--radius-full); border: 1px solid var(--border-light);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--text-1); border-color: var(--accent); }
.filter-btn.is-active { background: var(--gradient-accent); border-color: transparent; color: var(--white); box-shadow: var(--shadow-glow); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fleet-card {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.fleet-card.is-hidden { display: none; }
.fleet-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-md); }
.fleet-card-media {
  position: relative; overflow: hidden; color: var(--text-1);
  /* 4:3 — misma proporción que recorta el editor de fotos del panel, así la
     imagen llena la caja entera (cover) sin dejar franjas vacías a los costados. */
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.fleet-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet-badge {
  position: absolute; top: 18px; left: 20px; z-index: 2; background: var(--bg-3); border: 1px solid var(--border-light);
  color: var(--accent-light); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 12px; border-radius: var(--radius-full);
}
.fleet-card-body { padding: 18px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.fleet-card-body h3 { font-size: 20px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--text-3); }
.fleet-specs li { display: flex; align-items: center; gap: 6px; }
.fleet-specs .icon { width: 15px; height: 15px; color: var(--accent); }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-tags span { font-size: 12px; color: var(--text-2); background: var(--bg-3); padding: 4px 10px; border-radius: var(--radius-full); }
.fleet-card-footer { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.fleet-price strong { font-family: var(--font-heading); font-size: 22px; color: var(--text-1); }
.fleet-price span { font-size: 12.5px; color: var(--text-3); }
.fleet-card-actions { display: flex; gap: 10px; }
.fleet-card-actions .btn { flex: 1; }
.fleet-empty { text-align: center; color: var(--text-3); padding: 40px 0; display: none; }
.fleet-empty.is-visible { display: block; }

/* ===== Modal (ficha técnica) ===== */
body.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 950; padding: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 6, 8, 0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-panel {
  background: var(--bg-2); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  width: 100%; max-width: 560px; max-height: 86vh; overflow-y: auto;
  padding: 34px; position: relative; box-shadow: var(--shadow-md);
  transform: translateY(18px) scale(.97); opacity: 0; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.modal-overlay.is-open .modal-panel { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--border-light); color: var(--text-2);
  display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease);
}
.modal-close:hover { color: var(--white); background: var(--gradient-accent); border-color: transparent; }
.modal-header { display: flex; align-items: center; gap: 18px; padding-right: 36px; margin-bottom: 6px; }
.modal-header img { width: 68px; height: 68px; object-fit: contain; color: var(--accent); flex-shrink: 0; }
.modal-header h3 { font-size: 21px; margin-bottom: 6px; }
.modal-badge {
  display: inline-block; font-size: 11.5px; font-weight: 600; color: var(--accent-light);
  background: rgba(var(--accent-rgb), 0.12); border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 4px 12px; border-radius: var(--radius-full);
}
.modal-price {
  margin: 22px 0 4px; padding: 14px 18px; background: var(--bg-3); border-radius: var(--radius-md);
  display: flex; align-items: baseline; justify-content: space-between; font-size: 13.5px; color: var(--text-2);
}
.modal-price strong { font-family: var(--font-heading); font-size: 22px; color: var(--text-1); }
.modal-specs { display: flex; flex-direction: column; margin-top: 12px; border-top: 1px solid var(--border); }
.modal-specs .spec-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.modal-specs .spec-row dt { color: var(--text-3); flex-shrink: 0; }
.modal-specs .spec-row dd { color: var(--text-1); font-weight: 500; text-align: right; }
.modal-actions { margin-top: 26px; }

@media (max-width: 480px) {
  .modal-panel { padding: 26px 20px; }
  .modal-specs .spec-row { flex-direction: column; gap: 2px; }
  .modal-specs .spec-row dd { text-align: left; }
}

/* ===== How it works ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { text-align: center; padding: 8px; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--border-light);
  font-family: var(--font-heading); font-weight: 700; color: var(--accent); font-size: 18px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; }
.step-connector { position: absolute; top: 26px; left: calc(50% + 44px); width: calc(100% - 88px); height: 1px; background: linear-gradient(90deg, var(--border-light), transparent); }
.step-card:last-child .step-connector { display: none; }

/* ===== Alquiler semanal ===== */
.rental-highlight {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .14), rgba(var(--accent-rgb), .04));
  border: 1px solid rgba(var(--accent-rgb), .35); border-radius: var(--radius-lg);
  padding: 22px 28px; margin: 0 auto 48px; max-width: 640px;
}
.rental-highlight .icon-wrap {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  flex-shrink: 0; box-shadow: var(--shadow-glow);
}
.rental-highlight .icon-wrap .icon { width: 26px; height: 26px; }
.rental-highlight strong { display: block; color: var(--text-1); font-size: 16.5px; margin-bottom: 3px; }
.rental-highlight span { font-size: 13.5px; color: var(--text-2); }
.rental-highlight + .rental-highlight { margin-top: -24px; }

.rental-highlight.is-gold {
  background: linear-gradient(135deg, rgba(255, 176, 32, .18), rgba(255, 176, 32, .04));
  border-color: rgba(255, 176, 32, .4);
}
.rental-highlight.is-gold .icon-wrap { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }

.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative; overflow: hidden; padding: 90px 0; text-align: center;
  background: radial-gradient(90% 140% at 50% 0%, #1a1410 0%, var(--bg-0) 70%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.cta-banner p { max-width: 500px; margin: 0 auto 32px; }

/* ===== Testimonials ===== */
.testimonial-carousel { position: relative; max-width: 760px; margin: 0 auto; }
.testimonial-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track { display: flex; transition: transform .5s var(--ease); }
.testimonial-slide { flex: 0 0 100%; padding: 8px; }
.testimonial-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 20px; color: var(--accent-2); }
.testimonial-stars .icon { width: 18px; height: 18px; fill: currentColor; }
.testimonial-quote { font-size: 18px; color: var(--text-1); font-weight: 400; line-height: 1.55; margin-bottom: 24px; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-accent); color: var(--white); font-family: var(--font-heading); font-weight: 700;
}
.testimonial-author strong { color: var(--text-1); font-size: 14.5px; }
.testimonial-author span { font-size: 12.5px; color: var(--text-3); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-2);
  transition: all .25s var(--ease);
}
.carousel-arrow:hover { border-color: var(--accent); color: var(--accent-light); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); transition: all .3s var(--ease); }
.carousel-dots button.is-active { background: var(--accent); width: 22px; border-radius: var(--radius-full); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; text-align: left; font-size: 15.5px; font-weight: 600; color: var(--text-1);
}
.faq-question .icon { color: var(--accent); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer p { padding: 0 24px 22px; font-size: 14.5px; color: var(--text-2); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 14px; }
.contact-info > p { margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list .icon-wrap {
  width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--text-1); font-size: 14.5px; }
.contact-list span { font-size: 13.5px; color: var(--text-3); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--text-2);
  transition: all .25s var(--ease);
}
.social-links a:hover { color: var(--white); border-color: var(--accent); background: var(--gradient-accent); }

.contact-form { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text-1); font-size: 14.5px; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7f8c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-3-hover); }
.field-error { display: block; font-size: 12px; color: var(--danger); margin-top: 6px; min-height: 14px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-hint { display: block; font-size: 12.5px; color: var(--text-3); margin-top: 8px; line-height: 1.5; }

.form-section { padding-top: 30px; margin-top: 10px; border-top: 1px solid var(--border); }
.form-section:first-of-type { padding-top: 0; margin-top: 0; border-top: none; }
.form-section-title {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent-light); margin-bottom: 20px;
}

.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.choice-pill {
  display: inline-flex; align-items: center; padding: 10px 20px; border-radius: var(--radius-full);
  border: 1px solid var(--border-light); font-size: 13.5px; font-weight: 500; color: var(--text-2);
  cursor: pointer; transition: all .2s var(--ease); user-select: none;
}
.choice-pill:hover { border-color: var(--accent); color: var(--text-1); }
.choice-input:checked + .choice-pill { background: var(--gradient-accent); border-color: transparent; color: var(--white); }
.choice-input:focus-visible + .choice-pill { outline: 2px solid var(--accent); outline-offset: 2px; }
.field.has-error .choice-pill { border-color: var(--danger); }

.price-estimate {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg-3); border: 1px dashed var(--border-light); border-radius: var(--radius-md);
  padding: 16px 20px; margin: 6px 0 22px; font-size: 13.5px;
}
.price-estimate .pe-label { color: var(--text-3); }
.price-estimate .pe-detail { color: var(--text-2); font-size: 12.5px; margin-top: 2px; }
.price-estimate .pe-total { font-family: var(--font-heading); font-size: 24px; color: var(--accent-light); font-weight: 700; text-align: right; }

.form-status { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 14px; border-radius: var(--radius-sm); padding: 0; max-height: 0; overflow: hidden; opacity: 0; transition: all .3s var(--ease); }
.form-status.is-visible { max-height: 80px; opacity: 1; padding: 14px 16px; }
.form-status.is-success { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.form-status.is-error { background: rgba(239,68,68,.12); color: #f87171; border: 1px solid rgba(239,68,68,.3); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 { font-size: 14.5px; color: var(--text-1); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent-light); }
.newsletter-form { display: flex; gap: 8px; margin-top: 6px; }
.newsletter-form input { flex: 1; background: var(--bg-2); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 11px 13px; font-size: 13.5px; color: var(--text-1); }
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form button { background: var(--gradient-accent); color: var(--white); border-radius: var(--radius-sm); padding: 0 16px; font-weight: 600; font-size: 13px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-3); }
.footer-bottom a:hover { color: var(--text-1); }
.footer-legal { display: flex; gap: 20px; }

/* ===== Back to top & Toasts ===== */
#back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--border-light);
  color: var(--text-1); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease);
}
#back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--gradient-accent); border-color: transparent; }

#toast-container { position: fixed; top: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1px solid var(--border-light);
  color: var(--text-1); padding: 14px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  font-size: 14px; min-width: 260px; transform: translateX(120%); transition: transform .35s var(--ease);
}
.toast.is-visible { transform: translateX(0); }
.toast.toast-success .icon { color: var(--success); }
.toast.toast-error .icon { color: var(--danger); }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step-connector { display: none; }
  .terms-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-menu, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu.is-open {
    display: flex; position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column; align-items: flex-start;
    background: var(--bg-0); padding: 32px 24px; gap: 8px; overflow-y: auto; border-top: 1px solid var(--border);
  }
  .nav-menu.is-open a { width: 100%; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
}
@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 24px; }
  .rental-highlight { flex-direction: column; text-align: center; padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
