:root {
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #eef2f7;
  --text: #101828;
  --text-soft: #667085;
  --text-faint: #98a2b3;
  --border: #e4e7ec;
  --border-strong: #d0d5dd;
  --primary: #0b1220;
  --primary-contrast: #ffffff;
  --accent: #c79a3b;
  --accent-light: #f2d99a;
  --success: #12b76a;
  --danger: #d92d20;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 12px 36px rgba(16, 24, 40, 0.09);
  --shadow-lg: 0 24px 64px rgba(16, 24, 40, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-h: 78px;
}

html[data-theme="dark"] {
  --bg: #070b12;
  --surface: #0e1521;
  --surface-soft: #111b2a;
  --surface-strong: #172232;
  --text: #f8fafc;
  --text-soft: #aab4c2;
  --text-faint: #748196;
  --border: #223044;
  --border-strong: #34445b;
  --primary: #f8fafc;
  --primary-contrast: #0b1220;
  --accent: #dfb85f;
  --accent-light: #7a612e;
  --success: #32d583;
  --danger: #f97066;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 26px 72px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  transition: background-color .25s ease, color .25s ease;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999; padding: 12px 16px; border-radius: 8px;
  background: var(--primary); color: var(--primary-contrast); transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--surface) 86%, transparent); backdrop-filter: blur(16px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px;
  background: linear-gradient(180deg, #131b28 0%, #0a111d 100%); color: var(--primary-contrast); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.brand-mark svg, .brand-mark img { width: 42px; height: 42px; display: block; object-fit: contain; }
.brand > span:last-child { display: grid; line-height: 1.2; }
.brand strong { font-size: 1.03rem; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: var(--text-soft); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { color: var(--text-soft); font-size: .92rem; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav .nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--primary); color: var(--primary-contrast); }
.theme-toggle {
  width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--border);
  border-radius: 50%; background: var(--surface-soft); color: var(--text); cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--border-strong); }
.theme-toggle svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.moon-icon { display: none; }
html[data-theme="dark"] .sun-icon { display: none; }
html[data-theme="dark"] .moon-icon { display: block; }
.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - var(--header-h)); display: grid; align-items: center;
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 30%),
    radial-gradient(circle at 85% 50%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 28%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28; pointer-events: none;
  background-image: linear-gradient(color-mix(in srgb, var(--border) 60%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--border) 60%, transparent) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; padding-block: 70px 84px;
}
.hero-copy h1 {
  max-width: 680px; margin: 16px 0 22px; font-size: clamp(3.25rem, 6.7vw, 6.6rem); line-height: .92; letter-spacing: -.065em; font-weight: 800;
}
.hero-copy h1 span { color: var(--accent); }
.hero-copy > p { max-width: 590px; margin: 0; color: var(--text-soft); font-size: clamp(1.05rem, 1.5vw, 1.22rem); }
.eyebrow { color: var(--accent); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 48px; display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  padding: 12px 19px; border: 1px solid transparent; border-radius: 12px; font-weight: 750; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button-primary { background: var(--primary); color: var(--primary-contrast); box-shadow: var(--shadow-sm); }
.button-primary:hover:not(:disabled) { box-shadow: var(--shadow-md); }
.button-secondary { border-color: var(--border); background: var(--surface); color: var(--text); }
.button-secondary:hover:not(:disabled) { border-color: var(--border-strong); }
.button-full { width: 100%; }
.trust-row { margin-top: 48px; display: flex; gap: 38px; }
.trust-row div { display: grid; gap: 2px; }
.trust-row strong { font-size: 1.04rem; }
.trust-row span { color: var(--text-soft); font-size: .8rem; }
.confidence-strip { border-block: 1px solid var(--border); background: var(--surface); }
.confidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.confidence-grid > div { position: relative; display: grid; gap: 3px; padding: 22px 28px 22px 50px; }
.confidence-grid > div + div { border-left: 1px solid var(--border); }
.confidence-grid > div::before { content: "✓"; position: absolute; left: 20px; top: 24px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); font-size: .75rem; font-weight: 900; }
.confidence-grid strong { font-size: .84rem; }
.confidence-grid span { color: var(--text-soft); font-size: .75rem; }
.hero-photo-card {
  margin: 0; overflow: hidden; border-radius: 32px; border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  background: linear-gradient(145deg, #111827 0%, #070b12 100%); box-shadow: 0 42px 90px rgba(2, 6, 23, .38);
}
.hero-photo-card img {
  width: 100%; display: block; aspect-ratio: 294 / 223; object-fit: cover; object-position: center;
}
.quote-section, .services-section, .hourly-section, .wedding-section, .fleet-section, .areas-section, .about-section, .payments-section, .how-section, .cta-section { scroll-margin-top: calc(var(--header-h) + 20px); }
.quote-section { padding: 112px 0; }
.section-heading { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-heading.left { max-width: 760px; margin-inline: 0; text-align: left; }
.section-heading h2 { margin: 10px 0 14px; font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--text-soft); font-size: 1.05rem; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(350px, .75fr); align-items: start; gap: 24px; }
.panel { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.quote-form { padding: 30px; }
.form-step + .form-step { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--border); }
.step-title { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.step-title > span {
  width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%;
  background: var(--surface-strong); color: var(--text); font-size: .84rem; font-weight: 800;
}
.step-title h3 { margin: 0; font-size: 1.12rem; }
.step-title p { margin: 4px 0 0; color: var(--text-soft); font-size: .87rem; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.compact-grid { margin-top: 18px; }
.field { display: grid; align-content: start; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field > span { color: var(--text); font-size: .84rem; font-weight: 700; }
.field > span small { color: var(--text-soft); font-size: .72rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; border: 1px solid var(--border); border-radius: 11px; outline: none;
  background: var(--surface-soft); color: var(--text); padding: 11px 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 75%, var(--border)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent); background: var(--surface);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 13px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); fill: none; stroke: var(--text-faint); stroke-width: 1.7; }
.input-with-icon input { padding-left: 42px; }
.field-error { min-height: 0; color: var(--danger); font-size: .74rem; }
.field-error:empty { display: none; }
.field-hint { color: var(--text-soft); font-size: .72rem; }
.vehicle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.vehicle-card {
  position: relative; min-height: 188px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 0 15px 15px; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-soft); cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.vehicle-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.vehicle-card input { position: absolute; opacity: 0; pointer-events: none; }
.vehicle-card:has(input:checked) {
  border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 11%, transparent);
}
.vehicle-check { position: absolute; top: 12px; right: 12px; width: 18px; height: 18px; border: 1px solid var(--border-strong); border-radius: 50%; background: var(--surface); }
.vehicle-card input:checked + .vehicle-check { border: 5px solid var(--accent); }
.vehicle-icon { width: 100%; margin-bottom: 10px; color: var(--text); }
.vehicle-icon svg { width: 100%; max-height: 48px; fill: currentColor; }
.vehicle-icon svg circle { fill: var(--surface); stroke: currentColor; stroke-width: 2; }
.vehicle-photo { width: calc(100% + 30px); height: 108px; display: block; margin: 0 -15px 13px; overflow: hidden; background: var(--surface-strong); }
.vehicle-photo::after { content: ""; position: absolute; inset: 0 0 auto; height: 108px; background: linear-gradient(to bottom, transparent 52%, color-mix(in srgb, var(--surface-soft) 86%, transparent)); pointer-events: none; }
.vehicle-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 62%; transition: transform .3s ease; }
.vehicle-card:hover .vehicle-photo img { transform: scale(1.045); }
.vehicle-card:has(input:checked) .vehicle-photo::after { background: linear-gradient(to bottom, transparent 52%, color-mix(in srgb, var(--surface) 82%, transparent)); }
.vehicle-card strong { font-size: .9rem; }
.vehicle-card small { margin-top: 3px; color: var(--text-soft); font-size: .7rem; }
.extras-grid { display: grid; gap: 10px; margin-bottom: 18px; }
.extra-option {
  display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 12px; padding: 14px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--surface-soft); cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.extra-option:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, var(--surface)); }
.extra-option input, .privacy-check input { position: absolute; opacity: 0; pointer-events: none; }
.custom-checkbox { position: relative; width: 19px; height: 19px; border: 1px solid var(--border-strong); border-radius: 5px; background: var(--surface); }
.extra-option input:checked + .custom-checkbox, .privacy-check input:checked + .custom-checkbox { border-color: var(--accent); background: var(--accent); }
.extra-option input:checked + .custom-checkbox::after, .privacy-check input:checked + .custom-checkbox::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 4px; height: 9px; border: solid #101828; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.extra-option > span:nth-of-type(2) { display: grid; }
.extra-option strong { font-size: .84rem; }
.extra-option small { color: var(--text-soft); font-size: .72rem; }
.extra-option b { color: var(--accent); font-size: .78rem; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--text-soft); font-size: .8rem; cursor: pointer; }
.privacy-check .custom-checkbox { flex: 0 0 auto; margin-top: 1px; }
.estimate-panel { overflow: hidden; }
.estimate-sticky { position: sticky; top: calc(var(--header-h) + 22px); padding: 26px; }
.estimate-header { display: flex; justify-content: space-between; gap: 16px; }
.estimate-header h3 { margin: 6px 0 0; font-size: 1.28rem; }
.quote-code {
  height: max-content; padding: 7px 9px; border-radius: 8px; background: var(--surface-strong); color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .68rem; font-weight: 700;
}
.estimate-route { display: grid; grid-template-columns: 20px 1fr; gap: 4px 12px; margin-top: 26px; padding: 18px; border-radius: 16px; background: var(--surface-soft); }
.estimate-route-line { grid-row: 1 / span 2; position: relative; }
.estimate-route-line i { position: absolute; left: 5px; top: 12px; bottom: -28px; width: 1px; background: var(--border-strong); }
.estimate-route-line span { position: absolute; left: 0; width: 11px; height: 11px; border: 2px solid var(--accent); border-radius: 50%; background: var(--surface-soft); }
.estimate-route-line span:first-child { top: 4px; }
.estimate-route-line span:last-child { bottom: -38px; border-radius: 3px; }
.estimate-route > div:not(.estimate-route-line) { display: grid; min-width: 0; }
.estimate-route > div:not(.estimate-route-line) + div { margin-top: 14px; }
.estimate-route small { color: var(--text-soft); font-size: .68rem; }
.estimate-route strong { overflow: hidden; font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.summary-list, .price-breakdown { display: grid; gap: 11px; margin-top: 22px; }
.summary-list > div, .price-breakdown > div { display: flex; justify-content: space-between; gap: 18px; font-size: .8rem; }
.summary-list span, .price-breakdown span { color: var(--text-soft); }
.summary-list strong, .price-breakdown strong { max-width: 58%; overflow: hidden; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.price-breakdown { padding-top: 20px; border-top: 1px solid var(--border); }
.estimate-total {
  margin-top: 22px; padding: 18px; border-radius: 16px; background: var(--primary); color: var(--primary-contrast);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
}
.estimate-total div { display: grid; }
.estimate-total small { opacity: .72; font-size: .7rem; }
.estimate-total strong { font-size: 2.1rem; line-height: 1.12; letter-spacing: -.05em; }
.estimate-total > span { padding-bottom: 4px; opacity: .72; font-size: .7rem; }
.estimate-note { margin: 14px 0 0; color: var(--text-soft); font-size: .7rem; }
.estimate-actions { margin-top: 20px; }
.booking-clarity { margin: 11px 2px 0; color: var(--text-soft); font-size: .7rem; line-height: 1.45; }
.booking-clarity strong { color: var(--text); }
.secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; color: var(--text-soft); font-size: .7rem; }
.secure-note svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.services-section { padding: 112px 0; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.service-card {
  padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: var(--surface-strong); color: var(--accent); }
.service-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 20px 0 8px; font-size: 1.02rem; }
.service-card p { margin: 0; color: var(--text-soft); font-size: .86rem; }
.hourly-section { padding: 112px 0; }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.experience-grid article { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.experience-grid article::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 9%, transparent); pointer-events: none; }
.experience-number { color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .14em; }
.experience-grid h3 { margin: 22px 0 10px; font-size: 1.5rem; }
.experience-grid p { margin: 0; color: var(--text-soft); font-size: .9rem; line-height: 1.65; }
.experience-grid ul { display: grid; gap: 8px; margin: 22px 0; padding: 0; list-style: none; color: var(--text-soft); font-size: .8rem; }
.experience-grid li::before { content: "✓"; margin-right: 9px; color: var(--accent); font-weight: 900; }
.text-link { position: relative; z-index: 1; color: var(--text); font-size: .82rem; font-weight: 800; }
.text-link:hover { color: var(--accent); }
.wedding-section { padding: 112px 0; background: var(--surface); }
.wedding-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); align-items: center; gap: 72px; }
.wedding-photo { overflow: hidden; min-height: 540px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.wedding-photo img { width: 100%; height: 100%; min-height: 540px; display: block; object-fit: cover; }
.wedding-copy h2 { margin: 10px 0 22px; font-size: clamp(2.4rem, 4.6vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.wedding-copy p { color: var(--text-soft); font-size: .94rem; line-height: 1.7; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.feature-pills span { padding: 8px 11px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface-soft); color: var(--text-soft); font-size: .72rem; font-weight: 700; }
.fleet-section { padding: 112px 0; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fleet-card { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.fleet-card.featured { border-color: color-mix(in srgb, var(--accent) 62%, var(--border)); box-shadow: var(--shadow-md); }
.popular-badge { position: absolute; top: 16px; right: 16px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: var(--accent); color: #101828; font-size: .67rem; font-weight: 800; }
.fleet-photo { min-height: 240px; overflow: hidden; background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--accent) 11%, transparent), transparent 46%), var(--surface-soft); }
.fleet-photo img { width: 100%; height: 100%; min-height: 240px; display: block; object-fit: cover; object-position: center; transition: transform .35s ease; }
.fleet-card:hover .fleet-photo img { transform: scale(1.03); }
.fleet-info { padding: 22px; }
.fleet-info > span { color: var(--accent); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.fleet-info h3 { margin: 6px 0 16px; font-size: 1.22rem; }
.fleet-features { display: flex; gap: 18px; color: var(--text-soft); font-size: .78rem; }
.areas-section { padding: 112px 0; }
.areas-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 72px; align-items: start; }
.areas-layout h2 { margin: 10px 0 18px; font-size: clamp(2.3rem, 4.3vw, 4.5rem); line-height: 1; letter-spacing: -.05em; }
.areas-layout > div:first-child p { margin: 0 0 28px; color: var(--text-soft); line-height: 1.7; }
.areas-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.areas-grid article { display: grid; gap: 7px; min-height: 135px; padding: 22px; border: 1px solid var(--border); border-radius: 15px; background: var(--surface); }
.areas-grid article::before { content: "●"; color: var(--accent); font-size: .63rem; }
.areas-grid strong { font-size: .96rem; }
.areas-grid span { color: var(--text-soft); font-size: .78rem; line-height: 1.5; }
.about-section { padding: 112px 0; background: var(--primary); color: var(--primary-contrast); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr); gap: 80px; align-items: center; }
.about-card h2 { margin: 10px 0 24px; font-size: clamp(2.4rem, 4.7vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.about-card p { max-width: 720px; color: color-mix(in srgb, var(--primary-contrast) 69%, transparent); line-height: 1.72; }
.driver-values { display: grid; gap: 12px; }
.driver-values article { display: grid; gap: 6px; padding: 22px; border: 1px solid color-mix(in srgb, var(--primary-contrast) 15%, transparent); border-radius: 15px; background: color-mix(in srgb, var(--primary-contrast) 5%, transparent); }
.driver-values strong { color: var(--primary-contrast); }
.driver-values span { color: color-mix(in srgb, var(--primary-contrast) 64%, transparent); font-size: .8rem; line-height: 1.55; }
.payments-section { padding: 80px 0; }
.payments-box { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr); align-items: center; gap: 60px; padding: 42px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.payments-box h2 { margin: 8px 0 10px; font-size: clamp(1.8rem, 3.3vw, 3rem); line-height: 1.04; letter-spacing: -.04em; }
.payments-box p { margin: 0; color: var(--text-soft); font-size: .86rem; line-height: 1.65; }
.payment-logos { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.payment-logo { min-width: 82px; height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 11px; border: 1px solid var(--border); border-radius: 9px; background: #fff; color: #111827; font-style: normal; line-height: .9; }
.payment-logo.visa { color: #142787; font-size: 1.15rem; font-style: italic; font-weight: 900; letter-spacing: -.06em; }
.payment-logo.mastercard { position: relative; width: 98px; padding-top: 20px; font-size: .52rem; }
.payment-logo.mastercard i { position: absolute; top: 7px; width: 22px; height: 22px; border-radius: 50%; background: #eb001b; }
.payment-logo.mastercard i:first-child { left: 30px; }
.payment-logo.mastercard i:nth-child(2) { left: 44px; background: #f79e1b; opacity: .9; }
.payment-logo.mastercard b { font-weight: 700; }
.payment-logo.amex { background: #2e77bc; color: #fff; font-size: .57rem; font-weight: 900; text-align: center; }
.payment-logo.gpay { font-size: .95rem; font-weight: 650; }
.payment-logo.gpay b { margin-right: 4px; color: #4285f4; font-size: 1.2rem; }
.payment-logo.applepay { font-size: 1rem; font-weight: 800; }
.how-section { padding: 112px 0; background: var(--primary); color: var(--primary-contrast); }
.how-section .section-heading p { color: color-mix(in srgb, var(--primary-contrast) 64%, transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps-grid article { padding: 28px; border: 1px solid color-mix(in srgb, var(--primary-contrast) 15%, transparent); border-radius: var(--radius-md); background: color-mix(in srgb, var(--primary-contrast) 5%, transparent); }
.steps-grid article > span { color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.steps-grid h3 { margin: 24px 0 8px; font-size: 1.08rem; }
.steps-grid p { margin: 0; color: color-mix(in srgb, var(--primary-contrast) 65%, transparent); font-size: .86rem; }
.faq-section { padding: 112px 0; background: var(--surface); scroll-margin-top: calc(var(--header-h) + 20px); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: start; gap: 80px; }
.faq-layout .section-heading { position: sticky; top: calc(var(--header-h) + 28px); margin-bottom: 0; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface-soft); }
.faq-list details[open] { border-color: var(--border-strong); background: var(--surface); }
.faq-list summary { position: relative; padding: 19px 52px 19px 20px; font-size: .9rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; color: var(--accent); font-size: 1.25rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 20px 20px; color: var(--text-soft); font-size: .82rem; line-height: 1.65; }
.cta-section { padding: 88px 0; }
.cta-box {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 48px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 35%), var(--surface); box-shadow: var(--shadow-md);
}
.cta-box h2 { max-width: 760px; margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -.045em; }
.site-footer { padding: 70px 0 24px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child > p { max-width: 330px; }
.footer-grid h3 { margin: 0 0 16px; font-size: .86rem; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 9px; color: var(--text-soft); font-size: .79rem; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: .72rem; }
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 2000; min-width: 260px; max-width: calc(100% - 32px);
  padding: 13px 16px; border-radius: 11px; background: var(--primary); color: var(--primary-contrast);
  box-shadow: var(--shadow-lg); font-size: .82rem; font-weight: 650; text-align: center; opacity: 0;
  transform: translate(-50%, 16px); pointer-events: none; transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.quote-dialog { width: min(560px, calc(100% - 32px)); padding: 0; border: 0; border-radius: 24px; background: transparent; color: var(--text); }
.quote-dialog::backdrop { background: rgba(2, 6, 23, .68); backdrop-filter: blur(4px); }
.dialog-card { position: relative; padding: 32px; border: 1px solid var(--border); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-lg); text-align: center; }
.dialog-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; background: var(--surface-soft); color: var(--text); font-size: 1.4rem; line-height: 1; cursor: pointer; }
.success-icon { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); }
.success-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.dialog-card h2 { margin: 8px 0; font-size: 1.8rem; letter-spacing: -.035em; }
.dialog-card > p { margin: 0; color: var(--text-soft); font-size: .9rem; }
.dialog-quote { margin-top: 22px; padding: 18px; border-radius: 15px; background: var(--surface-soft); text-align: left; }
.dialog-quote > div { display: flex; justify-content: space-between; gap: 18px; padding: 6px 0; font-size: .78rem; }
.dialog-quote span { color: var(--text-soft); }
.dialog-quote strong { text-align: right; }
.dialog-quote .dialog-total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--border); font-size: .96rem; }
.dialog-actions { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 10px; margin-top: 20px; }
.button-whatsapp { background: #25d366; color: #071f12; box-shadow: var(--shadow-sm); }
.button-whatsapp:hover { background: #20bd5b; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 1100; min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 10px 17px 10px 12px; border: 0; border-radius: 999px; background: #25d366; color: #062b16; box-shadow: 0 14px 36px rgba(0,0,0,.28); font-weight: 850; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,.34); }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .theme-toggle { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 780px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 10vw, 6.8rem); }
  .hero-photo-card { max-width: 820px; }
  .quote-layout { grid-template-columns: 1fr; }
  .estimate-sticky { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .wedding-grid, .areas-layout, .about-grid { gap: 42px; }
  .payments-box { grid-template-columns: 1fr; }
  .payment-logos { justify-content: flex-start; }
  .faq-layout { gap: 42px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 3; }
}
@media (max-width: 760px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 44px; height: 44px; border-radius: 13px; }
  .brand-mark svg, .brand-mark img { width: 36px; height: 36px; object-fit: contain; }
  .brand strong { font-size: .94rem; }
  .brand small { font-size: .61rem; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 56px 70px; }
  .hero-copy h1 { font-size: clamp(3.05rem, 16vw, 5rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 16px; justify-content: space-between; }
  .trust-row strong { font-size: .92rem; }
  .trust-row span { font-size: .68rem; }
  .confidence-grid { grid-template-columns: 1fr; padding-block: 4px; }
  .confidence-grid > div { padding-block: 15px; }
  .confidence-grid > div + div { border-left: 0; border-top: 1px solid var(--border); }
  .confidence-grid > div::before { top: 17px; }
  .quote-section, .services-section, .hourly-section, .wedding-section, .fleet-section, .areas-section, .about-section, .how-section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .quote-form, .estimate-sticky { padding: 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .fleet-grid, .steps-grid { grid-template-columns: 1fr; }
  .experience-grid, .wedding-grid, .areas-layout, .about-grid, .payments-box { grid-template-columns: 1fr; }
  .wedding-photo, .wedding-photo img { min-height: 400px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .payments-section { padding: 60px 0; }
  .payments-box { padding: 28px; gap: 30px; }
  .faq-section { padding: 82px 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-layout .section-heading { position: static; }
  .cta-section { padding: 70px 0; }
  .cta-box { align-items: flex-start; flex-direction: column; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  .brand small { display: none; }
  .hero-copy h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .trust-row { flex-wrap: wrap; }
  .vehicle-grid { grid-template-columns: 1fr; }
  .vehicle-card { min-height: 188px; }
  .vehicle-icon { width: 120px; }
  .extra-option { grid-template-columns: 20px 1fr; }
  .extra-option b { grid-column: 2; }
  .estimate-header, .estimate-total { align-items: flex-start; flex-direction: column; }
  .secondary-actions, .dialog-actions { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 10px; justify-content: center; }
  .whatsapp-float span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  body { background: #fff; color: #111; }
  .site-header, .hero, .confidence-strip, .section-heading, .quote-form, .services-section, .hourly-section, .wedding-section, .fleet-section, .areas-section, .about-section, .payments-section, .how-section, .faq-section, .cta-section, .site-footer, .estimate-actions, .secure-note, .whatsapp-float, .toast, .quote-dialog { display: none !important; }
  .quote-section { padding: 0; }
  .quote-layout { display: block; }
  .estimate-panel { border: 0; box-shadow: none; }
  .estimate-sticky { padding: 0; }
  .estimate-total { color: #fff; background: #111; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* RAPIDO S.R.L. branding, multilingual controls and photographic cards */
.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;
}

.brand-mark {
  width: 48px;
  height: 56px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 42px;
  height: 49px;
  object-fit: contain;
}

.brand strong {
  color: var(--text);
  font-size: 1.08rem;
  letter-spacing: .015em;
}

html[data-theme="dark"] .brand strong {
  color: #f8fafc;
}

.language-picker {
  position: relative;
  width: 154px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.language-picker:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.language-picker svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-picker select {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 20px 0 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--text);
  font-size: .78rem;
  font-weight: 750;
  cursor: pointer;
}

.language-picker::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.language-picker option {
  background: var(--surface);
  color: var(--text);
}

.hero-copy h1 .hero-title-main {
  color: var(--text);
}

.hero-copy h1 > span:last-child {
  color: var(--accent);
}

.hero-photo-card {
  position: relative;
  isolation: isolate;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 -90px 90px rgba(0,0,0,.12);
  pointer-events: none;
}

.hero-photo-card img {
  min-height: 420px;
}

.service-card {
  overflow: hidden;
  padding: 0 0 25px;
}

.service-image-wrap {
  position: relative;
  height: 176px;
  overflow: hidden;
  background: var(--surface-strong);
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(3, 7, 14, .36));
  pointer-events: none;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.045);
}

.service-card > .service-icon {
  position: relative;
  z-index: 2;
  margin: -23px 24px 0;
  border: 4px solid var(--surface-soft);
  box-shadow: var(--shadow-sm);
}

.service-card > h3 {
  margin: 18px 24px 8px;
}

.service-card > p {
  margin: 0 24px;
}

html[dir="rtl"] .language-picker::after {
  right: auto;
  left: 13px;
}

html[dir="rtl"] .language-picker select {
  padding: 0 0 0 20px;
}

html[dir="rtl"] .input-with-icon svg {
  left: auto;
  right: 13px;
}

html[dir="rtl"] .input-with-icon input {
  padding-left: 13px;
  padding-right: 42px;
}

html[dir="rtl"] .summary-list strong,
html[dir="rtl"] .price-breakdown strong,
html[dir="rtl"] .dialog-quote strong {
  text-align: left;
}

html[dir="rtl"] .estimate-route-line span,
html[dir="rtl"] .estimate-route-line i {
  left: auto;
  right: 0;
}

html[dir="rtl"] .estimate-route-line i {
  right: 5px;
}

@media (max-width: 1080px) {
  .language-picker {
    margin-left: auto;
  }

  .theme-toggle {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    width: 42px;
    height: 48px;
  }

  .brand-mark img {
    width: 37px;
    height: 44px;
  }

  .language-picker {
    width: 116px;
    padding-inline: 9px;
  }

  .language-picker select {
    font-size: .72rem;
  }

  .hero-photo-card img {
    min-height: 0;
  }

  .service-image-wrap {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .nav-wrap {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand strong {
    font-size: .82rem;
  }

  .language-picker {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .language-picker svg {
    width: 20px;
    height: 20px;
  }

  .language-picker select {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
  }

  .language-picker::after {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }
}
