:root {
  --navy: #071827;
  --navy-2: #0d2338;
  --ink: #142033;
  --muted: #5c6a7a;
  --line: #dbe3ec;
  --bg: #f5f7fa;
  --white: #ffffff;
  --gold: #f4a51c;
  --gold-dark: #d88700;
  --danger: #b42318;
  --green: #0f766e;
  --shadow: 0 18px 45px rgba(7, 24, 39, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 20;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(7, 24, 39, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}
.logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}
.logo span { color: var(--gold); }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.86);
  font-size: 0.94rem;
}
.nav a:hover { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(244, 165, 28, 0.26);
}
.btn-primary:hover { background: #ffb52e; }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.24);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}
.mobile-menu { display: none; }

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(244,165,28,0.24), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, #0a2238 55%, #16324f 100%);
  padding: 74px 0 62px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.06; margin: 0; color: inherit; }
h1 { font-size: clamp(2.45rem, 5vw, 4.9rem); letter-spacing: -0.065em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); letter-spacing: -0.055em; }
h3 { font-size: 1.35rem; letter-spacing: -0.03em; }
.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.27rem);
  color: rgba(255,255,255,0.84);
  max-width: 680px;
  margin: 22px 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.trust-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,0.9);
}
.trust-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 9px;
}

.card {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card { padding: 28px; }
.form-card h2 { color: var(--navy); font-size: 1.75rem; }
.form-card p { color: var(--muted); margin: 10px 0 20px; }
.form-grid { display: grid; gap: 13px; }
.field label {
  display: block;
  font-weight: 800;
  font-size: 0.87rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 94px; resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}
.checkbox input { margin-top: 5px; }
.form-card .btn { width: 100%; margin-top: 4px; }
.reassurance { font-size: 0.88rem; color: var(--green) !important; font-weight: 800; }

.section { padding: 82px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-muted { background: #edf2f7; }
.section-head { max-width: 780px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p,
.section-dark .muted { color: rgba(255,255,255,0.76); }
.section-note { color: var(--muted); font-size: 0.92rem; margin-top: 18px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mini-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.mini-card p { color: var(--muted); margin-bottom: 18px; }
.media-card { overflow: hidden; }
.truck-photo {
  width: calc(100% + 48px);
  max-width: none;
  height: 260px;
  object-fit: cover;
  margin: -24px -24px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 28px rgba(7, 24, 39, 0.08); }
.team-card p { color: var(--muted); }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold); font-weight: 950; margin-bottom: 18px; }
.text-link { color: var(--danger); font-weight: 900; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.compare-box {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.compare-box.highlight { background: rgba(244,165,28,0.13); border-color: rgba(244,165,28,0.42); }
.compare-box ul { padding-left: 20px; color: rgba(255,255,255,0.84); }

.photo-section { padding-top: 34px; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 18px;
}
.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(7, 24, 39, 0.12);
}
.photo-card-large { grid-row: span 2; min-height: 540px; }
.real-photo-grid {
  grid-template-columns: 1.2fr repeat(2, 0.9fr);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,39,0.04) 30%, rgba(7,24,39,0.82) 100%);
}
.photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  align-content: start;
}
.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  box-shadow: 0 8px 18px rgba(7, 24, 39, 0.06);
}

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: steps; }
.step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 950;
  margin-bottom: 14px;
}
.step p { color: var(--muted); margin-bottom: 0; }

.testimonial-video-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #102a44);
  color: var(--white);
  box-shadow: var(--shadow);
}
.testimonial-video-card h3 { font-size: 1.55rem; margin: 8px 0 12px; }
.testimonial-video-card p { color: rgba(255,255,255,0.78); }
.testimonial-video-card .eyebrow { color: var(--gold); }
.testimonial-video-card video {
  width: 100%;
  border-radius: 18px;
  background: #04111d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}
.testimonial-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}
.quote {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.quote blockquote { margin: 0; color: var(--ink); font-size: 1.03rem; }
.quote cite { display: block; margin-top: 18px; font-weight: 900; color: var(--navy); font-style: normal; }

.state-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.state-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  font-weight: 950;
  font-size: 1.25rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), #102a44);
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,0.8); }

.site-footer {
  background: #04111d;
  color: rgba(255,255,255,0.78);
  padding: 58px 0 96px;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
.footer-grid h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.footer-grid a:hover { color: var(--gold); }

.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 10px;
  background: rgba(7, 24, 39, 0.97);
  gap: 10px;
}
.mobile-sticky .btn { flex: 1; padding: 12px 10px; font-size: 0.9rem; }

@media (max-width: 980px) {
  .nav, .header-actions .btn { display: none; }
  .mobile-menu { display: inline-flex; }
  .hero-grid, .grid-2, .testimonial-video-card, .testimonial-feature, .cta-band { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .timeline, .state-grid, .photo-grid, .real-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card-large { grid-row: auto; min-height: 360px; }
  .compare { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding: 44px 0 42px; }
  .section { padding: 58px 0; }
  .grid-4, .grid-3, .timeline, .state-grid, .photo-grid, .real-photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card-large { min-height: 260px; }
  .chips { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .form-card { padding: 20px; }
  .cta-band { padding: 28px; border-radius: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky { display: flex; }
  .site-footer { padding-bottom: 112px; }
}


/* Gravity Forms compatibility */
.form-card .gform_wrapper.gravity-theme,
.form-card .gform_wrapper { margin-top: 14px; }
.form-card .gform_wrapper input[type="text"],
.form-card .gform_wrapper input[type="email"],
.form-card .gform_wrapper input[type="tel"],
.form-card .gform_wrapper input[type="file"],
.form-card .gform_wrapper select,
.form-card .gform_wrapper textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px;
  font: inherit; color: var(--ink); background: var(--white);
}
.form-card .gform_wrapper .gfield_label { font-weight: 800; color: var(--ink); }
.form-card .gform_wrapper .gform_button,
.form-card .gform_wrapper input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px;
  padding: 13px 20px; font-weight: 850; cursor: pointer; background: var(--gold); color: var(--navy);
  box-shadow: 0 10px 22px rgba(244,165,28,.24);
}
.form-card .gform_wrapper .gform_button:hover,
.form-card .gform_wrapper input[type="submit"]:hover { background: #ffc04d; }
.form-card .gform_confirmation_message { font-weight: 800; color: var(--green); }
.form-card .validation_message, .form-card .gfield_validation_message { color: var(--danger); font-weight: 700; }
