:root {
  --ink: #0b0d0c;
  --muted: #666c68;
  --paper: #f6f7f4;
  --white: #ffffff;
  --line: #dfe3df;
  --green: #0faa62;
  --green-dark: #087a47;
  --green-pale: #e7f8ee;
  --gold: #c99b45;
  --shadow: 0 24px 70px rgba(12, 22, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(11, 13, 12, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: min(1440px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  display: block;
  width: 194px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  color: #303430;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f4f6f3;
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #626a64;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.language-switcher button.is-active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.install-action {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.phone-link {
  font-size: 14px;
  font-weight: 800;
}

.header-book,
.primary-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-book {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.header-book:hover,
.primary-booking-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.booking-hero {
  padding: 28px 24px 42px;
  background:
    radial-gradient(circle at 8% 9%, rgba(15, 170, 98, 0.12), transparent 27%),
    linear-gradient(180deg, #f1f5f0 0%, var(--paper) 100%);
}

.booking-hero-shell {
  width: min(1388px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(520px, 1.28fr);
  overflow: hidden;
  border: 1px solid #dce2dd;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-card {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 4vw, 58px);
}

.booking-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.overline {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-intro h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.available-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 99px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.available-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 170, 98, 0.14);
}

.service-tabs {
  display: flex;
  gap: 5px;
  margin: 30px 0 25px;
  padding: 5px;
  overflow-x: auto;
  border-radius: 10px;
  background: #f1f3f0;
  scrollbar-width: none;
}

.service-tabs::-webkit-scrollbar {
  display: none;
}

.service-tabs button {
  min-height: 40px;
  flex: 1 0 auto;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #6a716c;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.service-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 7px rgba(22, 31, 25, 0.09);
}

.route-fields {
  position: relative;
  display: grid;
  gap: 14px;
}

.route-fields label > span,
.booking-details label > span {
  display: block;
  margin-bottom: 7px;
  color: #656b67;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-input {
  position: relative;
}

.location-input input,
.booking-details input,
.booking-details select {
  width: 100%;
  height: 52px;
  outline: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.location-input input {
  padding: 0 15px 0 45px;
}

.booking-details input,
.booking-details select {
  padding: 0 13px;
}

.location-input input:focus,
.booking-details input:focus,
.booking-details select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 170, 98, 0.1);
}

.pickup-dot,
.destination-square {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 18px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
}

.pickup-dot {
  border-radius: 50%;
  background: var(--green);
}

.destination-square {
  border: 2px solid var(--ink);
  background: var(--white);
}

.route-line {
  position: absolute;
  z-index: 1;
  top: 59px;
  bottom: 59px;
  left: 22px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #aab0ac 0,
    #aab0ac 3px,
    transparent 3px,
    transparent 7px
  );
}

.booking-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 10px;
  margin-top: 18px;
}

.primary-booking-button {
  width: 100%;
  min-height: 54px;
  gap: 10px;
  margin-top: 18px;
  font-size: 15px;
}

.primary-booking-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-note {
  margin: 10px 0 0;
  color: #717772;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #1d241f;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 8, 0.03) 30%, rgba(7, 11, 8, 0.9) 100%),
    linear-gradient(90deg, rgba(9, 16, 11, 0.12), transparent 45%);
}

.hero-copy {
  position: absolute;
  right: clamp(25px, 4vw, 58px);
  bottom: 115px;
  left: clamp(25px, 4vw, 58px);
  color: var(--white);
}

.hero-copy p {
  margin: 0 0 11px;
  color: #cbeed9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h2 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.driver-card {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.driver-avatar {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.driver-card strong,
.driver-card small {
  display: block;
}

.driver-card strong {
  font-size: 13px;
}

.driver-card small {
  margin-top: 3px;
  color: #6b716d;
  font-size: 10px;
}

.driver-card b {
  color: var(--green-dark);
  font-size: 12px;
}

.trust-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 31px 0;
}

.trust-strip div {
  padding: 2px 34px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2,
.tourism-copy h2,
.faq-heading h2,
.confidence-copy h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(15, 26, 19, 0.1);
}

.service-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #e9ede8;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.035);
}

.service-card-image span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.service-card p {
  min-height: 84px;
  margin: 13px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.service-card button,
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.service-card button svg,
.text-action svg,
.light-action svg,
.business-actions svg,
.final-cta button svg,
.fleet-info button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.dark-section {
  padding: 48px 24px;
  background: var(--ink);
  color: var(--white);
}

.dark-section-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 68px;
}

.dark-copy {
  padding: 70px 0;
}

.overline--light {
  color: #4ce29a;
}

.dark-copy h2,
.business-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.dark-copy > p:not(.overline),
.business-copy > p:not(.overline),
.final-cta > div > p:not(.overline) {
  max-width: 620px;
  margin: 24px 0;
  color: #aeb7b0;
  font-size: 15px;
  line-height: 1.75;
}

.dark-copy ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.dark-copy li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid #2b302c;
  color: #d8ddd9;
  font-size: 13px;
}

.dark-copy li:last-child {
  border-bottom: 1px solid #2b302c;
}

.dark-copy li span {
  color: #4ce29a;
  font-size: 10px;
  font-weight: 900;
}

.light-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.dark-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 20px;
}

.dark-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dark-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.72));
  content: "";
}

.dark-image-note {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.dark-image-note span,
.dark-image-note strong {
  display: block;
}

.dark-image-note span {
  margin-bottom: 7px;
  color: #d6ded8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-image-note strong {
  max-width: 560px;
  font-size: clamp(25px, 3vw, 39px);
  letter-spacing: -0.04em;
}

.section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.section-heading--center > p {
  max-width: 590px;
}

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

.fleet-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.fleet-image {
  height: 330px;
  overflow: hidden;
  background: #e9ede9;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-info {
  padding: 23px;
}

.fleet-info > span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fleet-info h3 {
  margin: 8px 0 18px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.fleet-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

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

.fleet-info button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.fleet-footnote {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.tourism-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 680px;
  background: #e6eee8;
}

.tourism-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.tourism-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourism-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 10, 6, 0.55));
  content: "";
}

.tourism-image > span {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 35px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  background: rgba(10, 15, 11, 0.35);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.tourism-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 110px);
}

.tourism-copy > p:not(.overline) {
  margin: 24px 0;
  color: #57605a;
  font-size: 15px;
  line-height: 1.8;
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 33px;
}

.destination-list span {
  padding: 9px 12px;
  border: 1px solid #bfcac1;
  border-radius: 99px;
  color: #364039;
  font-size: 11px;
  font-weight: 800;
}

.process-section {
  padding-bottom: 130px;
}

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

.steps-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.steps-grid article > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 66px 0 12px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.business-section {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  gap: 55px;
  padding: clamp(45px, 6vw, 85px);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 30%, rgba(15, 170, 98, 0.4), transparent 35%),
    var(--ink);
  color: var(--white);
}

.business-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.business-actions a:first-child {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.business-actions a:last-child {
  color: #b7c1b9;
  font-size: 12px;
  font-weight: 700;
}

.business-stat {
  align-self: end;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.business-stat p {
  margin: 0 0 9px;
  color: #8ce6b7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-stat strong {
  font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.confidence-copy {
  max-width: 980px;
  margin-bottom: 50px;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bdc5bf;
}

.confidence-grid article {
  padding: 30px 35px 10px 0;
  border-right: 1px solid #bdc5bf;
}

.confidence-grid article + article {
  padding-left: 35px;
}

.confidence-grid article:last-child {
  border-right: 0;
}

.confidence-grid span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence-grid h3 {
  margin: 30px 0 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.confidence-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
  padding: 80px 0 120px;
}

.faq-heading h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.faq-list {
  border-top: 1px solid #bfc5c0;
}

.faq-list details {
  border-bottom: 1px solid #bfc5c0;
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  content: "+";
  font-size: 19px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 630px;
  margin: -5px 40px 25px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  min-height: 440px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(50px, 8vw, 120px);
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.94), rgba(5, 10, 7, 0.5)),
    url("/images/fleet-lineup.png") center 48% / cover;
  color: var(--white);
}

.final-cta > div {
  max-width: 820px;
}

.final-cta button {
  display: inline-flex;
  min-width: 180px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

footer {
  padding: 70px 5vw 25px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 255px;
  max-width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: #aab1ab;
  font-size: 13px;
  line-height: 1.7;
}

.footer-main h3 {
  margin: 10px 0 20px;
  color: #8ce6b7;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) a,
.footer-main > div:not(.footer-brand) p {
  display: block;
  margin: 0 0 13px;
  color: #c5cbc6;
  font-size: 12px;
}

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

.footer-bottom {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid #292e2a;
  color: #8b938d;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #c7cec8;
}

.mobile-dock {
  display: none;
}

@media (max-width: 1100px) {
  .header-shell {
    width: min(100% - 32px, 920px);
  }

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

  .main-nav {
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .phone-link {
    display: none;
  }

  .booking-hero-shell {
    grid-template-columns: 1fr;
    max-width: 880px;
  }

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

  .service-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card p {
    min-height: auto;
  }

  .dark-section-shell {
    grid-template-columns: 1fr;
  }

  .dark-copy {
    padding-bottom: 10px;
  }

  .tourism-section {
    grid-template-columns: 1fr;
  }

  .tourism-image {
    min-height: 560px;
  }

  .business-section {
    grid-template-columns: 1fr;
  }

  .business-stat {
    max-width: 480px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 66px;
  }

  .header-shell {
    min-height: 66px;
  }

  .brand-link img {
    width: 164px;
  }

  .header-book {
    display: none;
  }

  .booking-hero {
    padding: 12px 10px 30px;
  }

  .booking-hero-shell {
    border-radius: 16px;
  }

  .booking-card {
    padding: 25px 18px 26px;
  }

  .booking-intro h1 {
    font-size: 37px;
  }

  .available-pill {
    display: none;
  }

  .service-tabs {
    margin: 24px 0 21px;
  }

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

  .booking-details label:last-child {
    grid-column: 1 / -1;
  }

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

  .hero-copy {
    bottom: 102px;
  }

  .hero-copy h2 {
    font-size: 38px;
  }

  .driver-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 24px);
    padding: 24px 0;
  }

  .trust-strip div {
    padding: 15px 10px;
  }

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

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

  .section {
    width: calc(100% - 28px);
    padding: 76px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .tourism-copy h2,
  .faq-heading h2,
  .confidence-copy h2 {
    font-size: 41px;
  }

  .service-card-grid,
  .fleet-grid,
  .steps-grid,
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    height: 255px;
  }

  .dark-section {
    padding: 26px 14px;
  }

  .dark-section-shell {
    gap: 35px;
  }

  .dark-copy {
    padding: 45px 10px 0;
  }

  .dark-copy h2,
  .business-copy h2,
  .final-cta h2 {
    font-size: 44px;
  }

  .dark-image,
  .tourism-image {
    min-height: 450px;
  }

  .fleet-image {
    height: 300px;
  }

  .tourism-copy {
    padding: 60px 22px 70px;
  }

  .steps-grid article {
    min-height: 240px;
  }

  .steps-grid h3 {
    margin-top: 45px;
  }

  .business-section {
    width: calc(100% - 20px);
    gap: 35px;
    margin-bottom: 20px;
    padding: 55px 24px;
    border-radius: 16px;
  }

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

  .confidence-grid {
    border-top: 0;
  }

  .confidence-grid article,
  .confidence-grid article + article {
    padding: 26px 0;
    border-top: 1px solid #bdc5bf;
    border-right: 0;
  }

  .confidence-grid h3 {
    margin-top: 24px;
  }

  .faq-section {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 55px 0 90px;
  }

  .final-cta {
    min-height: 560px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: end;
    padding: 70px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-dock {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 66px;
    padding: 7px 8px 6px;
    border-top: 1px solid #dfe3df;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 25px rgba(5, 12, 8, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #646a66;
    font-size: 9px;
    font-weight: 800;
  }

  .mobile-dock span {
    color: var(--ink);
    font-size: 18px;
    line-height: 1;
  }

  .mobile-dock .dock-book {
    width: 68px;
    min-height: 52px;
    justify-self: center;
    margin-top: -17px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 8px 22px rgba(4, 9, 6, 0.22);
  }

  .mobile-dock .dock-book span {
    color: var(--white);
  }
}

.mobile-dock button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}


@media (max-width: 1180px) {
  .header-actions .phone-link,
  .header-actions .install-action {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-actions {
    gap: 8px;
  }

  .header-actions .header-book {
    display: none;
  }

  .language-switcher button {
    min-width: 31px;
  }

  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #646a66;
    font-size: 9px;
    font-weight: 800;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
