:root {
  --black: #050805;
  --ink: #111512;
  --muted: #5e675f;
  --line: #dce8dc;
  --soft: #f4f8f3;
  --white: #ffffff;
  --green: #24c800;
  --green-dark: #149300;
  --green-soft: #e8f9e5;
  --shadow: 0 24px 60px rgba(5, 8, 5, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(5, 8, 5, 0.9);
  backdrop-filter: blur(14px);
  color: var(--white);
  border-bottom: 1px solid rgba(36, 200, 0, 0.28);
}

.brand img {
  width: min(260px, 42vw);
}

.main-nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.main-nav a,
.header-phone,
.quick-contact a,
.footer-links a {
  text-decoration: none;
}

.main-nav a:hover,
.header-phone:hover,
.quick-contact a:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-phone {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.header-phone svg {
  color: var(--green);
}

.contact-mini {
  justify-content: center;
}

.contact-mini svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 128px clamp(20px, 5vw, 76px) 70px;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(5, 8, 5, 0.96), rgba(5, 8, 5, 0.78) 54%, rgba(20, 147, 0, 0.46)),
    var(--black);
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.7vw, 5.8rem);
  line-height: 0.96;
  max-width: 900px;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.03;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  max-width: 680px;
  overflow-wrap: anywhere;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.btn-primary:hover {
  background: #35ef0a;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.payment-section .btn-secondary {
  color: var(--ink);
  border-color: rgba(17, 21, 18, 0.24);
}

.trust-row {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-row span {
  padding-left: 18px;
  position: relative;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(36, 200, 0, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 8, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 8, 5, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(5, 8, 5, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-media-badge strong {
  font-size: 1.05rem;
}

.hero-media-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-contact > * {
  padding: 18px clamp(16px, 3vw, 34px);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.section,
.fleet-showcase,
.split-section,
.payment-section,
.destinations {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4.6vw, 58px);
  align-items: center;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.intro p:last-child,
.copy-panel p,
.section-heading p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.intro-media,
.reservation-media {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 18px 44px rgba(17, 21, 18, 0.1);
}

.intro-media {
  min-height: 340px;
}

.intro-media img,
.reservation-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.intro-media::after,
.reservation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 5, 0.78));
  pointer-events: none;
}

.intro-media figcaption,
.reservation-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: var(--white);
  line-height: 1.45;
}

.intro-media figcaption {
  display: grid;
  gap: 5px;
  padding: 22px;
}

.intro-media figcaption span,
.reservation-media figcaption {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.fleet-showcase {
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, var(--soft), #ffffff 46%, #f8fbf8 100%);
}

.fleet-gallery {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.fleet-group {
  display: grid;
  gap: 18px;
}

.fleet-group-heading {
  max-width: 640px;
}

.fleet-group-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.75fr));
  gap: 16px;
  align-items: stretch;
}

.fleet-grid figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 18px 44px rgba(17, 21, 18, 0.1);
}

.fleet-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.fleet-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 8, 5, 0.82));
  pointer-events: none;
}

.fleet-feature {
  grid-row: span 2;
}

.fleet-feature img {
  min-height: 616px;
}

.fleet-wide {
  grid-column: span 2;
}

.fleet-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 22px;
  color: var(--white);
}

.fleet-grid figcaption strong {
  font-size: 1.1rem;
}

.fleet-grid figcaption span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.services {
  background: var(--soft);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 26px 26px;
  min-height: 245px;
}

.service-card > img {
  width: calc(100% + 52px);
  height: 150px;
  margin: 0 -26px 22px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: -43px 0 18px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  border: 3px solid var(--white);
}

.destinations {
  background: var(--black);
  color: var(--white);
}

.destinations .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.destination-list span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.reservation-media {
  min-height: 260px;
  margin-top: 28px;
}

.reservation-media figcaption {
  padding: 20px;
}

.form-card,
.payment-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 21, 18, 0.08);
}

.payment-section {
  background: var(--soft);
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.payment-trust {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  border: 1px solid rgba(36, 200, 0, 0.22);
  background:
    radial-gradient(circle at 92% 8%, rgba(36, 200, 0, 0.18), transparent 32%),
    linear-gradient(145deg, #071006, #101612 72%, #f7fff5);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(17, 21, 18, 0.12);
}

.payment-trust h3 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.payment-trust p:not(.eyebrow) {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.secure-shield {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #071006;
  box-shadow: 0 14px 32px rgba(36, 200, 0, 0.28);
}

.secure-shield svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.card-stack {
  position: relative;
  min-height: 170px;
  margin: 4px 0 2px;
}

.bank-card {
  position: absolute;
  display: flex;
  width: min(78%, 300px);
  height: 112px;
  align-items: end;
  justify-content: space-between;
  padding: 18px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.bank-card::before {
  content: "";
  width: 38px;
  height: 26px;
  position: absolute;
  top: 18px;
  left: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.bank-card::after {
  content: "••••  ••••  ••••";
  position: absolute;
  left: 18px;
  bottom: 46px;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.bank-card-dark {
  left: 0;
  top: 0;
  z-index: 3;
  background: linear-gradient(135deg, #181d1b, #3a4541);
}

.bank-card-light {
  right: 0;
  top: 42px;
  z-index: 2;
  color: #151b18;
  background: linear-gradient(135deg, #ffffff, #dce8dd);
}

.bank-card-light::after {
  color: rgba(21, 27, 24, 0.42);
}

.bank-card-green {
  left: 38px;
  top: 84px;
  z-index: 1;
  color: #071006;
  background: linear-gradient(135deg, var(--green), #a8ff72);
}

.bank-card-green::after {
  color: rgba(7, 16, 6, 0.45);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.payment-badges li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cdd8cd;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 400;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(36, 200, 0, 0.2);
  border-color: var(--green-dark);
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.consent a,
.legal-content a,
.cookie-banner a {
  color: var(--green-dark);
  font-weight: 800;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 28px clamp(20px, 5vw, 76px);
  background: var(--black);
  color: var(--white);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 620px;
}

.footer-brand img {
  width: 150px;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  justify-content: flex-end;
  align-items: center;
  max-width: 650px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.footer-inline > * {
  display: inline-flex;
  align-items: center;
}

.footer-inline > * + *::before {
  content: "|";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.28);
}

.footer-inline a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.floating-contact {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: 24px;
  z-index: 45;
  display: flex;
  gap: 10px;
  align-items: center;
}

.floating-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(5, 8, 5, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(5, 8, 5, 0.28);
}

.floating-contact-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-whatsapp {
  background: var(--green);
  color: var(--black);
}

.floating-call {
  background: rgba(5, 8, 5, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.legal-page {
  background: var(--soft);
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: var(--black);
  color: var(--white);
}

.legal-header img {
  width: min(260px, 56vw);
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
}

.legal-header a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 90px) 20px;
  line-height: 1.75;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.legal-table th,
.legal-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(36, 200, 0, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn-secondary {
  color: var(--ink);
  border-color: rgba(17, 21, 18, 0.24);
}

.btn-cookie-reject {
  background: var(--ink);
  color: var(--white);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 8, 5, 0.62);
}

.cookie-modal-panel {
  width: min(560px, 100%);
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-modal-panel h2 {
  font-size: 1.8rem;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin: 16px 0;
  font-weight: 700;
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
}

.success-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(5, 8, 5, 0.94), rgba(5, 8, 5, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(36, 200, 0, 0.28), transparent 34%),
    var(--black);
}

.success-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.success-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(36, 200, 0, 0.35);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-logo {
  width: min(270px, 70vw);
  margin-bottom: 24px;
}

.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  font-size: 2rem;
  font-weight: 900;
}

.success-card h1 {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
}

.success-card p {
  color: var(--muted);
  line-height: 1.7;
}

.success-summary {
  margin: 26px 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.success-summary h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.success-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.success-actions .btn-secondary {
  color: var(--ink);
  border-color: rgba(17, 21, 18, 0.22);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .intro,
  .split-section,
  .payment-layout,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 114px;
  }

  .hero-media {
    order: -1;
  }

  .fleet-feature {
    grid-row: auto;
  }

  .fleet-wide {
    grid-column: auto;
  }

  .fleet-feature img {
    min-height: inherit;
  }

  .quick-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 192px;
  }

  .header-phone {
    font-size: 0.9rem;
  }

  .header-phone span {
    display: none;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .floating-contact-link {
    min-height: 52px;
    padding: 12px 14px;
  }

  .floating-call span {
    display: none;
  }

  .floating-call {
    width: 52px;
    padding-inline: 0;
  }

  .hero {
    min-height: auto;
    padding: 96px 18px 52px;
  }

  .hero-media {
    min-height: 0;
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.05rem);
    line-height: 1.02;
  }

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

  .quick-contact,
  .service-grid,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-inline {
    justify-content: flex-start;
    justify-self: start;
  }

  .quick-contact > * {
    text-align: left;
  }

  .section,
  .fleet-showcase,
  .split-section,
  .payment-section,
  .destinations {
    padding: 56px 18px;
  }

  .service-card {
    min-height: 0;
  }

  .payment-trust {
    padding: 24px;
  }

  .card-stack {
    min-height: 158px;
  }

  .bank-card {
    width: min(84%, 280px);
    height: 104px;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }

  .success-actions .btn {
    width: 100%;
  }
}
