/* ==========================================================================
   Sixt Travel — Premium Chauffeur Design System
   Orange (#ff5f00) • Black • White • Outfit + Instrument Serif
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --bg:            #ffffff;
  --bg-alt:        #f6f6f6;
  --bg-deep:       #0a0a0a;
  --surface:       #ffffff;
  --surface-warm:  #fafafa;

  /* Ink */
  --ink:           #111111;
  --ink-soft:      #3d3d3d;
  --ink-muted:     #777777;
  --ink-faint:     #b5b5b5;

  /* Primary accent — Sixt orange */
  --brass:         #ff5f00;
  --brass-hover:   #e05400;
  --brass-soft:    #ffe0cc;
  --brass-faint:   #fff5ed;

  /* Secondary accent — monochrome black (replaces green) */
  --green:         #111111;
  --green-hover:   #000000;
  --green-soft:    #ebebeb;
  --green-faint:   #f4f4f4;

  /* Lines */
  --line:          #e5e5e5;
  --line-soft:     #f0f0f0;

  /* State */
  --success:       #2F7A55;
  --warn:          #C9771F;

  /* Type */
  --font-sans:   'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:  'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container:  1200px;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;

  /* Shadow */
  --shadow-sm:  0 1px 2px rgba(10, 10, 10, 0.05), 0 1px 1px rgba(10, 10, 10, 0.03);
  --shadow:     0 6px 20px -6px rgba(10, 10, 10, 0.10), 0 2px 6px -2px rgba(10, 10, 10, 0.05);
  --shadow-lg:  0 24px 48px -16px rgba(10, 10, 10, 0.18), 0 8px 16px -8px rgba(10, 10, 10, 0.08);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
*::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.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
svg { display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 2.875rem);   /* 32 → 46 */
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);     /* 24 → 32 */
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: 1.125rem;                       /* 18 */
  font-weight: 500;
  letter-spacing: -0.005em;
}

p { margin: 0; }

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0;
}

h1 em, h2 em {
  font-size: 1.05em;
  line-height: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 6px 12px;
  border: 1px solid var(--brass-soft);
  border-radius: 999px;
  background: var(--brass-faint);
  margin-bottom: 20px;
}

.eyebrow.dark {
  color: var(--ink-soft);
  border-color: var(--line);
  background: transparent;
}

.eyebrow.light {
  color: var(--brass);
  border-color: rgba(255, 95, 0, 0.4);
  background: rgba(255, 95, 0, 0.12);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

.section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-soft {
  background: var(--bg-alt);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 58ch;
}

.section-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: 100%;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-small { padding: 10px 18px; font-size: 0.875rem; }

.btn-brass {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-brass:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.btn-dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--brass); border-color: var(--brass); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--bg); }

.btn-light {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.btn-light:hover { background: var(--brass); color: #fff; border-color: var(--brass); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.full-width { width: 100%; }

/* ---------- Toggle (one-way / hourly) ---------- */
.toggle-group {
  display: inline-flex;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 20px;
}
.toggle-btn {
  border: 0;
  background: transparent;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
}
.toggle-btn:hover { color: var(--ink); }
.toggle-btn.is-active {
  background: var(--ink);
  color: #fff;
}
.toggle-btn svg { width: 14px; height: 14px; }

.field-hourly { display: none; }
.quote-card[data-mode="hourly"] .field-oneway { display: none; }
.quote-card[data-mode="hourly"] .field-hourly { display: block; }


/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--brass);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.promo-bar em {
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  margin-right: 4px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 58%, var(--brass) 58%);
  opacity: 1;
}

.brand-mark span { position: relative; z-index: 1; }

.brand-name {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

/* mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top:  6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 80px) 0 clamp(56px, 9vw, 96px);
  overflow: hidden;
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.75) 42%, rgba(10, 10, 10, 0.35) 65%, rgba(10, 10, 10, 0.18) 100%),
    url('https://images.unsplash.com/photo-1554744512-d6c603f27c54?q=80&w=2400&auto=format&fit=crop');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -12%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.hero h1 { color: #fff; }
.hero h1 em { color: var(--brass); }

.benefits {
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}
.hero .benefit {
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  margin: 24px 0 32px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.benefit::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff5f00' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M13 4L6 11 3 8'/></svg>");
  background-repeat: no-repeat;
}

/* ---------- Quote card ---------- */
.hero .quote-card {
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45), 0 10px 24px -8px rgba(0, 0, 0, 0.25);
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-card h2 {
  font-size: 1.375rem;
  margin-bottom: 6px;
}

.quote-card > p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 22px;
}

#quoteForm { display: grid; gap: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--surface-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}

.form-group textarea { resize: vertical; min-height: 88px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(168, 127, 71, 0.12);
}

/* input with leading icon */
.input-with-icon { position: relative; }
.input-with-icon input { padding-left: 40px; padding-right: 40px; }

.input-leading-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(calc(-50% + 10px)); /* label offset */
  width: 16px; height: 16px;
  color: var(--ink-muted);
  pointer-events: none;
}

.input-leading-icon svg { width: 16px; height: 16px; }

.input-action {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(calc(-50% + 10px));
  width: 30px; height: 30px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: all 0.2s;
  padding: 0;
}
.input-action:hover { border-color: var(--brass); color: var(--brass); background: var(--brass-soft); }
.input-action svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Places autocomplete dropdown */
.places-dropdown {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 260px;
  overflow-y: auto;
  z-index: 40;
  display: none;
}
.places-dropdown.is-open { display: block; }

.places-item {
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s;
  line-height: 1.4;
}
.places-item:last-child { border-bottom: 0; }
.places-item:hover,
.places-item.is-active { background: var(--brass-soft); }

.places-item--empty { color: var(--ink-muted); cursor: default; font-style: italic; }
.places-item--empty:hover { background: transparent; }

.places-item--locate {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-weight: 500;
}

.places-item mark {
  background: transparent;
  color: var(--brass);
  font-weight: 500;
}

.notice {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-left: 2px solid var(--brass);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.form-status {
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  line-height: 1.5;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background: rgba(47, 122, 85, 0.08);
  color: var(--success);
  border: 1px solid rgba(47, 122, 85, 0.2);
}
.form-status.is-warning {
  background: rgba(167, 91, 31, 0.08);
  color: var(--warn);
  border: 1px solid rgba(167, 91, 31, 0.2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* ---------- Marquee / services overview ---------- */
.seo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.seo-feature { padding: 32px; }

.seo-feature h3 {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.seo-feature ul li {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  border-bottom: 1px dashed var(--line-soft);
  display: flex;
  gap: 8px;
}

.seo-feature ul li:last-child { border-bottom: 0; }

.seo-feature ul li::before {
  content: '—';
  color: var(--brass);
  flex-shrink: 0;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.seo-links a {
  font-size: 0.8125rem;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all 0.2s;
  background: var(--surface-warm);
}

.seo-links a:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: var(--brass-soft);
}

/* ---------- Trust strip ---------- */
.trust-strip { padding: 28px 0; background: var(--bg-deep); color: #fff; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.trust-card {
  padding: 14px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-card:last-child { border-right: 0; }

.trust-card--featured { background: rgba(255, 95, 0, 0.12); border-radius: 10px; border-right-color: transparent; }

.trust-brand {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}

.trust-rating {
  font-size: 0.9375rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  margin: 2px 0;
}

.trust-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---------- Services overview (3-column intro) ---------- */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-overview-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.services-overview-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.services-overview-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--brass-faint);
  color: var(--brass);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.services-overview-icon svg {
  width: 26px; height: 26px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.services-overview-card h3 {
  font-size: 1.125rem;
  margin: 0;
}

.services-overview-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Services grid ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brass-soft);
  color: var(--brass);
  display: grid; place-items: center;
}

.service-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.service-card h3 { margin-top: 4px; }

.service-card p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; }

.pill {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: 0.02em;
}

/* ---------- Cities grid ---------- */
.city-card {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.city-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.city-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.city-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.95) contrast(1.02);
}

.city-card:hover .city-card-media img { transform: scale(1.04); }

.city-card-body { padding: 22px 24px 24px; }

.city-card-body h3 {
  margin-bottom: 6px;
  font-size: 1.1875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-card-body h3::after {
  content: '→';
  margin-left: auto;
  color: var(--brass);
  font-weight: 400;
  transition: transform 0.25s;
}

.city-card:hover .city-card-body h3::after { transform: translateX(4px); }

.city-card-body p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-step {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--brass);
  margin-bottom: 10px;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23ff5f00' stroke-width='1.5' stroke-linecap='round'><path d='M3 7h8M7 3v8'/></svg>");
  background-repeat: no-repeat;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23ff5f00' stroke-width='1.5' stroke-linecap='round'><path d='M3 7h8'/></svg>");
}

.faq-item summary:hover { color: var(--brass); }

.faq-item p {
  padding: 0 40px 22px 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 70ch;
}

/* ---------- Reviews ---------- */
#reviews {
  overflow: hidden;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-score {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--brass);
  line-height: 1;
}

.reviews-score span {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-left: 4px;
}

.reviews-summary strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.reviews-summary small {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-family: var(--font-serif);
  font-style: italic;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.reviews-counter {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-family: var(--font-serif);
  font-style: italic;
  margin-right: auto;
}

.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 1.25rem;
  line-height: 1;
  display: grid; place-items: center;
  transition: all 0.2s;
}

.slider-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.reviews-carousel,
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-carousel::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(360px, calc(100vw - 56px));
  scroll-snap-align: start;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card-compact { flex: 0 0 320px; padding: 24px; }

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px; height: 14px;
  fill: var(--brass);
}

.review-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}

.review-author small {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-muted);
  font-weight: 400;
  margin-top: 2px;
  font-size: 0.8125rem;
}

/* ---------- Security ---------- */
.security-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.security-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brass-faint);
  color: var(--brass);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.security-icon svg {
  width: 20px; height: 20px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.security-card h3 { font-size: 1rem; }

.security-card p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Contact ---------- */
.contact-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  padding: clamp(40px, 6vw, 64px);
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 0, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.contact-box > div { position: relative; z-index: 1; }

.contact-box h2 { color: #fff; }
.contact-box h2 em { color: var(--brass); font-family: var(--font-serif); font-style: italic; }

.contact-box > div > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 14px 0 24px;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 46ch;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-list > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.contact-list a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-list a:hover { color: var(--brass); }

.contact-list span {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.footer-tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 20px;
}

.footer-company {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.footer-company strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.site-footer ul { display: flex; flex-direction: column; gap: 10px; }

.site-footer ul a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}

.site-footer ul a:hover { color: var(--brass); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9375rem;
}

.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--brass); }

.copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright em {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-serif);
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 60;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- City page specific ---------- */
.city-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.city-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 20, 18, 0.3) 0%, rgba(22, 20, 18, 0.85) 100%);
}

.city-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 56px;
  color: #fff;
  max-width: 760px;
}

.city-hero-inner h1 {
  color: #fff;
  margin: 8px 0 18px;
}
.city-hero-inner h1 em { color: var(--brass); }

.city-hero-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 28px;
}

.city-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  padding: 24px 0;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--ink-soft); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--brass); }
.breadcrumbs span { color: var(--ink-faint); }

.city-layout { padding-bottom: 80px; }

.city-grid-two {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}

.content-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.content-card h2 + p,
.content-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

.city-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.city-section h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.route-list, .benefit-list {
  display: grid;
  gap: 10px;
}

.route-list li, .benefit-list li {
  padding: 10px 14px;
  background: var(--surface-warm);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.benefit-list li::before {
  content: '✓';
  color: var(--brass);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.mini-links a {
  font-size: 0.8125rem;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all 0.2s;
}

.mini-links a:hover { border-color: var(--brass); color: var(--brass); background: var(--brass-soft); }

/* ---------- Policy pages ---------- */
.policy-wrap { padding: 56px 0 80px; max-width: 860px; }

.policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

.policy-card h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 12px;
}

.policy-card h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.policy-card h2:first-of-type { border-top: 0; padding-top: 0; }

.policy-card h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 6px;
}

.policy-card p, .policy-card li {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-card ul {
  padding-left: 20px;
  margin: 8px 0 14px;
  list-style: disc;
}

.policy-card ul li { margin-bottom: 6px; }

.policy-card strong { color: var(--ink); font-weight: 500; }

.policy-card a { color: var(--brass); border-bottom: 1px solid var(--brass-soft); }
.policy-card a:hover { border-bottom-color: var(--brass); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-muted); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote-card { max-width: 580px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .services-overview-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trust-card { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 14px; }
  .trust-card:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-box { grid-template-columns: 1fr; gap: 32px; }
  .contact-list { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
  .city-grid-two { grid-template-columns: 1fr; }
  .seo-intro-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 720px) {
  h1 { font-size: 1.875rem; }       /* 30 */
  h2 { font-size: 1.375rem; }       /* 22 */

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 20px clamp(20px, 5vw, 40px);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-header .btn { display: none; }

  .hero { padding: 40px 0 48px; }
  .hero::before { width: 300px; height: 300px; top: -10%; right: -20%; }

  .benefits { grid-template-columns: 1fr; gap: 10px 0; padding-top: 20px; }

  .form-row { grid-template-columns: 1fr; gap: 12px; }

  .grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .section-head-flex { flex-direction: column; align-items: flex-start; gap: 24px; }

  .reviews-toolbar { justify-content: space-between; gap: 8px; }
  .reviews-counter { font-size: 0.75rem; }
  .review-card { flex: 0 0 85%; }
  .review-card-compact { flex: 0 0 82%; }

  .city-hero { min-height: 340px; }
  .city-hero-inner { padding: 60px 0 40px; }

  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 26px; height: 26px; }

  .nav-wrap { padding-top: 14px; padding-bottom: 14px; }
  .brand-subtitle { display: none; }

  .eyebrow { font-size: 0.625rem; padding: 5px 10px; }

  .copyright { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .brand-mark { width: 34px; height: 34px; font-size: 0.8125rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .city-cta { flex-direction: column; }
  .city-cta .btn { width: 100%; }
}

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

/* ==========================================================================
   FLEET CATEGORIES — Professional layout
   ========================================================================== */
.fleet-section {
  position: relative;
}

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

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fleet-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(10, 10, 10, 0.14), 0 6px 12px -6px rgba(10, 10, 10, 0.06);
}

.fleet-card--featured {
  border-color: var(--brass);
  box-shadow: 0 14px 32px -14px rgba(255, 95, 0, 0.18), 0 4px 10px -4px rgba(10, 10, 10, 0.05);
}
.fleet-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brass);
  pointer-events: none;
  opacity: 0.55;
}

/* --- Top: heading + badge + description --- */
.fleet-card-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fleet-name h3 {
  margin: 0;
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  white-space: nowrap;
}
.fleet-badge--accent {
  background: var(--brass-faint);
  border-color: var(--brass-soft);
  color: var(--brass-hover);
}
.fleet-badge--premium {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.fleet-badge--neutral {
  background: #f4f4f4;
  border-color: #e9e9e9;
  color: var(--ink-soft);
}

.fleet-card-top p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* --- Image area --- */
.fleet-image {
  background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.fleet-image::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 14%;
  right: 14%;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.08);
  filter: blur(6px);
  pointer-events: none;
}
.fleet-image img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

/* --- Spec row (passengers + bags) --- */
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.fleet-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fleet-spec-item strong {
  color: var(--ink);
  font-weight: 600;
}
.fleet-spec-item svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
  flex-shrink: 0;
}
.fleet-spec-divider {
  width: 1px;
  height: 16px;
  background: var(--line);
}

/* --- Tagline pill --- */
.fleet-tagline {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  padding: 8px 14px;
  background: var(--brass-faint);
  border: 1px solid var(--brass-soft);
  border-radius: 999px;
  text-align: center;
  font-weight: 500;
}

/* --- Foot --- */
.fleet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.fleet-foot-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .fleet-image { height: 150px; }
}
@media (max-width: 720px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .fleet-card { padding: 24px 22px 20px; }
  .fleet-image { height: 160px; }
  .fleet-spec { font-size: 0.8125rem; padding: 10px 12px; }
  .fleet-name h3 { font-size: 1.1875rem; }
}

/* ==========================================================================
   BEST-VALUE PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.pricing-text h2 { margin: 16px 0 24px; }
.pricing-text > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 56ch;
}
.pricing-text > p strong { color: var(--ink); font-weight: 600; }

.pricing-pills {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-pills li {
  display: inline-block;
  background: var(--brass-faint);
  border: 1px solid var(--brass-soft);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  width: fit-content;
  max-width: 100%;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card {
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card h3 {
  color: #fff;
  font-size: 1.0625rem;
  margin: 0;
  font-weight: 600;
}
.price-line { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.78); }
.price-line strong { color: #fff; font-weight: 600; }
.price-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
}

.price-card--accent {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-hover) 100%);
}
.price-card--accent h3 { color: #fff; }
.price-card--accent p { color: rgba(255, 255, 255, 0.92); }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .pricing-pills li { font-size: 0.8125rem; padding: 7px 14px; }
}
<style>
  /* tumhari purani CSS yahan hogi */

  .fleet-image {
    width: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
  }

  .fleet-image img {
    width: 100%;
    max-width: 230px;
    height: 120px;
    object-fit: contain;
    display: block;
  }

