/* US Move Quote — call-intent design system for interstate moving */

:root {
  --bg: #ffffff;
  --bg-blue: #2563eb;
  --bg-blue-mid: #1d4ed8;
  --bg-blue-deep: #1e3a8a;
  --bg-blue-light: #3b82f6;
  --bg-soft: #eff6ff;
  --bg-soft2: #dbeafe;
  --bg-slate: #1e293b;
  --bg-slate-deep: #0f172a;
  --text: #0a0f1a;
  --muted: #475569;
  --muted-light: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #334155;
  --primary: #f97316;            /* orange — action / savings */
  --primary-hover: #ea580c;
  --primary-deep: #c2410c;
  --primary-soft: #fff7ed;
  --primary-glow: rgba(249, 115, 22, .45);
  --accent: #16a34a;             /* green — savings / verified */
  --accent-bright: #22c55e;
  --warn: #facc15;
  --live: #16a34a;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 14px rgba(37, 99, 235, .1);
  --shadow-lg: 0 20px 40px rgba(37, 99, 235, .15);
  --shadow-cta: 0 10px 30px rgba(249, 115, 22, .4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img, svg { max-width: 100%; display: block; }
a { color: var(--bg-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.text-center { text-align: center; }

/* ============================================ */
/* TOP TRUST BAR                                */
/* ============================================ */
.trust-bar {
  background: var(--bg-blue-deep);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  box-shadow: 0 2px 10px rgba(30, 58, 138, .25);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 20px;
  text-align: center;
}
.trust-bar a { color: #fff; text-decoration: none; font-weight: 800; }
.trust-bar a:hover { text-decoration: underline; }
.trust-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  margin-right: 4px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.3); }
}
.trust-bar .sep { opacity: .55; margin: 0 6px; }
.trust-bar .hide-mobile { display: none; }
@media (min-width: 640px) {
  .trust-bar .hide-mobile { display: inline; }
}

/* ============================================ */
/* HEADER                                        */
/* ============================================ */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--bg-slate-deep);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px var(--primary-glow);
}
.logo-mark::after {
  content: '🚚';
  position: absolute;
  font-size: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--primary-glow);
  transition: transform .15s ease;
}
.topbar-cta:hover { transform: translateY(-1px); }
.topbar-cta-label { font-size: 11px; opacity: .9; line-height: 1; margin-bottom: 3px; }
.topbar-cta-num { font-size: 17px; font-weight: 800; letter-spacing: .02em; }

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero {
  background:
    radial-gradient(ellipse at top, rgba(37, 99, 235, .15), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--bg-blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  margin: 0 auto 18px;
  letter-spacing: .005em;
  max-width: 900px;
  color: var(--bg-slate-deep);
}
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

/* MEGA CTA */
.mega-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  color: #fff !important;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none !important;
  box-shadow: var(--shadow-cta);
  transition: transform .15s ease, box-shadow .15s ease;
  border: 2px solid rgba(255,255,255,.3);
  margin: 6px 0 14px;
  min-width: 280px;
}
.mega-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, .55);
  text-decoration: none !important;
}
.mega-cta-label { font-size: 14px; font-weight: 700; opacity: .95; letter-spacing: .04em; }
.mega-cta-num { font-size: 26px; font-weight: 800; letter-spacing: .02em; }

.hero-hint {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.hero-hint .live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--live);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.4s infinite;
}
.hero-hint .sep { opacity: .5; margin: 0 8px; }

/* ============================================ */
/* TRUST STRIP                                  */
/* ============================================ */
.trust-strip {
  background: var(--bg-slate-deep);
  color: #fff;
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item .icon {
  font-size: 26px;
  margin-bottom: 4px;
}
.trust-item strong {
  color: #fff;
  font-size: 16px;
  letter-spacing: .01em;
}
.trust-item span {
  color: var(--muted-light);
  font-size: 13px;
}

/* ============================================ */
/* SECTION                                      */
/* ============================================ */
section { padding: 56px 0; }
section.soft { background: var(--bg-soft); }
section.tight { padding: 28px 0; }
section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--bg-slate-deep);
  letter-spacing: .005em;
}
section h3 {
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--bg-slate-deep);
  font-weight: 700;
}
section p { color: var(--muted); }
.lede { font-size: 18px; color: var(--muted); max-width: 720px; margin: 0 auto 36px; text-align: center; }

/* ============================================ */
/* QUOTE FORM (lead capture)                     */
/* ============================================ */
.quote-form-wrap {
  background: #fff;
  border: 2px solid var(--bg-blue-light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 540px;
  margin: 24px auto 0;
}
@media (min-width: 640px) {
  .quote-form-wrap { padding: 32px; }
}
.quote-form-wrap h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 6px;
}
.quote-form-wrap .form-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.qf-row.single { grid-template-columns: 1fr; }
.qf-field { display: flex; flex-direction: column; }
.qf-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-slate);
  margin-bottom: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.qf-field input, .qf-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color .15s;
}
.qf-field input:focus, .qf-field select:focus {
  outline: none;
  border-color: var(--bg-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.qf-submit {
  width: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-cta);
  transition: transform .15s;
}
.qf-submit:hover { transform: translateY(-1px); }
.qf-disclaimer {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 12px;
  text-align: center;
}
.qf-disclaimer a { color: var(--bg-blue); }

/* ============================================ */
/* STEPS / HOW IT WORKS                         */
/* ============================================ */
.steps {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px var(--primary-glow);
}
.step-body h3 { margin: 0 0 6px; font-size: 17px; }
.step-body p { margin: 0; font-size: 14px; line-height: 1.55; }

/* ============================================ */
/* CTA BLOCK                                    */
/* ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--bg-blue-deep), var(--bg-slate-deep));
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(249, 115, 22, .18), transparent 50%);
}
.cta-block-inner { position: relative; z-index: 1; }
.cta-block h3 { color: #fff; font-size: 24px; margin: 0 0 8px; }
.cta-block p { color: rgba(255,255,255,.85); font-size: 15px; margin: 0 0 18px; }

/* ============================================ */
/* SERVICES / SUB-NICHE GRID                    */
/* ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--bg-blue-light);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}
.svc-card h3 { font-size: 18px; margin: 0 0 8px; }
.svc-card p { font-size: 14px; margin: 0; line-height: 1.55; }

/* ============================================ */
/* ROUTE / CITY-PAIR LINKS                      */
/* ============================================ */
.zip-coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.zip-coverage a {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--bg-blue-deep);
  font-weight: 600;
  transition: all .15s;
}
.zip-coverage a:hover {
  background: var(--bg-blue);
  color: #fff;
  border-color: var(--bg-blue);
  text-decoration: none;
}

/* ============================================ */
/* PRICE / STATS CARDS                          */
/* ============================================ */
.price-range {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
@media (min-width: 640px) { .price-range { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  transition: border-color .15s, transform .15s;
}
.price-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.price-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.price-card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--primary);
  letter-spacing: .005em;
  line-height: 1;
  margin-bottom: 8px;
}
.price-card-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ============================================ */
/* ROUTE STATS BLOCK (city-pair pages)          */
/* ============================================ */
.route-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .route-stats { grid-template-columns: repeat(4, 1fr); }
}
.route-stat {
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--border);
}
.route-stat:last-child { border-right: none; }
@media (max-width: 639px) {
  .route-stat:nth-child(2) { border-right: none; }
  .route-stat:nth-child(1), .route-stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 14px; }
  .route-stat:nth-child(3), .route-stat:nth-child(4) { padding-top: 14px; }
}
.route-stat .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.route-stat .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--bg-blue-deep);
  letter-spacing: .005em;
  line-height: 1;
}
.route-stat .value.accent { color: var(--primary); }

/* ============================================ */
/* COMPARISON TABLE (state-to-state)            */
/* ============================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--bg-slate-deep);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg-soft); }
.compare-table td strong { color: var(--bg-slate-deep); }
.compare-table .winner { color: var(--accent); font-weight: 700; }

/* ============================================ */
/* INSURANCE / CALLOUT                          */
/* ============================================ */
.callout {
  background: var(--bg-soft2);
  border-left: 4px solid var(--bg-blue);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout p { margin: 0; color: var(--bg-slate-deep); font-size: 15px; }
.callout.warn {
  background: #fef3c7;
  border-left-color: #d97706;
}
.callout.warn p { color: #78350f; }

/* ============================================ */
/* REVIEW / RATING (review pages)               */
/* ============================================ */
.review-hero {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  margin: 20px 0;
  box-shadow: var(--shadow);
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.rating-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
}
.rating-stars { color: #fbbf24; font-size: 22px; letter-spacing: 2px; }
.rating-meta { font-size: 13px; color: var(--muted); }
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 640px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros, .cons {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
}
.pros { border-top: 4px solid var(--accent); }
.cons { border-top: 4px solid #ef4444; }
.pros h4, .cons h4 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pros h4 { color: var(--accent); }
.cons h4 { color: #ef4444; }
.pros ul, .cons ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.pros li, .cons li { margin-bottom: 6px; }

/* ============================================ */
/* FAQ                                          */
/* ============================================ */
.faq { margin-top: 22px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--bg-slate-deep);
}
.faq-item p {
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

/* ============================================ */
/* FINAL CTA                                    */
/* ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--bg-slate-deep), var(--bg-blue-deep));
  padding: 60px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, .15), transparent 60%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 12px;
}
.final-cta p { color: rgba(255,255,255,.85); font-size: 16px; margin: 0 0 20px; }

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
footer {
  background: var(--bg-slate-deep);
  color: #94a3b8;
  padding: 40px 0 20px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
footer h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 12px;
  letter-spacing: .04em;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 6px; }
footer a { color: #94a3b8; }
footer a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

/* ============================================ */
/* MOBILE STICKY CTA                            */
/* ============================================ */
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: linear-gradient(180deg, var(--primary), var(--primary-deep));
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 -4px 20px rgba(249, 115, 22, .3);
}
.mobile-sticky-cta .icon { font-size: 18px; }
.mobile-sticky-cta .num { letter-spacing: .02em; }
@media (min-width: 768px) { .mobile-sticky-cta { display: none; } }
