:root {
  --blue: #0b4ea2;
  --blue-dark: #082b55;
  --ink: #16202d;
  --muted: #657181;
  --line: #dbe3ed;
  --soft: #f5f7fa;
  --gold: #d99a2b;
  --orange: #f1742b;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(8, 43, 85, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  color: var(--blue-dark);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--gold));
}
.custom-logo { max-height: 54px; width: auto; }
.primary-nav { justify-self: end; }
.primary-nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.header-cta,
.inuwa-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 28px rgba(11, 78, 162, .22);
}
.btn-secondary {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost {
  color: var(--blue-dark);
  background: transparent;
  border: 1px solid var(--line);
}
.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px) 40px;
  background:
    linear-gradient(115deg, rgba(8, 43, 85, .98), rgba(11, 78, 162, .88) 54%, rgba(255, 255, 255, .94) 54%),
    var(--soft);
  overflow: hidden;
}
.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  color: var(--white);
  letter-spacing: 0;
}
.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
}
.hero img,
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}
.section > h2,
.section h2,
.cta-band h2 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 24px;
}
.dark {
  color: var(--white);
  background: var(--ink);
}
.dark h2,
.dark h3 { color: var(--white); }
.dark p { color: rgba(255,255,255,.78); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}
.narrow {
  max-width: 1040px;
  margin: 0 auto;
}

.steps,
.feature-grid,
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.steps article,
.feature-grid article,
.vehicle-card,
.service-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(22, 32, 45, .06);
}
.dark .steps article,
.dark .feature-grid article {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}
.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--gold);
  font-weight: 800;
}
.steps p { margin: 0; font-weight: 700; }
.feature-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.feature-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid h3,
.vehicle-card h3,
.service-list h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 19px;
}
.service-list {
  display: grid;
  gap: 14px;
}
.vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vehicle-card.placeholder {
  min-height: 190px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
}
.vehicle-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.page-hero {
  padding: 84px clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.page-hero.compact { min-height: 310px; display: grid; align-content: center; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 20px; max-width: 780px; }
.check-list {
  padding-left: 20px;
  color: var(--muted);
}
.check-list li { margin-bottom: 10px; }

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--soft);
}
.inuwa-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.inuwa-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  color: var(--blue-dark);
}
.inuwa-form .full { grid-column: 1 / -1; }
.inuwa-form input,
.inuwa-form select,
.inuwa-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.form-success {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #14532d;
  background: #dcfce7;
}

.cta-band {
  margin: 0 clamp(18px, 5vw, 72px) clamp(54px, 7vw, 92px);
  padding: clamp(34px, 6vw, 68px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue) 70%, var(--orange));
  border-radius: var(--radius);
}
.cta-band h2,
.cta-band p { color: var(--white); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,.78);
  background: #101722;
}
.site-footer strong { color: var(--white); }
.site-footer p { margin: 6px 0; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #16a34a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(22, 163, 74, .32);
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .form-section {
    grid-template-columns: 1fr;
  }
  .steps,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero {
    background: linear-gradient(160deg, rgba(8,43,85,.98), rgba(11,78,162,.9));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
  }
  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    display: grid;
    gap: 6px;
    padding: 10px 0 4px;
  }
  .primary-nav a {
    display: block;
    padding: 10px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 44px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .steps,
  .feature-grid,
  .feature-grid.two,
  .feature-grid.three,
  .vehicle-grid,
  .inuwa-form {
    grid-template-columns: 1fr;
  }
  .site-footer {
    display: grid;
  }
}
