@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #ff7900;
  --orange-dark: #cc5f00;
  --black: #101010;
  --charcoal: #1b1b1b;
  --gray-900: #262626;
  --gray-700: #555;
  --gray-300: #d6d6d6;
  --gray-100: #f4f4f2;
  --white: #fff;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(0, 0, 0, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--black);
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16,16,16,.96);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.brand small {
  margin-top: 4px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--orange); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #ff8b20;
  border-color: #ff8b20;
}
.button-small { min-height: 42px; padding: 9px 16px; }
.button-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline:hover { color: var(--black); background: var(--white); border-color: var(--white); }
.button-light { background: var(--white); border-color: var(--white); }

.hero {
  overflow: hidden;
  position: relative;
  padding: 92px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(255,121,0,.2), transparent 32%),
    linear-gradient(135deg, #111 0%, #171717 58%, #262626 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(255,121,0,.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 68px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1, .section h2, .carrier-cta h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: .98;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.8rem, 8vw, 7.2rem); letter-spacing: -.025em; }
.hero h1 span { color: var(--orange); }
.hero-text { max-width: 680px; margin: 26px 0; color: #ddd; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #e8e8e8;
  font-size: .92rem;
  font-weight: 600;
}
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--orange); }
.hero-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.route-line { display: flex; align-items: center; margin-bottom: 28px; color: var(--orange); }
.route-dot { width: 14px; height: 14px; border: 4px solid var(--orange); border-radius: 50%; }
.route-track { flex: 1; height: 2px; margin: 0 10px; background: repeating-linear-gradient(90deg,var(--orange) 0 8px,transparent 8px 14px); }
.route-arrow { font-size: 1.8rem; }
.card-label { margin: 0; color: var(--orange); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.hero-card h2 { margin: 10px 0 16px; font-family: "Barlow Condensed"; font-size: 2.4rem; line-height: 1.05; text-transform: uppercase; }
.hero-card > p { color: #ddd; }
.contact-mini { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-mini span { color: #aaa; font-size: .85rem; }
.contact-mini a { color: var(--white); font-weight: 800; text-decoration-color: var(--orange); }

.trust-strip { background: var(--orange); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid > div { padding: 22px 26px; border-right: 1px solid rgba(0,0,0,.18); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-family: "Barlow Condensed"; font-size: 1.35rem; text-transform: uppercase; }
.trust-grid span { font-size: .83rem; font-weight: 600; }

.section { padding: 92px 0; }
.section-heading { max-width: 730px; margin-bottom: 42px; }
.section-heading h2, .why h2, .quote-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -.02em;
}
.section-heading > p:last-child { margin-top: 18px; color: var(--gray-700); font-size: 1.05rem; }
.section-heading.light h2 { color: var(--white); }

.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,.055);
}
.service-number { color: var(--orange); font-family: "Barlow Condensed"; font-size: 1.3rem; font-weight: 800; }
.service-card h3 { margin: 70px 0 10px; font-family: "Barlow Condensed"; font-size: 1.75rem; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--gray-700); font-size: .94rem; }

.section-dark { color: var(--white); background: var(--black); }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.industry-grid div {
  min-height: 120px;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid #393939;
  border-radius: 12px;
  background: linear-gradient(145deg,#1e1e1e,#151515);
  font-family: "Barlow Condensed";
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}
.industry-grid div::before { content: "→"; margin-right: 10px; color: var(--orange); }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.steps article { display: flex; gap: 18px; }
.steps article > span {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-family: "Barlow Condensed";
  font-size: 1.6rem;
  font-weight: 800;
}
.steps h3 { margin: 0 0 8px; font-family: "Barlow Condensed"; font-size: 1.6rem; text-transform: uppercase; }
.steps p { margin: 0; color: var(--gray-700); }

.why { background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.why-list { border-top: 1px solid var(--gray-300); }
.why-list > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--gray-300); }
.why-list strong { font-family: "Barlow Condensed"; font-size: 1.35rem; text-transform: uppercase; }
.why-list span { color: var(--gray-700); }

.quote-section { color: var(--white); background: var(--charcoal); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.quote-copy > p:not(.eyebrow) { color: #ccc; }
.contact-block { display: flex; flex-direction: column; gap: 8px; margin-top: 30px; }
.contact-block a { color: var(--white); font-weight: 800; overflow-wrap: anywhere; }
.contact-block span { color: #aaa; font-size: .9rem; }
.quote-form { padding: 30px; border-radius: var(--radius); background: var(--white); color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form label { display: block; margin-bottom: 15px; font-size: .83rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 3px solid rgba(255,121,0,.22);
  border-color: var(--orange);
}
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--gray-700); font-size: .9rem; }

.carrier-cta { padding: 58px 0; background: var(--orange); }
.carrier-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.carrier-cta .eyebrow { color: var(--black); opacity: .75; }
.carrier-cta h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.carrier-cta p { margin: 10px 0 0; font-weight: 600; }

.site-footer { padding: 34px 0; color: var(--white); background: #090909; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: "Barlow Condensed"; font-size: 1.2rem; text-transform: uppercase; }
.footer-brand span, .footer-legal { color: #aaa; font-size: .78rem; }
.footer-legal { text-align: right; }
.footer-legal p { margin: 3px 0; }
.footer-legal strong { color: var(--orange); }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    background: var(--black);
    border-bottom: 1px solid #333;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; }
  .hero-grid, .why-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .hero-grid { gap: 40px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.18); }
  .trust-grid > div:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .hero h1 { font-size: 3.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 26px; }
  .card-grid, .industry-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 35px; }
  .why-list > div { grid-template-columns: 1fr; gap: 5px; }
  .quote-form { padding: 22px; }
  .carrier-wrap, .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-legal { text-align: left; }
}
