:root {
  --navy: #435490;
  --navy-dark: #2f3568;
  --navy-mid: #3e4095;
  --red: #ed3237;
  --bg: #f5f7fb;
  --paper: #ffffff;
  --ink: #0f172a;
  --muted: #5b6478;
  --line: rgba(67, 84, 144, 0.14);
  --wrap: min(1160px, 100% - 2rem);
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 32px 70px rgba(47, 53, 104, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-mid);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--accent {
  background: linear-gradient(135deg, var(--red), #ff4d52);
  color: #fff;
  box-shadow: 0 12px 32px rgba(237, 50, 55, 0.35);
}

.btn--brand {
  background: var(--navy);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--line);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.btn--light {
  background: #fff;
  color: var(--navy-dark);
}

.btn--wa {
  background: #22c55e;
  color: #fff;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
}

.btn--full {
  width: 100%;
}

/* Topline */
.topline {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
}

.topline__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.45rem 0;
}

.topline a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.topline__sep {
  opacity: 0.4;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.nav.is-scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}

.nav__brand img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: none;
  gap: 1.5rem;
  margin-left: 1.5rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__actions {
  display: none;
  gap: 0.5rem;
  margin-left: auto;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy-dark);
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.nav__drawer[hidden] {
  display: none;
}

.nav__drawer a {
  padding: 0.65rem 0;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .nav__links,
  .nav__actions {
    display: flex;
  }

  .nav__burger {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.93) 0%,
    rgba(47, 53, 104, 0.82) 45%,
    rgba(67, 84, 144, 0.55) 100%
  );
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2.5rem;
  align-items: start;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero h1 span {
  color: #fda4a6;
}

.hero__lead {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
}

.pill {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(237, 50, 55, 0.9);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stats dt {
  font-size: 1.125rem;
  font-weight: 800;
}

.hero__stats dd {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.75;
}

.hero__form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.hero__form h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.hero__form > p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 400px;
    padding: 4rem 0 3.5rem;
    align-items: center;
  }
}

/* Trust */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust__grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
}

.trust__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--navy);
}

.trust__item strong {
  display: block;
  font-size: 0.9375rem;
}

.trust__item span {
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section--dark {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.kicker--light {
  color: #ffb4b6;
}

.head.center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.head__sub {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Split */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.split__body h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
}

.split__body p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Services */
.service-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
}

.service-card--accent {
  background: var(--navy-dark);
  color: #fff;
  border-color: transparent;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card__link {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.service-card--accent .service-card__link {
  color: #ffb4b6;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Fleet */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-card {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--paper) 0%, #f0f3fa 100%);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fleet-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.fleet-card::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--navy));
}

@media (min-width: 768px) {
  .fleet-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .fleet-card--wide {
    grid-column: span 2;
  }
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.steps span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffb4b6;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Coverage */
.coverage {
  display: grid;
  gap: 2rem;
}

.coverage__text {
  color: var(--muted);
  max-width: 32rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.chips span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.units {
  display: grid;
  gap: 0.75rem;
}

.units article {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.units h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}

.units p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.units a {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

@media (min-width: 900px) {
  .coverage {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* FAQ */
.faq {
  display: grid;
  gap: 2rem;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.accordion summary {
  padding: 1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .faq {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy-dark), #1e2448);
  color: #fff;
}

.cta__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

@media (min-width: 900px) {
  .cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Forms */
.form label {
  display: block;
  margin-bottom: 0.85rem;
}

.form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #f8fafc;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(67, 84, 144, 0.15);
  background: #fff;
}

.form__row {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form--card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

/* Footer */
.foot {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  border-top: 3px solid var(--red);
  padding-bottom: 5rem;
}

.foot__main {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
}

.foot__logo {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  background: #fff;
  border-radius: 12px;
}

.foot__logo img {
  height: 40px;
}

.foot__brand > p {
  margin: 0.85rem 0 0.5rem;
  max-width: 22rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.foot__ig {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.foot h3 {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
}

.foot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot li {
  margin-bottom: 0.35rem;
}

.foot a {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.foot__copy {
  margin: 0;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  opacity: 0.45;
}

@media (min-width: 768px) {
  .foot__main {
    grid-template-columns: 1.2fr 1fr;
  }

  .foot {
    padding-bottom: 2rem;
  }
}

/* Dock & FAB */
.dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.dock .btn {
  flex: 1;
  font-size: 0.8125rem;
  min-height: 44px;
}

.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 41;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
}

@media (min-width: 900px) {
  .dock {
    display: none;
  }

  .fab-wa {
    bottom: 1.5rem;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease, ease), transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 599px) {
  :root {
    --wrap: min(1160px, 100% - 1.25rem);
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .foot__cols {
    grid-template-columns: 1fr;
  }
}
