:root {
  --navy: #071426;
  --navy-2: #0d1b2a;
  --yellow: #f5b400;
  --yellow-hover: #e0a300;
  --white: #ffffff;
  --light: #f7f7f7;
  --text: #555555;
  --heading: #111827;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(7, 20, 38, 0.1);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

body.nav-open {
  overflow: hidden;
}

body.navbar-fixed {
  padding-top: var(--navbar-height, 82px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.top-bar {
  height: 42px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.top-bar__inner,
.top-bar__contacts,
.top-bar__social {
  display: flex;
  align-items: center;
}

.top-bar__inner {
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.top-bar__contacts {
  gap: 24px;
  min-width: 0;
}

.top-bar__contacts a,
.top-bar__contacts span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.top-bar i {
  color: var(--yellow);
}

.top-bar__social {
  gap: 10px;
}

.top-bar__social a,
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.top-bar__social a:hover,
.footer-social a:hover {
  color: var(--navy);
  background: var(--yellow);
  transform: translateY(-2px);
}

.navbar {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 20, 38, 0.08);
  transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
  transition: min-height 0.3s ease;
}

.navbar.is-scrolled .navbar__inner {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  width: 200px;
  min-width: 200px;
}

.brand__logo {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}

.brand__tagline {
  margin-top: 4px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.mobile-header-cta {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #0f172a;
  font-weight: 800;
  transition: color 0.3s ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn i {
  margin-left: 12px;
  font-size: 13px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 25px rgba(7, 20, 38, 0.16);
}

.btn--primary {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 20, 38, 0.25);
}

.btn--outline:hover {
  color: var(--navy);
  background: var(--white);
}

.btn--dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.btn--dark:hover {
  background: var(--navy-2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero .container {
  max-width: 1280px;
}

.hero__image,
.hero__overlay,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.95) 0%, rgba(7, 20, 38, 0.82) 30%, rgba(7, 20, 38, 0.24) 63%, rgba(7, 20, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.2), rgba(7, 20, 38, 0.08));
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 660px;
}

.hero__copy {
  position: relative;
  top: -80px;
  width: min(100%, 560px);
  min-width: 0;
  padding-top: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.footer h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  max-width: 560px;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero__text {
  width: min(100%, 520px);
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-strip {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

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

.trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 23px;
}

.trust-item h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.25;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 90px 0;
  scroll-margin-top: 90px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.section-action--left {
  justify-content: flex-start;
  margin-top: 28px;
}

.split {
  display: grid;
  align-items: center;
  gap: 48px;
}

.split--about {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
}

.split--fleet {
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.2fr);
}

.image-panel img,
.fleet-photo img,
.contact-info img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-panel img {
  aspect-ratio: 1.38 / 1;
}

.section-copy h2,
.section-heading h2,
.contact-info h2 {
  color: var(--heading);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
}

.section-copy p {
  max-width: 620px;
  margin: 17px 0 0;
}

.section-copy .btn {
  margin-top: 28px;
}

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

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 220px;
  padding: 38px 22px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(7, 20, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 27px;
}

.service-card h3 {
  min-height: 52px;
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

.fleet {
  background: var(--white);
}

.check-list {
  padding: 4px 0 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--navy-2);
  font-weight: 600;
}

.check-list i {
  color: var(--yellow);
}

.fleet-photo {
  position: relative;
}

.fleet-photo img {
  aspect-ratio: 1.76 / 1;
}

.safety-badge {
  position: absolute;
  left: 36px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(420px, calc(100% - 72px));
  padding: 24px 26px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(7, 20, 38, 0.94);
  box-shadow: 0 18px 40px rgba(7, 20, 38, 0.22);
}

.safety-badge i {
  color: var(--yellow);
  font-size: 46px;
}

.safety-badge h3 {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 16px;
  line-height: 1.25;
}

.safety-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.contact {
  padding-top: 70px;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 48px;
}

.contact-list {
  padding: 8px 0 22px;
  margin: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.contact-list i {
  width: 22px;
  padding-top: 3px;
  color: var(--navy);
  font-size: 20px;
}

.contact-info img {
  max-width: 360px;
  aspect-ratio: 1.33 / 1;
}

.contact-form {
  padding-top: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #dce2ea;
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 15px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status--success {
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status--pending {
  color: #713f12;
  background: #fef3c7;
  border: 1px solid #facc15;
}

.form-status--error {
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fca5a5;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 180, 0, 0.14);
}

.contact-form .btn {
  margin-top: 18px;
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.78fr 1.28fr 0.7fr;
  gap: 46px;
  padding: 48px 0 28px;
}

.brand--footer {
  width: 210px;
  min-width: 0;
  margin-bottom: 16px;
}

.brand__logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  padding: 7px 9px 6px;
  border-radius: 8px;
  background: var(--white);
}

.brand--footer .brand__logo {
  width: 168px;
}

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

.footer p {
  margin: 0;
  max-width: 330px;
  font-size: 14px;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 7px;
  font-size: 14px;
}

.footer a {
  transition: color 0.3s ease;
}

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

.footer-contact i {
  width: 21px;
  color: var(--yellow);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.developer-credit {
  display: inline-block;
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.developer-credit a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.developer-credit a:hover {
  color: var(--yellow);
}

.page-hero {
  position: relative;
  display: grid;
  height: 360px;
  min-height: 340px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero__image,
.page-hero__overlay,
.page-hero__content {
  grid-area: 1 / 1;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 0;
}

.page-hero__overlay {
  background: rgba(7, 20, 38, 0.72);
}

.page-hero--services .page-hero__image {
  object-position: center 42%;
}

.page-hero--services .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.94) 0%, rgba(7, 20, 38, 0.78) 42%, rgba(7, 20, 38, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.18), rgba(7, 20, 38, 0.08));
}

.page-hero--fleet .page-hero__image {
  object-position: center 52%;
}

.page-hero--fleet .page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.94) 0%, rgba(7, 20, 38, 0.74) 46%, rgba(7, 20, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.25), rgba(7, 20, 38, 0.04));
}

.page-hero__content {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 340px;
  padding: 48px 24px;
  text-align: center;
}

.page-hero__content-inner {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.15;
}

.page-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.page-hero--split .page-hero__content {
  place-items: center start;
  text-align: left;
}

.page-hero--split .page-hero__content-inner {
  max-width: 650px;
}

.page-hero--split .page-hero__content-inner p {
  margin-left: 0;
}

.page-hero h1 span {
  color: var(--yellow);
}

.about-story .image-panel img {
  aspect-ratio: 1.22 / 1;
}

.values {
  background: var(--light);
}

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

.value-card {
  min-height: 240px;
  padding: 38px 28px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(7, 20, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.value-card span {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 28px;
}

.value-card h3 {
  margin: 0 0 13px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.25;
}

.value-card p {
  margin: 0;
  font-size: 15px;
}

.trust-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 46px;
  margin-top: 26px;
}

.trust-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.safety-band {
  padding: 76px 0;
  color: var(--white);
  background: var(--navy);
}

.safety-band__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.7fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.safety-band__icon {
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-size: 122px;
}

.safety-band h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.safety-band p {
  max-width: 720px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
}

.safety-band__features {
  padding: 0 0 0 34px;
  margin: 0;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.safety-band__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--white);
  font-weight: 700;
}

.safety-band__features li:last-child {
  margin-bottom: 0;
}

.safety-band__features i {
  width: 25px;
  color: var(--yellow);
  font-size: 22px;
}

.cta-section {
  background: var(--light);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7, 20, 38, 0.08);
}

.cta-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 100%;
  content: "";
  background: url("assets/images/about-minivan.png") center / cover no-repeat;
  opacity: 0.08;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin: 0;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.cta-panel p {
  max-width: 640px;
  margin: 16px auto 26px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

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

.media-card {
  overflow: hidden;
  padding: 34px 22px 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(7, 20, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.media-card span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 27px;
}

.media-card h3 {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: 19px;
  line-height: 1.25;
}

.media-card p {
  margin: 0 auto 24px;
  font-size: 15px;
}

.media-card img {
  width: calc(100% + 24px);
  max-width: none;
  height: 124px;
  margin-left: -12px;
  border-radius: 8px;
  object-fit: cover;
}

.benefit-strip {
  background: var(--light);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.faq-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

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

.faq-item {
  height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.06);
}

.faq-item h3 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.28;
}

.faq-item p {
  margin: 12px 0 0;
}

.faq-item a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.benefit-item i {
  color: var(--navy);
  font-size: 42px;
}

.benefit-item h3 {
  margin: 0 0 7px;
  color: var(--heading);
  font-size: 17px;
}

.benefit-item p {
  margin: 0;
  font-size: 14px;
}

.dark-cta {
  padding: 46px 0;
  color: var(--white);
  background: var(--navy);
}

.dark-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.dark-cta__icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: 34px;
}

.dark-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
}

.dark-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.dark-cta__actions {
  display: flex;
  gap: 16px;
}

.split--fleet-page {
  grid-template-columns: 0.75fr 1.25fr;
}

.driver-panel {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 28px;
  align-items: center;
}

.driver-panel img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 0.75 / 1;
  object-fit: cover;
}

.commitment-panel {
  height: 100%;
  padding: 46px 42px;
  border-radius: 0;
  color: var(--white);
  background: var(--navy);
}

.commitment-panel h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}

.commitment-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.commitment-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.commitment-list i {
  color: var(--yellow);
  font-size: 26px;
}

.commitment-list strong {
  display: block;
  color: var(--white);
}

.contact-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}

.contact-hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
}

.contact-hero-features i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-panel {
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 25px;
}

.contact-method strong {
  display: block;
  color: var(--yellow);
  font-size: 14px;
}

.contact-method a,
.contact-method span {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.form-panel {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: clamp(28px, 3vw, 40px);
}

.form-panel > p {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
}

.form-panel > input,
.form-panel > select,
.form-panel > textarea {
  margin-bottom: 14px;
}

.form-panel .btn {
  width: 100%;
}

.contact-feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.contact-feature-strip .benefit-item {
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.service-area {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(247, 247, 247, 0.15), rgba(247, 247, 247, 0.9)),
    url("assets/images/fleet.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.service-area__card {
  position: absolute;
  right: 34px;
  top: 50%;
  width: min(520px, calc(100% - 68px));
  padding: 28px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
}

.service-area__card h2 {
  margin: 0;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.2;
}

.service-area__card p {
  margin: 12px 0 0;
}

.service-area__note {
  font-size: 14px;
  line-height: 1.55;
}

.service-area__pin {
  position: absolute;
  left: 50%;
  top: 38%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--navy);
  transform: rotate(-45deg);
}

.service-area__pin i {
  transform: rotate(45deg);
  color: var(--yellow);
}

.js .reveal {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 0.7s ease;
}

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

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

@media (max-width: 1180px) {
  .nav-links {
    gap: 18px;
  }

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

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

  .media-card-grid,
  .faq-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    padding-inline: 20px;
  }
}

@media (max-width: 980px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-bar {
    height: 34px;
    padding: 0;
    font-size: 12px;
    line-height: 1;
  }

  .top-bar__inner {
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .top-bar__contacts {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 18px;
    min-width: 0;
    overflow: hidden;
  }

  .top-bar__contacts a,
  .top-bar__contacts span {
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
  }

  .top-bar__contacts i {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .top-bar__social {
    display: none;
  }

  .navbar__inner {
    min-height: 64px;
    gap: 14px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    border: 0;
    border-radius: 8px;
  }

  .mobile-header-cta {
    display: none;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(245, 180, 0, 0.26);
  }

  .nav-menu {
    position: fixed;
    top: var(--mobile-menu-top, 116px);
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 28px 24px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nav-cta {
    width: 100%;
    margin-top: 24px;
  }

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .hero__copy {
    top: -12px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(7, 20, 38, 0.95) 0%, rgba(7, 20, 38, 0.78) 58%, rgba(7, 20, 38, 0.28) 100%);
  }

  .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 rgba(255, 255, 255, 0.25);
  }

  .section {
    padding: 70px 0;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split--fleet .section-copy {
    order: 1;
  }

  .split--fleet .fleet-photo {
    order: 2;
  }

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

  .contact-info img {
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .page-hero,
  .page-hero__content {
    height: 340px;
    min-height: 320px;
  }

  .trust-columns,
  .safety-band__grid,
  .dark-cta__inner,
  .contact-page-grid,
  .driver-panel,
  .split--fleet-page {
    grid-template-columns: 1fr;
  }

  .safety-band__icon {
    justify-content: start;
    font-size: 84px;
  }

  .safety-band__features {
    padding-left: 0;
    border-left: 0;
  }

  .dark-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-bar {
    height: 31px;
    font-size: 11px;
  }

  .top-bar__contacts {
    gap: 10px;
  }

  .top-bar__contacts a,
  .top-bar__contacts span {
    gap: 5px;
    white-space: nowrap;
  }

  .brand {
    width: 145px;
    min-width: 145px;
  }

  .brand__logo {
    width: 134px;
  }

  .brand__tagline {
    margin-top: 3px;
    font-size: 10px;
  }

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

  .mobile-header-cta {
    min-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }

  .nav-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .brand--footer {
    width: 210px;
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__image {
    position: absolute;
    inset: 0;
    object-position: 62% center;
  }

  .hero__content {
    min-height: 610px;
    align-items: flex-end;
    padding: 88px 0 58px;
  }

  .hero__copy {
    top: 0;
    width: 100%;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(7, 20, 38, 0.97) 0%, rgba(7, 20, 38, 0.9) 48%, rgba(7, 20, 38, 0.46) 100%);
  }

  .hero h1 {
    font-size: 35px;
    overflow-wrap: normal;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__actions,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero__actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .trust-grid,
  .services-grid,
  .values-grid,
  .media-card-grid,
  .benefit-grid,
  .contact-feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

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

  .section {
    padding: 60px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-info h2 {
    font-size: 30px;
  }

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

  .safety-badge {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
  }

  .contact {
    padding-top: 60px;
  }

  .contact-info img {
    max-width: none;
  }

  .page-hero,
  .page-hero__content {
    height: 380px;
    min-height: 340px;
  }

  .page-hero__content {
    padding: 44px 18px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

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

  .safety-band {
    padding: 60px 0;
  }

  .cta-panel {
    padding: 44px 20px;
  }

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

  .dark-cta__actions,
  .contact-hero-features {
    flex-direction: column;
    align-items: stretch;
  }

  .dark-cta__actions .btn {
    width: 100%;
  }

  .contact-panel,
  .form-panel {
    padding: 30px 20px;
  }

  .contact-method a,
  .contact-method span {
    font-size: 17px;
  }

  .service-area {
    min-height: 320px;
  }

  .service-area__card {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: auto;
    transform: none;
  }
}

@media (max-width: 430px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-bar__contacts span {
    display: none;
  }

  .navbar__inner {
    gap: 8px;
    min-height: 64px;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .brand__logo {
    width: 124px;
  }

  .brand__tagline {
    font-size: 9px;
  }

  .mobile-header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .nav-toggle {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }
}
