:root {
  --ink: #0a0a0b;
  --ink-soft: #131316;
  --graphite: #1c1d20;
  --paper: #f5f3ef;
  --white: #ffffff;
  --smoke: #d7d4ce;
  --muted: #77777f;
  --line: rgba(12, 12, 14, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #d81920;
  --red-dark: #a50e14;
  --green: #46c779;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container: min(1344px, calc(100% - 96px));
  --header-height: 88px;
  --shadow-card: 0 24px 70px rgba(12, 12, 14, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--red);
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #ff5257;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg:not(.brand-mark, .svg-sprite) {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition:
    background-color 280ms ease,
    backdrop-filter 280ms ease,
    transform 280ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-102%);
}

.nav-shell {
  display: flex;
  width: var(--container);
  min-height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: 206px;
  justify-content: flex-start;
  line-height: 1;
}

.brand-logo-shell {
  display: inline-flex;
  width: 206px;
  aspect-ratio: 929 / 202;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  /* Preserve the supplied logo exactly while adapting its white canvas for dark surfaces. */
  filter: invert(1) hue-rotate(180deg) saturate(1.08) brightness(1.08) contrast(1.04);
  mix-blend-mode: screen;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  padding-block: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 200ms ease;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
}

.nav-phone svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease);
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 12px;
}

.button--red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(216, 25, 32, 0.2);
}

.button--red:hover {
  background: #ee2128;
  box-shadow: 0 18px 36px rgba(216, 25, 32, 0.3);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--red);
}

.button--wide {
  width: 100%;
}

.menu-toggle,
.menu-close {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  visibility: hidden;
  padding: 120px max(28px, 7vw) 48px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
}

.mobile-menu::before {
  position: absolute;
  top: -20%;
  right: -35%;
  width: 80vw;
  height: 80vw;
  border: 1px solid rgba(216, 25, 32, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(216, 25, 32, 0.03), 0 0 0 160px rgba(216, 25, 32, 0.02);
  content: "";
  pointer-events: none;
}

.mobile-menu.is-open {
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: max(24px, 5vw);
  display: inline-flex;
}

.mobile-menu nav {
  position: relative;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  padding-block: 12px;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.mobile-menu nav a span {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: 900px;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade,
.hero-redline {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.98) 0%, rgba(7, 7, 9, 0.9) 34%, rgba(7, 7, 9, 0.38) 67%, rgba(7, 7, 9, 0.38) 100%),
    linear-gradient(0deg, rgba(7, 7, 9, 0.9) 0%, transparent 42%);
}

.hero-redline {
  inset: auto -8% 145px 40%;
  height: 1px;
  background: rgba(216, 25, 32, 0.7);
  box-shadow: 0 0 42px 10px rgba(216, 25, 32, 0.22);
  transform: rotate(-5deg);
  transform-origin: left;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 700px;
  padding: 120px 0 190px;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #55565d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--red);
}

.eyebrow--light,
.hero-eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.hero-title {
  max-width: 720px;
  margin: 22px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(76px, 7.1vw, 126px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title span,
.section-heading h2 em,
.journey-copy h2 em,
.story-copy h2 em,
.why-heading h2 em,
.final-cta h2 em {
  display: block;
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

.hero-lede {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  align-items: center;
  gap: 34px;
}

.text-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 600;
}

.play-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.play-icon svg {
  width: 20px;
  height: 20px;
}

.text-link:hover .play-icon {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.hero-proof {
  display: flex;
  margin-top: 54px;
  gap: 0;
}

.hero-proof > div {
  display: flex;
  min-width: 150px;
  padding-left: 20px;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.hero-rate {
  position: absolute;
  right: 0;
  bottom: 220px;
  width: 220px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.rate-topline {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b6eac8;
}

.live-dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(70, 199, 121, 0.12);
  content: "";
}

.hero-rate > strong {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-rate > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.rate-car {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
}

.booking-wrap {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: -66px;
  left: 0;
}

.booking-panel {
  display: grid;
  min-height: 132px;
  padding: 22px;
  grid-template-columns: 1.15fr repeat(4, minmax(145px, 1fr)) 1.1fr;
  align-items: end;
  gap: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(12, 12, 14, 0.24);
}

.booking-heading {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
}

.booking-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.booking-heading > div {
  display: flex;
  flex-direction: column;
}

.booking-heading strong {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-heading span:last-child {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.booking-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #6a6a70;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-shell {
  display: flex;
  min-height: 50px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e0dc;
  background: #faf9f7;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-shell:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216, 25, 32, 0.1);
}

.field-shell svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--red);
}

.field-shell input,
.field-shell select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
}

.booking-submit {
  min-height: 50px;
  align-self: end;
}

.trust-ribbon {
  padding: 124px 0 54px;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  position: relative;
  display: flex;
  min-height: 116px;
  padding: 28px 28px;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item > svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.trust-item > div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-item div span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.trust-number {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #bcb9b3;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.section {
  padding: 112px 0;
}

.fleet-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading h2,
.journey-copy h2,
.story-copy h2,
.why-heading h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading h2 em {
  display: inline;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.fleet-toolbar {
  display: flex;
  margin: 48px 0 24px;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #65656a;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.car-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms ease;
}

.car-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-card);
  transform: translateY(-7px);
}

.car-card.is-hidden {
  display: none;
}

.car-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.15 / 1;
  background: #dedcd7;
}

.car-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
  content: "";
  pointer-events: none;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 400ms ease;
}

.car-card:hover .car-image img {
  transform: scale(1.055);
}

.car-tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(8, 8, 10, 0.76);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-count {
  position: absolute;
  z-index: 2;
  right: 64px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.favorite {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 8, 10, 0.25);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.favorite svg {
  width: 19px;
  height: 19px;
  fill: transparent;
  transition: fill 180ms ease;
}

.favorite:hover,
.favorite.is-saved {
  border-color: var(--red);
  background: var(--red);
  transform: scale(1.05);
}

.favorite.is-saved svg {
  fill: currentColor;
}

.car-content {
  padding: 20px 20px 18px;
}

.car-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.car-title > div:first-child span {
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.car-title h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.car-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-variant-numeric: tabular-nums;
}

.car-price strong {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
}

.car-price span {
  color: var(--muted);
  font-size: 9px;
}

.car-specs {
  display: flex;
  margin: 18px 0;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.car-specs span {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--line);
}

.car-specs span:first-child {
  text-align: left;
}

.car-specs span:last-child {
  text-align: right;
  border-right: 0;
}

.card-cta,
.text-arrow-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-cta svg,
.text-arrow-link svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  transition: transform 220ms var(--ease);
}

.card-cta:hover svg,
.text-arrow-link:hover svg {
  transform: translateX(5px);
}

.fleet-footer {
  display: flex;
  margin-top: 34px;
  padding-top: 28px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  gap: 24px;
}

.fleet-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fleet-footer p strong {
  color: var(--ink);
}

.journey-section {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.journey-media,
.journey-shade {
  position: absolute;
  inset: 0;
}

.journey-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.7) contrast(1.1);
}

.journey-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.8) 44%, rgba(8, 8, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.7), transparent 70%);
}

.journey-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 780px;
  padding: 100px 0;
  grid-template-columns: 1fr minmax(440px, 0.75fr);
  align-items: center;
  gap: 80px;
}

.journey-copy {
  max-width: 620px;
}

.journey-copy h2 {
  font-size: clamp(70px, 7vw, 112px);
}

.journey-copy p {
  max-width: 500px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.75;
}

.service-stack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.service-card {
  display: grid;
  min-height: 152px;
  padding: 28px 0;
  grid-template-columns: 40px 1fr 32px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 240ms var(--ease), background-color 240ms ease;
}

.service-card:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.service-card > span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
}

.service-card > svg {
  color: rgba(255, 255, 255, 0.6);
}

.story-section {
  overflow: hidden;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) 0.85fr;
  align-items: center;
  gap: 100px;
}

.catalog-visual {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  isolation: isolate;
}

.catalog-visual::before {
  position: absolute;
  z-index: -2;
  top: 7%;
  left: -15%;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f13438 0%, #c70810 72%);
  box-shadow: 0 40px 120px rgba(216, 25, 32, 0.25);
  content: "";
}

.direct-line-orbit {
  position: absolute;
  z-index: -1;
  top: 3%;
  left: -1%;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(216, 25, 32, 0.24);
  border-radius: 50%;
}

.conversation-card {
  position: relative;
  z-index: 2;
  width: min(520px, 90%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--white);
  background: #0a0a0c;
  box-shadow: 0 44px 110px rgba(10, 10, 11, 0.34);
  transform: rotate(-2.4deg);
}

.conversation-head {
  display: grid;
  padding: 20px 22px;
  align-items: center;
  grid-template-columns: 54px 1fr 28px;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.conversation-head > svg {
  width: 26px;
  height: 26px;
  color: #2bd66f;
}

.conversation-logo {
  display: flex;
  width: 54px;
  height: 54px;
  padding: 8px;
  align-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.conversation-logo img {
  width: 100%;
  height: auto;
}

.conversation-head strong,
.conversation-head span {
  display: block;
}

.conversation-head strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.conversation-head span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.conversation-head i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #2bd66f;
}

.conversation-body {
  display: flex;
  min-height: 390px;
  padding: 28px 24px 18px;
  flex-direction: column;
  background:
    linear-gradient(rgba(10, 10, 12, 0.86), rgba(10, 10, 12, 0.92)),
    radial-gradient(circle at 15% 15%, rgba(216, 25, 32, 0.2), transparent 45%);
}

.chat-bubble {
  max-width: 78%;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 2px 14px 14px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: #202024;
  font-size: 13px;
  line-height: 1.55;
}

.chat-bubble--renturk {
  align-self: flex-end;
  border-radius: 14px 2px 14px 14px;
  color: var(--white);
  background: #7d1015;
}

.vehicle-reply {
  display: grid;
  width: 82%;
  margin: 0 0 16px auto;
  padding: 8px;
  align-items: center;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  background: #151518;
}

.vehicle-reply img {
  width: 118px;
  height: 86px;
  object-fit: cover;
}

.vehicle-reply span,
.vehicle-reply strong,
.vehicle-reply small {
  display: block;
}

.vehicle-reply span {
  margin-bottom: 6px;
  color: #ec565c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-reply strong {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
}

.vehicle-reply small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.message-status {
  align-self: flex-end;
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.message-status i {
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-left: -2px;
  border-right: 1px solid #59aef7;
  border-bottom: 1px solid #59aef7;
  transform: rotate(42deg);
}

.conversation-compose {
  display: flex;
  min-height: 62px;
  padding: 0 18px 0 22px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  background: #111114;
  font-size: 11px;
}

.conversation-compose svg {
  width: 34px;
  height: 34px;
  padding: 9px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}

.response-ticket {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 11%;
  width: 210px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(10, 10, 11, 0.24);
  transform: rotate(4deg);
}

.response-ticket span,
.response-ticket small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.response-ticket strong {
  display: block;
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}

.response-ticket small {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--red);
}

.story-copy {
  max-width: 580px;
}

.story-lede {
  max-width: 520px;
  margin: 30px 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.story-points {
  border-top: 1px solid var(--line);
}

.story-points > div {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.story-points > div > strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 14px;
}

.story-points h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
}

.story-points p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.text-arrow-link {
  max-width: 220px;
  margin-top: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
}

.why-section {
  padding: 116px 0;
  color: var(--white);
  background: var(--ink);
}

.why-heading {
  display: flex;
  margin-bottom: 54px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.why-heading h2 {
  font-size: clamp(60px, 6vw, 94px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.why-card {
  position: relative;
  min-height: 330px;
  padding: 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 240ms ease;
}

.why-card:hover {
  background: var(--graphite);
}

.why-card > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-display);
  font-size: 12px;
}

.why-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 72px;
  color: var(--red);
}

.why-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.why-card p {
  max-width: 310px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.final-cta {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.72) 46%, rgba(8, 8, 10, 0.45) 100%),
    url("assets/renturk-fleet-hero-v2.jpg?v=3") center 58% / cover no-repeat;
  filter: saturate(0.72);
  transform: scale(1.08);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 610px;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 80px;
}

.final-cta h2 {
  font-size: clamp(74px, 8vw, 120px);
}

.cta-panel {
  padding: 36px;
}

.cta-panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cta-panel .button > svg:first-child {
  transform: none;
}

.cta-phone {
  display: block;
  min-height: 44px;
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background: #050506;
}

.footer-main {
  display: grid;
  padding: 72px 0 58px;
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 64px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-logo-shell {
  width: min(260px, 100%);
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-column strong {
  margin-bottom: 11px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  margin-top: 12px;
  gap: 8px;
}

.socials a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.socials svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 1500;
  right: 24px;
  bottom: 24px;
  visibility: hidden;
  max-width: 340px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(16px);
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 56px, 1120px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .nav-phone {
    display: none;
  }

  .booking-panel {
    grid-template-columns: repeat(4, 1fr) 1.1fr;
  }

  .booking-heading {
    display: none;
  }

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

  .car-image {
    aspect-ratio: 1.45 / 1;
  }

  .story-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 40px, 820px);
    --header-height: 76px;
  }

  .desktop-nav,
  .nav-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 980px;
  }

  .hero-grid {
    min-height: 700px;
    padding-top: 104px;
    grid-template-columns: 1fr;
  }

  .hero-rate {
    right: 0;
    bottom: 170px;
  }

  .hero-media > img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 9, 0.97) 0%, rgba(7, 7, 9, 0.8) 58%, rgba(7, 7, 9, 0.45) 100%),
      linear-gradient(0deg, rgba(7, 7, 9, 0.96) 0%, transparent 54%);
  }

  .booking-panel {
    padding: 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-submit {
    grid-column: span 2;
  }

  .booking-wrap {
    bottom: -142px;
  }

  .trust-ribbon {
    padding-top: 200px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .journey-copy {
    padding-top: 50px;
  }

  .service-stack {
    margin-bottom: 40px;
  }

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

  .catalog-visual {
    min-height: 650px;
    order: 2;
  }

  .story-copy {
    order: 1;
  }

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

  .why-card {
    min-height: 260px;
  }

  .why-card > svg {
    margin-bottom: 46px;
  }

  .final-cta-inner {
    padding: 90px 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-panel {
    max-width: 500px;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
  }

  .brand {
    min-width: 168px;
  }

  .brand-logo-shell {
    width: 168px;
  }

  .brand--footer .brand-logo-shell {
    width: min(230px, 100%);
  }

  .hero {
    min-height: 1010px;
  }

  .hero-media > img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 9, 0.95) 0%, rgba(7, 7, 9, 0.65) 100%),
      linear-gradient(0deg, rgba(7, 7, 9, 0.98) 0%, rgba(7, 7, 9, 0.48) 74%);
  }

  .hero-grid {
    padding: 92px 0 310px;
    align-items: start;
  }

  .hero-title {
    margin-top: 18px;
    font-size: clamp(65px, 19vw, 86px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    display: grid;
    margin-top: 35px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof > div {
    min-width: 0;
    padding: 0 10px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-rate {
    display: none;
  }

  .booking-wrap {
    bottom: -262px;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    grid-column: auto;
  }

  .trust-ribbon {
    padding-top: 318px;
  }

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

  .trust-item {
    min-height: 96px;
    padding: 22px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .story-copy h2,
  .why-heading h2 {
    font-size: 58px;
  }

  .fleet-toolbar {
    width: calc(100% + 16px);
    margin-inline: 0 -16px;
    padding-inline: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .fleet-toolbar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

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

  .car-image {
    aspect-ratio: 1.2 / 1;
  }

  .fleet-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .journey-grid {
    min-height: auto;
    padding: 88px 0;
  }

  .journey-copy {
    padding-top: 0;
  }

  .journey-copy h2 {
    font-size: 64px;
  }

  .service-card {
    min-height: 132px;
    grid-template-columns: 30px 1fr 20px;
    gap: 12px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .catalog-visual {
    min-height: 660px;
  }

  .catalog-visual::before {
    top: 8%;
    left: -50%;
    width: 520px;
    height: 520px;
  }

  .direct-line-orbit {
    top: 4%;
    left: -42%;
    width: 560px;
    height: 560px;
  }

  .conversation-card {
    width: 100%;
    transform: rotate(-1deg);
  }

  .conversation-head {
    padding: 16px;
    grid-template-columns: 48px 1fr 24px;
    gap: 10px;
  }

  .conversation-logo {
    width: 48px;
    height: 48px;
  }

  .conversation-body {
    min-height: 370px;
    padding: 22px 16px 16px;
  }

  .chat-bubble {
    max-width: 88%;
    font-size: 12px;
  }

  .vehicle-reply {
    width: 92%;
    grid-template-columns: 92px 1fr;
    gap: 10px;
  }

  .vehicle-reply img {
    width: 92px;
    height: 76px;
  }

  .response-ticket {
    right: -6px;
    bottom: 12px;
    width: 188px;
    padding: 20px;
  }

  .response-ticket strong {
    font-size: 24px;
  }

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

  .why-card {
    min-height: 250px;
    padding: 30px;
  }

  .final-cta h2 {
    font-size: 72px;
  }

  .cta-panel {
    padding: 26px;
  }

  .footer-main {
    padding-top: 54px;
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: start;
    flex-direction: column;
    justify-content: center;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }
}

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