:root {
  --green: #16a34a;
  --green-dark: #117a38;
  --green-soft: #eaf8ef;
  --black: #070b12;
  --dark: #111827;
  --muted: #64748b;
  --soft: #f3f6f8;
  --white: #ffffff;
  --line: #dbe3ea;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  --shadow-soft: 0 10px 35px rgba(15, 23, 42, .08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--black); color: white; padding: 10px 14px; z-index: 999; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, .90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand, .custom-logo-link { display: flex; align-items: center; }
.brand img, .custom-logo {
  width: 244px;
  max-height: 62px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.22));
}
.main-nav { display: flex; align-items: center; gap: 28px; color: #fff; font-size: 15px; font-weight: 700; }
.main-nav a { opacity: .92; transition: .22s ease; }
.main-nav a:hover { opacity: 1; color: #d1fae5; }
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .22s ease;
}
.nav-cta { background: var(--green); color: white; }
.nav-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22,163,74,.18); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px auto; }

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,11,18,.92) 0%, rgba(7,11,18,.78) 36%, rgba(7,11,18,.38) 100%),
    url('../img/hero-transport.jpg') center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(22,163,74,.25), transparent 22%),
    linear-gradient(115deg, transparent 0 50%, rgba(255,255,255,.06) 51%, transparent 52%),
    repeating-linear-gradient(115deg, transparent 0 140px, rgba(255,255,255,.05) 141px 154px, transparent 155px 310px);
  opacity: .8;
}
.hero-content { position: relative; z-index: 2; }
.hero-text { max-width: 720px; color: #fff; padding: 96px 0 84px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
  color: var(--green);
}
.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .97;
  letter-spacing: -0.055em;
}
.lead {
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.38;
  margin: 0 0 28px;
  color: rgba(255,255,255,.88);
  font-weight: 650;
}
.hero-list { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 12px; }
.hero-list li, .check-list li { position: relative; padding-left: 32px; font-weight: 700; }
.hero-list li::before, .check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--green); color: white; font-size: 13px; font-weight: 900;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 700;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.btn-outline-dark { color: var(--dark); border-color: var(--line); background: white; }
.btn-light { background: white; color: var(--dark); }

.benefits { background: white; padding: 36px 0 38px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 42px rgba(15,23,42,.06);
}
.icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--green-soft); color: var(--green); font-weight: 900; margin-bottom: 18px; }
.benefit-card h3 { margin: 0 0 8px; font-size: 19px; }
.benefit-card p { color: var(--muted); margin: 0; }

.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2, .why-grid h2, .areas-card h2, .cta-band h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section-head p, .service-copy p, .why-grid p, .areas-card p, .cta-band p { color: var(--muted); font-size: 17px; }




.services-text-section { padding: 74px 0 82px; }
.services-text-section .container { width: min(1180px, calc(100% - 40px)); }
.services-text-section .section-head { margin-bottom: 36px; }

.text-service-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 163, 74, .18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(22,163,74,.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef7f1 100%);
  box-shadow: var(--shadow);
  min-height: 540px;
  padding: clamp(34px, 5vw, 58px);
}
.service-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(22,163,74,.22), transparent 60%);
  pointer-events: none;
}
.service-text-track {
  position: relative;
  min-height: 330px;
  z-index: 2;
}
.service-text-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  max-width: 760px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px);
  transition: opacity .35s ease, transform .35s ease;
}
.service-text-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.service-text-slide h3 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -0.06em;
}
.service-text-slide p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 720px;
  margin: 0;
}
.check-list { list-style: none; padding: 0; margin: 28px 0 30px; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; font-weight: 750; color: #334155; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  width: 21px; height: 21px; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--green); color: white; font-size: 13px; font-weight: 900;
}
.carousel-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #111827;
  background: rgba(255,255,255,.92);
  color: #111827;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .2s ease;
  flex: 0 0 auto;
}
.carousel-arrow:hover { background: var(--green); border-color: var(--green); color: white; }
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.carousel-dots button {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  background: #dbe3ea;
  cursor: pointer;
  transition: .2s ease;
}
.carousel-dots button.is-active {
  background: var(--green);
  transform: scale(1.16);
}

.trust-coverage-section {
  padding: 68px 0 78px;
}
.trust-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.trust-panel,
.coverage-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(30px, 4vw, 46px);
}
.trust-panel h2,
.coverage-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.trust-panel p,
.coverage-panel p {
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  padding: 82px 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(22,163,74,.18), transparent 28%),
    linear-gradient(135deg, #0b1220 0%, #111827 55%, #06140c 100%);
  color: #ffffff;
}
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.contact-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.contact-copy p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.contact-methods {
  display: grid;
  gap: 16px;
}
.contact-method {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  transition: .22s ease;
}
.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(22,163,74,.65);
  background: rgba(22,163,74,.16);
}
.contact-method span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.contact-method strong {
  font-size: 20px;
}
.contact-method em {
  color: rgba(255,255,255,.72);
  font-style: normal;
}

.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-cards div {
  padding: 22px 22px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-weight: 850;
}
.areas-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  padding: 48px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.info-list { display: grid; gap: 16px; }
.info-list div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-list strong { display: block; text-transform: uppercase; letter-spacing: .11em; font-size: 13px; color: var(--dark); margin-bottom: 5px; }
.info-list span { color: var(--muted); }

.cta-band {
  position: relative;
  padding: 78px 0;
  color: white;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(7,11,18,.88), rgba(7,11,18,.70)),
    url('../img/cta-contact.jpg') center center / cover no-repeat;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(22,163,74,.26), transparent 25%);
}
.cta-content { position: relative; z-index: 1; max-width: 920px; }
.cta-band p { color: rgba(255,255,255,.80); margin-bottom: 28px; }
.contact-actions { justify-content: center; }
.contact-details { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 30px; color: rgba(255,255,255,.78); font-weight: 700; }

.site-footer { background: #f8fafc; padding: 42px 0 26px; color: var(--dark); }
.footer-grid { display: flex; align-items: start; justify-content: space-between; gap: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.footer-grid strong { font-size: 20px; }
.footer-grid p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--green); }
.copyright { padding-top: 22px; color: var(--muted); font-size: 14px; }
.page-content { min-height: 65vh; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 82px; right: 20px; left: 20px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px; background: rgba(7,11,18,.98); border: 1px solid rgba(255,255,255,.10); border-radius: 18px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px; }
  .nav-cta { margin-top: 8px; }
  .brand img, .custom-logo { width: 198px; }
  .hero { min-height: auto; }
  .hero-text { padding: 92px 0 82px; }
  .benefits-grid, .why-grid, .areas-card { grid-template-columns: 1fr; }
  .areas-card { padding: 24px; }
  .services-text-section .container { width: min(100% - 28px, 1180px); }
  .text-service-slider { min-height: 620px; padding: 30px 22px; }
  .service-text-track { min-height: 420px; }
  .trust-coverage-grid, .contact-card { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero h1 { font-size: 42px; }
  .lead { font-size: 18px; }
  .btn { width: 100%; }
  .benefit-card { padding: 22px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 34px; }
  .text-service-slider { min-height: 660px; }
  .service-text-track { min-height: 470px; }
  .service-text-slide h3 { font-size: 36px; }
  .carousel-dots { gap: 9px; }
  .contact-details { gap: 14px; }
  .hero-meta span { width: 100%; justify-content: center; }
}


.legal-page {
  background: #f3f6f8;
}
.legal-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  margin: 10px 0 8px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 25px;
  letter-spacing: -0.025em;
}
.legal-card p,
.legal-card li {
  color: #475569;
  font-size: 17px;
}
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.legal-updated {
  color: var(--green) !important;
  font-weight: 800;
}

@media (max-width: 900px) {
  .trust-coverage-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .service-text-slide {
    position: absolute;
    max-width: 100%;
  }
  .service-text-slide h3 {
    font-size: clamp(30px, 8vw, 44px);
  }
  .service-text-slide p {
    font-size: 17px;
  }
  .text-service-slider {
    min-height: 700px;
    border-radius: 24px;
  }
  .service-text-track {
    min-height: 500px;
  }
  .carousel-controls {
    margin-top: 16px;
  }
  .contact-method strong {
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .services-text-section .container,
  .trust-coverage-section .container,
  .contact-section .container {
    width: min(100% - 20px, 1180px);
  }
  .text-service-slider {
    min-height: 760px;
    padding: 26px 18px;
  }
  .service-text-track {
    min-height: 560px;
  }
  .carousel-dots button {
    width: 12px;
    height: 12px;
  }
}


.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .copyright {
    display: grid;
    gap: 8px;
  }
}


/* v12 services controls fix */
.text-service-slider {
  margin-bottom: 18px;
}
.service-text-slide .btn.btn-primary {
  display: inline-flex;
  width: auto;
  min-width: 220px;
  justify-content: center;
}
.carousel-controls {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 6px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.carousel-dots button {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  background: #d5dde4;
  cursor: pointer;
  transition: .2s ease;
}
.carousel-dots button.is-active {
  background: var(--green);
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .text-service-slider {
    min-height: 720px;
  }
  .service-text-track {
    min-height: 540px;
  }
  .service-text-slide .btn.btn-primary {
    min-width: 200px;
  }
}
@media (max-width: 520px) {
  .text-service-slider {
    min-height: 780px;
  }
  .service-text-track {
    min-height: 590px;
  }
}


/* v14 hero refresh + clickable dots */
.hero {
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(7,11,18,.94) 0%, rgba(7,11,18,.83) 38%, rgba(7,11,18,.42) 100%),
    url('../img/hero-transport.jpg') center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 26%, rgba(22,163,74,.28), transparent 24%),
    linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,.06) 53%, transparent 54%),
    repeating-linear-gradient(115deg, transparent 0 140px, rgba(255,255,255,.05) 141px 154px, transparent 155px 310px);
  opacity: .9;
}
.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hero-text { max-width: 760px; color: #fff; padding: 96px 0 84px; }
.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 6.3vw, 76px);
  line-height: .95;
  letter-spacing: -0.06em;
  max-width: 11ch;
}
.hero-sidecard {
  background: rgba(12, 18, 32, .66);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22,163,74,.16);
  border: 1px solid rgba(22,163,74,.36);
  color: #d1fae5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-sidecard h3 {
  margin: 18px 0 12px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.hero-sidecard p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.hero-mini-grid {
  display: grid;
  gap: 12px;
}
.hero-mini-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 15px 16px;
}
.hero-mini-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.hero-mini-item span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.carousel-controls {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  z-index: 10;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.carousel-dots button {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  background: #cfd8df;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
  pointer-events: auto;
}
.carousel-dots button:hover {
  transform: scale(1.08);
  background: #9fb4a8;
}
.carousel-dots button.is-active {
  background: var(--green);
  transform: scale(1.15);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-sidecard {
    max-width: 560px;
    margin-bottom: 28px;
  }
  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-text {
    padding: 84px 0 24px;
  }
  .hero-sidecard {
    padding: 22px;
    border-radius: 22px;
    margin-bottom: 54px;
  }
}


/* v16 swipe / drag support */
.text-service-slider {
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}
.text-service-slider.is-dragging {
  cursor: grabbing;
}
.text-service-slider .btn,
.text-service-slider a {
  user-select: none;
}
.carousel-dots button {
  pointer-events: auto;
}

/* subtle polish for services block */
.services-text-section .section-head h2 {
  letter-spacing: -0.045em;
}
.text-service-slider {
  background:
    radial-gradient(circle at 84% 18%, rgba(34,197,94,.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef7f1 100%);
}
