:root {
  --navy: #0b1f3a;
  --navy-2: #0f2a52;
  --blue: #1e60d9;
  --blue-2: #3b82f6;
  --red: #e11d2e;
  --red-2: #b4121f;
  --ink: #0c1424;
  --muted: #5b6478;
  --line: #e5e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --shadow: 0 10px 30px rgba(11, 31, 58, .08);
  --shadow-lg: 0 20px 60px rgba(11, 31, 58, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  transition: transform .1s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-xl { padding: 20px 34px; font-size: 18px; border-radius: 12px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 29, 46, .35);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-phone-sm {
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 8px;
}
.btn-phone-sm:hover { background: var(--red-2); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 900;
  letter-spacing: .5px;
}
.brand-name { font-size: 18px; color: var(--navy); }
.brand-name em { color: var(--red); font-style: normal; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  opacity: .85;
}
.nav-links a:hover { opacity: 1; color: var(--blue); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { height: 60px; }
  .brand-name { font-size: 16px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(11,31,58,.92) 0%, rgba(11,31,58,.78) 45%, rgba(11,31,58,.55) 100%),
    radial-gradient(1200px 600px at 80% -10%, rgba(59,130,246,.35), transparent 60%),
    linear-gradient(180deg, #0b1f3a 0%, #0a1a33 100%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute; right: -10%; top: 10%;
  width: 680px; height: 460px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 680 460'><g fill='none' stroke='%23ffffff' stroke-opacity='.08' stroke-width='2'><path d='M0 380 L680 380'/><path d='M0 410 L680 410'/><rect x='80' y='180' width='360' height='160' rx='10'/><rect x='460' y='210' width='140' height='130' rx='10'/><circle cx='180' cy='370' r='28'/><circle cx='300' cy='370' r='28'/><circle cx='520' cy='370' r='28'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .9;
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  padding: 96px 22px 110px;
  max-width: 960px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ec2ff;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.dark {
  color: var(--blue);
  background: rgba(30,96,217,.08);
  border-color: rgba(30,96,217,.2);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -1px;
  margin: 0 0 18px;
  font-weight: 900;
}
.hero h1 .accent { color: #ffd166; }
.hero .lead {
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 720px;
  opacity: .92;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  opacity: .95;
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-points li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: #ffd166;
  color: #0b1f3a;
  font-size: 11px;
  font-weight: 900;
}
.hero-points strong { color: #fff; }

/* ---------- Trust ---------- */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1180px;
  transform: translateY(-40px);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--navy);
}
.trust-num {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 900;
}
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about { padding: 20px 0 70px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.about h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 10px 0 0;
  color: var(--navy);
  letter-spacing: -.4px;
}
.about-copy p { color: var(--muted); font-size: 17px; margin: 0 0 14px; }
.about-copy strong { color: var(--ink); }
@media (max-width: 820px) {
  .about-inner { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin: 0 auto 40px; max-width: 720px; }
.section-head.light .eyebrow { color: #9ec2ff; }
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin: 10px 0 10px;
  color: var(--navy);
  letter-spacing: -.5px;
}
.section-head.light h2 { color: #fff; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }
.section-head.light .section-sub { color: #c6d4ea; }

/* ---------- Drivers cards ---------- */
.drivers { padding: 60px 0 80px; background: var(--bg-soft); }
.driver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card h3 { margin: 0; font-size: 22px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-exp {
  background: linear-gradient(180deg, #0b1f3a 0%, #0f2a52 100%);
  color: #fff;
  border-color: transparent;
}
.card-exp h3 { color: #fff; }
.card-exp p { color: #c6d4ea; }
.card-exp .check li { color: #e8eefa; }
.card-exp .check li::before { background: #ffd166; color: #0b1f3a; }
.badge {
  position: absolute; top: 18px; right: 18px;
  background: #ffd166; color: #0b1f3a;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
}
.check { list-style: none; padding: 0; margin: 4px 0; display: grid; gap: 8px; }
.check li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 15px;
}
.check li::before {
  content: "✓";
  position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  font-size: 12px; font-weight: 900;
}
.check.big li { font-size: 16px; padding-left: 32px; }
.check.big li::before { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .driver-grid { grid-template-columns: 1fr; }
}

/* ---------- Why ---------- */
.why { background: var(--navy); color: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.why::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 20% 0%, rgba(59,130,246,.25), transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.why-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 26px;
}
.why-item h4 { margin: 8px 0 6px; font-size: 18px; color: #fff; }
.why-item p { margin: 0; color: #c6d4ea; font-size: 15px; }
.why-icon { font-size: 28px; line-height: 1; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Benefits ---------- */
.benefits { padding: 80px 0; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
}
.benefit strong { font-size: 17px; color: var(--navy); }
.benefit span { color: var(--muted); font-size: 14px; }
@media (max-width: 860px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { background: var(--bg-soft); padding: 80px 0; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff5a67);
  color: #fff; font-weight: 900; font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(225,29,46,.35);
}
.step h4 { margin: 4px 0 6px; color: var(--navy); font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr; } }

/* ---------- Apply ---------- */
.apply { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, #eef3fb 100%); }
.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.apply-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--navy);
  margin: 10px 0 14px;
  letter-spacing: -.4px;
}
.apply-copy p { color: var(--muted); font-size: 17px; }
.apply-call {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow);
}
.apply-call span { color: var(--muted); font-weight: 600; }
.phone-link {
  font-size: 22px; font-weight: 900; color: var(--red);
  letter-spacing: .3px;
}

.apply-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.apply-form h3 {
  margin: 0 0 18px;
  font-size: 22px;
  color: var(--navy);
}
.apply-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.apply-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.apply-form input,
.apply-form select {
  margin-top: 6px;
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30,96,217,.12);
}
.apply-form input:invalid:not(:placeholder-shown) { border-color: #f5b1b7; }
.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  background: #ecfdf3;
  border: 1px solid #a7efc5;
  color: #065f46;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-success a { color: var(--red); font-weight: 700; }
@media (max-width: 860px) {
  .apply-inner { grid-template-columns: 1fr; gap: 28px; }
  .apply-form .row { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2a52 60%, #123066 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.final-inner h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 10px;
  letter-spacing: -.4px;
}
.final-inner p { color: #c6d4ea; font-size: 18px; margin: 0 0 28px; }
.final-inner .hours { margin-top: 18px; font-size: 14px; color: #9ec2ff; }

/* ---------- Footer ---------- */
.footer { background: #07152a; color: #c6d4ea; padding: 50px 0 24px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-name { color: #fff; }
.footer-sub { margin: 10px 0 0; font-size: 14px; color: #8ea6c9; max-width: 440px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-contact a { font-size: 22px; font-weight: 900; color: #fff; }
.footer-contact span { font-size: 13px; color: #9ec2ff; }
.copyright { padding-top: 18px; font-size: 13px; color: #7e93b4; }

/* ---------- Sticky call (mobile only) ---------- */
.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--red);
  color: #fff;
  padding: 14px 18px;
  font-weight: 800;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(225,29,46,.45);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sticky-call svg { width: 18px; height: 18px; }
@media (max-width: 760px) {
  .sticky-call { display: inline-flex; }
  .float-apply { display: none; }
  body { padding-bottom: 80px; }
}

/* ---------- Floating Apply button (desktop) ---------- */
.float-apply {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(225,29,46,.45);
  z-index: 55;
  transition: transform .1s ease, background .2s ease;
}
.float-apply:hover { background: var(--red-2); transform: translateY(-2px); }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
