/* ==========================================================================
   OM CABS TOURS & TRAVELS INDIA PVT LTD
   Corporate Ground Mobility — Design System & Stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography, badges, utilities
   4.  Buttons & forms
   5.  Header & navigation
   6.  Hero
   7.  Section shells & cards
   8.  Act 1 — Company
   9.  Act 2 — Fleet
   10. Coverage — Pan-India
   11. Act 3 — Operations & Safety
   12. Act 4 — Proof & Clients
   13. Act 5 — Commercials
   14. Modal, toast, back-to-top
   15. Footer
   16. Motion, focus & print
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg-body: #ffffff;
  --bg-surface: #f7fafa;
  --bg-surface-alt: #eef3f5;
  --bg-card: #ffffff;

  /* Brand — teal */
  --teal-primary: #0a5c52;
  --teal-deep: #074840;
  --teal-accent: #0d9488;
  --teal-light: #2dd4bf;
  --teal-tint: #f0fdfa;
  --teal-border: #b8f0e6;

  /* Brand — gold */
  --gold-accent: #b45309;
  --gold-bright: #d97706;
  --gold-tint: #fffbeb;
  --gold-border: #fde68a;

  /* Ink */
  --navy-deep: #0f172a;
  --navy-slate: #1e293b;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-inverse-muted: #a3b2c7;

  /* Lines */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #0d9488;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.12);
  --shadow-hover: 0 18px 38px -10px rgba(10, 92, 82, 0.22);

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Motion */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  /* Type */
  --font-heading: 'Outfit', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-width: 1280px;
  --header-h: 74px;
  --section-gap: clamp(3.5rem, 7vw, 5.5rem);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Keeps anchor targets clear of the fixed header. */
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

/* Lucide injects <svg> in place of <i data-lucide>. Without this the SVG sits on
   the text baseline and every icon+label pair looks a few pixels low. */
svg[data-lucide],
.lucide,
i[data-lucide] {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  flex-shrink: 0;
  stroke-width: 2;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3000;
  padding: 0.75rem 1.25rem;
  background: var(--teal-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom-right-radius: var(--radius-sm);
  transform: translateY(-120%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY, BADGES & UTILITIES
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy-deep);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal-primary); /* fallback if background-clip is unsupported */
}

.text-teal { color: var(--teal-primary); }
.text-gold { color: var(--gold-accent); }
.text-muted { color: var(--text-muted); }
.lead { color: var(--text-muted); font-size: 1rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--teal-tint);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
  white-space: nowrap;
}

.badge-gold {
  background: var(--gold-tint);
  color: var(--gold-accent);
  border-color: var(--gold-border);
}

/* Replaces five copies of the same inline style on the hub cards. */
.badge-neutral {
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  border-color: var(--border-light);
}

.badge-sm {
  font-size: 0.65rem;
  padding: 0.15rem 0.55rem;
  letter-spacing: 0.05em;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  margin: 0.7rem 0 0.5rem;
  letter-spacing: -0.015em;
}

.section-header h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.section-header--tight {
  margin-bottom: 2rem;
}

/* Icon + text lists (pricing benefits, verification points, governance). */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.icon-list li strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.icon-list .lucide,
.icon-list svg {
  width: 18px;
  height: 18px;
  margin-top: 0.18em;
  color: var(--teal-primary);
}

.icon-list--gold .lucide,
.icon-list--gold svg {
  color: var(--gold-accent);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.card-title .lucide,
.card-title svg {
  width: 22px;
  height: 22px;
  color: var(--teal-primary);
}

.card-title--gold .lucide,
.card-title--gold svg {
  color: var(--gold-accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & FORMS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: clamp(0.825rem, 0.9vw, 0.9rem);
  line-height: 1.2;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.btn .lucide,
.btn svg {
  width: 17px;
  height: 17px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: clamp(0.775rem, 0.8vw + 0.15rem, 0.825rem);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--teal-primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 92, 82, 0.2);
}

.btn-primary:hover {
  background: var(--teal-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 92, 82, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: #ffffff;
  color: var(--navy-deep);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background: var(--teal-tint);
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-busy='true'] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.form-control {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--navy-deep);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.4;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:hover {
  border-color: var(--border-focus);
}

.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.16);
}

/* Consistent select chevron across browsers (default arrows differ wildly). */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 84px;
}

/* Invalid state only after the user has interacted — not on first paint. */
.form-control[aria-invalid='true'] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.field-error {
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc2626;
  min-height: 0;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.45;
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  color: var(--teal-deep);
}

.form-status.is-visible {
  display: flex;
}

.form-status .lucide,
.form-status svg {
  width: 18px;
  height: 18px;
  margin-top: 0.1em;
  color: var(--teal-primary);
}

/* Range sliders — Chrome/Safari and Firefox need separate track/thumb rules.
   The element itself is a full 36px tall so it is a comfortable touch target;
   the visible 6px rail is drawn on the track pseudo-element instead. */
.range-control {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 36px;
  margin: 0.25rem 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.range-control::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
}

.range-control::-moz-range-track {
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
}

.range-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -9px; /* centres the thumb on the 6px track in WebKit */
  border-radius: 50%;
  background: var(--teal-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.28);
  cursor: grab;
  transition: transform var(--transition);
}

.range-control::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.range-control::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-primary);
  border: 3px solid #ffffff;
  box-shadow: 0 1px 5px rgba(15, 23, 42, 0.28);
  cursor: grab;
}

.range-control--gold::-webkit-slider-thumb { background: var(--gold-bright); }
.range-control--gold::-moz-range-thumb { background: var(--gold-bright); }

.range-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.range-value {
  font-weight: 700;
  font-family: var(--font-heading);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-subtle);
  margin-top: -0.35rem;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: padding var(--transition), box-shadow var(--transition),
              background var(--transition);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: clamp(34px, 4vw, 42px);
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 2px;
  background: #ffffff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  line-height: 1;
  white-space: nowrap;
}

.brand-subtext {
  font-size: clamp(0.6rem, 0.8vw, 0.66rem);
  letter-spacing: 0.06em;
  color: var(--teal-primary);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.2vw, 1.25rem);
  min-width: 0;
}

.nav-link {
  position: relative;
  font-size: clamp(0.775rem, 0.9vw + 0.2rem, 0.875rem);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.35rem 0.2rem;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-primary);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1vw, 0.75rem);
  flex-shrink: 0;
}

/* Hamburger — bars morph into an X when the menu is open. */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-deep);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1140px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem clamp(1rem, 3vw, 2rem) 1.25rem;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-surface-alt);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--teal-primary);
  }

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .nav-actions .btn-outline {
    display: none;
  }

  .brand-subtext {
    display: none;
  }

  /* Touch targets: keep every control at or above the 44px comfort line. */
  .nav-actions .btn-sm {
    padding: 0.7rem 1.05rem;
  }
}

@media (hover: none), (max-width: 900px) {
  .footer-links a {
    padding: 0.45rem 0;
  }

  .footer-links {
    gap: 0.15rem;
  }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 12vw, 9rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--border-light);
  isolation: isolate;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #ffffff 38%,
    rgba(255, 255, 255, 0.92) 60%,
    rgba(255, 255, 255, 0.45) 88%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  margin: 0.9rem 0;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--navy-slate);
  margin-bottom: 1.75rem;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-medium);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--teal-primary);
  line-height: 1;
  /* Digits share a width so the counter animation does not jitter. */
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-top: 0.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--teal-primary);
  box-shadow: var(--shadow-lg);
}

.hero-card:hover {
  transform: none; /* a form card should not move under the cursor */
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
  border-top-color: var(--teal-primary);
}

.hero-card-header {
  margin-bottom: 1.15rem;
}

.hero-card-header h2 {
  font-size: 1.3rem;
  margin: 0.5rem 0 0.25rem;
}

.hero-card-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-footnote {
  font-size: 0.72rem;
  color: var(--text-subtle);
  text-align: center;
  line-height: 1.45;
}

/* On narrow screens the copy sits over the photo, so the wash must be flat. */
@media (max-width: 900px) {
  /* Opaque enough to suppress the signage baked into the stock photo, which
     otherwise reads as stray text behind the copy on narrow screens. */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(255, 255, 255, 0.965) 45%,
      rgba(255, 255, 255, 0.99) 100%
    );
  }

  .hero-bg-img {
    object-position: center;
  }
}

/* --------------------------------------------------------------------------
   7. SECTION SHELLS & CARDS
   -------------------------------------------------------------------------- */
.act-section {
  position: relative;
  padding: var(--section-gap) 0;
}

/* Explicit alternating band. The previous :nth-child(even) rule silently
   depended on the number of siblings in <body>. */
.section-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.glass-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.glass-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* --------------------------------------------------------------------------
   8. ACT 1 — COMPANY
   -------------------------------------------------------------------------- */

.leader-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.leader-avatar--alt {
  background: var(--bg-surface-alt);
  color: var(--navy-deep);
  border: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   9. ACT 2 — FLEET
   -------------------------------------------------------------------------- */

.module-card--feature p {
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 920px) {

}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  background: #ffffff;
  color: var(--text-muted);
  border: 1px solid var(--border-medium);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}

.tab-btn:hover {
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  background: var(--teal-tint);
}

.tab-btn.active,
.tab-btn[aria-pressed='true'] {
  background: var(--teal-primary);
  color: #ffffff;
  border-color: var(--teal-primary);
  box-shadow: 0 2px 8px rgba(10, 92, 82, 0.22);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 1.5rem;
}

.vehicle-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Cards hidden by the filter must leave the grid entirely, not just go blank. */
.vehicle-card[hidden],
.client-card[hidden] {
  display: none !important;
}

.vehicle-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-surface-alt);
}

.vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.06);
}

.vehicle-img-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18);
}

.vehicle-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-card-body h3,
.vehicle-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.vehicle-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.1rem;
  flex-grow: 1;
  line-height: 1.55;
}

.vehicle-card .btn {
  margin-top: 1.15rem;
}

.filter-empty {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.filter-empty.is-visible {
  display: block;
}

.sla-banner {
  margin-top: clamp(2.5rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--teal-tint) 0%, #ffffff 100%);
  border: 1px solid var(--teal-border);
  border-left: 4px solid var(--teal-primary);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sla-text {
  flex: 1 1 320px;
}

.sla-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin: 0.5rem 0 0.3rem;
  color: var(--teal-primary);
}

.sla-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. COVERAGE — PAN-INDIA
   -------------------------------------------------------------------------- */
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hub-card {
  text-align: center;
  padding: 1.5rem 0.85rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hub-card--hq {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 1px var(--teal-primary), var(--shadow-sm);
}

.hub-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-tint);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
  margin-bottom: 0.35rem;
}

.hub-icon .lucide,
.hub-icon svg {
  width: 19px;
  height: 19px;
}

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

.hub-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   11. ACT 3 — OPERATIONS & SAFETY
   -------------------------------------------------------------------------- */
.pipeline-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Five steps: force a clean 5-up on wide screens instead of a 4 + 1 orphan. */
@media (min-width: 1080px) {
  .pipeline-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 1.5rem 0.9rem;
  background: #ffffff;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 0.9rem auto;
}

.step-card h3,
.step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   12. ACT 4 — PROOF & CLIENTS
   -------------------------------------------------------------------------- */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}

.client-card:hover {
  border-color: var(--teal-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.client-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--bg-surface-alt);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.3;
}

.client-count {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* --------------------------------------------------------------------------
   13. ACT 5 — COMMERCIALS
   -------------------------------------------------------------------------- */
.commercial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 1.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.pricing-model-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-model-card--featured {
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 1px var(--teal-primary), var(--shadow-md);
}

.pricing-model-card h3 {
  font-size: 1.45rem;
  margin: 0.7rem 0 0.5rem;
}

.pricing-model-card > div > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pricing-model-card .btn {
  margin-top: 1.5rem;
}

.estimator-widget {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--teal-primary);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 2rem;
  align-items: start;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.estimator-result {
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--teal-tint) 100%);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.estimator-price {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--teal-primary);
  margin: 0.75rem 0 0.15rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.estimator-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.estimator-monthly {
  margin: 1rem 0;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.estimator-monthly strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold-accent);
  font-variant-numeric: tabular-nums;
}

.estimator-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.estimator-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--text-subtle);
  line-height: 1.45;
}

.rate-factors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 0.85rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.rate-factor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  box-shadow: var(--shadow-xs);
}

.rate-factor .lucide,
.rate-factor svg {
  width: 17px;
  height: 17px;
  color: var(--teal-primary);
}

.compliance-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.compliance-item h3,
.compliance-item h4 {
  color: var(--text-subtle);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}

.compliance-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  word-break: break-word;
  margin-bottom: 0.2rem;
}

.compliance-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. MODAL, TOAST & BACK-TO-TOP
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden; /* keeps contents out of the tab order while closed */
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 560px;
  max-height: min(90vh, 860px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition-slow);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-container h2 {
  font-size: 1.45rem;
  margin: 0.55rem 0 0.4rem;
  padding-right: 2rem;
}

.modal-intro {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.35rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-subtle);
  background: var(--bg-surface);
  font-size: 1.5rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
  background: var(--bg-surface-alt);
  color: var(--navy-deep);
}

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2500;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: min(380px, calc(100vw - 2.5rem));
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--navy-deep);
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.45;
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast .lucide,
.toast svg {
  width: 19px;
  height: 19px;
  color: var(--teal-light);
  margin-top: 0.1em;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition),
              transform var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-accent);
}

.back-to-top .lucide,
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: #f8fafc;
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 3rem;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-brand .brand-subtext {
  color: var(--teal-light);
}

.footer-brand .brand-logo img {
  border-color: rgba(255, 255, 255, 0.18);
  background: #ffffff;
}

.footer-brand p {
  color: var(--text-inverse-muted);
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-domain {
  margin-top: 0.75rem !important;
  font-size: 0.825rem !important;
  color: var(--teal-light) !important;
}

.footer-col h2 {
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-inverse-muted);
  font-size: 0.85rem;
  width: fit-content;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--teal-light);
  transform: translateX(3px);
}

.footer-col p {
  color: var(--text-inverse-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-col p + p {
  margin-top: 0.75rem;
}

.footer-col strong {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7c8ba3;
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   16. MOTION, FOCUS & PRINT
   -------------------------------------------------------------------------- */

/* Scroll-reveal. Elements stay visible if JS never runs (see .no-js below). */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Visible keyboard focus everywhere — the previous build had none. */
:focus-visible {
  outline: 3px solid var(--teal-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer :focus-visible {
  outline-color: var(--teal-light);
}

/* Prevents background scroll while the modal or mobile menu is open. */
body.no-scroll {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .glass-card:hover,
  .client-card:hover,
  .btn:hover {
    transform: none;
  }

  .vehicle-card:hover .vehicle-img {
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-bg-container,
  .back-to-top,
  .toast,
  .modal-overlay,
  .filter-bar,
  .mobile-toggle,
  .nav-actions,
  .skip-link,
  .estimator-widget .btn,
  .hero-cta {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .act-section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  .glass-card,
  .client-card,
  .compliance-box {
    box-shadow: none;
    border: 1px solid #cccccc;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-footer {
    background: #ffffff;
    color: #000000;
  }

  .footer-brand p,
  .footer-col p,
  .footer-links a,
  .footer-bottom {
    color: #333333;
  }

  a[href^='#']::after {
    content: '';
  }
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.container-narrow {
  max-width: 860px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--teal-border);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition), background var(--transition);
}

/* Hide the native disclosure triangle in every engine. */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary:hover {
  color: var(--teal-primary);
  background: var(--teal-tint);
}

/* Chevron drawn in CSS so it needs no icon-library round trip. */
.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid var(--teal-primary);
  border-bottom: 2px solid var(--teal-primary);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

.faq-answer strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.link-btn {
  color: var(--teal-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0.15rem;
}

.link-btn:hover {
  color: var(--teal-accent);
}

/* Failed submission — the success panel reused for an error, recoloured. */
.form-status.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.form-status.is-error .lucide,
.form-status.is-error svg {
  color: #dc2626;
}

/* ==========================================================================
   18. MINIMAL COMPONENTS
   Leaner replacements for the earlier text-heavy card grids. Each conveys the
   same fact in a glanceable form rather than a paragraph.
   ========================================================================== */

/* Reading-progress rail, pinned to the top edge. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-light));
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ------------------------------------------------------------- buttons ++ */
.btn-lg {
  padding: 0.85rem 1.7rem;
  font-size: clamp(0.9rem, 1vw, 0.975rem);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid transparent;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--border-medium);
}

.btn-ghost:hover {
  color: var(--teal-primary);
  text-decoration-color: var(--teal-primary);
  transform: translateY(-1px);
}

.label-optional {
  font-weight: 400;
  color: var(--text-subtle);
}

/* ------------------------------------------------- company: principles row */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-primary);
  border: 1px solid var(--teal-border);
}

.pillar-icon .lucide,
.pillar-icon svg { width: 20px; height: 20px; }

.pillar h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.pillar p  { font-size: 0.8rem; color: var(--text-muted); }

/* ------------------------------------------------------- leadership strip */
.leader-strip {
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
}

.leader-strip-label p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1rem;
}

.leader { display: flex; align-items: center; gap: 0.65rem; min-width: 0; }

.leader div { display: flex; flex-direction: column; min-width: 0; }

.leader strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--navy-deep);
  line-height: 1.2;
}

.leader span { font-size: 0.75rem; color: var(--text-muted); }

.leader-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.leader-avatar--alt {
  background: var(--bg-surface-alt);
  color: var(--navy-deep);
  border: 1px solid var(--border-light);
}

@media (max-width: 720px) {
  .leader-strip { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------- service pills */
.service-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy-deep);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), border-color var(--transition);
}

.service-pill:hover { transform: translateY(-2px); border-color: var(--teal-primary); }

.service-pill .lucide,
.service-pill svg { width: 16px; height: 16px; color: var(--teal-primary); }

/* ------------------------------------------------------- vehicle spec row */
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-top: 0.85rem;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
}

.vehicle-specs span {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ------------------------------------------------------------- hub cards */
.hub-card {
  text-align: center;
  padding: 1.5rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-md);
}

.hub-card--hq { border-color: var(--teal-primary); }

/* --------------------------------------------------------- operations ++ */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.step-card {
  text-align: center;
  padding: 1.35rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover { transform: translateY(-3px); border-color: var(--teal-border); }

.safety-strip {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
}

.safety-strip-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-primary);
}

.safety-items { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.safety-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: #fff;
  border: 1px solid var(--teal-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
}

.safety-item .lucide,
.safety-item svg { width: 15px; height: 15px; color: var(--teal-primary); }

@media (max-width: 720px) {
  .safety-strip { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------ metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.metric {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.metric > .lucide,
.metric > svg {
  width: 22px;
  height: 22px;
  color: var(--teal-primary);
  flex-shrink: 0;
}

.metric div { display: flex; flex-direction: column; min-width: 0; }

.metric strong {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--navy-deep);
  line-height: 1.25;
}

.metric span { font-size: 0.75rem; color: var(--text-subtle); }

/* -------------------------------------------------------- rate factor row */
.rate-factors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
}

.rate-factor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.rate-factor .lucide,
.rate-factor svg { width: 15px; height: 15px; color: var(--teal-primary); }

/* --------------------------------------------------------- hero entrance */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content .hero-anim:nth-child(1) { animation-delay: 0.05s; }
.hero-content .hero-anim:nth-child(2) { animation-delay: 0.14s; }
.hero-content .hero-anim:nth-child(3) { animation-delay: 0.23s; }
.hero-content .hero-anim:nth-child(4) { animation-delay: 0.32s; }
.hero-content .hero-anim:nth-child(5) { animation-delay: 0.41s; }
.hero-card.hero-anim { animation-delay: 0.3s; }

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; opacity: 1; transform: none; }
  .scroll-progress { display: none; }
  .pillar:hover,
  .hub-card:hover,
  .step-card:hover,
  .service-pill:hover { transform: none; }
}
