:root {
  --bg: #f2ecdf;
  --paper: #fbf6ec;
  --paper-soft: #f5eedf;
  --ink: #22302d;
  --muted: #66706a;
  --line: rgba(34, 48, 45, 0.14);
  --line-strong: rgba(34, 48, 45, 0.24);
  --forest: #1f4d46;
  --forest-soft: #315f57;
  --sea: #89b8cc;
  --sun: #e7a53b;
  --sun-deep: #d78f1e;
  --sand: #e7d3a9;
  --rose: #df9b84;
  --mint: #d8e6d8;
  --sky: #dbe8ef;
  --clay: #ead1c4;
  --focus: #1e5ca8;
  --shadow: 0 22px 44px rgba(34, 48, 45, 0.09);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --section-space: clamp(28px, 4vw, 42px);
  --site-pad: clamp(16px, 3vw, 40px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-shell {
  width: 100%;
  overflow-x: hidden;
}

.hero-wrap {
  padding: 20px var(--site-pad) 36px;
}

.main-header,
.hero-grid,
.section-shell,
.footer-line {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
}

.main-header {
  display: flex;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-lockup img {
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 18px;
  background: #fffdf7;
  border: 1px solid rgba(34, 48, 45, 0.1);
}

.brand-lockup small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-nav a:not(.menu-cta) {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 48, 45, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 700;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(34, 48, 45, 0.1);
  background: var(--sun);
  color: #2f2413;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(231, 165, 59, 0.22);
}

main {
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

.hero-grid {
  position: relative;
  display: grid;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(24px, 3.5vw, 42px);
  background: var(--forest);
  color: #f8f4eb;
  border: 1px solid rgba(31, 77, 70, 0.88);
  border-radius: 0 0 52px 24px;
  box-shadow: 0 28px 58px rgba(31, 77, 70, 0.18);
  overflow: clip;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.14;
}

.hero-grid::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -40px;
  background: #ffffff;
}

.hero-grid::after {
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: -70px;
  background: var(--sun);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 42rem;
}

.hero-kicker {
  justify-self: start;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3e3bc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: rgba(248, 244, 235, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.widget-link {
  display: block;
  position: relative;
  border-radius: 30px 18px 30px 18px;
  padding: clamp(16px, 2.2vw, 22px);
  background: #f7eedc;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(20, 34, 31, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.widget-link:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 0 24px 42px rgba(20, 34, 31, 0.26);
}

.widget-grid {
  display: grid;
  gap: 12px;
}

.widget-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px;
}

.widget-bar strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.widget-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.widget-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(34, 48, 45, 0.08);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.widget-topline,
.widget-bottomline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.widget-field,
.widget-budget {
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(34, 48, 45, 0.1);
}

.widget-field {
  position: relative;
  background: rgba(255, 252, 245, 0.94);
}

.widget-budget {
  background: #efc57e;
  color: #2f2413;
}

.widget-field::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(34, 48, 45, 0.08);
}

.widget-field--pickup::before {
  background:
    radial-gradient(circle at 50% 38%, #1f4d46 0 4px, transparent 4.5px),
    linear-gradient(#1f4d46 0 0) center 18px / 2px 8px no-repeat,
    rgba(31, 77, 70, 0.1);
}

.widget-field--time::before {
  background:
    radial-gradient(circle, transparent 9px, #1f4d46 9px 10px, transparent 10.5px),
    linear-gradient(#1f4d46 0 0) center 8px / 2px 8px no-repeat,
    linear-gradient(#1f4d46 0 0) 18px center / 7px 2px no-repeat,
    rgba(31, 77, 70, 0.1);
}

.widget-field--class::before {
  background:
    linear-gradient(#1f4d46 0 0) center 11px / 14px 2px no-repeat,
    linear-gradient(#1f4d46 0 0) center 16px / 18px 2px no-repeat,
    linear-gradient(#1f4d46 0 0) center 21px / 10px 2px no-repeat,
    rgba(31, 77, 70, 0.1);
}

.widget-field strong,
.widget-budget strong {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.widget-field span,
.widget-budget p {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
  font-weight: 700;
  line-height: 1.2;
}

.widget-field small,
.widget-budget small {
  display: block;
  margin-top: 6px;
  color: rgba(34, 48, 45, 0.64);
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.35;
}

.widget-budget small {
  color: rgba(47, 36, 19, 0.7);
}

.widget-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--sun);
  color: #2f2413;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-visual {
  position: relative;
  min-height: clamp(440px, 58vw, 760px);
  height: 100%;
  border-radius: 42px 20px 42px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(20, 34, 31, 0.22);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto auto 18px -18px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: var(--sun);
  opacity: 0.92;
  z-index: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px 12px 30px 12px;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  max-width: 255px;
  padding: 16px 18px;
  border-radius: 20px 20px 20px 6px;
  background: #f5ebd8;
  color: var(--ink);
  border: 1px solid rgba(34, 48, 45, 0.1);
  box-shadow: 0 18px 36px rgba(20, 34, 31, 0.18);
}

.hero-badge strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.hero-badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-shell {
  position: relative;
  padding: var(--section-space);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow);
  overflow: clip;
}

.section-shell::before {
  content: "";
  position: absolute;
  width: 108px;
  height: 24px;
  top: 0;
  right: clamp(18px, 3vw, 44px);
  border-radius: 0 0 16px 16px;
  background: rgba(34, 48, 45, 0.08);
}

#genel-bakis {
  background: #e8dbc0;
  border-radius: 24px 52px 24px 52px;
}

#filo {
  background: #f7f0e3;
  border-radius: 52px 24px 52px 24px;
}

#firsatlar {
  background: #d7e5d6;
  border-radius: 24px 48px 24px 48px;
}

#surec {
  background: #ecd1c4;
  border-radius: 46px 20px 46px 20px;
}

#bolgeler {
  background: #dbe8ef;
  border-radius: 24px 52px 24px 52px;
}

#yorumlar {
  background: #f6efe0;
  border-radius: 52px 22px 52px 22px;
}

#sss {
  background: #e8dfcc;
  border-radius: 26px 46px 26px 46px;
}

.section-title {
  margin: 0 0 28px;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-align: left;
  text-wrap: balance;
}

.section-title span {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.18em 0.26em 0.12em;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(34, 48, 45, 0.08);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr;
  gap: clamp(18px, 2vw, 26px);
}

.feature-card,
.deal-card,
.step-card,
.location-card,
.review-card,
.faq-card,
.car-card,
.legal-shell {
  position: relative;
  border: 1px solid rgba(34, 48, 45, 0.12);
  box-shadow: 10px 10px 0 rgba(34, 48, 45, 0.06);
}

.feature-card {
  min-height: 100%;
  padding: clamp(22px, 2.2vw, 30px);
  border-radius: 30px 30px 14px 30px;
  background: rgba(255, 250, 242, 0.88);
}

.feature-card--angled {
  transform: rotate(-0.6deg);
}

.feature-card--blue {
  background: rgba(220, 232, 239, 0.92);
}

.feature-card--lime {
  background: rgba(230, 236, 191, 0.92);
  transform: rotate(0.8deg);
}

.feature-card h3,
.deal-card h3,
.step-card h3,
.location-card h3,
.review-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.34rem, 2vw, 1.85rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.feature-card p,
.deal-card p,
.step-card p,
.location-card p,
.review-card p,
.faq-card p {
  max-width: 55ch;
  margin: 0;
  color: var(--ink);
}

.metrics-row {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.metric-pill {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(34, 48, 45, 0.1);
  background: rgba(255, 255, 255, 0.54);
}

.metric-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.metric-pill span {
  max-width: 16ch;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.car-card {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 30px 16px 30px 16px;
  background: #fffaf1;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.car-card:nth-child(2) { background: #f7efe1; }
.car-card:nth-child(3) { background: #eef3e8; }
.car-card:nth-child(4) { background: #f1e5dc; }

.car-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 14px 16px 0 rgba(34, 48, 45, 0.08);
}

.car-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.car-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

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

.car-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

.car-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  white-space: nowrap;
}

.car-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.car-price span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(34, 48, 45, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.deal-card {
  padding: 26px;
  border-radius: 24px 24px 12px 24px;
  background: rgba(255, 250, 242, 0.84);
}

.deal-card:nth-child(1) {
  background: rgba(255, 248, 228, 0.92);
}

.deal-card:nth-child(2) {
  background: rgba(255, 255, 255, 0.74);
  transform: translateY(18px) rotate(-0.8deg);
}

.deal-card:nth-child(3) {
  background: rgba(221, 233, 242, 0.92);
  transform: rotate(0.8deg);
}

.step-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.step-card {
  padding: 26px 24px 24px;
  border-radius: 28px 18px 28px 18px;
  background: rgba(255, 247, 239, 0.84);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(231, 165, 59, 0.2);
  color: #5f3d12;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.location-card {
  padding: 24px;
  border-radius: 26px 16px 26px 16px;
  background: rgba(252, 248, 241, 0.78);
}

.route-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 1.8vw, 24px);
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.route-card {
  overflow: hidden;
  border: 1px solid rgba(34, 48, 45, 0.12);
  border-radius: 30px 18px 30px 18px;
  background: rgba(252, 248, 241, 0.86);
  box-shadow: 10px 10px 0 rgba(34, 48, 45, 0.06);
}

.route-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.route-body {
  padding: 18px 20px 22px;
}

.route-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 48, 45, 0.08);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-body h3 {
  margin: 12px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.route-body p {
  margin: 0;
}

.location-card--focus {
  background: rgba(240, 228, 190, 0.82);
}

.location-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 48, 45, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.review-card {
  padding: 24px;
  border-radius: 26px 26px 12px 26px;
  background: rgba(255, 252, 246, 0.9);
}

.review-card:nth-child(2) {
  background: rgba(248, 242, 232, 0.92);
}

.review-card:nth-child(3) {
  background: rgba(239, 245, 238, 0.92);
}

.review-card:nth-child(4) {
  background: rgba(239, 245, 249, 0.92);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-head img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(34, 48, 45, 0.08);
}

.review-head span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.faq-card {
  overflow: hidden;
  border-radius: 24px 24px 12px 24px;
  background: rgba(255, 250, 242, 0.84);
}

.faq-card:nth-child(3n + 2) {
  background: rgba(240, 246, 240, 0.88);
}

.faq-card:nth-child(3n) {
  background: rgba(240, 245, 249, 0.88);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}

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

.faq-card summary::after {
  content: "+";
  float: right;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(34, 48, 45, 0.08);
  color: var(--ink);
  text-align: center;
  line-height: 32px;
  font-size: 1.1rem;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  padding: 0 24px 22px;
}

.page-footer {
  padding: 4px var(--site-pad) 34px;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow-x: auto;
}

.footer-line a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 48, 45, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.legal-main {
  width: 100%;
  max-width: 1320px;
  margin-top: 20px;
  margin-bottom: 48px;
  padding: 0 var(--site-pad);
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 28px 28px 16px 28px;
  background: var(--paper);
}

.legal-shell h1 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-align: center;
}

.legal-shell h2 {
  margin: 28px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.legal-shell p,
.legal-shell li {
  max-width: 75ch;
}

.legal-shell ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .overview-grid,
  .cars-grid,
  .deal-grid,
  .step-lane,
  .route-gallery,
  .location-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .main-header,
  .top-nav {
    justify-content: center;
  }

  .hero-grid,
  .overview-grid,
  .cars-grid,
  .deal-grid,
  .step-lane,
  .route-gallery,
  .location-grid,
  .reviews-grid,
  .faq-grid,
  .widget-topline,
  .widget-bottomline {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1,
  .section-title {
    text-align: center;
  }

  .hero-kicker {
    justify-self: center;
  }

  .hero-copy p {
    margin-inline: auto;
    text-align: center;
  }

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

  .widget-pills {
    justify-content: flex-start;
  }

  .section-title span {
    max-width: none;
  }

  .hero-media {
    order: -1;
  }

  .deal-card:nth-child(2),
  .deal-card:nth-child(3),
  .feature-card--angled,
  .feature-card--lime {
    transform: none;
  }

  .footer-line {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-wrap {
    padding-top: 14px;
  }

  .brand-lockup {
    width: 100%;
    justify-content: center;
  }

  .top-nav {
    width: 100%;
    gap: 10px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}
