/* Road Reapers Transport LLC — Design System */

:root {
  --navy-950: #0c141d;
  --navy-900: #14202e;
  --navy-800: #1c2c3d;
  --navy-700: #2a3f56;
  --orange-600: #d4661f;
  --orange-500: #e8752c;
  --orange-100: #fdeee1;
  --bg: #f7f5f2;
  --surface: #ffffff;
  --border: #e5e0d8;
  --text: #14202e;
  --text-muted: #5b6474;
  --text-inverse: #f7f5f2;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(20, 32, 46, 0.06);
  --shadow-md: 0 10px 28px rgba(20, 32, 46, 0.10);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 52px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 14px;
}

.top-bar { background: var(--navy-950); color: rgba(247,245,242,0.75); font-size: 13px; padding: 9px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: rgba(247,245,242,0.9); font-weight: 600; }
.top-bar a:hover { color: var(--orange-500); }

.navbar { background: var(--surface); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 108px; }
.brand-logo { height: 68px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 600; font-size: 15px; }
.nav-links a { color: var(--text-muted); transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-900); margin: 4px 0; }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--surface); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--border); transform: translateY(-140%); transition: transform 0.25s ease; box-shadow: var(--shadow-md); z-index: 40; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all 0.15s ease; }
.btn-primary { background: var(--orange-500); color: #fff; }
.btn-primary:hover { background: var(--orange-600); }
.btn-outline { background: transparent; color: var(--navy-900); border: 1.5px solid var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { background: var(--orange-100); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.hero { background: var(--navy-900); color: var(--text-inverse); padding: 90px 0; }
.hero h1 { font-size: 46px; line-height: 1.15; font-weight: 800; max-width: 720px; }
.hero .section-lead { color: rgba(247,245,242,0.78); font-size: 18px; max-width: 620px; margin-top: 18px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
@media (max-width: 640px) { .hero h1 { font-size: 32px; } }

.page-hero { padding: 64px 0; }
.page-hero h1 { font-size: 38px; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 30px; font-weight: 800; }
.section-head .section-lead { color: var(--text-muted); font-size: 17px; margin-top: 12px; }

.section-alt { background: var(--surface); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; }
.icon-badge { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.icon-badge svg { width: 24px; height: 24px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.stat-number { font-size: 34px; font-weight: 800; color: var(--orange-500); }
.stat-label { color: rgba(247,245,242,0.7); font-size: 14px; margin-top: 6px; }

.cta-banner { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; }
.cta-banner h2 { font-size: 28px; font-weight: 800; }
.cta-banner .section-lead { color: rgba(247,245,242,0.78); margin-top: 12px; }
.cta-banner .hero-ctas { justify-content: center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.field input, .field select, .field textarea { padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; background: var(--bg); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange-500); }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; }
.form-status.success { color: #1a7a4c; display: block; }
.form-status.error { color: #b3261e; display: block; }

.footer { background: var(--navy-950); color: rgba(247,245,242,0.65); padding: 52px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,245,242,0.1); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo-wrap { display: inline-block; background: #fff; padding: 12px 16px; border-radius: var(--radius-sm); }
.footer-logo-wrap img { height: 38px; }
.footer-brand p { font-size: 14px; max-width: 280px; margin-top: 14px; }
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 9px; font-size: 14px; }
.footer ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }

.text-center { text-align: center; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge-pill { background: rgba(247,245,242,0.1); color: rgba(247,245,242,0.9); font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; }
