/* =========================================================
   Murphy Freight LLC — Brand Design System
   Brand colors: Navy #1e2a72, Blue #1d8ed4, Green #7cbf38
   Typography: Fraunces (display) + Inter Tight (body)
   ========================================================= */

:root {
  /* Brand colors from logo */
  --navy-950: #1a2566;
  --navy-900: #1e2a72;
  --navy-800: #2a3680;
  --navy-700: #38489a;
  --navy-600: #4a5db5;
  --brand-blue: #1d8ed4;
  --brand-blue-bright: #2ba8f0;
  --brand-green: #7cbf38;
  --brand-green-bright: #95d44f;

  --ink: #0b0f17;
  --ink-soft: #1a1f29;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --amber: var(--brand-green);
  --amber-bright: var(--brand-green-bright);
  --success: #10b981;

  --shadow-sm: 0 1px 2px rgba(30, 42, 114, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 114, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 42, 114, 0.12);
  --shadow-xl: 0 24px 60px rgba(30, 42, 114, 0.18);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brand-blue); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--navy-950); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--white); color: var(--navy-900); border: 1.5px solid var(--slate-200); }
.btn-secondary:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-amber, .btn-green { background: var(--brand-green); color: var(--ink); }
.btn-amber:hover, .btn-green:hover { background: var(--brand-green-bright); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-blue { background: var(--brand-blue); color: var(--white); }
.btn-blue:hover { background: var(--brand-blue-bright); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn.loading { opacity: 0.7; pointer-events: none; position: relative; }
.btn.loading::after {
  content: ""; position: absolute; right: 16px; top: 50%;
  width: 14px; height: 14px; margin-top: -7px;
  border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Real logo image */
.brand-logo { display: inline-flex; align-items: center; height: 44px; }
.brand-logo img { height: 100%; width: auto; display: block; }
.brand-logo.brand-logo-lg { height: 56px; }
@media (max-width: 640px) { .brand-logo { height: 36px; } }

/* Navigation */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--slate-200);
  transition: all 0.3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.nav-links { display: none; align-items: center; gap: 36px; list-style: none; }
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.93rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 0.2s; padding: 6px 0;
}
.nav-links a:hover { color: var(--brand-blue); }
.nav-links a.active { color: var(--navy-900); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -28px; left: 0; right: 0;
  height: 2px; background: var(--brand-green);
}
.nav-cta { display: none; align-items: center; gap: 16px; }
@media (min-width: 980px) { .nav-cta { display: flex; } }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600; color: var(--navy-900);
}
.nav-phone:hover { color: var(--brand-blue); }
.menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
@media (min-width: 980px) { .menu-btn { display: none; } }
.menu-btn span { width: 22px; height: 2px; background: var(--navy-900); transition: 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 24px; border-top: 1px solid var(--slate-200); background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-weight: 500; border-bottom: 1px solid var(--slate-100); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* Hero with image */
.hero-img {
  position: relative; min-height: 720px; padding: 120px 0 160px;
  color: var(--white); overflow: hidden; isolation: isolate;
}
.hero-img .hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-img .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-img .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(26,37,102,0.96) 0%, rgba(30,42,114,0.78) 40%, rgba(30,42,114,0.58) 100%),
    linear-gradient(to top, rgba(26,37,102,0.9) 0%, transparent 50%);
}
.hero-img .hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.6;
}
@media (max-width: 768px) { .hero-img { min-height: 580px; padding: 80px 0 100px; } }

.live-ticker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  margin-bottom: 24px; font-size: 0.82rem; color: var(--slate-200);
  backdrop-filter: blur(8px);
}
.live-ticker .live-dot {
  width: 8px; height: 8px; background: var(--brand-green-bright); border-radius: 50%;
  box-shadow: 0 0 12px rgba(149,212,79,0.8); animation: pulse 2s infinite;
}
.live-ticker strong { color: var(--white); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(149,212,79,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(149,212,79,0); }
}
.hero-credentials {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  z-index: 2; width: 100%; max-width: 1100px; padding: 0 24px;
}
.cred-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; color: var(--white); font-size: 0.85rem;
}
.cred-badge svg { color: var(--brand-green-bright); flex-shrink: 0; }
.cred-badge strong { display: block; font-size: 0.95rem; }
.cred-badge span { color: var(--slate-400); font-size: 0.78rem; }
@media (max-width: 900px) { .hero-credentials { display: none; } }

/* Sections */
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { font-size: 1.1rem; color: var(--slate-500); margin-top: 18px; line-height: 1.6; }

/* Trust strip */
.trust-strip {
  padding: 48px 0; background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.trust-strip-label {
  text-align: center; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--slate-500); margin-bottom: 28px;
}
.trust-badges {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: var(--slate-50);
  border: 1px solid var(--slate-200); border-radius: 12px;
  transition: all 0.3s var(--ease);
}
.trust-badge:hover { border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.trust-badge .badge-icon {
  width: 38px; height: 38px; background: var(--navy-900);
  color: var(--brand-green-bright); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-badge .badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.trust-badge .badge-text strong {
  font-family: var(--font-display); font-size: 0.95rem;
  color: var(--navy-900); letter-spacing: -0.01em;
}
.trust-badge .badge-text span { font-size: 0.72rem; color: var(--slate-500); letter-spacing: 0.05em; margin-top: 2px; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card-img {
  position: relative; padding: 0; background: var(--white);
  border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease); overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--brand-blue); }
.service-card-img .card-img { position: relative; height: 200px; overflow: hidden; }
.service-card-img .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card-img:hover .card-img img { transform: scale(1.08); }
.service-card-img .card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,42,114,0) 50%, rgba(30,42,114,0.7) 100%);
}
.service-card-img .card-icon {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  width: 44px; height: 44px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
}
.service-card-img .card-tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 6px 12px; background: var(--brand-green);
  color: var(--ink); border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.service-card-img .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-img h3 { margin-bottom: 10px; }
.service-card-img p { color: var(--slate-500); font-size: 0.93rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.service-card-img .service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--brand-blue);
}
.service-link .arrow { transition: transform 0.3s var(--ease); }
.service-card-img:hover .service-link .arrow { transform: translateX(4px); }

/* Why section */
.why-section { background: var(--slate-50); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.why-item { padding: 12px 0; }
.why-icon {
  width: 52px; height: 52px; background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue); margin-bottom: 20px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200);
}
.why-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-item p { color: var(--slate-500); font-size: 0.95rem; }

/* Splits */
.split { display: grid; gap: 60px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* Image card */
.img-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 5/6; box-shadow: var(--shadow-xl); isolation: isolate;
}
.img-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; transition: transform 0.8s var(--ease);
}
.img-card:hover img { transform: scale(1.05); }
.img-card-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(26,37,102,0.95) 0%, rgba(30,42,114,0.4) 50%, transparent 100%);
}
.img-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; color: var(--white); }
.img-card-content .badge {
  display: inline-block; padding: 6px 12px; background: var(--brand-green);
  color: var(--ink); border-radius: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.img-card-content h4 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--white); font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px;
}
.img-card-content p { color: var(--slate-300); font-size: 0.95rem; }

.lead { font-size: 1.15rem; color: var(--ink-soft); margin: 24px 0; line-height: 1.6; }
.checklist { list-style: none; margin-top: 24px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--slate-100);
  font-size: 0.98rem; color: var(--ink-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist svg { color: var(--brand-green); flex-shrink: 0; margin-top: 3px; }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; margin: 64px 0; height: 360px; }
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip > div { height: 240px; }
}
.photo-strip > div {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--slate-100);
}
.photo-strip > div img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease);
}
.photo-strip > div:hover img { transform: scale(1.05); }
.photo-strip .caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(to top, rgba(26,37,102,0.85), transparent); color: var(--white);
}
.photo-strip .caption .badge {
  display: inline-block; padding: 4px 10px; background: rgba(124,191,56,0.95);
  color: var(--ink); border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.photo-strip .caption h5 { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; font-weight: 500; }

/* Carrier section */
.carrier-section { background: var(--navy-900); color: var(--white); position: relative; overflow: hidden; }
.carrier-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.carrier-section .container { position: relative; z-index: 1; }
.carrier-section h2 { color: var(--white); }
.carrier-section .section-head p { color: var(--slate-300); }
.carrier-section .eyebrow { color: var(--brand-green-bright); }
.carrier-section .eyebrow::before { background: var(--brand-green-bright); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 56px; }
.step-card {
  padding: 32px 28px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.step-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(124,191,56,0.5); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--brand-green-bright); letter-spacing: -0.02em;
  margin-bottom: 16px; line-height: 1;
}
.step-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: var(--slate-300); font-size: 0.9rem; line-height: 1.55; }
.carrier-cta { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }

/* Forms */
.quote-section { background: var(--slate-50); }
.quote-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--slate-200);
}
@media (max-width: 640px) { .quote-card { padding: 32px 24px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 8px; letter-spacing: 0.01em;
}
.form-group label .req { color: var(--brand-blue); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md); background: var(--white);
  color: var(--ink); font-size: 0.95rem; transition: all 0.2s;
  font-family: var(--font-body);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(29, 142, 212, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-actions {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
}
.form-actions p { font-size: 0.85rem; color: var(--slate-500); }
.form-success {
  display: none; padding: 28px; background: #ecfdf5;
  border: 1px solid #a7f3d0; border-radius: var(--radius-md);
  color: #065f46; font-weight: 500;
}
.form-success.show { display: block; }
.form-success.show + form { display: none; }
.form-error {
  display: none; padding: 16px 20px; margin-bottom: 16px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius-md);
  color: #991b1b; font-size: 0.9rem;
}
.form-error.show { display: block; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial {
  padding: 36px; background: var(--white);
  border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  position: relative; transition: all 0.3s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-blue); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.5; color: var(--brand-green); margin-bottom: 4px; font-style: italic; }
.testimonial blockquote { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--slate-100); }
.avatar {
  width: 48px; height: 48px; background: var(--navy-900); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 1.1rem;
}
.testimonial-author .name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.83rem; color: var(--slate-500); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--brand-green); }

/* CTA banner with image */
.cta-banner-img {
  position: relative; padding: 100px 0; color: var(--white);
  text-align: center; overflow: hidden; isolation: isolate;
}
.cta-banner-img .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner-img .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-img .cta-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(26,37,102,0.95) 0%, rgba(30,42,114,0.82) 100%);
}
.cta-banner-img h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner-img p { color: var(--slate-300); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.cta-banner-img .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Page hero with image */
.page-hero-img { position: relative; padding: 110px 0 130px; color: var(--white); overflow: hidden; isolation: isolate; }
.page-hero-img .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-img .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img .ph-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(26,37,102,0.96) 0%, rgba(30,42,114,0.8) 50%, rgba(30,42,114,0.62) 100%);
}
.page-hero-img h1 { color: var(--white); margin-bottom: 18px; }
.page-hero-img h1 .accent { color: var(--brand-green-bright); font-style: italic; font-weight: 400; }
.page-hero-img p { font-size: 1.15rem; color: var(--slate-300); max-width: 640px; line-height: 1.5; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--slate-400); margin-bottom: 24px; }
.breadcrumb a { color: var(--brand-green-bright); }
.breadcrumb .sep { color: var(--slate-500); }

/* Stats with image bg */
.stats-img-section { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; isolation: isolate; }
.stats-img-section .sis-bg { position: absolute; inset: 0; z-index: -2; }
.stats-img-section .sis-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-img-section .sis-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(26,37,102,0.92), rgba(30,42,114,0.78)); }
.stats-img-section h2 { color: var(--white); }
.stats-img-section .eyebrow { color: var(--brand-green-bright); }
.stats-img-section .eyebrow::before { background: var(--brand-green-bright); }
.stats-img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.12); }
.stats-img-grid .stat .num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 500; color: var(--brand-green-bright); letter-spacing: -0.03em; line-height: 1; }
.stats-img-grid .stat .label { color: var(--slate-300); margin-top: 10px; font-size: 0.92rem; }

/* Compliance section */
.compliance-section { background: var(--ink); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.compliance-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(124,191,56,0.08), transparent 50%),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
}
.compliance-section > * { position: relative; }
.compliance-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .compliance-grid { grid-template-columns: 1fr; gap: 40px; } }
.compliance-section h2 { color: var(--white); }
.compliance-section .lead { color: var(--slate-300); }
.compliance-details { display: grid; gap: 16px; }
.compliance-card { padding: 22px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; display: flex; align-items: center; gap: 18px; }
.compliance-card .c-icon { width: 46px; height: 46px; background: rgba(124,191,56,0.12); border: 1px solid rgba(124,191,56,0.3); border-radius: 10px; color: var(--brand-green-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.compliance-card .c-text strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.compliance-card .c-text span { color: var(--slate-400); font-size: 0.85rem; }

/* Map */
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; background: var(--slate-100); border: 1px solid var(--slate-200); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-section { padding: 80px 0; background: var(--slate-50); }

/* Contact */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block { padding: 28px; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); background: var(--white); }
.contact-block .icon-wrap { width: 48px; height: 48px; background: var(--navy-900); color: var(--brand-green-bright); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.contact-block h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-block p { color: var(--slate-500); font-size: 0.95rem; margin-bottom: 4px; }
.contact-block a { color: var(--brand-blue); font-weight: 600; font-size: 1rem; }
.contact-block a:hover { color: var(--brand-blue-bright); }

/* Footer */
footer { background: var(--ink); color: var(--slate-300); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand .brand-logo { height: 52px; margin-bottom: 20px; background: white; padding: 8px 14px; border-radius: 10px; }
.footer-brand p { color: var(--slate-400); font-size: 0.92rem; max-width: 360px; line-height: 1.6; }
.footer-mc { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; font-size: 0.85rem; color: var(--white); }
.footer-mc strong { color: var(--brand-green-bright); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--slate-400); font-size: 0.93rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-green-bright); }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: 10px; color: var(--slate-400); font-size: 0.92rem; margin-bottom: 14px; }
.footer-col .contact-item svg { color: var(--brand-green-bright); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--slate-300); transition: all 0.2s; }
.socials a:hover { background: var(--brand-green); color: var(--ink); transform: translateY(-2px); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--slate-400); }
.footer-bottom a { color: var(--slate-400); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-green-bright); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* Legal pages */
.legal-page { padding: 80px 0 100px; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.65rem; margin: 48px 0 18px; color: var(--navy-900); padding-top: 16px; border-top: 1px solid var(--slate-200); }
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--navy-900); }
.legal-content p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.75; }
.legal-content ul, .legal-content ol { margin: 0 0 18px 24px; color: var(--ink-soft); }
.legal-content li { margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--brand-blue); font-weight: 500; border-bottom: 1px solid rgba(29, 142, 212, 0.3); }
.legal-content a:hover { border-bottom-color: var(--brand-blue); }
.legal-content .updated { display: inline-block; padding: 8px 16px; background: var(--slate-100); border-radius: 8px; font-size: 0.85rem; color: var(--slate-500); margin-bottom: 32px; }
.legal-toc { background: var(--slate-50); border-left: 3px solid var(--brand-green); padding: 24px 28px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 40px; }
.legal-toc strong { display: block; margin-bottom: 12px; font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-900); }
.legal-toc ol { margin: 0 0 0 20px; color: var(--slate-500); }
.legal-toc li { margin-bottom: 6px; line-height: 1.5; }
.legal-toc a { color: var(--brand-blue); font-weight: 500; border-bottom: none; }
.legal-toc a:hover { color: var(--brand-blue-bright); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s var(--ease) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   REAL LOGO STYLES (replaces logo-placeholder)
   ============================================================ */
.logo-real {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.logo-real:hover { opacity: 0.85; }

.logo-img-real {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}

/* In nav: slightly smaller for tighter layout */
.nav .logo-img-real {
  height: 36px;
}
@media (max-width: 640px) {
  .nav .logo-img-real { height: 32px; }
}

/* Footer white logo: a touch larger, with bottom margin */
footer .logo-img-real,
footer .logo-img-white {
  height: 44px;
}

/* If image fails to load, fall back gracefully (alt text shows) */
.logo-img-real[alt] {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-900);
}
footer .logo-img-real[alt] { color: var(--white); }

/* =============================================================
   UPGRADED COMPONENTS — Inspired by premium brokerage references
   Built for Murphy Freight LLC (navy/blue/green brand)
   ============================================================= */

/* Mono font helper for small detail labels (price ticks, metrics) */
.mono {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}

/* ---- LIVE DASHBOARD MOCKUP (right side of new hero) ---- */
.hero-dash {
  background: rgba(13, 22, 64, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  max-width: 460px;
  color: var(--white);
}
.hero-dash-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.hero-dash-top .left {
  display: flex; align-items: center; gap: 8px;
}
.hero-dash-top .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-green-bright, #95d44f);
  box-shadow: 0 0 8px var(--brand-green-bright, #95d44f);
}
.hero-dash-top .online {
  display: flex; align-items: center; gap: 6px;
  color: var(--brand-green-bright, #95d44f);
}
.hero-dash-headline {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-dash-headline .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.hero-dash-headline .big {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-dash-headline .big.accent { color: var(--brand-green-bright, #95d44f); }

.hero-dash-rows { display: flex; flex-direction: column; gap: 10px; }
.hero-dash-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
}
.hero-dash-row .icon-square {
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.hero-dash-row .route {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
}
.hero-dash-row .route .main {
  font-size: 0.85rem; color: var(--white); font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-dash-row .route .sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.hero-dash-row .price {
  font-family: 'JetBrains Mono', monospace;
  text-align: right;
}
.hero-dash-row .price .amount {
  font-size: 0.9rem; color: var(--white); font-weight: 600;
}
.hero-dash-row .price .rpm {
  font-size: 0.7rem;
  color: var(--brand-green-bright, #95d44f);
  margin-top: 2px;
}

/* ---- NEW HERO LAYOUT (large-headline + dashboard) ---- */
.hero-mega {
  position: relative;
  background: var(--navy-950, #0a1628);
  color: var(--white);
  padding: 90px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero-mega .bg-img { position: absolute; inset: 0; z-index: -2; }
.hero-mega .bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.hero-mega .overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.75) 60%, rgba(10,22,40,0.6) 100%);
}
.hero-mega .grid {
  position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-mega-inner {
  display: grid; gap: 60px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-mega-inner { grid-template-columns: 1.15fr 1fr; gap: 72px; }
}
.hero-mega .tag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-mega .tag-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-green-bright, #95d44f);
  box-shadow: 0 0 8px var(--brand-green-bright, #95d44f);
  animation: pulse 2s infinite;
}
.hero-mega h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-family: var(--font-display, 'Fraunces', serif);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0;
}
.hero-mega h1 .accent {
  color: var(--brand-green-bright, #95d44f);
  font-style: italic;
  font-weight: 400;
}
.hero-mega h1 .accent-blue {
  color: var(--brand-blue, #1d8ed4);
}
.hero-mega .lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 28px 0 36px;
  line-height: 1.6;
}
.hero-mega .ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ---- BIG NUMBER STRIP ---- */
.bignum-strip {
  background: var(--ink, #0b0f17);
  color: var(--white);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bignum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
}
.bignum {
  display: flex; flex-direction: column; gap: 6px;
}
.bignum .n {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.bignum .n .accent { color: var(--brand-green-bright, #95d44f); }
.bignum .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---- PREMIUM EQUIPMENT CARDS (Wafa-style dark cards) ---- */
.eq-section {
  background: var(--ink, #0b0f17);
  color: var(--white);
  padding: 100px 0;
}
.eq-section .section-head h2 { color: var(--white); }
.eq-section .section-head p { color: rgba(255,255,255,0.55); }

.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.eq-card {
  position: relative;
  background: #14181f;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease, cubic-bezier(0.16, 1, 0.3, 1));
  display: flex; flex-direction: column;
}
.eq-card:hover {
  border-color: rgba(124, 191, 56, 0.4);
  transform: translateY(-4px);
}
.eq-card .ph {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.eq-card .ph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.eq-card:hover .ph img { transform: scale(1.06); }
.eq-card .ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,31,0.7) 0%, rgba(20,24,31,0.1) 50%, transparent 100%);
}
.eq-card .ph-icon {
  position: absolute; top: 14px; left: 14px;
  width: 36px; height: 36px;
  background: rgba(13, 22, 64, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--brand-green-bright, #95d44f);
  z-index: 1;
}
.eq-card .ph-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  z-index: 1;
  transition: all 0.3s;
}
.eq-card:hover .ph-arrow {
  background: var(--brand-green, #7cbf38);
  color: var(--ink);
  transform: rotate(-45deg);
}
.eq-card .body {
  padding: 22px 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.eq-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.eq-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.eq-card .divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.eq-card .metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.eq-card .metric .v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.eq-card .metric .v.green { color: var(--brand-green-bright, #95d44f); }
.eq-card .metric .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

/* ---- COLORFUL QUOTE PROMO BLOCK ---- */
.quote-promo {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #1d8ed4 0%, #1e2a72 60%, #7cbf38 130%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.quote-promo::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 25%, rgba(149, 212, 79, 0.4), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(29, 142, 212, 0.35), transparent 40%);
}
.quote-promo::after {
  content: '';
  position: absolute; inset: 0; z-index: -1; opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.quote-promo-grid {
  display: grid; gap: 50px;
  align-items: center;
}
@media (min-width: 900px) {
  .quote-promo-grid { grid-template-columns: 1fr 1.1fr; gap: 70px; }
}
.quote-promo .badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.quote-promo h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 22px;
}
.quote-promo h2 em {
  font-style: italic;
  font-weight: 400;
}
.quote-promo .desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0 0 32px;
}
.quote-promo-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.quote-promo-feat {
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.quote-promo-feat .v {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.quote-promo-feat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.quote-promo-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.quote-promo-ctas .btn-bright {
  background: var(--white);
  color: var(--navy-900, #1e2a72);
  font-weight: 700;
}
.quote-promo-ctas .btn-bright:hover {
  background: var(--brand-green-bright, #95d44f);
  color: var(--ink);
  transform: translateY(-2px);
}
.quote-promo-ctas .btn-outline-w {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.quote-promo-ctas .btn-outline-w:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* The mini quote form on the right of the promo block */
.quote-promo-form {
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  color: var(--ink, #0b0f17);
}
.quote-promo-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-900, #1e2a72);
  margin: 0 0 6px;
}
.quote-promo-form .sub {
  color: #64748b;
  font-size: 0.92rem;
  margin: 0 0 22px;
}
.quote-promo-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 540px) { .quote-promo-form .row { grid-template-columns: 1fr; } }
.quote-promo-form label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  display: block;
  margin-bottom: 5px;
}
.quote-promo-form input,
.quote-promo-form select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-promo-form input:focus,
.quote-promo-form select:focus {
  outline: none;
  border-color: var(--brand-blue, #1d8ed4);
  box-shadow: 0 0 0 3px rgba(29,142,212,0.1);
}
.quote-promo-form .btn-submit {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  background: var(--navy-900, #1e2a72);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s;
}
.quote-promo-form .btn-submit:hover {
  background: var(--brand-green, #7cbf38);
  color: var(--ink);
  transform: translateY(-2px);
}
.quote-promo-form .note {
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 14px;
}
.quote-promo-form .note strong { color: var(--navy-900); }

/* ---- TRACKING SECTION ---- */
.tracking-section {
  background: #f8fafc;
  padding: 100px 0;
}
.tracking-grid {
  display: grid; gap: 50px; align-items: center;
}
@media (min-width: 900px) {
  .tracking-grid { grid-template-columns: 1fr 1fr; gap: 70px; }
}
.tracking-mock {
  position: relative;
  background: linear-gradient(140deg, #0a1628 0%, #1e2a72 100%);
  border-radius: 18px;
  padding: 28px;
  color: var(--white);
  box-shadow: 0 30px 60px rgba(10,22,40,0.18);
  overflow: hidden;
}
.tracking-mock::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.tracking-mock > * { position: relative; }
.tm-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tm-head .id {
  color: var(--white);
  letter-spacing: 0.04em;
}
.tm-head .status {
  color: var(--brand-green-bright, #95d44f);
  display: flex; align-items: center; gap: 6px;
}
.tm-head .status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green-bright);
  animation: pulse 2s infinite;
}
.tm-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.tm-stop .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.tm-stop .city {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.tm-stop .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.tm-arrow {
  display: flex; align-items: center; gap: 4px;
  color: var(--brand-green-bright);
}
.tm-line {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--brand-green-bright), rgba(149,212,79,0.2));
}
.tm-progress {
  margin-bottom: 22px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.tm-progress-top {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.tm-progress-top strong { color: var(--brand-green-bright); }
.tm-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.tm-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 68%;
  background: linear-gradient(to right, var(--brand-blue, #1d8ed4), var(--brand-green-bright, #95d44f));
  border-radius: 3px;
}
.tm-grid-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.tm-stat {
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.tm-stat .v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.tm-stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.tracking-features {
  list-style: none;
  padding: 0; margin: 30px 0 0;
}
.tracking-features li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}
.tracking-features li:last-child { border-bottom: none; }
.tracking-features li .ico {
  width: 36px; height: 36px;
  background: var(--brand-green, #7cbf38);
  color: var(--white);
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tracking-features li strong {
  display: block;
  color: var(--navy-900, #1e2a72);
  font-size: 1rem;
  margin-bottom: 4px;
}
.tracking-features li span {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---- REAL-LOAD GALLERY ---- */
.loads-section {
  background: var(--white);
  padding: 100px 0;
}
.loads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.load-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 12px 30px rgba(10,22,40,0.1);
  transition: transform 0.4s var(--ease);
  cursor: pointer;
}
.load-card:hover { transform: translateY(-4px); }
.load-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.load-card:hover img { transform: scale(1.06); }
.load-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 50%, transparent 100%);
}
.load-card .meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  color: var(--white);
  z-index: 1;
}
.load-card .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--brand-green, #7cbf38);
  color: var(--ink);
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.load-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.load-card .route {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* Become Shipper CTA pill in nav (replaces "Request a Quote") */
.nav-cta .btn-shipper {
  background: var(--brand-green, #7cbf38);
  color: var(--ink) !important;
}
.nav-cta .btn-shipper:hover {
  background: var(--brand-green-bright, #95d44f);
  transform: translateY(-2px);
}


/* =============================================================
   INDUSTRIES SERVED SECTION
   ============================================================= */
.industries-section {
  background: var(--ink, #0b0f17);
  color: var(--white);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.industries-section .section-head h2 { color: var(--white); }
.industries-section .section-head p { color: rgba(255,255,255,0.55); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.ind-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  isolation: isolate;
  transition: transform 0.4s var(--ease, cubic-bezier(0.16, 1, 0.3, 1));
  cursor: pointer;
}
.ind-card:hover { transform: translateY(-6px); }
.ind-img { position: absolute; inset: 0; z-index: -2; }
.ind-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.ind-card:hover .ind-img img { transform: scale(1.08); }
.ind-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top,
    rgba(13, 22, 64, 0.97) 0%,
    rgba(13, 22, 64, 0.55) 50%,
    rgba(13, 22, 64, 0.25) 100%);
  transition: background 0.4s var(--ease);
}
.ind-card:hover .ind-overlay {
  background: linear-gradient(to top,
    rgba(13, 22, 64, 0.92) 0%,
    rgba(13, 22, 64, 0.7) 60%,
    rgba(124, 191, 56, 0.2) 100%);
}
.ind-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
  color: var(--white);
}
.ind-icon {
  width: 40px; height: 40px;
  background: rgba(124, 191, 56, 0.18);
  border: 1px solid rgba(124, 191, 56, 0.35);
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--brand-green-bright, #95d44f);
  margin-bottom: 16px;
}
.ind-body h4 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 8px;
}
.ind-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .industries-section { padding: 70px 0; }
}



/* ============================================================
   QUOTE FORM ENHANCEMENTS — Success Modal + Date Picker
   ============================================================ */

/* Native date picker styling */
.quote-promo-form input[type="date"] {
  font-family: inherit;
  cursor: pointer;
}
.quote-promo-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  filter: invert(0.3);
  transition: opacity 0.2s;
}
.quote-promo-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* ZIP fields - tighter monospace style */
.quote-promo-form input[name="pickup_zip"],
.quote-promo-form input[name="delivery_zip"] {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
}
.quote-promo-form input[name="pickup_city"],
.quote-promo-form input[name="delivery_city"] {
  font-weight: 600;
  color: #1e2a72 !important;
}

/* ============================================================
   SUCCESS MODAL (full-screen overlay after submit)
   ============================================================ */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.success-modal.show { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes checkmarkDraw {
  0% { stroke-dashoffset: 100; opacity: 0; }
  50% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes circleDraw {
  0% { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

.success-modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.success-checkmark {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #7cbf38 0%, #95d44f 100%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(124, 191, 56, 0.4);
}

.success-checkmark svg {
  width: 44px;
  height: 44px;
}
.success-checkmark .check-circle {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: circleDraw 0.6s ease forwards;
}
.success-checkmark .check-mark {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: checkmarkDraw 0.6s ease 0.3s forwards;
}

.success-modal-card h2 {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1e2a72;
  margin: 0 0 12px;
}

.success-modal-card p {
  color: #475569;
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 1rem;
}

.success-modal-card .countdown {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7cbf38;
  background: rgba(124, 191, 56, 0.1);
  border: 1px solid rgba(124, 191, 56, 0.3);
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 20px;
}

.success-modal-card .countdown svg {
  width: 18px;
  height: 18px;
}

.success-modal-card .ref-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
}
.success-modal-card .ref-number strong {
  color: #1e2a72;
}

.success-modal-card .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-modal-card .btn-modal-primary {
  background: #1e2a72;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.success-modal-card .btn-modal-primary:hover {
  background: #7cbf38;
  color: #0a0e18;
  transform: translateY(-2px);
}

.success-modal-card .btn-modal-secondary {
  background: transparent;
  color: #475569;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s;
}
.success-modal-card .btn-modal-secondary:hover {
  border-color: #1e2a72;
  color: #1e2a72;
}

@media (max-width: 540px) {
  .success-modal-card { padding: 36px 24px; }
  .success-modal-card h2 { font-size: 1.5rem; }
}

/* ============================================================
   ROUTE MAP PREVIEW STYLING
   ============================================================ */
#route-map-canvas-home, #route-map-canvas-quote {
  position: relative;
}
#route-map-canvas-home svg, #route-map-canvas-quote svg {
  width: 100%;
  height: 100%;
  display: block;
}
