/* ==========================================================================
   FL Drive — Premium Landing Styles
   Flat palette · Stroke icons · Warm off-white on deep navy
   ========================================================================== */

:root {
  --orange: #FF7A00;
  --orange-600: #E86E00;
  --orange-050: rgba(255, 122, 0, 0.06);
  --orange-100: rgba(255, 122, 0, 0.12);

  --bg: #FFFFFF;
  --bg-raise: #FAFAF9;
  --bg-card: #F5F5F4;
  --bg-hover: #F0EFEC;
  --ink: #0A1220;
  --line: rgba(10, 18, 32, 0.08);
  --line-strong: rgba(10, 18, 32, 0.14);

  --text: #0A1220;
  --text-muted: #4B5563;
  --text-dim: #8A93A3;
  --text-invert: #FFFFFF;

  --accent: var(--orange);
  --accent-hover: var(--orange-600);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 20px;
  --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px; --sp-16: 64px;
  --sp-20: 80px; --sp-24: 96px;

  --font-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.3s;

  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
svg.icon { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h2 { letter-spacing: -0.025em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.accent { color: var(--accent); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 18px; height: 18px; }
.icon--md { width: 22px; height: 22px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 36px; height: 36px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--orange-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 22px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--text-invert); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(245,245,244,0.04); border-color: var(--text-muted); }
.btn--sm { padding: 9px 16px; font-size: 0.875rem; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-6);
  min-height: 88px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 72px; width: auto; }

.nav {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav > a:hover {
  color: var(--ink);
  background: var(--bg);
}
.nav__cta { display: none; }

.nav__toggle {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.nav__toggle:hover { background: var(--bg-raise); }
.nav__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px -24px rgba(10, 18, 32, 0.15);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block;
  padding: var(--sp-4);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  color: var(--text);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-menu a:hover { background: var(--bg-raise); color: var(--accent); }
.mobile-menu .btn {
  margin-top: var(--sp-3);
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
}

@media (min-width: 900px) {
  .nav { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--sp-8);
    padding: var(--sp-3) var(--sp-8);
    min-height: 92px;
  }
  .nav { justify-self: center; }
  .logo__img { height: 80px; }
}

/* Hero — full-screen with image background, text overlay top */
.hero {
  position: relative;
  min-height: calc(100dvh - 88px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  color: var(--text-invert);
}
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: none;
  display: block;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 18, 32, 0.78) 0%, rgba(10, 18, 32, 0.45) 45%, rgba(10, 18, 32, 0.15) 100%);
}
.hero__glow { display: none; }

.hero__inner {
  width: 100%;
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  display: flex;
  flex-direction: column;
}
.hero__content {
  max-width: 720px;
  color: var(--text-invert);
}
.hero__content > * + * { margin-top: var(--sp-6); }
.hero__content .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero__content .eyebrow__dot { box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.25); }

.hero__title {
  font-size: clamp(2.75rem, 7vw + 0.5rem, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--text-invert);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero__sub {
  font-size: clamp(1.0625rem, 1vw + 0.75rem, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.hero__ctas .btn--ghost {
  color: var(--text-invert);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__ctas .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: var(--sp-8) !important;
}
.hero__meta li { display: flex; flex-direction: column; gap: 2px; }
.hero__meta strong {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-invert);
  letter-spacing: -0.02em;
}
.hero__meta span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 900px) {
  .hero { min-height: calc(100dvh - 92px); }
  .hero__inner { padding-top: var(--sp-20); padding-bottom: var(--sp-20); }
}

/* Sections */
section { padding: var(--sp-20) 0; }
.section__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 640px;
  margin-bottom: var(--sp-12);
}
.section__title {
  font-size: clamp(1.875rem, 3vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* Pillars */
.pillars {
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars__grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}
.pillar { display: flex; flex-direction: column; gap: var(--sp-3); }
.pillar__icon { color: var(--accent); }
.pillar h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; }
.pillar p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; }

@media (min-width: 640px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .pillars__grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-10); } }

/* Steps */
.steps__list {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
.step {
  padding: var(--sp-8);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.step__number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.step h3 { font-size: 1.1875rem; }
.step p { color: var(--text-muted); font-size: 0.9375rem; }

@media (min-width: 768px) { .steps__list { grid-template-columns: repeat(3, 1fr); } }

/* Fleet */
.category-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-8);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cat-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: var(--bg-hover);
}
.cat-card__icon {
  color: var(--accent);
  padding: var(--sp-3);
  width: 56px; height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--orange-050);
}
.cat-card__media {
  margin: calc(var(--sp-8) * -1) calc(var(--sp-8) * -1) 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 4px;
  transition: transform 0.5s var(--ease);
  transform: scale(1.25);
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.32);
}
.cat-card__body h3 { font-size: 1.25rem; margin-bottom: 4px; }
.cat-card__examples { color: var(--text-dim); font-size: 0.875rem; }
.cat-card__specs { display: flex; flex-direction: column; gap: var(--sp-2); }
.cat-card__specs li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-size: 0.875rem;
}
.cat-card__specs .icon { color: var(--accent); }
.cat-card__footer {
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.cat-card__price { display: flex; flex-direction: column; gap: 2px; }
.cat-card__price span { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.cat-card__price strong { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.cat-card__price em { font-style: normal; font-weight: 400; font-size: 0.875rem; color: var(--text-muted); }

.fleet__note {
  text-align: center;
  margin-top: var(--sp-10);
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.fleet__note a { color: var(--accent); font-weight: 500; }
.fleet__note a:hover { text-decoration: underline; }

@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }

/* Uber */
.uber-block {
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.uber-block__inner {
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}
.uber-block__content > * + * { margin-top: var(--sp-5); }
.uber-block__perks { display: grid; gap: var(--sp-3); margin-top: var(--sp-6); }
.uber-block__perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--text);
  font-size: 0.9375rem;
}
.uber-block__perks .icon { color: var(--accent); }

.stat-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  gap: var(--sp-6);
  box-shadow: 0 20px 50px -30px rgba(10, 18, 32, 0.25);
}
.stat { display: flex; flex-direction: column; gap: var(--sp-1); text-align: left; }
.stat__num {
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__label { font-size: 0.875rem; color: var(--text-muted); }
.stat__divider { border: 0; height: 1px; background: var(--line); margin: 0; }

@media (min-width: 900px) {
  .uber-block__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-16); }
}

/* Benefits */
.benefits__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
.benefits__grid li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--line);
}
.benefits__grid li:last-child { border-bottom: 1px solid var(--line); }
.benefits__grid .icon { color: var(--accent); margin-top: 2px; }
.benefits__grid strong { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 2px; }
.benefits__grid span,
.benefits__grid p { color: var(--text-muted); font-size: 0.9375rem; }

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--sp-10); }
  .benefits__grid li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid li:nth-last-child(3) { border-bottom: 1px solid var(--line); }
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
.testimonial {
  margin: 0;
  padding: var(--sp-8);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.testimonial p { font-size: 1rem; line-height: 1.6; color: var(--text); }
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.testimonial cite { font-style: normal; font-weight: 600; font-size: 0.9375rem; }
.testimonial span { color: var(--text-dim); font-size: 0.8125rem; }

@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

/* FAQ */
.faq__tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-8);
  gap: 2px;
}
.faq__tab {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq__tab.is-active { background: var(--accent); color: var(--text-invert); font-weight: 600; }

.faq__panel { display: none; }
.faq__panel.is-active { display: grid; gap: 0; max-width: 820px; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: var(--sp-5) 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 65ch;
}

/* Form */
.form-section {
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
}
.form-section .section__header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}
.form-section .section__sub { margin-left: auto; margin-right: auto; }
.rent-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: 0 30px 60px -30px rgba(10, 18, 32, 0.18);
}
.rent-form > div[id^="whatapp"],
.rent-form > div[id^="whatsapp"] {
  width: 100%;
}
.rent-form * {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .rent-form { padding: var(--sp-8); }
}
.rent-form__type { border: 0; padding: 0; margin: 0 0 var(--sp-6); }
.rent-form__type legend {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-3);
}
.rent-form__type-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
.type-card { position: relative; cursor: pointer; }
.type-card input { position: absolute; opacity: 0; inset: 0; }
.type-card__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg-raise);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.type-card__inner .icon { color: var(--accent); }
.type-card__inner strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.type-card__inner span { color: var(--text-muted); font-size: 0.8125rem; }
.type-card:hover .type-card__inner { border-color: var(--accent); }
.type-card input:checked + .type-card__inner {
  border-color: var(--accent);
  background: var(--orange-050);
}

@media (min-width: 640px) {
  .rent-form__type-grid { grid-template-columns: repeat(2, 1fr); }
}

.rent-form__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-6);
}
@media (min-width: 640px) { .rent-form__grid { grid-template-columns: repeat(2, 1fr); } }

.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--orange-100);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.rent-form__note {
  margin-top: var(--sp-4);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8125rem;
}

/* Footer */
.site-footer {
  padding: var(--sp-16) 0 var(--sp-6);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.site-footer__inner {
  display: grid;
  gap: var(--sp-10);
  grid-template-columns: 1fr;
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--line);
}
.site-footer__brand p { color: var(--text-muted); font-size: 0.9375rem; max-width: 36ch; margin-top: var(--sp-4); }
.site-footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--sp-4);
}
.site-footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer__col a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--dur) var(--ease);
}
.site-footer__col a:hover { color: var(--text); }
.site-footer__social { flex-direction: row !important; gap: var(--sp-3) !important; }
.site-footer__social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-full);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.site-footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.site-footer__bottom {
  padding-top: var(--sp-6);
  color: var(--text-dim);
  font-size: 0.8125rem;
}
.site-footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-12); }
  .site-footer__bottom .container { flex-direction: row; align-items: center; }
}

/* WhatsApp */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.04); }
.wa-float__icon {
  width: 28px; height: 28px;
  fill: currentColor;
  stroke: none;
}

/* ==========================================================================
   PREMIUM POLISH — depth, texture, micro-interactions
   ========================================================================== */

/* Decorative dot pattern — reusable */
.dots-pattern {
  background-image: radial-gradient(circle, rgba(10, 18, 32, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Alternating section tint + pattern */
.pillars {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-raise) 100%);
}
.steps {
  position: relative;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 122, 0, 0.06), transparent 40%),
    var(--bg);
}
.fleet {
  position: relative;
  background: var(--bg-raise);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fleet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 18, 32, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black 0%, transparent 30%, transparent 70%, black 100%);
  opacity: 0.5;
}
.fleet > .container { position: relative; }

.testimonials {
  background:
    radial-gradient(circle at 10% 100%, rgba(255, 122, 0, 0.05), transparent 40%),
    var(--bg);
}
.benefits { background: var(--bg); }

/* Pillars — icon badges with colored background */
.pillar { padding: var(--sp-2) 0; }
.pillar__icon {
  color: var(--accent);
  padding: 12px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.04));
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
}

/* Section title decorative underline */
.section__title { position: relative; }

/* Steps — stronger numbered badges */
.step {
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: transform var(--dur) var(--ease);
  pointer-events: none;
}
.step:hover::before { transform: translate(30%, -30%) scale(1.3); }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(255, 122, 0, 0.06));
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  margin-bottom: var(--sp-3);
}

/* Category cards — stronger hover with orange glow */
.cat-card {
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 0, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover {
  box-shadow: 0 30px 60px -30px rgba(255, 122, 0, 0.25);
}
.cat-card__icon {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.04));
  border: 1px solid rgba(255, 122, 0, 0.2);
}

/* Buttons — shine on hover */
.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, #FF8A1E 100%);
  box-shadow: 0 8px 20px -8px rgba(255, 122, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s var(--ease);
}
.btn--primary:hover::after { left: 100%; }
.btn--primary:hover {
  box-shadow: 0 12px 24px -6px rgba(255, 122, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn .icon {
  transition: transform var(--dur) var(--ease);
}
.btn:hover .icon {
  transform: translateX(3px);
}

/* Stat panel — decorative corner accent */
.stat-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-raise) 100%);
}
.stat-panel::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.stat-panel::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

/* Testimonials — quote mark */
.testimonial {
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: """;
  position: absolute;
  top: -30px; left: 18px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  font-weight: 700;
  pointer-events: none;
}
.testimonial:hover {
  border-color: rgba(255, 122, 0, 0.3);
  box-shadow: 0 20px 40px -20px rgba(10, 18, 32, 0.2);
}

/* Benefits — icon with colored badge */
.benefits__grid .icon {
  padding: 8px;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 122, 0, 0.04));
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: var(--r-sm);
  margin-top: 0;
  flex-shrink: 0;
}

/* FAQ — colored accent on open */
.faq__item[open] {
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.03), transparent);
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
  border-radius: var(--r-md);
  border-top-color: transparent;
}
.faq__item[open] + .faq__item { border-top-color: var(--line); }

/* Form card — decorative glow */
.rent-form {
  position: relative;
}
.rent-form::before {
  content: "";
  position: absolute;
  top: -40px; left: 50%;
  width: 60%; height: 100px;
  background: radial-gradient(ellipse, rgba(255, 122, 0, 0.15), transparent 70%);
  transform: translateX(-50%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

/* Scroll reveal animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.pillar,
.step,
.cat-card,
.testimonial,
.benefits__grid li {
  animation: fadeInUp 0.6s var(--ease) backwards;
}
.pillar:nth-child(1), .step:nth-child(1), .cat-card:nth-child(1),
.testimonial:nth-child(1), .benefits__grid li:nth-child(1) { animation-delay: 0.05s; }
.pillar:nth-child(2), .step:nth-child(2), .cat-card:nth-child(2),
.testimonial:nth-child(2), .benefits__grid li:nth-child(2) { animation-delay: 0.12s; }
.pillar:nth-child(3), .step:nth-child(3), .cat-card:nth-child(3),
.testimonial:nth-child(3), .benefits__grid li:nth-child(3) { animation-delay: 0.19s; }
.pillar:nth-child(4), .cat-card:nth-child(4),
.benefits__grid li:nth-child(4) { animation-delay: 0.26s; }
.benefits__grid li:nth-child(5) { animation-delay: 0.33s; }
.benefits__grid li:nth-child(6) { animation-delay: 0.40s; }

/* Hero content entrance */
.hero__content { animation: fadeInUp 0.8s var(--ease) backwards; }
.hero__content .eyebrow { animation: fadeInUp 0.6s var(--ease) 0.1s backwards; }
.hero__title { animation: fadeInUp 0.7s var(--ease) 0.2s backwards; }
.hero__sub { animation: fadeInUp 0.6s var(--ease) 0.35s backwards; }
.hero__ctas { animation: fadeInUp 0.5s var(--ease) 0.5s backwards; }
.hero__meta { animation: fadeInUp 0.5s var(--ease) 0.65s backwards; }

/* Whatsapp float pulse */
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}
.wa-float { animation: pulse 2.8s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
