:root {
  --navy: #0f2d52;
  --navy-2: #173d6b;
  --navy-3: #0a1d36;
  --gold: #c89b3c;
  --gold-dark: #b8892a;
  --gold-soft: #f4e6c4;
  --ink: #1f2a37;
  --muted: #667085;
  --bg: #f5f7fb;
  --bg-soft: #edf3f9;
  --line: #d9e2ec;
  --line-2: #e8edf4;
  --white: #ffffff;
  --success: #136c3f;
  --danger: #b42318;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 28px rgba(15,45,82,.08);
  --shadow-lg: 0 18px 46px rgba(15,45,82,.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section { padding: 72px 0; }

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 15px; color: var(--muted); }
ul { margin: 0; padding-left: 18px; }
small { color: var(--muted); }

/* Header / Navigation */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,29,54,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-title {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-title span,
.brand-title span span {
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
}

.menu a.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 10px 18px rgba(200,155,60,.22);
}

/* Shared dark hero / bands */
.hero,
.oo-hero-wrap,
.band-dark,
.inverse,
.footer,
.site-footer {
  color: #fff;
}

.hero,
.oo-hero-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 65%, #1d4f8c 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero h1,
.oo-hero-wrap h1,
.section-head h1,
.section-head h2 {
  line-height: 1.12;
}

.hero h1,
.oo-hero-wrap h1 {
  color: #fff;
  margin-bottom: 14px;
}

.lead,
.oo-hero-wrap p,
.section-head p {
  font-size: 1.05rem;
}

.hero .lead,
.oo-hero-wrap p,
.section-head.light p,
.section-head.light h1,
.section-head.light h2 {
  color: rgba(255,255,255,.92);
}

.section-head.center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.band { padding: 0; }
.band-dark { background: var(--navy); }
.band-soft { background: var(--bg-soft); }

/* Shared cards / grids */
.card {
  background: var(--white);
  border: 1px solid rgba(15,45,82,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  color: var(--ink);
}

.card > *:last-child { margin-bottom: 0; }

.card h1,
.card h2,
.card h3 { color: var(--navy); }

.card p,
.card li,
.card small { color: var(--muted); }

.inverse {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}

.inverse h3,
.inverse p,
.inverse li { color: #fff; }

.highlight-card {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(200,155,60,.28);
}

.brand-story,
.pricing-box { margin-top: 24px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.check-list li { margin-bottom: 10px; }

.hero-actions,
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions { margin-top: 22px; }
.center-actions { justify-content: center; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  padding: 8px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
}

/* Buttons / links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15,45,82,.14);
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(200,155,60,.28);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,.08); }

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-dark:hover { background: rgba(15,45,82,.06); }

.text-link {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.text-link:hover { color: var(--gold-dark); }

.quick-link,
.doc-link {
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.quick-link:hover,
.doc-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,155,60,.32);
}

/* Forms / tables / uploads */
.stat-stack,
.contact-card { align-self: start; }

.cta-mini { margin-top: 18px; }

.site-form {
  padding: 28px;
  color: var(--ink);
}

.site-form h2 {
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--navy);
}

.site-form p,
.site-form li,
.site-form small { color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full { grid-column: 1 / -1; }

.field label {
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field input::placeholder,
.field textarea::placeholder { color: #98a2b3; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,155,60,.14);
}

.form-actions { margin-top: 8px; }

.disclaimer,
.table-note {
  margin-top: 16px;
  color: var(--muted);
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.site-table {
  width: 100%;
  border-collapse: collapse;
}

.site-table th,
.site-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-2);
}

.site-table td { color: var(--ink); }

.site-table th {
  background: var(--gold);
  color: var(--navy);
  text-align: left;
}

.upload-groups {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.upload-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy);
}

.drop-zone {
  position: relative;
  border: 2px dashed var(--navy);
  background: #f8fbff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.drop-zone:hover { transform: translateY(-1px); }

.drop-zone.dragover {
  background: #e9f2fb;
  border-color: var(--gold);
}

.drop-zone p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-list div {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
}

.center-cta { text-align: center; }
.doc-link { display: block; color: var(--navy); font-weight: 700; }

.notice-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.notice-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

/* Footer */
.footer,
.site-footer {
  background: var(--navy-3);
  padding: 28px 0;
  margin-top: 40px;
}

.footer p,
.footer li,
.site-footer p,
.site-footer li {
  color: rgba(255,255,255,.84);
}

.footer a,
.site-footer a { color: #fff; }

/* Owner Operator Program page */
.oo-program-page {
  background: #f4f7fb;
  color: #1f2a37;
}

.oo-program-page .container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.oo-section { padding: 72px 0; }
.oo-light { background: #ffffff; }
.oo-alt { background: #f4f7fb; }

.oo-dark,
.oo-cta-band {
  background: #0f2d52;
  color: #ffffff;
}

.oo-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c89b3c;
  margin-bottom: 12px;
}

.oo-hero {
  position: relative;
  background: linear-gradient(135deg, #0f2d52 0%, #173d6b 60%, #0a1c33 100%);
  color: #ffffff;
  padding: 110px 0 90px;
  overflow: hidden;
}

.oo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/truck-pattern.png') center center / cover no-repeat;
  opacity: .05;
  pointer-events: none;
}

.oo-hero .container {
  position: relative;
  z-index: 2;
}

.oo-hero h1 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin: 0 0 18px;
  color: #ffffff;
  max-width: 900px;
}

.oo-hero .oo-lead,
.oo-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 760px;
  margin: 0 0 30px;
}

.oo-hero .oo-kicker { color: #c89b3c; }

.oo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.oo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}

.oo-btn:focus { outline: none; }

.oo-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(200,155,60,.22);
}

.oo-btn-primary,
.oo-btn-gold {
  background: #c89b3c;
  color: #0f2d52;
}

.oo-btn-primary:hover,
.oo-btn-gold:hover {
  background: #b8892a;
  color: #0f2d52;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}

.oo-btn-primary:active,
.oo-btn-gold:active {
  transform: translateY(0);
  box-shadow: none;
}

.oo-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,.85);
}

.oo-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  color: #ffffff;
  transform: translateY(-2px);
}

.oo-btn-secondary:active { transform: translateY(0); }
.oo-btn-full { width: 100%; margin-top: 20px; }

.oo-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 12px;
}

.oo-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
}

.oo-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 999px;
  background: #c89b3c;
  color: #0f2d52;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}

.oo-step-item strong {
  display: block;
  color: #ffffff;
  margin: 0 0 4px;
  font-size: 16px;
}

.oo-step-item p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.5;
}

.oo-section-header {
  text-align: center;
  margin-bottom: 38px;
}

.oo-section-header.oo-left { text-align: left; }

.oo-section-header h2 {
  margin: 0 0 12px;
  color: #0f2d52;
  font-size: 34px;
  line-height: 1.2;
}

.oo-section-header p {
  margin: 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
}

.oo-section-header-light h2,
.oo-section-header-light p {
  color: #ffffff;
}

.oo-grid {
  display: grid;
  gap: 24px;
}

.oo-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.oo-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.oo-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.oo-card,
.oo-form-shell,
.oo-doc-card,
.oo-cta-box {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15,45,82,.08);
}

.oo-card {
  padding: 28px;
  color: #1f2a37;
}

.oo-card h3 {
  margin: 0 0 12px;
  color: #0f2d52;
  font-size: 22px;
  line-height: 1.25;
}

.oo-card p,
.oo-card li {
  color: #475467;
  line-height: 1.7;
}

.oo-card ul {
  margin: 0;
  padding-left: 18px;
}

.oo-card li + li { margin-top: 8px; }

.oo-process-card { position: relative; }

.oo-process-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0f2d52;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.oo-table-wrap { overflow-x: auto; }

.oo-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.oo-table th,
.oo-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e8edf4;
}

.oo-table td { color: #1f2a37; }

.oo-table th {
  background: #c89b3c;
  color: #0f2d52;
  font-weight: 800;
}

.oo-note {
  margin-top: 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

.oo-inline-cta {
  margin-bottom: 24px;
  padding: 24px 26px;
  border-left: 5px solid #c89b3c;
  background: #f8fbff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15,45,82,.06);
}

.oo-inline-cta h2 {
  margin: 6px 0 8px;
  color: #0f2d52;
  font-size: 28px;
  line-height: 1.2;
}

.oo-inline-cta p {
  margin: 0;
  color: #475467;
  line-height: 1.7;
}

.oo-form-shell {
  padding: 34px;
  color: #1f2a37;
}

.oo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.oo-field {
  display: flex;
  flex-direction: column;
}

.oo-field-full { margin-top: 18px; }

.oo-field label,
.upload-group > label {
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f2d52;
  font-size: 15px;
}

.oo-field input,
.oo-field select,
.oo-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d7dee8;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2a37;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.oo-field input::placeholder,
.oo-field textarea::placeholder {
  color: #98a2b3;
}

.oo-field input:focus,
.oo-field select:focus,
.oo-field textarea:focus {
  outline: none;
  border-color: #c89b3c;
  box-shadow: 0 0 0 4px rgba(200,155,60,.15);
  background: #fffef9;
}

.oo-field textarea {
  min-height: 140px;
  resize: vertical;
}

.oo-program-page .upload-groups {
  margin-top: 26px;
  display: grid;
  gap: 20px;
}

.oo-program-page .upload-group { display: block; }

.oo-program-page .drop-zone {
  position: relative;
  border: 2px dashed #0f2d52;
  background: #f8fbff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
}

.oo-program-page .drop-zone:hover,
.oo-program-page .drop-zone.dragover {
  background: #e9f2fb;
  border-color: #c89b3c;
}

.oo-program-page .drop-zone p {
  margin: 0;
  color: #0f2d52;
  font-weight: 700;
}

.oo-program-page .drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.oo-program-page .file-list {
  margin-top: 12px;
  font-size: 14px;
  color: #334155;
}

.oo-program-page .file-list div {
  background: #ffffff;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(15,45,82,.04);
}

.oo-doc-card {
  display: block;
  padding: 22px;
  text-decoration: none;
  font-weight: 800;
  color: #0f2d52;
  line-height: 1.5;
  transition: all .25s ease;
}

.oo-doc-card:hover {
  transform: translateY(-3px);
  background: #fbfcfe;
  color: #0f2d52;
  box-shadow: 0 12px 24px rgba(15,45,82,.1);
}

.oo-cta-box {
  text-align: center;
  padding: 42px 30px;
  background: linear-gradient(135deg,#ffffff 0%,#f9fbff 100%);
}

.oo-cta-box h2 {
  margin: 0 0 14px;
  color: #0f2d52;
  font-size: 36px;
  line-height: 1.2;
}

.oo-cta-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #475467;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    align-items: flex-start;
    padding: 16px 0;
  }

  .oo-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .oo-step-strip,
  .oo-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .menu { width: 100%; justify-content: flex-start; }
  .nav { flex-direction: column; }
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-actions,
  .form-actions { flex-direction: column; }
  .btn { width: 100%; }
  .brand-title span,
  .brand-title span span { white-space: normal; }
}

@media (max-width: 768px) {
  .oo-section { padding: 56px 0; }
  .oo-hero { padding: 84px 0 72px; }
  .oo-hero h1 { font-size: 34px; }
  .oo-hero .oo-lead,
  .oo-hero p { font-size: 16px; }
  .oo-section-header h2 { font-size: 28px; }
  .oo-inline-cta h2 { font-size: 24px; }
  .oo-cta-box h2 { font-size: 30px; }
  .oo-form-shell { padding: 24px; }
  .oo-form-grid,
  .oo-grid-2,
  .oo-grid-3,
  .oo-grid-4 { grid-template-columns: 1fr; }
  .oo-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .oo-btn { width: 100%; }
}

@media (max-width: 480px) {
  .oo-hero h1 { font-size: 30px; }
  .oo-card,
  .oo-form-shell,
  .oo-cta-box { border-radius: 14px; }
}
