/* =================================================================
   GLOBAL LINK EXPRESS — Main Stylesheet
   Brand colors derived from logo: Navy #16245C / Blue #1B66E0
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy: #16245C;
  --navy-deep: #0E1840;
  --blue: #1B66E0;
  --blue-light: #4A8CF0;
  --blue-pale: #EAF1FD;
  --orange: #F2994A;
  --orange-deep: #D97D2C;
  --teal: #1D9E75;
  --teal-pale: #E1F5EE;

  /* Neutrals */
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F7;
  --gray-200: #E5E8EF;
  --gray-400: #A2A8B8;
  --gray-600: #5F6679;
  --gray-800: #232838;
  --white: #FFFFFF;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 24px rgba(22,36,92,0.08);
  --shadow-lift: 0 12px 40px rgba(22,36,92,0.14);

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
}

.section-head { max-width: 600px; margin-bottom: 44px; }
.section-head h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.section-head p { font-size: 16px; color: var(--gray-600); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(242,153,74,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--orange-deep); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* =================== HEADER / NAV =================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img.brand-icon { height: 40px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.15; color: var(--navy); }
.brand-text span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  transition: color 0.15s;
  position: relative;
}
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.track-link { font-size: 14.5px; font-weight: 600; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 6px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* =================== HERO =================== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1A2D6E 55%, var(--blue) 130%);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .eyebrow { color: #FFC799; }
.hero-copy h1 {
  color: var(--white);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #FFB066, #FFD194);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 30px;
}
.hero-cta-row { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-point { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.75); }
.hero-point svg { color: #6FE3B8; flex-shrink: 0; }

.hero-art {
  position: relative;
  z-index: 2;
}
.hero-art img { border-radius: var(--radius-lg); }

/* Quote card overlapping hero/body */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-lift);
  position: relative;
  z-index: 3;
  margin-top: 30px;
  transform: translateY(40px);
}
.quote-tabs { display: flex; gap: 6px; background: var(--gray-100); border-radius: 9px; padding: 4px; width: fit-content; margin-bottom: 22px; }
.quote-tab {
  padding: 8px 18px; border-radius: 6px; font-size: 13.5px; font-weight: 600;
  border: none; background: transparent; color: var(--gray-600); cursor: pointer; transition: all 0.2s;
}
.quote-tab.active { background: var(--navy); color: var(--white); }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-size: 11.5px; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 15px; color: var(--gray-800); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
}
.field input:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,102,224,0.12); }
.quote-dims { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.quote-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; flex-wrap: wrap; gap: 14px; }
.quote-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.quote-trust span { font-size: 12.5px; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
.quote-trust svg { color: var(--teal); }

.hero-spacer { height: 60px; }

/* =================== STATS STRIP =================== */
.stats-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 36px 0;
}
.stats-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.stat-block { text-align: center; flex: 1; min-width: 130px; }
.stat-block strong { display: block; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--navy); }
.stat-block span { font-size: 13px; color: var(--gray-600); }

/* =================== SECTIONS =================== */
.section { padding: 88px 0; }
.section.tight { padding: 72px 0; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-head h2 { color: var(--white); }
.bg-navy .section-head p { color: rgba(255,255,255,0.7); }
.bg-navy .eyebrow { color: #FFC799; }

/* Carriers */
.carrier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.carrier-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.carrier-card:hover { border-color: var(--blue); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.carrier-badge {
  width: 52px; height: 52px; border-radius: 10px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; letter-spacing: 0.5px;
}
.carrier-card strong { display: block; font-size: 13px; font-weight: 600; }
.carrier-card span { font-size: 11.5px; color: var(--gray-400); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--gray-200); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; margin-bottom: 18px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-600); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; transition: all 0.2s; }
.feature-card:hover { box-shadow: var(--shadow-card); border-color: var(--blue-pale); transform: translateY(-2px); }
.feature-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--blue); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-600); }

/* Coverage / map split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 24px; }
.coverage-list li { font-size: 14.5px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.coverage-list svg { color: var(--teal); flex-shrink: 0; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 26px; }
.stars { color: #FFC799; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14.5px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.price-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; position: relative; }
.price-card.featured { border-color: var(--blue); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
}
.price-type { font-size: 12.5px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.price-value { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--navy); }
.price-value sup { font-size: 18px; vertical-align: super; }
.price-note { font-size: 13px; color: var(--gray-400); margin: 4px 0 22px; }
.price-features { text-align: left; margin-bottom: 24px; }
.price-features li { font-size: 14px; color: var(--gray-600); padding: 8px 0; border-bottom: 1px solid var(--gray-200); display: flex; gap: 8px; align-items: flex-start; }
.price-features li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: 28px; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; background: none; border: none; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--navy); font-family: var(--font-body);
}
.faq-q svg { transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 4px 20px; font-size: 14.5px; color: var(--gray-600); }

/* =================== FOOTER =================== */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 34px; }
.footer-brand-text { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* =================== UTILITIES =================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .main-nav ul { display: none; }
  .header-actions .track-link span.label { display: none; }
  .nav-toggle { display: block; }
  .main-nav.mobile-open ul {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    padding: 8px 20px 16px; box-shadow: var(--shadow-card);
  }
  .main-nav.mobile-open ul li { width: 100%; }
  .main-nav.mobile-open ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .hero-copy h1 { font-size: 32px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-dims { grid-template-columns: 1fr 1fr; }
  .quote-footer { flex-direction: column; align-items: stretch; }
  .section { padding: 56px 0; }
  .stats-row { justify-content: flex-start; }
  .stat-block { flex: 0 0 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 36px 28px; flex-direction: column; text-align: center; }
  .header-inner { height: 68px; }
  .brand img.brand-icon { height: 32px; }
}
