:root {
  --green: #009b68;
  --green-dark: #006d49;
  --green-deep: #073b2d;
  --mint: #effaf4;
  --mint-strong: #dbf5e6;
  --yellow: #fdb913;
  --yellow-deep: #e2a000;
  --yellow-soft: #fff3c4;
  --yellow-wash: #fff9e6;
  --orange: #f47c20;
  --ink: #17212b;
  --text: #2a3540;
  --muted: #5d6b74;
  --line: rgba(23, 33, 43, 0.12);
  --surface: #ffffff;
  --soft: #f7f9f8;
  --shadow: 0 18px 50px rgba(12, 34, 24, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Manrope", "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a,
input,
select,
textarea {
  outline-color: var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #fff;
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 3rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  min-width: 132px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  border-radius: var(--radius);
  padding: 0 1rem;
  background: var(--yellow);
  color: var(--ink);
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--yellow-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(520px, 72dvh, 680px);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--green-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 26%, rgba(253, 185, 19, 0.36), transparent 25%),
    linear-gradient(90deg, rgba(7, 59, 45, 0.9) 0%, rgba(0, 91, 63, 0.72) 39%, rgba(0, 91, 63, 0.2) 68%, rgba(0, 91, 63, 0.05) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.05));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-shell,
.section-shell {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.hero-copy {
  max-width: 860px;
  padding: 4.8rem 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd66b;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 940px;
  color: #fff;
  font-size: clamp(2.6rem, 5.25vw, 4.25rem);
  line-height: 1.08;
}

.hero-lede {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

.button.primary {
  border-color: rgba(23, 33, 43, 0.08);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(253, 185, 19, 0.28);
}

.button.primary:hover {
  background: var(--yellow-deep);
}

.button.secondary {
  border-color: rgba(253, 185, 19, 0.74);
  background: rgba(253, 185, 19, 0.13);
  color: #fff;
}

.partner-strip {
  border-bottom: 1px solid rgba(253, 185, 19, 0.34);
  background: linear-gradient(90deg, var(--yellow-wash), #fff 46%, var(--mint));
}

.partner-strip-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  padding: 1.35rem 0;
}

.partner-strip p {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.2vw, 0.85rem);
  flex-wrap: wrap;
}

.partner-logo {
  width: clamp(124px, 15.4vw, 168px);
  height: 58px;
  padding: 0.45rem 0.65rem;
  flex: 0 1 clamp(124px, 15.4vw, 168px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--yellow-wash));
  box-shadow: inset 0 -3px 0 var(--yellow);
}

.partner-logo img {
  width: 100%;
  max-width: 126px;
  max-height: 32px;
  object-fit: contain;
}

.partner-logo.yadea img {
  max-height: 28px;
}

.partner-logo.selex img {
  max-width: 84px;
  max-height: 42px;
}

.partner-logo.datbike img {
  max-width: 118px;
  max-height: 30px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

.hero-metrics span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.54rem 0.78rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-metrics strong {
  color: #fff;
  font-size: 1.02rem;
}

.service-strip {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
}

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

.service-strip a {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-strip a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.service-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.service-strip strong {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.28;
}

.section {
  padding: 6rem 0;
}

.split-layout,
.ops-layout,
.driver-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
  gap: 3.4rem;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
}

.section-copy p,
.contact-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy .eyebrow,
.section-heading .eyebrow,
.contact-copy .eyebrow,
.news-layout .eyebrow {
  color: var(--orange);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 1.15rem;
  color: var(--orange);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}

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

.service-card,
.driver-list article,
.process-list li,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  min-height: 250px;
  padding: 1.35rem;
  box-shadow: 0 12px 30px rgba(23, 33, 43, 0.04);
}

.service-card.feature-card {
  grid-column: 1 / -1;
  min-height: 210px;
  background: linear-gradient(135deg, var(--yellow-wash), #fff);
}

.service-icon {
  width: 38px;
  height: 38px;
  display: inline-block;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.22);
}

.service-card h3,
.driver-list h3,
.process-list h3 {
  margin: 1rem 0 0.5rem;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-card p,
.driver-list p,
.process-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.ops-section {
  padding: 5.2rem 0;
  background: var(--soft);
}

.ops-layout {
  grid-template-columns: minmax(280px, 0.96fr) minmax(260px, 0.76fr);
  align-items: center;
}

.ops-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--yellow-soft);
  box-shadow: var(--shadow);
}

.ops-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.benefits-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(253, 185, 19, 0.32), transparent 24%),
    linear-gradient(90deg, rgba(7, 59, 45, 0.94), rgba(0, 91, 63, 0.78)),
    url("assets/fleet-road-clean.webp") center / cover;
  color: #fff;
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.48fr);
  gap: 3rem;
  align-items: center;
}

.benefit-panel {
  max-width: 790px;
}

.benefit-panel .eyebrow {
  color: #ffd66b;
}

.benefit-panel h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.08;
  text-wrap: balance;
}

.benefit-panel p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.3rem;
  margin-top: 2.4rem;
}

.benefit-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.benefit-list span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.benefit-list span::before {
  content: "";
  width: 7px;
  height: 11px;
  display: block;
  border: solid var(--yellow);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.benefit-list strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.45;
}

.register-card {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(253, 185, 19, 0.42);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-align: center;
  box-shadow:
    inset 0 4px 0 var(--yellow),
    var(--shadow);
}

.register-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
}

.register-card p {
  margin: 0;
  color: var(--muted);
}

.register-card .button {
  width: 100%;
}

.drivers-section {
  background: #fff;
}

.driver-layout {
  align-items: center;
}

.driver-list {
  display: grid;
  gap: 0.85rem;
}

.driver-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 1rem;
  padding: 1.2rem;
}

.driver-list span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow-soft);
  color: var(--orange);
  font-weight: 700;
}

.driver-list h3 {
  margin: 0;
}

.process-section {
  background: linear-gradient(135deg, var(--yellow-wash), var(--mint));
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 240px;
  padding: 1.25rem;
}

.process-list span {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
}

.process-heading p:not(.eyebrow) {
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.75rem;
}

.contact-section {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, rgba(253, 185, 19, 0.23), rgba(0, 155, 104, 0.1)),
    var(--soft);
}

.contact-layout,
.register-cta-layout {
  align-items: start;
}

.register-cta-layout {
  display: grid;
  place-items: center;
}

.register-cta-card {
  display: grid;
  width: min(760px, 100%);
  gap: 1.15rem;
  border: 1px solid rgba(253, 185, 19, 0.36);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: #fff;
  text-align: center;
  box-shadow:
    inset 0 4px 0 var(--yellow),
    var(--shadow);
}

.register-cta-card .eyebrow {
  margin: 0;
}

.register-cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  text-wrap: balance;
}

.register-cta-card .button {
  width: 100%;
}

.news-section {
  padding: 4.4rem 0;
  background: #fff;
}

.news-layout {
  max-width: 780px;
}

.news-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 33, 43, 0.16);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

.lead-form textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  padding: 3rem 0;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.45fr 0.55fr;
  gap: 2rem;
}

.footer-grid img {
  width: 130px;
  margin-bottom: 1rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius);
  background: #fff;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
}

.footer-grid strong {
  display: block;
  margin-bottom: 0.8rem;
  color: #fff;
}

.footer-grid a,
.footer-grid span {
  display: block;
  min-height: 44px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.65rem;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.3rem 0.7rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.4rem;
  }

  .split-layout,
  .ops-layout,
  .benefits-layout,
  .driver-layout,
  .faq-layout,
  .contact-layout,
  .register-cta-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-strip-grid,
  .partner-strip-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    justify-content: center;
  }

  .service-strip a,
  .service-strip a:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .hero-shell,
  .section-shell,
  .nav-shell {
    width: min(100% - 2rem, var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 120px;
  }

  .hero {
    min-height: 548px;
  }

  .hero::before {
    background:
      radial-gradient(circle at 18% 24%, rgba(253, 185, 19, 0.34), transparent 30%),
      linear-gradient(90deg, rgba(7, 59, 45, 0.9) 0%, rgba(0, 91, 63, 0.72) 56%, rgba(0, 91, 63, 0.3) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.05));
  }

  .hero-bg {
    object-position: 60% center;
  }

  .hero-copy {
    padding: 3.3rem 0 2.6rem;
  }

  .hero h1 {
    font-size: clamp(2.34rem, 10.9vw, 3.2rem);
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1.25rem;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding: 4.4rem 0;
  }

  .ops-section,
  .benefits-section {
    padding: 4.2rem 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 9.4vw, 2.7rem);
  }

  .service-grid,
  .benefit-list,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-strip-grid {
    gap: 0.85rem;
    padding: 1.5rem 0;
  }

  .partner-logo {
    width: auto;
    min-width: calc(50% - 0.5rem);
    flex: 1 1 calc(50% - 0.5rem);
  }

  .partner-logo img {
    max-height: 30px;
  }

  .service-card.feature-card {
    grid-column: auto;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .driver-list article {
    grid-template-columns: 1fr;
  }

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

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