:root {
  --orange: #f7941d;
  --orange-deep: #e07f0c;
  --navy: #12263f;
  --navy-soft: #1a3354;
  --ink: #1c2430;
  --muted: #6b7585;
  --line: #e8ebf0;
  --paper: #f5f6f8;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(18, 38, 63, 0.12);
  --font: "Poppins", sans-serif;
  --display: "Oxanium", sans-serif;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(247, 148, 29, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(18, 38, 63, 0.06), transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, var(--paper) 40%, #ffffff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand img {
  width: min(190px, 46vw);
  height: auto;
  display: block;
  
}

.footer-brand img {
  width: min(180px, 50vw);
  height: auto;
}

.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.primary-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(247, 148, 29, 0.28);
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-text {
  background: transparent;
  color: var(--ink);
  padding: 0.95rem 0.35rem;
}

.btn-text:hover {
  color: var(--orange);
}

.header-cta {
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 5.5rem;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  background: radial-gradient(circle, rgba(247, 148, 29, 0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3vw, 95px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.hero-line {
  display: block;
}

.hero-line.accent {
  color: var(--orange);
}

.hero-sub {
  margin: 1.35rem 0 0;
  max-width: 28rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.hero-price {
  margin-top: 2.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.price-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 50px);
  color: var(--orange);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

/* Hero visual: map panel + floating car */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.map-panel {
  position: absolute;
  right: 4%;
  top: 0;
  width: min(78%, 420px);
  height: min(92%, 560px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--orange);
  box-shadow: var(--shadow);
  z-index: 1;
}

.hero-map {
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe7ef;
  z-index: 1;
}

.hero-map .leaflet-marker-pane,
.hero-map .leaflet-overlay-pane {
  z-index: 650 !important;
}

.map-frame {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 0 10px var(--orange);
  pointer-events: none;
  z-index: 3;
}

/* Visible location pin over the orange map box (sibling stacking above car) */
.map-pin-overlay {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 8;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.map-pin-overlay .blink-marker {
  width: 56px;
  height: 56px;
}

.map-pin-overlay .blink-marker__pin {
  width: 32px;
  height: 32px;
}

.map-pin-overlay .blink-marker__pulse {
  width: 28px;
  height: 28px;
}

.map-pin-overlay .blink-marker__core {
  width: 14px;
  height: 14px;
}

.live-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(18, 38, 63, 0.88);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: pulse-dot 1.6s ease-out infinite;
}

.floating-car {
  position: relative;
  z-index: 5;
  width: min(100%, 640px);
  margin-left: -8%;
  margin-top: 4.5rem;
  animation: float-car 4.2s ease-in-out infinite;
  filter: drop-shadow(0 28px 30px rgba(18, 38, 63, 0.22));
}

.floating-car img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.car-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 4%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(18, 38, 63, 0.35), transparent 70%);
  filter: blur(8px);
  z-index: 1;
  animation: shadow-breathe 4.2s ease-in-out infinite;
}

/* Custom blinking map marker */
.blink-marker-wrap {
  background: transparent !important;
  border: 0 !important;
}

.blink-marker {
  position: relative;
  width: 44px;
  height: 44px;
}

.blink-marker__pin {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -85%);
  background: var(--orange);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 6px 16px rgba(18, 38, 63, 0.4);
  z-index: 2;
  animation: pin-bob 1.4s ease-in-out infinite;
}

.blink-marker__pulse {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(247, 148, 29, 0.65);
  transform: translate(-50%, -50%);
  animation: map-blink 1.25s ease-out infinite;
}

.blink-marker__core {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  transform: translate(-50%, -50%);
  z-index: 3;
  animation: core-blink 1.25s ease-in-out infinite;
}

@keyframes float-car {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes shadow-breathe {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.75;
  }
  50% {
    transform: scaleX(0.86);
    opacity: 0.45;
  }
}

@keyframes map-blink {
  0% {
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0.95;
  }
  70% {
    transform: translate(-50%, -50%) scale(3.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes core-blink {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.55);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.85);
    box-shadow: 0 0 0 10px rgba(247, 148, 29, 0);
  }
}

@keyframes pin-bob {
  0%,
  100% {
    transform: translate(-50%, -85%) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -100%) rotate(-45deg);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.65);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

/* Book section */
.book-section {
  position: relative;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
  z-index: 6;
}

.book-panel {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 30px 60px rgba(18, 38, 63, 0.28);
}

.book-panel h2 {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.book-form input,
.book-form select {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.book-form input:focus,
.book-form select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.book-submit {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
}

/* How it works */
.how-section {
  padding: 2rem 0 5.5rem;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85) 18%, #fff 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.step-card {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  padding: 2.5rem 1.25rem 2.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: -3.4rem auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 24px rgba(18, 38, 63, 0.18);
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.step-icon--navy {
  background: var(--navy);
}

.step-icon--orange {
  background: var(--orange);
}

.step-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-num {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
}

.step-num--orange {
  background: var(--orange);
}

.step-num--navy {
  background: var(--navy);
}

/* About */
.about-section {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(145deg, var(--navy) 0%, #0d1a2d 100%);
  color: #fff;
}

.about-section .eyebrow {
  color: var(--orange);
}

.about-section .about-copy h2 {
  color: #fff;
}

.about-section .about-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.about-section .check-grid li {
  color: rgba(255, 255, 255, 0.92);
}

.about-section .check-grid li::before {
  color: var(--orange);
}

.about-section .founder-chip strong {
  color: #fff;
}

.about-section .founder-chip span {
  color: rgba(255, 255, 255, 0.72);
}

.about-section .experience-card {
  background: #fff;
  color: #1c2430;
}

.about-section .experience-card strong {
  color: var(--orange);
}

.about-section .experience-card span {
  color: #1c2430;
  opacity: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-media {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.about-img {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.about-img--main {
  min-height: 460px;
  height: 100%;
}

.about-stack {
  display: grid;
  gap: 1rem;
  align-content: stretch;
}

.about-img--small {
  height: 200px;
}

.experience-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 22px;
  padding: 1.6rem 1.3rem;
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 180px;
}

.experience-card strong {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
}

.experience-card span {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy);
}

.about-copy > p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.2rem;
  margin-bottom: 1.8rem;
}

.check-grid li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.founder-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.founder-chip img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-chip strong {
  display: block;
  font-size: 0.95rem;
}

.founder-chip span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Types */
.types-section {
  padding: 2rem 0 5rem;
  background: #fff;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.type-item {
  background: var(--paper);
  border-radius: 20px;
  padding: 1.4rem 0.8rem 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.type-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  filter: brightness(0);
  opacity: 0.92;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.type-item h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy);
}

.type-item p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.type-item.is-active,
.type-item:hover {
  background: var(--orange);
  transform: translateY(-4px);
}

.type-item.is-active img,
.type-item:hover img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.type-item.is-active h3,
.type-item.is-active p,
.type-item:hover h3,
.type-item:hover p {
  color: #fff;
}

/* Why */
.why-section {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(247, 148, 29, 0.12), transparent 60%),
    linear-gradient(145deg, var(--navy) 0%, #0d1a2d 100%);
  color: #fff;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.why-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.why-intro {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 1.4rem;
}

.why-features li {
  display: grid;
  gap: 0.55rem;
}

.why-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.why-circle svg {
  width: 26px;
  height: 26px;
}

.why-circle--orange {
  background: var(--orange);
  color: #fff;
}

.why-circle--light {
  background: #fff;
  color: var(--navy);
}

.why-features h3 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.why-glow {
  position: absolute;
  width: 70%;
  height: 88%;
  border-radius: 28px;
  background: linear-gradient(180deg, #f2c48a 0%, rgba(247, 148, 29, 0.35) 45%, transparent 100%);
  z-index: 0;
}

.why-visual img {
  position: relative;
  z-index: 1;
  width: min(150%, 840px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

/* Packages */
.packages-section {
  padding: 5rem 0 4rem;
  background: #fff;
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-head--row h2 {
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.package-card {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover,
.package-card--featured {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  z-index: 2;
}

.package-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.package-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--navy);
}

.package-price {
  margin: 0.4rem 0 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.package-price span {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--orange);
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.package-card li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 1.1rem;
  position: relative;
}

.package-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.package-btn {
  width: 100%;
  border-radius: 12px;
}

/* Stats */
.stats-section {
  padding: 1rem 0 4.5rem;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--navy);
  border-radius: 28px;
  padding: 1.4rem;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1rem;
  text-align: center;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.stat-icon--orange {
  background: rgba(247, 148, 29, 0.15);
}

.stat-icon--navy {
  background: rgba(18, 38, 63, 0.1);
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--navy);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.55rem;
  font-size: 0;
  position: relative;
}

.stat-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.stat-icon--navy::before {
  border-color: var(--navy);
}

/* Services */
.services-section {
  padding: 4.5rem 0;
  background: var(--paper);
}

.services-section .container {
  width: min(1320px, calc(100% - 2.5rem));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.services-grid--five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--line);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card a {
  padding-inline: 1.1rem;
}

.service-card h3 {
  margin: 1rem 0 0.4rem;
  color: #111827;
  font-size: 1.02rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  color: #1c2430;
  font-size: 0.88rem;
}

.service-card a {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
}

.service-card .package-btn {
  display: inline-block;
  margin: 0 1.1rem 1.2rem;
  width: calc(100% - 2.2rem);
  text-align: center;
}

/* Certified */
.certified-section {
  padding: 5rem 0 3rem;
  background: var(--paper);
}

.certified-section .section-head {
  max-width: 820px;
}

.certified-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.certificate-card {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
  transition: transform 0.2s ease;
}

.certificate-card:hover {
  transform: translateY(-4px);
}

.certificate-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.certificate-card span {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Trust */
.trust-section {
  padding: 1rem 0 3.5rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-badge {
  border: 2px solid var(--line);
  border-radius: 999px;
  min-height: 84px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--navy);
  background: #fff;
}

/* Promo */
.promo-section {
  padding: 0 0 4.5rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.2rem;
}

.promo-card {
  border-radius: 24px;
  padding: 2rem;
  overflow: hidden;
  min-height: 220px;
}

.promo-card--orange {
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  color: #fff;
}

.promo-card--navy {
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.promo-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
}

.promo-card p {
  margin: 0 0 1.2rem;
  opacity: 0.92;
}

.promo-label {
  color: var(--orange) !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem !important;
}

.promo-card--navy img {
  width: 100%;
  max-width: 260px;
  justify-self: end;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.3));
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
}

.btn-navy:hover {
  background: #0b1728;
}

/* Testimonials */
.testimonials-section {
  padding: 2rem 0 4.5rem;
  background: var(--paper);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card--active {
  background: var(--navy);
  color: #fff;
  transform: scale(1.03);
}

.testimonial-card--active p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  opacity: 0.7;
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-intro h2 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-transform: uppercase;
  color: var(--navy);
}

.faq-intro p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.75rem;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--orange);
  margin-bottom: 0.55rem;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Careers */
.careers-section {
  padding: 0 0 4.5rem;
}

.careers-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: 24px;
  padding: 2rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.careers-banner h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.6rem;
}

.careers-banner p {
  margin: 0;
  opacity: 0.85;
  max-width: 520px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 170px;
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.social-row a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0;
}

/* Leaflet tweaks inside hero */
.hero-map .leaflet-control-attribution {
  font-size: 9px;
  background: rgba(255, 255, 255, 0.75) !important;
}

.hero-map .leaflet-control-zoom {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .faq-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .map-panel {
    width: min(72%, 320px);
    height: 360px;
    right: 8%;
  }

  .floating-car {
    margin-left: 0;
    width: min(100%, 520px);
  }

  .book-form {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid,
  .packages-grid,
  .testimonials-grid,
  .stats-grid,
  .trust-row,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .types-grid,
  .services-grid,
  .services-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-features,
  .certified-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-media {
    grid-template-columns: 1fr 1fr;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card--active {
    transform: none;
  }

  .promo-card--navy {
    grid-template-columns: 1fr;
  }

  .promo-card--navy img {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.5rem;
    min-height: auto;
  }

  .hero-visual {
    min-height: 340px;
  }

  .map-panel {
    width: 78%;
    height: 300px;
    right: 4%;
  }

  .book-form,
  .steps-grid,
  .packages-grid,
  .testimonials-grid,
  .stats-grid,
  .trust-row,
  .footer-grid,
  .types-grid,
  .services-grid,
  .services-grid--five,
  .check-grid,
  .about-media,
  .why-features,
  .certified-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    margin-top: 1.5rem;
  }

  .about-img--main {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ========== Inner pages ========== */
.page-hero {
  background:
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(247, 148, 29, 0.18), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, #0d1a2d 100%);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
}

.page-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumb a {
  color: var(--orange);
  font-weight: 600;
}

.page-section {
  padding: 4.5rem 0;
}

.page-section--paper {
  background: var(--paper);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.mission-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow);
}

.mission-card h3 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-family: var(--display);
  text-transform: uppercase;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  margin-top: 1.5rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 500;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.packages-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.package-detail {
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.package-detail--popular {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.package-detail h2 {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--navy);
}

.package-detail .pkg-price {
  margin: 0.5rem 0 0.3rem;
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--orange);
  font-weight: 600;
}

.package-detail .pkg-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.package-detail ul {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.package-detail li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}

.package-detail li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.career-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.career-tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.career-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.career-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.career-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
}

.contact-info-card h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.contact-info-card p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list li strong {
  display: block;
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-list a {
  color: #fff;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: var(--paper);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.map-embed {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--paper);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .about-mission-grid,
  .packages-page-grid,
  .careers-grid,
  .contact-grid,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .package-detail--popular {
    transform: none;
  }
}

/* Lead modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 38, 63, 0.72);
  backdrop-filter: blur(4px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 1.5rem));
  max-height: none;
  overflow: visible;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.65rem 1.35rem;
  box-shadow: 0 30px 80px rgba(18, 38, 63, 0.35);
}

.lead-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.lead-modal__dialog h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.45rem;
  text-transform: uppercase;
  color: var(--navy);
}

.lead-modal__sub {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
}

.lead-form label.lead-form__full,
.lead-form__submit {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .lead-form {
    grid-template-columns: 1fr;
  }
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: var(--paper);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
}

.lead-form__submit {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 12px;
}

body.lead-modal-open {
  overflow: hidden;
}

.header-cta {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.package-btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

/* Career apply modal */
.career-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.career-modal.is-open {
  display: flex;
}

.career-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 1.5rem));
  background: #fff;
  border-radius: 22px;
  padding: 1.65rem 1.5rem 1.4rem;
  box-shadow: 0 30px 80px rgba(18, 38, 63, 0.35);
}

.career-modal__dialog h2 {
  margin: 0 0 0.5rem;
  padding-right: 2.5rem;
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--navy);
}

.career-modal__desc {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.career-modal__note {
  margin: 0 0 1.25rem;
  color: #1c2430;
  font-size: 0.95rem;
  line-height: 1.55;
}

.career-modal__note a {
  color: var(--orange);
  font-weight: 700;
}

.career-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.career-modal__actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
  justify-content: center;
}

body.career-modal-open {
  overflow: hidden;
}
