/* ==========================================================================
   HIGH ROLLERS LIMO — Los Angeles' Premier Limousine Service
   ========================================================================== */

/* -------------------- Design Tokens -------------------- */
:root {
  --color-black: #050505;
  --color-black-soft: #0B0B0B;
  --color-black-raised: #121212;
  --color-surface: #181818;
  --color-border: rgba(255, 255, 255, 0.28);
  --color-border-soft: rgba(255, 255, 255, 0.08);

  --color-gold: #FFFFFF;
  --color-gold-bright: #FFFFFF;
  --color-gold-deep: #E5E5E5;
  --color-gold-faint: rgba(255, 255, 255, 0.06);

  --color-white: #FFFFFF;
  --color-cream: #FFFFFF;
  --color-text: #F5F5F5;
  --color-text-muted: #A8A8A8;
  --color-text-dim: #6B6B6B;

  --font-display: 'Cormorant Garamond', 'Cormorant', serif;
  --font-body: 'Jost', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --shadow-soft: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 30px 60px -30px rgba(255, 255, 255, 0.25);

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* -------------------- Reset -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.08;
  color: var(--color-cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.01em;
  font-weight: 300;
  margin-top: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 62ch;
  line-height: 1.75;
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 24px 0;
}

/* -------------------- Layout -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  z-index: 2;
}

.section--tight {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold-bright);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  z-index: 0;
}

.btn--gold:hover::before {
  transform: translateY(0);
}

.btn--gold span {
  position: relative;
  z-index: 1;
}

.btn--gold:hover {
  box-shadow: 0 20px 40px -20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.05);
}

.btn--ghost {
  padding: 14px 0;
  border: none;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  position: relative;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.45s var(--ease-out);
}

.btn--ghost:hover::after {
  width: 100%;
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  position: relative;
  z-index: 1;
}

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 19px 0;
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--color-border-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.logo__icon {
  height: 65px;
  width: auto;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__main {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.logo__sub {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav.is-scrolled .logo__main {
  font-size: 36px;
}

.nav.is-scrolled .logo__sub {
  font-size: 14px;
}

@media (max-width: 860px) {
  .logo__main { font-size: 32px; }
  .logo__sub { font-size: 13px; }
  .nav.is-scrolled .logo__main { font-size: 28px; }
  .nav.is-scrolled .logo__sub { font-size: 10px; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}

.nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 6px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--color-gold);
}

.nav__link.is-active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 14px 28px;
  font-size: 10px;
  letter-spacing: 0.28em;
}

.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--color-cream);
  transition: all 0.4s var(--ease-out);
}

.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 20px; }

.nav.is-open .nav__toggle span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
  background: var(--color-gold);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  top: 16px;
  transform: rotate(-45deg);
  background: var(--color-gold);
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #000000;
  background-image: url('homepage-pics/maybach.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 75%, var(--color-black) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero__eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 32px 0 28px;
  line-height: 0.96;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.2s var(--ease-out) 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
  display: inline-block;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.2s var(--ease-out) 0.6s forwards;
}

.hero__subtitle span {
  color: var(--color-gold);
  margin: 0 14px;
}

.hero__ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.2s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 2;
  opacity: 0;
  animation: fade 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--color-cream);
  animation: scroll-line 2.4s var(--ease-in-out) infinite;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  to { opacity: 1; }
}

@keyframes scroll-line {
  0% { top: -20px; }
  100% { top: 60px; }
}

/* -------------------- Page Hero (inner pages) -------------------- */
.page-hero {
  position: relative;
  padding: 240px 0 120px;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.96) 100%),
    url('https://placehold.co/2000x800/0A0A0A/0A0A0A');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 28px 0 20px;
}

.page-hero__title em {
  color: var(--color-gold);
  font-style: italic;
}

.page-hero__sub {
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* -------------------- Why Choose Us -------------------- */
.features {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.features__header {
  text-align: center;
  margin-bottom: 80px;
}

.features__header .eyebrow {
  justify-content: center;
}

.features__header .eyebrow::before {
  display: none;
}

.features__header .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-gold);
  margin-left: 14px;
}

.features__header .eyebrow {
  justify-content: center;
  gap: 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid var(--color-border-soft);
  transition: background 0.5s var(--ease-out);
}

.feature:last-child {
  border-right: none;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.feature__title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.feature__text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* -------------------- Fleet Preview / Grid -------------------- */
.fleet__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.fleet__header-text {
  max-width: 620px;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.fleet-card {
  background: var(--color-black-soft);
  border: 1px solid var(--color-border-soft);
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.fleet-card:hover {
  border-color: var(--color-border);
  transform: translateY(-6px);
}

.fleet-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-soft);
}

.fleet-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  transition: transform 1s var(--ease-out);
}

.fleet-card:hover .fleet-card__img {
  transform: scale(1.04);
}

.fleet-card__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(5, 5, 5, 0.7);
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.fleet-card__body {
  padding: 36px 34px 40px;
  position: relative;
}

.fleet-card__name {
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.fleet-card__meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 22px;
}

.fleet-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.fleet-card__features li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-card__features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.fleet-card__features li:last-child {
  border-bottom: none;
}

.fleet-card__cta {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}

.fleet-card__cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

/* -------------------- Services Strip -------------------- */
.services-strip {
  padding: 0;
  background: var(--color-black);
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-pill {
  position: relative;
  padding: 70px 40px;
  border-right: 1px solid var(--color-border-soft);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  text-align: left;
  transition: background 0.5s var(--ease-out);
  overflow: hidden;
}

.service-pill:last-child {
  border-right: none;
}

.service-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.service-pill:hover::before {
  opacity: 1;
}

.service-pill__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-gold);
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.service-pill__title {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 14px;
  position: relative;
}

.service-pill__text {
  font-size: 13px;
  color: var(--color-text-muted);
  position: relative;
}

/* -------------------- Services Page (alternating) -------------------- */
.services-list {
  padding: clamp(80px, 10vw, 140px) 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-bottom: 140px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block--reverse .service-block__media {
  order: 2;
}

.service-block__media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--color-black-soft);
}

.service-block__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.75));
  z-index: 1;
}

.service-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) saturate(0.85);
}

.service-block__media::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--color-border);
  z-index: 2;
  pointer-events: none;
}

.service-block__icon {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  margin-bottom: 28px;
}

.service-block__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.service-block__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 10px;
}

.service-block__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.service-block__text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin: 24px 0 32px;
}

.service-block__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.service-block__list li {
  font-size: 13px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-block__list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* -------------------- Testimonials -------------------- */
.testimonials {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial {
  padding: 48px 44px;
  background: var(--color-black);
  border: 1px solid var(--color-border-soft);
  position: relative;
  transition: border-color 0.5s var(--ease-out);
}

.testimonial:hover {
  border-color: var(--color-border);
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--color-gold);
  position: absolute;
  top: 34px;
  left: 30px;
  opacity: 0.15;
  pointer-events: none;
  font-style: italic;
}

.testimonial__stars {
  color: var(--color-gold);
  margin-bottom: 22px;
  letter-spacing: 3px;
  font-size: 14px;
  position: relative;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-cream);
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-soft);
  position: relative;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-faint);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 18px;
}

.testimonial__name {
  font-size: 14px;
  color: var(--color-cream);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.testimonial__role {
  font-size: 11px;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* -------------------- CTA Banner -------------------- */
.cta-banner {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: #F8F7F4;
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin: 28px 0 16px;
}

.cta-banner__title {
  color: #000000;
}

.cta-banner__title em {
  font-style: italic;
  color: #000000;
}

.cta-banner__text {
  color: #555555;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

.cta-banner__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #000000;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  transition: color 0.4s var(--ease-out);
}

.cta-banner__phone:hover {
  color: #333333;
}

.cta-banner .eyebrow {
  color: #666666;
}

.cta-banner .eyebrow::before {
  background: #666666;
}

.cta-banner__ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.cta-banner .btn--gold {
  background: #0a0a0a;
  color: #ffffff;
}

.cta-banner .btn--outline {
  border-color: rgba(0, 0, 0, 0.25);
  color: #0a0a0a;
}

.cta-banner .btn--outline:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
}

/* -------------------- About Page -------------------- */
.story {
  padding: clamp(80px, 10vw, 140px) 0;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.story__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) saturate(0.85);
}

.story__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.7));
  z-index: 1;
}

.story__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  margin: 22px;
  z-index: 2;
  pointer-events: none;
}

.story__body .section-title {
  margin-bottom: 30px;
}

.story__body p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
}

.story__signature {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border-soft);
}

.story__signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--color-cream);
}

.story__signature-role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 4px;
}

/* -------------------- Values -------------------- */
.values {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.values__header {
  text-align: center;
  margin-bottom: 80px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.value {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.value::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  transform: translateX(-50%);
}

.value__icon {
  width: 72px;
  height: 72px;
  margin: 30px auto 30px;
  color: var(--color-gold);
}

.value__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 0.8;
}

.value__title {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.value__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* -------------------- Stats Bar -------------------- */
.stats {
  background: var(--color-black);
  padding: 80px 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--color-border-soft);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--color-text-muted);
  margin-top: 16px;
  display: block;
}

/* -------------------- Team -------------------- */
.team {
  padding: clamp(80px, 10vw, 140px) 0;
}

.team__header {
  text-align: center;
  margin-bottom: 80px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-black-soft);
}

.team-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.75));
  z-index: 1;
}

.team-card__media::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--color-border);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.team-card:hover .team-card__media::after {
  opacity: 1;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.05) saturate(0.9);
}

.team-card__name {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* -------------------- Contact Page -------------------- */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.contact__info-eyebrow {
  margin-bottom: 28px;
}

.contact__info-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  margin-bottom: 24px;
}

.contact__info-title em {
  font-style: italic;
  color: var(--color-gold);
}

.contact__info-lead {
  color: var(--color-text-muted);
  margin-bottom: 50px;
  line-height: 1.85;
}

.contact__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.contact__item {
  display: flex;
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border-soft);
}

.contact__item:last-child {
  border-bottom: none;
}

.contact__item-icon {
  width: 42px;
  height: 42px;
  color: var(--color-gold);
  flex-shrink: 0;
  padding-top: 2px;
}

.contact__item-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.contact__item-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-dim);
  margin-bottom: 6px;
}

.contact__item-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  font-weight: 400;
}

.contact__item-value a:hover {
  color: var(--color-gold);
}

.contact__socials {
  display: flex;
  gap: 14px;
}

.contact__social {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.4s var(--ease-out);
}

.contact__social:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-faint);
}

.contact__social svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Booking Form */
.booking-form {
  background: var(--color-black-soft);
  padding: 56px 52px;
  border: 1px solid var(--color-border-soft);
  position: relative;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.booking-form__title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.booking-form__sub {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--color-text-dim);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-soft);
  padding: 12px 0;
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.4s var(--ease-out);
  border-radius: 0;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4 L6 8 L10 4' stroke='%23FFFFFF' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
  cursor: pointer;
}

.form-field select option {
  background: var(--color-black);
  color: var(--color-cream);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-dim);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}

.form-field--full .btn {
  width: 100%;
  margin-top: 14px;
}

.booking-form__note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--color-text-dim);
  text-align: center;
  letter-spacing: 0.08em;
}

/* Map */
.map-embed {
  margin-top: 100px;
  position: relative;
  height: 460px;
  border: 1px solid var(--color-border-soft);
  background: var(--color-black-soft);
  overflow: hidden;
}

.map-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.85)),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.05) 60px, rgba(255, 255, 255, 0.05) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.05) 60px, rgba(255, 255, 255, 0.05) 61px);
}

.map-embed__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.map-embed__pin {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  margin-bottom: 24px;
  animation: pulse 2.4s ease-in-out infinite;
}

.map-embed__pin svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

.map-embed__label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.map-embed__sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

/* -------------------- Footer -------------------- */
.footer {
  background: var(--color-black-soft);
  padding: 100px 0 0;
  border-top: 1px solid var(--color-border-soft);
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border-soft);
}

.footer__brand .logo {
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.5;
}

.footer__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  margin-bottom: 28px;
  font-weight: 500;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__heading::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-gold);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__list a {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer__list a:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

.footer__list a {
  transition: color 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.footer__contact p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer__contact strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.4s var(--ease-out);
}

.footer__social:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__social svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer__bottom {
  padding: 32px 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

/* -------------------- Scroll Reveal -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* -------------------- Responsive -------------------- */
@media (max-width: 1100px) {
  .fleet__grid,
  .team__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: none;
  }

  .feature:nth-child(1),
  .feature:nth-child(2) {
    border-bottom: 1px solid var(--color-border-soft);
  }

  .services-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-pill:nth-child(2) {
    border-right: none;
  }

  .service-block {
    gap: 60px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .nav__menu,
  .nav__cta {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-out);
  }

  .nav__menu {
    z-index: 105;
  }

  .nav.is-open .nav__menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__link {
    font-size: 18px;
  }

  .hero {
    min-height: 90vh;
    padding: 160px 0 100px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .fleet__grid,
  .team__grid,
  .testimonials__grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .fleet__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-block,
  .story__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .service-block--reverse .service-block__media {
    order: 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none !important;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .feature:last-child {
    border-bottom: none;
  }

  .services-strip__grid {
    grid-template-columns: 1fr;
  }

  .service-pill {
    border-right: none !important;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 40px 26px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
  }

  .page-hero {
    padding: 180px 0 90px;
  }
}

/* ==========================================================================
   V2 — Quote Bar, Carousel, Why Choose Us v2, Services v2, Fleet v2, Details
   ========================================================================== */

/* -------------------- Quote Bar (below nav) -------------------- */
.hero--with-bar {
  min-height: 100vh;
  padding: 120px 0;
  align-items: center;
}

/* -------------------- Home Hero V3 (white top + dark card) -------------------- */
.home-hero {
  background: #FFFFFF;
  padding: 160px 0 60px;
  position: relative;
  z-index: 2;
}

.home-hero__top {
  padding-bottom: 56px;
  text-align: left;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.home-hero__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #0a0a0a;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  color: #0a0a0a;
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.95;
  margin: 0;
}

.home-hero__title em {
  font-style: italic;
  font-weight: 400;
}

.home-hero__sub {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  max-width: 560px;
  text-align: left;
  font-weight: 300;
  margin-top: 24px;
}

/* Dark rounded card */
.home-hero__card {
  background: #000000;
  border-radius: 24px;
  padding: 36px 40px 32px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.home-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 50%, rgba(40, 40, 40, 0.6), transparent 70%);
  pointer-events: none;
}

.home-hero__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  gap: 20px;
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.home-hero__btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.home-hero__car {
  flex: 1;
  position: relative;
  z-index: 2;
  margin: 20px 0 30px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__car img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
}

/* Quote form inside dark card */
.home-hero__quote {
  position: relative;
  z-index: 3;
}

.home-hero__quote-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero__quote-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.home-hero__form {
  background: #FFFFFF;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  align-items: center;
  padding: 12px 12px 12px 30px;
  gap: 0;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
}

.home-hero__form-field {
  display: flex;
  flex-direction: column;
  padding: 10px 22px 10px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  min-width: 0;
}

.home-hero__form-field + .home-hero__form-field {
  padding-left: 22px;
}

.home-hero__form-field:nth-last-of-type(1) {
  border-right: none;
}

.home-hero__form-field label {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 4px;
  font-weight: 500;
  font-family: var(--font-body);
}

.home-hero__form-field input {
  background: transparent;
  border: none;
  padding: 2px 0;
  font-size: 13px;
  color: #0a0a0a;
  font-weight: 400;
  font-family: var(--font-body);
  width: 100%;
  min-width: 0;
}

.home-hero__form-field input::placeholder {
  color: #c0c0c0;
}

.home-hero__form-field input:focus {
  outline: none;
}

.home-hero__next {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: all 0.4s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.home-hero__next:hover {
  background: transparent;
  color: #000000;
}

/* Force dark nav on home page (over white background) */
.nav--force-dark,
.nav--force-dark.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--color-border-soft);
}

@media (max-width: 1100px) {
  .home-hero__form {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 6px 10px;
  }
  .home-hero__form-field,
  .home-hero__form-field + .home-hero__form-field {
    border-right: none;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .home-hero__next {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    justify-content: center;
    padding: 20px;
  }
}

@media (max-width: 760px) {
  .home-hero { padding: 130px 0 40px; }
  .home-hero__top {
    padding-bottom: 40px;
  }
  .home-hero__sub {
    max-width: 100%;
  }
  .home-hero__card {
    padding: 24px 20px 20px;
    min-height: 520px;
    border-radius: 18px;
  }
  .home-hero__card-top {
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero__btn {
    justify-content: center;
  }
  .home-hero__car {
    min-height: 200px;
  }
  .home-hero__form {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}

.quote-bar {
  background: var(--color-white);
  color: var(--color-black);
  padding: 80px 0;
  position: relative;
  z-index: 3;
}

.quote-bar__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.quote-bar__heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.quote-bar__heading em {
  font-style: italic;
}

.quote-bar__eyebrow {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.quote-bar__sub {
  text-align: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 48px;
  font-weight: 300;
}

.quote-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 52px;
  align-items: end;
}

.quote-bar__field {
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote-bar__field label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 8px;
  font-weight: 500;
}

.quote-bar__field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-black);
  font-weight: 400;
  transition: border-color 0.35s var(--ease-out);
  border-radius: 0;
}

.quote-bar__field input::placeholder {
  color: #b5b5b5;
}

.quote-bar__field input:focus {
  outline: none;
  border-bottom-color: var(--color-black);
}

.quote-bar__btn {
  background: var(--color-black);
  color: var(--color-white);
  padding: 20px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--color-black);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 52px auto 0;
  min-width: 260px;
}

.quote-bar__btn:hover {
  background: transparent;
  color: var(--color-black);
}

.quote-bar__btn-wrap {
  text-align: center;
}

@media (max-width: 720px) {
  .quote-bar { padding: 60px 0; }
  .quote-bar__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .quote-bar__btn {
    width: 100%;
    min-width: 0;
  }
}

/* -------------------- Trusted By Carousel -------------------- */
.trusted {
  background: #F5F0E8;
  padding: 48px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.trusted__title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 30px;
  font-weight: 500;
  font-family: var(--font-body);
}

.carousel-wrapper {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: #F5F0E8;
  padding: 40px 0;
  width: 100%;
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  -webkit-animation: ticker 12s linear infinite;
  animation: ticker 12s linear infinite;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.carousel-track img {
  height: 50px;
  width: auto;
  margin: 0 50px;
  flex-shrink: 0;
}

@-webkit-keyframes ticker {
  0%   { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------- Why Choose Us v2 -------------------- */
.why-v2 {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}

.why-v2__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.92)),
    url('https://placehold.co/2000x1200/0A0A0A/1a1a1a') center/cover no-repeat;
  z-index: 0;
}

.why-v2__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.why-v2__title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 20px 0 28px;
}

.why-v2__title em {
  font-style: italic;
  font-weight: 400;
}

.why-v2__text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 44px;
}

.why-v2__stats {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-v2__stat {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.why-v2__stat:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.why-v2__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--color-white);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.why-v2__stat-label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
}

@media (max-width: 960px) {
  .why-v2__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-v2__stats { grid-template-columns: 1fr; }
}

/* -------------------- Services Grid v2 -------------------- */
.services-grid {
  padding: clamp(80px, 10vw, 140px) 0;
}

.services-grid__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  background: var(--color-black-soft);
  border: 1px solid var(--color-border-soft);
  transition: border-color 0.5s var(--ease-out);
}

.service-card:hover {
  border-color: var(--color-border);
}

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
  transition: transform 1.4s var(--ease-out), filter 0.8s var(--ease-out);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
  filter: brightness(0.4) contrast(1.1) saturate(0.9);
}

.service-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 1;
}

.service-card__label {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.service-card__title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 400;
  color: var(--color-white);
}

.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}

.service-card__arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: all 0.5s var(--ease-out);
}

.service-card:hover .service-card__arrow {
  background: var(--color-white);
  color: var(--color-black);
  transform: rotate(-45deg);
}

.service-card__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(5, 5, 5, 0.86);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
  pointer-events: none;
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__overlay-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-white);
  font-style: italic;
  max-width: 440px;
}

@media (max-width: 860px) {
  .services-grid__wrap { grid-template-columns: 1fr; gap: 28px; }
  .service-card__label { left: 28px; right: 28px; bottom: 28px; }
  .service-card__overlay { padding: 40px 28px; }
}

/* -------------------- Fleet Card v2 (seats / baggage) -------------------- */
.fleet-card--v2 .fleet-card__body {
  padding: 32px 34px 34px;
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  margin: 20px 0 28px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.fleet-card__spec {
  text-align: center;
  padding: 0 10px;
}

.fleet-card__spec-icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 10px;
  color: var(--color-white);
}

.fleet-card__spec-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.fleet-card__spec-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 4px;
  display: block;
}

.fleet-card__spec-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  font-weight: 500;
  display: block;
}

.fleet-card__divider {
  width: 1px;
  height: 36px;
  background: var(--color-border-soft);
  justify-self: center;
}

.fleet-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* -------------------- Vehicle Detail Page -------------------- */
.vehicle-detail {
  padding: 180px 0 120px;
  position: relative;
}

.vehicle-detail__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.vehicle-detail__back {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s var(--ease-out);
}

.vehicle-detail__back:hover { color: var(--color-white); }

.vehicle-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.vehicle-detail__body {
  order: 1;
}

.vehicle-detail__media {
  order: 2;
}

.vehicle-detail__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.vehicle-detail__tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 8px 18px;
  border: 1px solid var(--color-border);
}

.vehicle-detail__title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.vehicle-detail__title em {
  font-style: italic;
  font-weight: 400;
}

.vehicle-detail__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.vehicle-detail__amenity-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.vehicle-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
  list-style: none;
}

.vehicle-detail__amenities li {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  color: var(--color-white);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.vehicle-detail__image-wrap {
  background: #000;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--color-border-soft);
}

.vehicle-detail__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
}

.vehicle-detail__interior {
  margin-top: 30px;
  aspect-ratio: 16/9;
  background: var(--color-black-soft);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-dim);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
}

.vehicle-detail__interior::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  top: calc(50% - 38px);
  left: 50%;
  transform: translateX(-50%);
}

.vehicle-detail__interior span {
  margin-top: 40px;
  display: block;
}

.vehicle-detail__get-quote {
  position: absolute;
  top: 180px;
  right: var(--gutter);
}

@media (max-width: 960px) {
  .vehicle-detail__grid { grid-template-columns: 1fr; gap: 50px; }
  .vehicle-detail__media { order: 1; }
  .vehicle-detail__body { order: 2; }
  .vehicle-detail__get-quote {
    position: static;
    margin-bottom: 30px;
    display: inline-flex;
  }
}

/* -------------------- Service Detail Page -------------------- */
.service-detail {
  padding: 0 0 120px;
}

.service-detail__hero {
  position: relative;
  height: 62vh;
  min-height: 460px;
  overflow: hidden;
  margin-bottom: 100px;
}

.service-detail__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
}

.service-detail__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.3) 40%, var(--color-black) 100%);
}

.service-detail__hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 2;
}

.service-detail__hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: 16px;
}

.service-detail__hero-title em {
  font-style: italic;
  font-weight: 400;
}

.service-detail__body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
}

.service-detail__body p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-detail__list {
  list-style: none;
  margin: 30px 0 40px;
}

.service-detail__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-soft);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--color-text);
  font-size: 14px;
}

.service-detail__list li::before {
  content: '—';
  color: var(--color-white);
  font-weight: 500;
}

.service-detail__aside {
  background: var(--color-black-soft);
  padding: 44px 40px;
  border: 1px solid var(--color-border-soft);
  align-self: start;
  position: sticky;
  top: 120px;
}

.service-detail__aside h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-detail__aside p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.service-detail__aside .btn {
  width: 100%;
}

@media (max-width: 960px) {
  .service-detail__body { grid-template-columns: 1fr; gap: 50px; }
  .service-detail__aside { position: static; }
}

/* -------------------- Service Detail V2 (white layout) -------------------- */
.svc-light {
  background: #ffffff;
  color: #0a0a0a;
  padding: 150px 0 100px;
  position: relative;
  z-index: 2;
}

.svc-light__back {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  transition: color 0.3s var(--ease-out);
}

.svc-light__back:hover { color: #0a0a0a; }

.svc-light__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  color: #0a0a0a;
  letter-spacing: -0.015em;
  line-height: 0.96;
  margin-bottom: 56px;
}

.svc-light__title em {
  font-style: italic;
  font-weight: 400;
}

.svc-light__two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.svc-light__right {
  position: sticky;
  top: 100px;
}

.svc-light__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.svc-light__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inline quote form on white bg */
.svc-light__form-wrap {
  padding: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #ffffff;
}

.svc-light__form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.svc-light__form-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}

.svc-light__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.svc-light__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 500;
}

.svc-light__field input,
.svc-light__field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 400;
  transition: border-color 0.35s var(--ease-out);
}

.svc-light__field input::placeholder,
.svc-light__field textarea::placeholder {
  color: #c0c0c0;
}

.svc-light__field input:focus,
.svc-light__field textarea:focus {
  outline: none;
  border-color: #0a0a0a;
}

.svc-light__field textarea {
  resize: vertical;
  min-height: 130px;
}

.svc-light__submit {
  background: #0a0a0a;
  color: #ffffff;
  border: 1px solid #0a0a0a;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  width: 100%;
  margin-top: 6px;
}

.svc-light__submit:hover {
  background: transparent;
  color: #0a0a0a;
}

/* Description area below two cols */
.svc-light__desc {
  max-width: 860px;
}

.svc-light__desc p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.svc-light__desc ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.svc-light__desc ul li {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: #333;
}

.svc-light__desc ul li::before {
  content: '—';
  color: #0a0a0a;
  font-weight: 500;
  flex-shrink: 0;
}

/* More Services section */
.more-services {
  padding: 100px 0;
  background: #fafafa;
  position: relative;
  z-index: 2;
}

.more-services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.more-services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

.more-services__title em {
  font-style: italic;
  font-weight: 400;
}

.more-services__link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0a0a0a;
  font-weight: 600;
  font-family: var(--font-body);
  transition: opacity 0.3s var(--ease-out);
  white-space: nowrap;
}

.more-services__link:hover { opacity: 0.55; }

.more-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.more-svc-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
  display: block;
  background: #111;
}

.more-svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
  transition: transform 1.2s var(--ease-out), filter 0.6s var(--ease-out);
}

.more-svc-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.45) contrast(1.1) saturate(0.9);
}

.more-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.more-svc-card__name {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 960px) {
  .more-services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .svc-light__two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-light__right {
    position: static;
    order: 3;
  }
  .svc-light__img {
    order: 1;
  }
  .svc-light__desc-mobile {
    order: 2;
  }
  .svc-light__form-wrap {
    padding: 28px 24px;
  }
  .more-services__grid { grid-template-columns: 1fr; }
}

/* -------------------- Quote button utility -------------------- */
.btn--quote {
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
}

.btn--quote:hover {
  background: transparent;
  color: var(--color-white);
}

/* -------------------- Contact form v2 -------------------- */
.contact-v2 {
  padding: clamp(80px, 10vw, 120px) 0 60px;
}

.contact-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.contact-v2__form-wrap {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.contact-v2__title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
  font-weight: 300;
}

.contact-v2__title em {
  font-style: italic;
}

.contact-v2__sub {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 50px;
}

.contact-v2__form {
  background: #ffffff;
  padding: 56px 52px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.08);
}

.contact-v2__form::before {
  display: none;
}

.contact-v2__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 26px;
}

.contact-v2__form-grid .form-field--full {
  grid-column: 1 / -1;
}

.contact-info-strip {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  padding: 70px 0;
}

.contact-info-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-info-strip__item {
  padding: 0 20px;
  border-right: 1px solid var(--color-border-soft);
}

.contact-info-strip__item:last-child { border-right: none; }

.contact-info-strip__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  color: var(--color-white);
}

.contact-info-strip__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.contact-info-strip__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 10px;
}

.contact-info-strip__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-cream);
  font-weight: 400;
}

.contact-info-strip__value a:hover {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .contact-v2__form-grid { grid-template-columns: 1fr; }
  .contact-v2__form { padding: 36px 24px; }
  .contact-info-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .contact-info-strip__item { border-right: none; }
  .contact-info-strip__item:nth-child(2) { border-right: none; }
}


/* ==========================================================================
   LIGHT THEME — White backgrounds, black text
   Nav, footer, hero card, page-hero, CTA banner, and why-v2 stay dark.
   ========================================================================== */

/* ---- Base ---- */
body {
  background: #ffffff;
  color: #1a1a1a;
}

body::before { display: none; }

h1, h2, h3, h4, h5, h6 { color: #0a0a0a; }
.section-title em { color: #0a0a0a; }

.eyebrow { color: #666; }
.eyebrow::before { background: #666; }
.lead { color: #555; }
.gold-rule { background: #e5e5e5; }

/* ---- Restore headings/text inside dark sections ---- */
.page-hero h1,
.page-hero .eyebrow,
.why-v2 h2,
.why-v2 .eyebrow,
.footer h4,
.footer .footer__heading { color: rgba(255, 255, 255, 0.8); }

.page-hero h1,
.why-v2 h2 { color: #ffffff; }
.page-hero .eyebrow,
.why-v2 .eyebrow { color: rgba(255, 255, 255, 0.85); }
.page-hero .eyebrow::before,
.why-v2 .eyebrow::before { background: rgba(255, 255, 255, 0.85); }
.why-v2__title em,
.page-hero__title em { color: #ffffff; }
.page-hero__sub { color: rgba(255, 255, 255, 0.7); }
.footer .footer__heading::before { background: rgba(255, 255, 255, 0.8); }

/* ---- Buttons ---- */
.btn--gold { background: #0a0a0a; color: #ffffff; }
.btn--gold::before { background: #333; }
.btn--gold:hover { box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3); }
.btn--outline { border-color: rgba(0, 0, 0, 0.25); color: #0a0a0a; }
.btn--outline:hover { border-color: #0a0a0a; color: #0a0a0a; background: rgba(0, 0, 0, 0.03); }
.btn--ghost { color: #0a0a0a; }
.btn--ghost::after { background: #0a0a0a; }

/* ---- Features / Why Choose Us (old section) ---- */
.features { background: #f8f8f8; border-color: #e5e5e5; }
.feature { border-color: #e5e5e5; }
.feature:hover { background: rgba(0, 0, 0, 0.02); }
.feature__icon { color: #0a0a0a; }
.feature__text { color: #555; }

/* ---- Testimonials ---- */
.testimonials { background: #f8f8f8; border-color: #e5e5e5; }
.testimonial { background: #ffffff; border-color: #e5e5e5; }
.testimonial:hover { border-color: #ccc; }
.testimonial__mark { color: #0a0a0a; }
.testimonial__stars { color: #0a0a0a; }
.testimonial__text { color: #333; }
.testimonial__avatar { background: rgba(0, 0, 0, 0.05); border-color: #e5e5e5; color: #0a0a0a; }
.testimonial__name { color: #0a0a0a; }
.testimonial__role { color: #888; }
.testimonial__author { border-color: #e5e5e5; }

/* ---- Services strip ---- */
.service-pill { border-color: #e5e5e5; color: #0a0a0a; }
.service-pill::before { background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.03) 100%); }
.service-pill__num { color: #0a0a0a; }
.service-pill__title { color: #0a0a0a; }
.service-pill__text { color: #555; }

/* ---- Fleet cards ---- */
.fleet-card { background: #ffffff; border-color: #e5e5e5; }
.fleet-card:hover { border-color: #0a0a0a; }
.fleet-card__tag { color: #0a0a0a; background: rgba(255, 255, 255, 0.92); border-color: #e5e5e5; }
.fleet-card__name { color: #0a0a0a; }
.fleet-card__meta { color: #555; }
.fleet-card__features li { color: #555; border-color: #e5e5e5; }
.fleet-card__features li::before { background: #0a0a0a; }
.fleet-card__cta { border-color: #0a0a0a; color: #0a0a0a; }
.fleet-card__cta:hover { background: #0a0a0a; color: #ffffff; }
.fleet-card__specs { border-color: #e5e5e5; }
.fleet-card__divider { background: #e5e5e5; }
.fleet-card__spec-icon { color: #0a0a0a; }
.fleet-card__spec-label { color: #888; }
.fleet-card__spec-value { color: #0a0a0a; }

/* ---- Stats ---- */
.stats { background: #f8f8f8; border-color: #e5e5e5; }
.stat { border-color: #e5e5e5; }
.stat__number { color: #0a0a0a; }
.stat__label { color: #555; }

/* ---- Values ---- */
.values { background: #f8f8f8; border-color: #e5e5e5; }
.value::before { background: linear-gradient(to bottom, #0a0a0a, transparent); }
.value__icon { color: #0a0a0a; }
.value__text { color: #555; }

/* ---- Story / About ---- */
.story__body p { color: #555; }
.story__signature { border-color: #e5e5e5; }
.story__signature-name { color: #0a0a0a; }
.story__signature-role { color: #555; }

/* ---- Contact form v2 ---- */
.contact-v2__title { color: #0a0a0a; }
.contact-v2__sub { color: #555; }
.contact-v2__form { background: #ffffff; border-color: #e5e5e5; box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.08); }
.contact-v2__form::before { display: none; }

.contact-v2__form .form-field label { color: #333333; font-weight: 500; }
.contact-v2__form .form-field input,
.contact-v2__form .form-field textarea {
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  padding: 14px 0;
  transition: border-color 0.35s var(--ease-out);
}
.contact-v2__form .form-field input::placeholder,
.contact-v2__form .form-field textarea::placeholder { color: #999999; }
.contact-v2__form .form-field input:focus,
.contact-v2__form .form-field textarea:focus { border-bottom-color: #0a0a0a; outline: none; }
.form-field input,
.form-field select,
.form-field textarea { color: #0a0a0a; border-bottom-color: #d8d8d8; }
.form-field label { color: #888; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: #0a0a0a; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #bbb; }
.form-field select option { background: #fff; color: #0a0a0a; }

/* ---- Contact info strip ---- */
.contact-info-strip { background: #f8f8f8; border-color: #e5e5e5; }
.contact-info-strip__item { border-color: #e5e5e5; }
.contact-info-strip__icon { color: #0a0a0a; }
.contact-info-strip__label { color: #888; }
.contact-info-strip__value { color: #0a0a0a; }

/* ---- Map placeholder ---- */
.map-embed { background: #f0f0f0; border-color: #e5e5e5; }
.map-embed::before { background: linear-gradient(135deg, rgba(240, 240, 240, 0.5), rgba(240, 240, 240, 0.85)), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 0, 0, 0.04) 60px, rgba(0, 0, 0, 0.04) 61px), repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 0, 0, 0.04) 60px, rgba(0, 0, 0, 0.04) 61px); }
.map-embed__pin { color: #0a0a0a; }
.map-embed__label { color: #0a0a0a; }
.map-embed__sub { color: #555; }

/* ---- Vehicle detail pages ---- */
.vehicle-detail__tag { color: #0a0a0a; border-color: #0a0a0a; }
.vehicle-detail__title { color: #0a0a0a; }
.vehicle-detail__desc { color: #555; }
.vehicle-detail__amenity-label { color: #888; }
.vehicle-detail__amenities li { color: #0a0a0a; border-color: #0a0a0a; background: rgba(0, 0, 0, 0.02); }
.vehicle-detail__image-wrap { background: #ffffff; border-color: #e5e5e5; }
.vehicle-detail__interior { background: #f8f8f8; border-color: #e5e5e5; color: #888; }
.vehicle-detail__interior::before { border-color: #e5e5e5; }
.vehicle-detail__back { color: #888; }
.vehicle-detail__back:hover { color: #0a0a0a; }

/* ---- More Services cards (keep overlays dark) ---- */
.more-services { background: #f8f8f8; }
.more-services__title { color: #0a0a0a; }
.more-services__title em { color: #0a0a0a; }
.more-services__link { color: #0a0a0a; }

/* ---- Contact Form Card (clean white) ---- */
.contact-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 60px 56px;
  box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.07);
}

.contact-form-card__header {
  margin-bottom: 48px;
}

.contact-form-card__header .eyebrow {
  color: #666;
  margin-bottom: 16px;
}

.contact-form-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.contact-form-card__title em {
  font-style: italic;
}

.contact-form-card__sub {
  font-size: 14px;
  color: #888;
}

.contact-form-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.contact-form-card__field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #333333;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 10px;
}

.contact-form-card__field input,
.contact-form-card__field textarea {
  width: 100%;
  background: #ffffff;
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  padding: 12px 0;
  font-size: 14px;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 400;
  transition: border-color 0.35s var(--ease-out);
}

.contact-form-card__field input::placeholder,
.contact-form-card__field textarea::placeholder {
  color: #999999;
}

.contact-form-card__field input:focus,
.contact-form-card__field textarea:focus {
  outline: none;
  border-bottom-color: #0a0a0a;
}

.contact-form-card__field textarea {
  resize: vertical;
  min-height: 120px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 16px 18px;
}

.contact-form-card__field textarea:focus {
  border-color: #0a0a0a;
}

.contact-form-card__field--full {
  margin-bottom: 36px;
}

.contact-form-card__submit {
  display: block;
  width: 100%;
  background: #0a0a0a;
  color: #ffffff;
  border: 1px solid #0a0a0a;
  padding: 20px;
  border-radius: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.contact-form-card__submit:hover {
  background: transparent;
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 36px 24px;
    border-radius: 16px;
  }
  .contact-form-card__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---- Instagram Gallery ---- */
.insta-gallery {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #ffffff;
}

.insta-gallery__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}

.insta-gallery__header svg {
  width: 24px;
  height: 24px;
  stroke: #0a0a0a;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.insta-gallery__header a {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  letter-spacing: 0.04em;
  transition: opacity 0.3s var(--ease-out);
}

.insta-gallery__header a:hover {
  opacity: 0.55;
}

.insta-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insta-gallery__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  background: #f0f0f0;
}

.insta-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.insta-gallery__item:hover img {
  transform: scale(1.05);
}

.insta-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s var(--ease-out);
}

.insta-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .insta-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ---- Scroll reveal keeps working ---- */
.reveal { opacity: 0; }
.reveal.is-visible { opacity: 1; }

/* ==========================================================================
   HOME PAGE V3 — About Us, Fleet Preview, How It Works, Testimonials v2,
   Why Choose Us rounded card
   ========================================================================== */

/* ---- About Us (home) ---- */
.home-about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #ffffff;
}

.home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.home-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #b08d3e;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.home-about__eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #b08d3e;
}

.home-about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.15;
  margin-bottom: 28px;
}

.home-about__text {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 36px;
}

.home-about__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  color: #0a0a0a;
  transition: all 0.4s var(--ease-out);
}

.home-about__btn:hover {
  background: #0a0a0a;
  color: #ffffff;
}

.home-about__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.home-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ---- Fleet Preview (home) ---- */
.home-fleet {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #f8f8f8;
}

.home-fleet__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.home-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.home-fleet__more {
  text-align: center;
}

.home-fleet__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  color: #0a0a0a;
  transition: all 0.4s var(--ease-out);
}

.home-fleet__more-btn:hover {
  background: #0a0a0a;
  color: #ffffff;
}

@media (max-width: 960px) {
  .home-fleet__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .home-fleet__grid { grid-template-columns: 1fr; }
}

/* ---- Why Choose Us v3 (dark rounded card) ---- */
.why-card {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #ffffff;
}

.why-card__inner {
  background: #0a0a0a;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(40px, 6vw, 80px);
}

.why-card__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(60, 60, 60, 0.5), transparent 70%);
  pointer-events: none;
}

.why-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 16px 0 28px;
}

.why-card__title em {
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
}

.why-card__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.why-card .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.why-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.7);
}

.why-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid #ffffff;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.4s var(--ease-out);
}

.why-card__btn:hover {
  background: transparent;
  color: #ffffff;
}

.why-card__stats {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.why-card__stat {
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.why-card__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.why-card__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card__stat-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

@media (max-width: 960px) {
  .why-card__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-card__stats { grid-template-columns: 1fr; }
  .why-card__inner { border-radius: 20px; }
}

/* ---- How It Works ---- */
.how-it-works {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #ffffff;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 70px;
}

.how-it-works__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #0a0a0a;
  margin-top: 16px;
}

.how-it-works__title em { font-style: italic; font-weight: 400; }

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: #e5e5e5;
  z-index: 0;
}

.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hiw-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.hiw-step__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.hiw-step__text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .how-it-works__steps::before { display: none; }
}

/* ---- Testimonials v2 (split layout) ---- */
.testi-v2 {
  padding: clamp(80px, 10vw, 130px) 0;
  background: #f8f8f8;
}

.testi-v2__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.testi-v2__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.08;
}

.testi-v2__title em {
  font-style: italic;
  font-weight: 400;
}

.testi-v2__sub {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-top: 24px;
}

.testi-v2__card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 50px 48px;
  position: relative;
}

.testi-v2__quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.5;
  color: #0a0a0a;
  position: absolute;
  top: 38px;
  left: 36px;
  opacity: 0.08;
  pointer-events: none;
  font-style: italic;
}

.testi-v2__stars {
  color: #0a0a0a;
  letter-spacing: 4px;
  font-size: 16px;
  margin-bottom: 24px;
}

.testi-v2__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: #333;
  margin-bottom: 32px;
}

.testi-v2__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}

.testi-v2__author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-v2__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 500;
}

.testi-v2__name {
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
}

.testi-v2__role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-top: 3px;
}

.testi-v2__arrows {
  display: flex;
  gap: 10px;
}

.testi-v2__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  background: transparent;
  color: #0a0a0a;
}

.testi-v2__arrow:hover {
  background: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}

.testi-v2__arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

@media (max-width: 860px) {
  .testi-v2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testi-v2__card { padding: 36px 28px; }
}

