@charset "UTF-8";

/* ROAD SOLUTIONS Rent a Car — standalone design system, v3.
   Independent from the main road-solutions site's CSS, but shares its
   orange accent for brand continuity across divisions. Adds a light/dark
   theme (toggle sets [data-theme] on <html>; see the inline script in each
   page <head> that applies the stored/preferred theme before first paint). */

:root {
  --rc-orange: #ff4d24;
  --rc-orange-deep: #d93b16;
  --rc-orange-soft: rgba(255, 77, 36, .12);
  --rc-ink: #15130f;
  --rc-ink-deep: #0c0b09;
  --rc-white: #ffffff;

  --rc-bg: #f7f6f2;
  --rc-surface: #ffffff;
  --rc-surface-2: #efede6;
  --rc-text: #15130f;
  --rc-muted: #6c6a63;
  --rc-line: #e4e1d8;
  --rc-shadow: rgba(21, 19, 15, .12);

  --rc-shell: min(1240px, calc(100vw - 64px));
  --rc-radius: 16px;
  --rc-radius-sm: 10px;
  --rc-notch: 12px;
  --rc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rc-display: "Plus Jakarta Sans", "Inter", "Segoe UI", Arial, sans-serif;
  --rc-sans: "Inter", "Segoe UI", Arial, sans-serif;
}

:root[data-theme="dark"] {
  --rc-bg: #131210;
  --rc-surface: #1c1a16;
  --rc-surface-2: #221f1a;
  --rc-text: #f4f2ec;
  --rc-muted: #a8a59c;
  --rc-line: rgba(244, 242, 236, .14);
  --rc-shadow: rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--rc-bg);
  color: var(--rc-text);
  font-family: var(--rc-sans);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  transition: background .25s var(--rc-ease), color .25s var(--rc-ease);
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.rc-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--rc-orange); outline-offset: 2px; }
::selection { background: var(--rc-orange); color: var(--rc-white); }

.rc-shell { margin-inline: auto; width: var(--rc-shell); }
.skip-link { background: var(--rc-ink); color: var(--rc-white); left: 12px; padding: 10px 16px; position: fixed; top: -100px; z-index: 999; }
.skip-link:focus { top: 12px; }

/* ---------- type & buttons ---------- */
.rc-eyebrow { align-items: center; color: var(--rc-orange-deep); display: flex; font-size: 12px; font-weight: 800; gap: 8px; letter-spacing: .08em; text-transform: uppercase; }
.rc-eyebrow::before { background: var(--rc-orange); border-radius: 999px; content: ""; height: 8px; width: 8px; }
.rc-eyebrow.on-dark { color: #ffb59f; }
.rc-eyebrow.on-dark::before { background: #ffb59f; }

.rc-h1 { font-family: var(--rc-display); font-size: clamp(38px, 5.2vw, 66px); font-weight: 800; letter-spacing: -.02em; line-height: 1.04; margin: 0; }
.rc-h1 span { color: var(--rc-orange); }
.rc-title { font-family: var(--rc-display); font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.015em; line-height: 1.1; margin: 0; }
.rc-title.on-dark { color: var(--rc-white); }
.rc-lead { color: var(--rc-muted); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; margin: 0; max-width: 560px; }
.rc-lead.on-dark { color: rgba(255, 255, 255, .72); }

.rc-btn { align-items: center; border: 1px solid transparent; clip-path: polygon(var(--rc-notch) 0, 100% 0, 100% calc(100% - var(--rc-notch)), calc(100% - var(--rc-notch)) 100%, 0 100%, 0 var(--rc-notch)); display: inline-flex; font-size: 14px; font-weight: 700; gap: 10px; padding: 14px 22px; text-decoration: none; transition: background .2s var(--rc-ease), color .2s, transform .2s var(--rc-ease); }
.rc-btn:hover { transform: translateY(-2px); }
.rc-btn svg { fill: none; height: 16px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 16px; }
.rc-btn.solid { background: var(--rc-text); color: var(--rc-bg); }
.rc-btn.solid:hover { background: var(--rc-orange); color: var(--rc-white); }
.rc-btn.accent { background: var(--rc-orange); color: var(--rc-white); }
.rc-btn.accent:hover { background: var(--rc-orange-deep); }
.rc-btn.ghost { background: var(--rc-surface); border-color: var(--rc-line); color: var(--rc-text); }
.rc-btn.ghost:hover { border-color: var(--rc-orange); color: var(--rc-orange-deep); }
.rc-btn.ghost.on-dark { background: transparent; border-color: rgba(255, 255, 255, .35); color: var(--rc-white); }
.rc-btn.ghost.on-dark:hover { border-color: var(--rc-white); }
.rc-btn.block { justify-content: center; width: 100%; }
.rc-text-link { align-items: center; color: var(--rc-orange-deep); display: inline-flex; font-size: 14px; font-weight: 700; gap: 8px; text-decoration: none; }
.rc-text-link svg { fill: none; height: 15px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform .2s var(--rc-ease); width: 15px; }
.rc-text-link:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.rc-header { background: var(--rc-surface); border-bottom: 1px solid var(--rc-line); left: 0; position: fixed; right: 0; top: 0; transition: background .25s var(--rc-ease), border-color .25s; z-index: 80; }
.rc-header-inner { align-items: center; display: flex; gap: 20px; justify-content: space-between; padding: 16px 0; }
.rc-brand { align-items: center; display: inline-flex; gap: 10px; text-decoration: none; }
.rc-brand-mark { height: 52px; object-fit: contain; width: auto; }
.rc-brand-mark-light { display: none; }
:root[data-theme="dark"] .rc-brand-mark-dark { display: none; }
:root[data-theme="dark"] .rc-brand-mark-light { display: block; }
.rc-nav { display: flex; gap: 26px; }
.rc-nav a { color: var(--rc-text); font-size: 14px; font-weight: 600; position: relative; text-decoration: none; }
.rc-nav a::after { background: var(--rc-orange); bottom: -20px; content: ""; height: 3px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .2s var(--rc-ease); width: 100%; }
.rc-nav a:hover::after, .rc-nav a[aria-current="page"]::after { transform: scaleX(1); }
.rc-header-actions { align-items: center; display: flex; gap: 16px; }
.rc-header-phone { align-items: center; color: var(--rc-text); display: inline-flex; font-size: 14px; font-weight: 700; gap: 8px; text-decoration: none; }
.rc-header-phone svg { fill: none; height: 16px; stroke: var(--rc-orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 16px; }
.rc-theme-toggle { align-items: center; background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: 999px; display: inline-flex; height: 36px; justify-content: center; padding: 0; width: 36px; }
.rc-theme-toggle svg { fill: none; height: 17px; stroke: var(--rc-text); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 17px; }
.rc-theme-toggle .rc-icon-moon { display: none; }
:root[data-theme="dark"] .rc-theme-toggle .rc-icon-sun { display: none; }
:root[data-theme="dark"] .rc-theme-toggle .rc-icon-moon { display: block; }
.rc-menu-toggle { align-items: center; background: transparent; border: 0; color: var(--rc-text); display: none; height: 38px; justify-content: center; padding: 0; width: 38px; }
.rc-menu-toggle svg { fill: none; height: 22px; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; width: 22px; }
.rc-menu-toggle svg:last-child { display: none; }
.rc-menu-toggle[aria-expanded="true"] svg:first-child { display: none; }
.rc-menu-toggle[aria-expanded="true"] svg:last-child { display: block; }
.rc-mobile-backdrop { background: rgba(8, 7, 5, .55); backdrop-filter: blur(3px); inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity .25s var(--rc-ease); z-index: 90; }
.rc-mobile-backdrop.is-open { opacity: 1; pointer-events: auto; }
.rc-mobile-panel { background: var(--rc-surface); box-shadow: -20px 0 50px var(--rc-shadow); display: flex; flex-direction: column; height: 100dvh; position: fixed; right: 0; top: 0; transform: translateX(100%); transition: transform .3s var(--rc-ease); width: min(340px, 85vw); z-index: 95; }
.rc-mobile-panel.is-open { transform: translateX(0); }
.rc-mobile-panel-head { align-items: center; border-bottom: 1px solid var(--rc-line); display: flex; justify-content: center; padding: 18px 20px; position: relative; }
.rc-mobile-panel-head .rc-picker-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.rc-mobile-panel-foot { border-top: 1px solid var(--rc-line); display: flex; flex-direction: column; gap: 14px; margin-top: auto; padding: 20px; }
.rc-mobile-panel-foot .rc-header-phone { display: inline-flex; justify-content: center; }

/* ---------- home hero ---------- */
.rc-hero { background: var(--rc-ink); color: var(--rc-white); overflow: hidden; padding: 156px 0 96px; position: relative; }
.rc-hero-road { inset: 0; opacity: .5; position: absolute; stroke: var(--rc-orange); }
.rc-hero-road svg { height: 100%; width: 100%; }
.rc-hero-grid { align-items: center; display: grid; gap: 40px; grid-template-columns: 1.15fr .85fr; position: relative; z-index: 1; }
.rc-hero-copy .rc-eyebrow { margin-bottom: 20px; }
.rc-hero-copy .rc-h1 { margin-bottom: 20px; }
.rc-hero-stat { border-left: 2px solid var(--rc-orange); display: flex; flex-direction: column; gap: 2px; justify-self: end; padding-left: 22px; }
.rc-hero-stat strong { font-family: var(--rc-display); font-size: 56px; line-height: 1; }
.rc-hero-stat span { color: rgba(255, 255, 255, .58); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.rc-search { background: var(--rc-surface); border-radius: var(--rc-radius); box-shadow: 0 30px 60px var(--rc-shadow); margin: 44px auto 0; max-width: 1080px; padding: 22px; position: relative; z-index: 2; }
.rc-search-grid { align-items: end; display: grid; gap: 16px; grid-template-columns: 1.1fr 1fr 1fr auto; }
.rc-search .field label { align-items: center; color: var(--rc-muted); display: flex; font-size: 11px; font-weight: 800; gap: 6px; letter-spacing: .08em; margin-bottom: 8px; text-transform: uppercase; }
.rc-search .field label svg { fill: none; height: 13px; stroke: var(--rc-orange); stroke-width: 2; width: 13px; }
.rc-search .field input { background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); color: var(--rc-text); padding: 13px 14px; width: 100%; }
.rc-search .field input:focus { border-color: var(--rc-orange); outline: none; }
.rc-search .rc-btn { padding: 14px 26px; white-space: nowrap; }
/* ---------- trust marquee ---------- */
.rc-marquee { background: var(--rc-surface-2); border-bottom: 1px solid var(--rc-line); overflow: hidden; padding: 16px 0; }
.rc-marquee-track { animation: rc-scroll 26s linear infinite; display: flex; gap: 48px; width: max-content; }
.rc-marquee-track span { align-items: center; color: var(--rc-text); display: inline-flex; font-family: var(--rc-display); font-size: 14px; font-weight: 700; gap: 12px; text-transform: uppercase; white-space: nowrap; }
.rc-marquee-track span::before { color: var(--rc-orange); content: "\2022"; font-size: 20px; }
@keyframes rc-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section head ---------- */
.rc-section-head { align-items: end; display: flex; gap: 40px; justify-content: space-between; margin-bottom: 44px; }
.rc-section-head .rc-eyebrow { margin-bottom: 14px; }
.rc-section-head p { color: var(--rc-muted); margin: 0; max-width: 380px; }
.rc-section-head p.on-dark { color: rgba(255, 255, 255, .64); }

/* ---------- fleet / vehicle cards ---------- */
.rc-fleet { padding: 96px 0; }
.rc-fleet-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.rc-vehicle-card { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: var(--rc-radius); overflow: hidden; text-decoration: none; transition: box-shadow .25s var(--rc-ease), border-color .25s; }
.rc-vehicle-card:hover { border-color: var(--rc-orange); box-shadow: 0 18px 36px var(--rc-shadow); }
.rc-vehicle-visual { align-items: center; aspect-ratio: 16 / 10; background: var(--rc-surface-2); display: flex; justify-content: center; position: relative; }
.rc-vehicle-visual svg { fill: none; stroke: var(--rc-text); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; width: 72%; }
.rc-vehicle-visual img { height: 100%; object-fit: cover; width: 100%; }
.rc-vehicle-tag { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: 999px; color: var(--rc-orange-deep); font-size: 10px; font-weight: 800; left: 14px; letter-spacing: .06em; padding: 5px 12px; position: absolute; text-transform: uppercase; top: 14px; }
.rc-vehicle-copy { padding: 22px; }
.rc-vehicle-copy h3 { font-family: var(--rc-display); font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.rc-vehicle-copy .rc-vehicle-variant { color: var(--rc-orange-deep); display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 10px; }
.rc-vehicle-specs { border-bottom: 1px solid var(--rc-line); border-top: 1px solid var(--rc-line); display: flex; gap: 16px; margin: 14px 0; padding: 12px 0; }
.rc-vehicle-specs span { align-items: center; color: var(--rc-muted); display: inline-flex; font-size: 12px; font-weight: 600; gap: 6px; }
.rc-vehicle-specs svg { fill: none; height: 14px; stroke: var(--rc-orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 14px; }
.rc-vehicle-copy p { color: var(--rc-muted); font-size: 13.5px; margin: 0 0 16px; }
.rc-vehicle-foot { align-items: center; display: flex; justify-content: space-between; }
.rc-vehicle-price { display: flex; flex-direction: column; }
.rc-vehicle-price span { color: var(--rc-muted); font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; }
.rc-vehicle-price strong { color: var(--rc-text); font-size: 15px; }
.rc-vehicle-card.placeholder .rc-vehicle-visual { border: 1px dashed var(--rc-line); }
.rc-fleet-action { margin-top: 40px; text-align: center; }
.rc-fleet-action p { color: var(--rc-muted); margin: 0 0 18px; }

.rc-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.rc-filter-bar button { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); color: var(--rc-muted); font-size: 13px; font-weight: 700; padding: 10px 16px; transition: background .2s, color .2s, border-color .2s; }
.rc-filter-bar button:hover { border-color: var(--rc-orange); color: var(--rc-orange-deep); }
.rc-filter-bar button.is-active { background: var(--rc-text); border-color: var(--rc-text); color: var(--rc-bg); }
.rc-vehicle-card.is-hidden { display: none; }

.rc-fleet-note { background: var(--rc-surface-2); border-radius: var(--rc-radius-sm); margin-top: 36px; padding: 20px 24px; }
.rc-fleet-note strong { display: block; font-size: 13px; margin-bottom: 6px; }
.rc-fleet-note p { color: var(--rc-muted); font-size: 13px; margin: 0; }

/* ---------- how it works ---------- */
.rc-flow { background: var(--rc-surface); border-top: 1px solid var(--rc-line); padding: 96px 0; }
.rc-flow-steps { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.rc-flow-step { background: var(--rc-surface-2); border-radius: var(--rc-radius); overflow: hidden; padding: 30px; position: relative; }
.rc-flow-step::before { color: var(--rc-line); content: attr(data-step); font-family: var(--rc-display); font-size: 96px; font-weight: 800; position: absolute; right: 12px; top: -6px; -webkit-text-stroke: 1px var(--rc-line); }
.rc-flow-step > * { position: relative; }
.rc-flow-step span { color: var(--rc-orange-deep); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.rc-flow-step h3 { font-family: var(--rc-display); font-size: 19px; margin: 34px 0 8px; }
.rc-flow-step p { color: var(--rc-muted); font-size: 13.5px; margin: 0; }

/* ---------- benefits (bento) ---------- */
.rc-benefits { padding: 96px 0; }
.rc-benefits-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
.rc-benefits-grid article { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: var(--rc-radius); display: flex; flex-direction: column; gap: 10px; justify-content: flex-end; padding: 24px; }
.rc-benefits-grid article:first-child { background: var(--rc-ink); border-color: var(--rc-ink); color: var(--rc-white); grid-column: span 2; grid-row: span 2; }
.rc-benefits-grid article:first-child p { color: rgba(255, 255, 255, .64); }
.rc-benefits-grid article:nth-child(4) { grid-column: span 2; }
.rc-benefits-grid h3 { font-size: 16px; margin: 0; }
.rc-benefits-grid p { color: var(--rc-muted); font-size: 13.5px; margin: 0; }

/* ---------- faq ---------- */
.rc-faq { background: var(--rc-surface); border-top: 1px solid var(--rc-line); padding: 96px 0; }
.rc-faq-grid { display: grid; gap: 60px; grid-template-columns: .55fr 1.45fr; }
.rc-faq-list { border-top: 1px solid var(--rc-line); }
.rc-faq-list details { border-bottom: 1px solid var(--rc-line); }
.rc-faq-list summary { cursor: pointer; font-weight: 700; list-style: none; padding: 20px 40px 20px 0; position: relative; }
.rc-faq-list summary::-webkit-details-marker { display: none; }
.rc-faq-list summary::after { align-items: center; color: var(--rc-orange); content: "+"; display: flex; font-size: 18px; height: 26px; justify-content: center; position: absolute; right: 0; top: 14px; width: 26px; }
.rc-faq-list details[open] summary::after { content: "\2212"; }
.rc-faq-list p { color: var(--rc-muted); font-size: 14px; margin: -6px 40px 20px 0; }

/* ---------- booking cta band ---------- */
.rc-cta { background: var(--rc-ink); border-radius: var(--rc-radius); color: var(--rc-white); margin: 0 auto 96px; overflow: hidden; padding: 56px; position: relative; }
.rc-cta::before { background: radial-gradient(50% 90% at 85% 0%, rgba(255, 77, 36, .3), transparent 70%); content: ""; inset: 0; position: absolute; }
.rc-cta-grid { align-items: center; display: grid; gap: 40px; grid-template-columns: 1.2fr .8fr; position: relative; z-index: 1; }
.rc-cta h2 { font-family: var(--rc-display); font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin: 0; }
.rc-cta p { color: rgba(255, 255, 255, .7); margin: 0 0 22px; }
.rc-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- footer ---------- */
.rc-footer { background: var(--rc-ink-deep); color: var(--rc-white); padding: 0 0 30px; }
.rc-footer-grid { border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 44px; grid-template-columns: 1.3fr .8fr .9fr; padding: 60px 0 50px; }
.rc-footer-brand { align-items: flex-start; display: flex; flex-direction: column; gap: 14px; }
.rc-footer-brand img { filter: brightness(0) invert(1); height: 28px; object-fit: contain; }
.rc-footer-brand p { color: rgba(255, 255, 255, .5); font-size: 13px; margin: 0; max-width: 260px; }
.rc-footer-col { display: flex; flex-direction: column; gap: 10px; }
.rc-footer-col > span { color: rgba(255, 255, 255, .42); font-size: 11px; font-weight: 800; letter-spacing: .08em; margin-bottom: 6px; text-transform: uppercase; }
.rc-footer-col a { color: rgba(255, 255, 255, .8); font-size: 14px; text-decoration: none; }
.rc-footer-col a:hover { color: var(--rc-orange); }
.rc-footer-bottom { align-items: center; color: rgba(255, 255, 255, .4); display: flex; font-size: 12px; justify-content: space-between; padding-top: 20px; }
.rc-footer-bottom strong { color: var(--rc-orange); font-weight: 800; }
.rc-footer-credit { color: rgba(255, 255, 255, .5); text-decoration: none; transition: color .2s; }
.rc-footer-credit:hover { color: rgba(255, 255, 255, .8); }

/* ---------- scroll to top ---------- */
.rc-to-top { align-items: center; background: var(--rc-ink); border: 0; border-radius: 999px; bottom: 24px; box-shadow: 0 12px 26px var(--rc-shadow); color: var(--rc-white); display: flex; height: 46px; justify-content: center; opacity: 0; pointer-events: none; position: fixed; right: 24px; transform: translateY(12px); transition: opacity .25s var(--rc-ease), transform .25s var(--rc-ease), background .2s; width: 46px; z-index: 70; }
.rc-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.rc-to-top:hover { background: var(--rc-orange); }
.rc-to-top svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 18px; }
.rc-float-cta { bottom: 24px; box-shadow: 0 12px 26px var(--rc-shadow); left: 24px; opacity: 0; pointer-events: none; position: fixed; transform: translateY(12px); transition: opacity .25s var(--rc-ease), transform .25s var(--rc-ease); z-index: 70; }
.rc-float-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }
body.menu-open .rc-float-cta, body.rc-modal-open .rc-float-cta { display: none; }

/* ---------- interior page hero ---------- */
.rc-page-hero { background: var(--rc-ink); color: var(--rc-white); padding: 148px 0 64px; }
.rc-page-hero-inner { align-items: end; display: flex; gap: 40px; justify-content: space-between; }
.rc-page-hero .rc-eyebrow { margin-bottom: 18px; }
.rc-page-hero p { color: rgba(255, 255, 255, .68); font-size: 16px; margin: 20px 0 0; max-width: 540px; }
.rc-page-hero-stat { border-left: 1px solid rgba(255, 255, 255, .22); padding-left: 24px; text-align: right; }
.rc-page-hero-stat strong { display: block; font-family: var(--rc-display); font-size: 36px; }
.rc-page-hero-stat span { color: rgba(255, 255, 255, .6); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- vehicle detail page ---------- */
.rc-detail { padding: 148px 0 96px; }
.rc-detail-back { margin-bottom: 26px; }
.rc-detail-grid { display: grid; gap: 60px; grid-template-columns: 1.05fr .95fr; }
.rc-detail-visual { align-items: center; align-self: start; aspect-ratio: 4 / 3; background: var(--rc-surface-2); border-radius: var(--rc-radius); display: flex; justify-content: center; overflow: hidden; position: sticky; top: 100px; }
.rc-detail-visual svg { fill: none; stroke: var(--rc-text); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; width: 74%; }
.rc-detail-visual img { height: 100%; object-fit: cover; width: 100%; }
.rc-detail-copy > span.rc-eyebrow { margin-bottom: 14px; }
.rc-detail-copy h1 { font-family: var(--rc-display); font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; line-height: 1.08; margin: 0 0 6px; }
.rc-detail-variant { color: var(--rc-orange-deep); display: block; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.rc-detail-copy p.rc-lead { margin-bottom: 26px; }
.rc-detail-facts { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-bottom: 26px; }
.rc-detail-fact { align-items: center; background: var(--rc-surface-2); border-radius: var(--rc-radius-sm); display: flex; gap: 12px; padding: 14px 16px; }
.rc-detail-fact-icon { align-items: center; background: var(--rc-surface); border-radius: 999px; display: flex; flex-shrink: 0; height: 36px; justify-content: center; width: 36px; }
.rc-detail-fact-icon svg { fill: none; height: 16px; stroke: var(--rc-orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 16px; }
.rc-detail-fact-body { display: flex; flex-direction: column; }
.rc-detail-fact-body span:first-child { color: var(--rc-muted); font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.rc-detail-fact-body span:last-child { font-size: 14px; font-weight: 800; }
.rc-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rc-detail-empty { padding: 148px 0 120px; text-align: center; }
.rc-detail-empty .rc-title { margin: 18px 0 26px; }

/* ---------- contact / booking form page ---------- */
.rc-contact { padding: 148px 0 96px; }
.rc-contact-grid { display: grid; gap: 60px; grid-template-columns: .8fr 1.2fr; }
.rc-contact-copy .rc-eyebrow { margin-bottom: 18px; }
.rc-contact-copy h1 { font-family: var(--rc-display); font-size: clamp(30px, 3.8vw, 44px); font-weight: 800; line-height: 1.08; margin: 0 0 20px; }
.rc-contact-copy > p { color: var(--rc-muted); font-size: 15.5px; margin: 0 0 30px; max-width: 420px; }
.rc-contact-list { border-top: 1px solid var(--rc-line); }
.rc-contact-item { align-items: center; border-bottom: 1px solid var(--rc-line); display: flex; gap: 14px; padding: 16px 0; text-decoration: none; }
.rc-contact-item svg { fill: none; height: 17px; stroke: var(--rc-orange); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 17px; }
.rc-contact-item span { font-size: 14px; font-weight: 600; }
.rc-contact-item:hover span { color: var(--rc-orange-deep); }

.rc-form-card { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: var(--rc-radius); padding: 40px; }
.rc-form-header { margin-bottom: 30px; }
.rc-form-header span { color: var(--rc-orange-deep); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.rc-form-header h2 { font-family: var(--rc-display); font-size: 26px; font-weight: 800; margin: 10px 0 0; }
.rc-form-header p { color: var(--rc-muted); font-size: 13px; margin: 12px 0 0; }
.rc-form-grid { display: grid; gap: 22px 18px; grid-template-columns: 1fr 1fr; }
.rc-field { display: flex; flex-direction: column; gap: 8px; }
.rc-field.full { grid-column: 1 / -1; }
.rc-field label { font-size: 12px; font-weight: 700; }
.rc-field input, .rc-field textarea, .rc-field select { background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); color: var(--rc-text); outline: none; padding: 12px 14px; width: 100%; }
.rc-field textarea { min-height: 104px; resize: vertical; }
.rc-field input:focus, .rc-field textarea:focus, .rc-field select:focus { border-color: var(--rc-orange); }
.rc-field small { color: var(--rc-muted); font-size: 11px; }
.rc-form-note { color: var(--rc-muted); font-size: 11.5px; grid-column: 1 / -1; margin: 0; }
.rc-form-card button { margin-top: 4px; }

.rc-notice { background: var(--rc-orange-soft); border-left: 3px solid var(--rc-orange); border-radius: var(--rc-radius-sm); margin-top: 26px; padding: 18px 22px; }
.rc-notice strong { display: block; font-size: 12.5px; margin-bottom: 6px; }
.rc-notice p { color: var(--rc-muted); font-size: 13px; margin: 0; }

/* ---------- vehicle picker modal ---------- */
.rc-vehicle-picker-trigger { align-items: center; background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); color: var(--rc-text); display: flex; justify-content: space-between; padding: 12px 14px; text-align: left; transition: border-color .2s; width: 100%; }
.rc-vehicle-picker-trigger:hover { border-color: var(--rc-orange); }
.rc-vehicle-picker-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-vehicle-picker-trigger svg { fill: none; flex-shrink: 0; height: 16px; margin-left: 10px; stroke: var(--rc-muted); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 16px; }

.rc-picker-backdrop { align-items: center; background: rgba(8, 7, 5, .6); backdrop-filter: blur(4px); display: none; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 100; }
.rc-picker-backdrop.is-open { display: flex; }
.rc-picker-modal { background: var(--rc-surface); border-radius: var(--rc-radius); display: flex; flex-direction: column; max-height: min(720px, 86vh); max-width: 760px; width: 100%; }
.rc-picker-header { align-items: center; border-bottom: 1px solid var(--rc-line); display: flex; gap: 20px; justify-content: space-between; padding: 22px 26px; }
.rc-picker-header h2 { font-family: var(--rc-display); font-size: 20px; margin: 0; }
.rc-picker-header p { color: var(--rc-muted); font-size: 12.5px; margin: 4px 0 0; }
.rc-picker-close { align-items: center; background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: 999px; display: flex; flex-shrink: 0; height: 36px; justify-content: center; width: 36px; }
.rc-picker-close svg { fill: none; height: 16px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 16px; }
.rc-picker-body { overflow-y: auto; padding: 22px 26px 26px; }
.rc-picker-agree { align-items: center; background: var(--rc-surface-2); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); display: flex; margin-bottom: 18px; padding: 16px; text-align: left; transition: border-color .2s; width: 100%; }
.rc-picker-agree:hover, .rc-picker-agree.is-active { border-color: var(--rc-orange); }
.rc-picker-agree strong { display: block; font-size: 14px; }
.rc-picker-agree small { color: var(--rc-muted); font-size: 12px; }
.rc-picker-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.rc-picker-option { background: var(--rc-surface); border: 1px solid var(--rc-line); border-radius: var(--rc-radius-sm); display: flex; gap: 12px; padding: 12px; text-align: left; transition: border-color .2s, box-shadow .2s; }
.rc-picker-option:hover { border-color: var(--rc-orange); }
.rc-picker-option.is-active { border-color: var(--rc-orange); box-shadow: 0 0 0 1px var(--rc-orange); }
.rc-picker-option-visual { align-items: center; background: var(--rc-surface-2); border-radius: 8px; display: flex; flex-shrink: 0; height: 64px; justify-content: center; overflow: hidden; width: 84px; }
.rc-picker-option-visual svg { fill: none; stroke: var(--rc-text); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; width: 80%; }
.rc-picker-option-visual img { height: 100%; object-fit: cover; width: 100%; }
.rc-picker-option-body strong { display: block; font-size: 14px; }
.rc-picker-option-body .rc-picker-variant { color: var(--rc-orange-deep); display: block; font-size: 11.5px; font-weight: 700; }
.rc-picker-option-body small { color: var(--rc-muted); font-size: 12px; }

/* ---------- thank you ---------- */
.rc-thanks { padding: 176px 0 140px; text-align: center; }
.rc-thanks .rc-eyebrow { justify-content: center; margin-bottom: 20px; }
.rc-thanks h1 { font-family: var(--rc-display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin: 0 auto 18px; max-width: 700px; }
.rc-thanks p { color: var(--rc-muted); font-size: 16px; margin: 0 auto 32px; max-width: 480px; }
.rc-thanks .rc-btn { justify-content: center; }

/* ---------- reveal ---------- */
.rc-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--rc-ease) var(--rc-delay, 0ms), transform .6s var(--rc-ease) var(--rc-delay, 0ms); }
.rc-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  :root { --rc-shell: min(100% - 48px, 1240px); }
  .rc-hero-grid { grid-template-columns: 1fr; text-align: left; }
  .rc-hero-stat { border-left: 0; border-top: 2px solid var(--rc-orange); justify-self: start; padding-left: 0; padding-top: 14px; }
  .rc-search-grid { grid-template-columns: 1fr 1fr; }
  .rc-search .rc-btn { grid-column: 1 / -1; }
  .rc-fleet-grid, .rc-flow-steps { grid-template-columns: repeat(2, 1fr); }
  .rc-benefits-grid { grid-auto-rows: 170px; grid-template-columns: repeat(2, 1fr); }
  .rc-benefits-grid article:first-child, .rc-benefits-grid article:nth-child(4) { grid-column: span 2; }
  .rc-faq-grid, .rc-detail-grid, .rc-contact-grid { gap: 44px; grid-template-columns: 1fr; }
  .rc-detail-visual { position: static; }
  .rc-footer-grid { grid-template-columns: 1fr 1fr; }
  .rc-cta { padding: 42px; }
  .rc-cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --rc-shell: calc(100vw - 36px); }
  .rc-nav { display: none; }
  .rc-header-phone { display: none; }
  .rc-header-actions > .rc-btn.accent { display: none; }
  .rc-menu-toggle { display: inline-flex; }
  .rc-mobile-panel nav { display: flex; flex-direction: column; overflow-y: auto; padding: 8px 20px 20px; }
  .rc-mobile-panel nav a { border-bottom: 1px solid var(--rc-line); font-size: 18px; padding: 16px 0; text-decoration: none; }
  .rc-hero { padding-top: 116px; }
  .rc-search { padding: 18px; }
  .rc-search-grid { grid-template-columns: 1fr; }
  .rc-marquee-track { animation-duration: 18s; }
  .rc-fleet, .rc-flow, .rc-benefits, .rc-faq { padding: 64px 0; }
  .rc-flow-steps, .rc-fleet-grid { grid-template-columns: 1fr; }
  .rc-benefits-grid { grid-auto-rows: auto; grid-template-columns: 1fr; }
  .rc-benefits-grid article:first-child, .rc-benefits-grid article:nth-child(4) { grid-column: span 1; }
  .rc-benefits-grid article:first-child { grid-row: span 1; }
  .rc-cta { margin-bottom: 64px; }
  .rc-page-hero, .rc-detail, .rc-contact { padding-top: 116px; }
  .rc-page-hero-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .rc-page-hero-stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .22); padding-left: 0; padding-top: 14px; text-align: left; }
  .rc-footer-grid { grid-template-columns: 1fr; padding: 44px 0 36px; }
  .rc-footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .rc-form-card { padding: 26px 20px; }
  .rc-form-grid { grid-template-columns: 1fr; }
  .rc-section-head { align-items: flex-start; flex-direction: column; }
  .rc-to-top { bottom: 16px; height: 42px; right: 16px; width: 42px; }
  .rc-float-cta { bottom: 16px; font-size: 13px; left: 16px; padding: 12px 18px; }
  .rc-picker-grid { grid-template-columns: 1fr; }
  .rc-picker-header, .rc-picker-body { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
  .rc-reveal { opacity: 1; transform: none; }
}
