/* ============================================================
   GlbXpress — component styles
   ============================================================ */

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,253,248,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.03em; color: var(--navy-700); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center; color: #fff;
  background: var(--orange-500);
  box-shadow: var(--shadow-orange);
}
.brand-light { color: #fff; }
.brand-name .bx, .mh-brand .bx, .mt-brand .bx, .mh-foot-brand .bx { color: var(--orange-500); }
.nav-links { display: flex; gap: 30px; margin-left: 14px; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--navy-700); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-cur { font-weight: 700; font-size: 14px; color: var(--ink-soft); display: flex; gap: 5px; align-items: center; padding: 8px 12px; border-radius: var(--r-pill); border: 1px solid var(--line); background: #fff; }
.nav-cur:hover { border-color: var(--line-strong); }
.nav-cta { padding: 11px 20px; font-size: 15px; }
.nav-burger { display: none; color: var(--navy-700); }
.nav-mobile { display: none; flex-direction: column; gap: 6px; padding: 16px 28px 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
.nav-mobile a { font-weight: 600; padding: 10px 0; }

/* ---------------- TRACKING WIDGET ---------------- */
.trk { width: 100%; }
.trk-bar {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow-md);
}
.trk-ic { color: var(--ink-faint); display: flex; }
.trk-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-ui); font-size: 16px; font-weight: 500; color: var(--ink);
  padding: 10px 4px; min-width: 0;
}
.trk-input::placeholder { color: var(--ink-faint); }
.trk-go { padding: 13px 22px; }
.trk-sub { margin-top: 12px; }
.trk-sample { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.trk-sample .mono { color: var(--orange-500); }
.trk-sample:hover { color: var(--navy-700); }

.trk-dark .trk-bar { background: rgba(255,255,255,.97); }
.trk-dark .trk-sample { color: rgba(255,255,255,.72); }
.trk-dark .trk-sample .mono { color: var(--orange-400); }
.trk-dark .trk-sample:hover { color: #fff; }

/* tracking result */
.trk-result {
  margin-top: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--shadow-md);
  text-align: left; animation: pop .35s ease;
}
@keyframes pop { from { transform: translateY(10px); } to { transform: none; } }
.trk-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.trk-no { font-size: 16px; font-weight: 700; color: var(--navy-700); }
.trk-route { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 6px; }
.trk-route-line { flex: 1; min-width: 26px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 5px, transparent 5px 9px); }
.trk-status { font-size: 12.5px; font-weight: 800; padding: 6px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.trk-status.is-live { background: var(--sky-soft); color: var(--sky-600); }
.trk-status.is-done { background: #e3f6ee; color: var(--mint-500); }

.trk-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.trk-step { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.trk-step:not(:last-child)::before { content: ""; position: absolute; left: 13px; top: 26px; bottom: 0; width: 2px; background: var(--line); }
.trk-step.on:not(:last-child)::before { background: var(--orange-soft); }
.trk-step:last-child { padding-bottom: 0; }
.trk-node { width: 28px; height: 28px; flex: none; border-radius: 50%; display: grid; place-items: center; background: #f1efe9; color: var(--ink-faint); border: 2px solid var(--line); z-index: 1; }
.trk-step.on .trk-node { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.trk-step.head .trk-node { box-shadow: 0 0 0 5px var(--orange-tint); }
.trk-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.trk-step-body { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.trk-step-label { font-weight: 700; font-size: 14.5px; color: var(--ink-faint); }
.trk-step.on .trk-step-label { color: var(--navy-700); }
.trk-step-meta { font-size: 12.5px; color: var(--ink-faint); }

.trk-help { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.trk-help a { color: var(--orange-600); font-weight: 700; font-family: var(--font-mono); }
.trk-help a:hover { text-decoration: underline; }

/* ---------------- HERO STATS ---------------- */
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 40px; }
.hero-stat-n { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--navy-700); letter-spacing: -.02em; }
.hero-stat-l { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.hero-stats.on-dark .hero-stat-n { color: #fff; }
.hero-stats.on-dark .hero-stat-l { color: rgba(255,255,255,.62); }

/* ---------------- HERO A ---------------- */
.hero { position: relative; overflow: hidden; }
.hero-a { background: var(--navy-800); color: #fff; padding: 96px 0 90px; text-align: center; }
.hero-a-glow { position: absolute; inset: 0; background:
  radial-gradient(60% 55% at 50% -8%, rgba(255,106,31,.32), transparent 70%),
  radial-gradient(50% 50% at 88% 20%, rgba(58,151,255,.22), transparent 70%); pointer-events: none; }
.hero-a-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-a-chip { background: rgba(255,106,31,.16); color: var(--orange-400); border-color: rgba(255,106,31,.28); }
.hero-a-title { color: #fff; font-size: clamp(38px, 6vw, 76px); margin: 24px 0 0; }
.hero-a-sub { max-width: 620px; margin: 22px auto 0; color: rgba(255,255,255,.74); font-size: 18px; }
.hero-a-track { width: min(620px, 100%); margin: 38px auto 0; }
.hero-a .hero-stats { justify-content: center; }

/* ---------------- HERO B ---------------- */
.hero-b { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); padding: 80px 0 90px; }
.hero-b-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-b-title { font-size: clamp(40px, 5.4vw, 74px); margin: 18px 0 0; }
.hero-b-sub { margin-top: 20px; max-width: 460px; color: var(--ink-soft); font-size: 17.5px; }
.compare { margin-top: 30px; padding: 24px; }
.compare-row { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 16px; padding: 9px 0; }
.compare-name { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.compare-bar { height: 16px; background: #f0ece2; border-radius: var(--r-pill); overflow: hidden; }
.compare-bar i { display: block; height: 100%; border-radius: var(--r-pill); background: var(--navy-300); }
.compare-bar i.us { background: var(--orange-500); }
.compare-us .compare-name strong { color: var(--navy-700); }
.compare-price { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.compare-us .compare-price { color: var(--orange-600); }
.compare-foot { margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--ink-soft); flex-wrap: wrap; }
.compare-foot strong { color: var(--orange-600); }
.compare-foot svg { color: var(--orange-500); }
.hero-b-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-b-card { padding: 24px; box-shadow: var(--shadow-lg); }
.hero-b-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-b-card-no { font-size: 13px; color: var(--ink-faint); }

/* ---------------- HERO C ---------------- */
.hero-c { background: var(--orange-500); color: #fff; padding: 76px 0 86px; }
.hero-c-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-c-title { color: #fff; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.1; }
.hero-c-big { font-size: clamp(110px, 19vw, 250px); line-height: .82; display: inline-block; margin: 6px 0; letter-spacing: -.04em; text-shadow: 0 18px 50px rgba(120,40,0,.3); }
.hero-c-pct { font-size: .5em; vertical-align: top; }
.hero-c-sub { max-width: 560px; margin: 26px auto 0; color: rgba(255,255,255,.92); font-size: 18px; }
.hero-c-floats { position: relative; width: min(720px, 100%); margin: 42px auto 0; }
.hero-c-track { width: min(560px, 100%); margin: 0 auto; }
.hero-c-track .trk-sample { color: rgba(255,255,255,.9); }
.hero-c-track .trk-sample .mono { color: #fff; text-decoration: underline; }
.float-card { position: absolute; background: #fff; color: var(--navy-700); border-radius: var(--r-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.float-card svg { color: var(--orange-500); }
.float-card b { display: block; font-family: var(--font-display); font-size: 16px; }
.float-card span { font-size: 12px; color: var(--ink-soft); }
.float-1 { top: -18px; left: -10px; transform: rotate(-4deg); }
.float-2 { top: 70px; left: -36px; transform: rotate(3deg); }
.float-3 { top: 6px; right: -20px; transform: rotate(4deg); }
.hero-c .hero-stats { justify-content: center; margin-top: 54px; }
.hero-c .hero-stat-n { color: #fff; }
.hero-c .hero-stat-l { color: rgba(255,255,255,.82); }

/* ---------------- PARTNERS ---------------- */
.partners { border-bottom: 1px solid var(--line); background: var(--paper); }
.partners-inner { display: flex; align-items: center; gap: 36px; padding: 26px 28px; flex-wrap: wrap; }
.partners-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.partners-logos { display: flex; gap: 38px; flex-wrap: wrap; align-items: center; }
.partner-logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ink-faint); opacity: .65; letter-spacing: -.02em; }

/* ---------------- SECTION HEADS ---------------- */
.sec-head { margin-bottom: 48px; max-width: 640px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3.8vw, 46px); margin-top: 16px; }
.lead { font-size: 18px; color: var(--ink-soft); margin-top: 16px; }
.lead.center { margin-left: auto; margin-right: auto; }

/* ---------------- SAVINGS CALC ---------------- */
.calc-wrap { background: var(--paper-2); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.calc-copy h2 { font-size: clamp(30px, 3.6vw, 44px); margin-top: 14px; }
.calc-controls { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; max-width: 420px; }
.calc-field { display: flex; flex-direction: column; gap: 10px; }
.calc-field span { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.calc-field span b { color: var(--orange-600); }
.calc-field select { font-family: var(--font-ui); font-size: 16px; font-weight: 600; color: var(--navy-700); padding: 14px 16px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: #fff; }
.calc-field input[type=range] { -webkit-appearance: none; appearance: none; height: 7px; border-radius: 99px; background: #e7e0d2; outline: none; }
.calc-field input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--orange-500); cursor: pointer; box-shadow: var(--shadow-orange); border: 3px solid #fff; }
.calc-field input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--orange-500); cursor: pointer; border: 3px solid #fff; }

.calc-result { padding: 30px; }
.calc-result-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.calc-route { font-size: 14px; font-weight: 700; color: var(--navy-700); }
.calc-compare { display: flex; flex-direction: column; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.calc-line { display: flex; justify-content: space-between; align-items: center; font-size: 15.5px; color: var(--ink-soft); font-weight: 600; }
.calc-line b { font-family: var(--font-display); font-size: 19px; color: var(--navy-700); }
.calc-line b.strike { color: var(--ink-faint); text-decoration: line-through; text-decoration-color: var(--ink-faint); font-weight: 700; }
.calc-big { text-align: center; padding: 26px 0; }
.calc-big-label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.calc-big-n { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 7vw, 68px); color: var(--orange-500); line-height: 1; margin: 8px 0 6px; letter-spacing: -.03em; }
.calc-big-sub { font-size: 14px; color: var(--ink-faint); font-weight: 600; }
.calc-cta { width: 100%; }
.calc-fine { text-align: center; font-size: 11px; color: var(--ink-faint); margin-top: 14px; }

/* ---------------- HOW IT WORKS ---------------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card { padding: 32px 28px; position: relative; transition: transform .18s, box-shadow .18s; }
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-num { position: absolute; top: 26px; right: 28px; font-size: 14px; font-weight: 700; color: var(--orange-400); }
.how-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-600); margin-bottom: 22px; }
.how-card h3 { font-size: 22px; margin-bottom: 10px; }
.how-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------------- COVERAGE ---------------- */
.coverage { background: var(--navy-800); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.on-navy { color: #fff; }
.coverage-copy h2 { font-size: clamp(30px, 3.8vw, 46px); margin-top: 16px; }
.coverage-sub { color: rgba(255,255,255,.72); font-size: 17.5px; margin-top: 18px; max-width: 460px; }
.coverage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; margin-top: 34px; max-width: 460px; }
.cov-stat-n { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--orange-400); letter-spacing: -.02em; }
.cov-stat-l { font-size: 14px; color: rgba(255,255,255,.66); margin-top: 2px; }
.coverage-map { min-height: 380px; font-size: 13px; line-height: 1.8; }

/* ---------------- SERVICES ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { padding: 30px 28px; position: relative; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card.feat { background: var(--navy-800); border-color: var(--navy-800); }
.svc-card.feat h3, .svc-card.feat .svc-price { color: #fff; }
.svc-card.feat p { color: rgba(255,255,255,.72); }
.svc-card.feat .svc-time { color: var(--orange-400); }
.svc-card.feat .svc-ic { background: rgba(255,106,31,.18); color: var(--orange-400); }
.svc-card.feat .svc-link { color: var(--orange-400); }
.svc-flag { position: absolute; top: 22px; right: 24px; font-size: 12px; font-weight: 800; color: var(--navy-800); background: var(--orange-400); padding: 5px 11px; border-radius: var(--r-pill); }
.svc-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-600); margin-bottom: 20px; }
.svc-card h3 { font-size: 22px; }
.svc-time { display: block; font-size: 13px; font-weight: 700; color: var(--orange-600); margin: 8px 0 12px; }
.svc-card p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.svc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.svc-card.feat .svc-foot { border-color: rgba(255,255,255,.14); }
.svc-price { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy-700); }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 14.5px; color: var(--orange-600); }
.svc-link:hover { gap: 9px; }

/* ---------------- PRICING ---------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.price-card.feat { background: var(--navy-800); border-color: var(--navy-800); box-shadow: var(--shadow-lg); transform: translateY(-12px); }
.price-card.feat .price-name, .price-card.feat .price-num, .price-card.feat .price-per { color: #fff; }
.price-card.feat .price-desc { color: rgba(255,255,255,.7); }
.price-card.feat .price-feats li { color: rgba(255,255,255,.86); }
.price-card.feat .price-feats svg { color: var(--orange-400); }
.price-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 800; color: #fff; background: var(--orange-500); padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-orange); }
.price-name { font-size: 20px; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin: 16px 0 4px; }
.price-num { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--navy-700); letter-spacing: -.03em; }
.price-per { font-size: 16px; color: var(--ink-faint); font-weight: 600; }
.price-desc { color: var(--ink-soft); font-size: 15px; min-height: 44px; }
.price-feats { list-style: none; margin: 22px 0 26px; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-card.feat .price-feats { border-color: rgba(255,255,255,.14); }
.price-feats li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--ink); }
.price-feats svg { color: var(--mint-500); flex: none; }
.price-cta { width: 100%; }

/* ---------------- TRUST ---------------- */
.trust { background: var(--paper-2); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { padding: 30px 28px; margin: 0; display: flex; flex-direction: column; }
.review-stars { display: flex; gap: 3px; color: var(--orange-500); margin-bottom: 16px; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink); font-weight: 500; flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.review-av { width: 44px; height: 44px; border-radius: 50%; flex: none; font-size: 10px; }
.review figcaption b { display: block; font-size: 15px; color: var(--navy-700); }
.review-role { font-size: 13px; color: var(--ink-faint); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); padding: 14px 22px; border-radius: var(--r-pill); }
.trust-badge svg { color: var(--orange-500); }
.trust-badge b { color: var(--navy-700); }

/* ---------------- FAQ ---------------- */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-top: 14px; }
.faq-head .btn { margin-top: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 24px 0; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy-700); }
.faq-plus { width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-600); transition: transform .25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--orange-500); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { color: var(--ink-soft); font-size: 16px; padding-bottom: 24px; max-width: 560px; }

/* ---------------- CTA BAND ---------------- */
.cta-band { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255,106,31,.28), transparent 70%); }
.cta-inner { position: relative; text-align: center; padding: 96px 0; }
.cta-title { color: #fff; font-size: clamp(34px, 4.6vw, 58px); }
.cta-sub { color: rgba(255,255,255,.74); font-size: 19px; margin-top: 18px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ---------------- FOOTER ---------------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding: 72px 28px 48px; }
.footer-tag { margin-top: 18px; font-size: 15px; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-rate { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-rate b { color: #fff; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h4 { color: #fff; font-family: var(--font-ui); font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: .02em; }
.footer-col a { display: block; font-size: 14.5px; padding: 6px 0; color: rgba(255,255,255,.62); transition: color .15s; }
.footer-col a:hover { color: var(--orange-400); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.45); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
  .nav-mobile { display: flex; }
  .hero-b-grid, .calc-grid, .coverage-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
  .how-grid, .svc-grid, .price-grid, .trust-grid { grid-template-columns: 1fr; }
  .price-card.feat { transform: none; }
  .coverage-map { min-height: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .float-card { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; }
  .trk-go span { display: none; }
  .trk-go { padding: 13px 16px; }
  .hero-stats { gap: 14px 26px; }
}
