/* =============================================
   ADVANTAGE TRANSPORTATION SYSTEMS — style.css
   ============================================= */

/* ---- Reset & Variables ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #0B1C34;
  --navy-mid:    #142444;
  --orange:      #E8620A;
  --orange-light:#FF7A20;
  --steel:       #8FA3BD;
  --light:       #F2F4F7;
  --white:       #FFFFFF;
  --text-dark:   #0B1C34;
  --text-muted:  #5A6E85;
  --border:      #D6DEE8;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--white); letter-spacing: 1.5px; line-height: 1; }
.logo-sub { font-size: 9px; color: var(--steel); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--steel); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 24px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.5px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.nav-cta:hover { background: var(--orange-light); }

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  padding: 100px 5% 80px 8%;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 2;
}

.eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow-line { width: 40px; height: 2px; background: var(--orange); }
.eyebrow-text { font-size: 12px; letter-spacing: 4px; color: var(--orange); text-transform: uppercase; font-weight: 700; }

.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 82px; line-height: .92; color: var(--white); margin-bottom: 28px; }
.hero h1 span { color: var(--orange); }
.hero-desc { font-size: 17px; line-height: 1.7; color: var(--steel); max-width: 440px; margin-bottom: 40px; }

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.badge { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 8px 16px; font-size: 12px; color: var(--steel); letter-spacing: 1px; }

.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 32px; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background .2s;
}
.btn-primary:hover { background: var(--orange-light); }
.btn-ghost { color: var(--white); font-size: 15px; font-weight: 500; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; }

.hero-right { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-mark { position: relative; z-index: 2; }

.hero-stat-cards { position: absolute; bottom: 48px; right: 40px; display: flex; flex-direction: column; gap: 12px; z-index: 3; }
.stat-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 16px 20px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 11px; color: var(--steel); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.hero-diagonal { position: absolute; right: -1px; top: 0; bottom: 0; width: 80px; background: var(--white); clip-path: polygon(80px 0, 80px 100%, 0 100%); }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--light); padding: 24px 8%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.trust-label { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; font-weight: 700; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }
.trust-items { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.trust-item { font-size: 13px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.trust-dot { width: 6px; height: 6px; background: var(--orange); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }

/* ---- SHARED SECTION STYLES ---- */
section { padding: 96px 8%; }
h2.section-title { font-family: 'Bebas Neue', sans-serif; font-size: 54px; line-height: 1; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* ---- SERVICES ---- */
.services-section { background: var(--white); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; background: var(--border); }
.service-card { background: var(--white); padding: 40px 32px; position: relative; transition: transform .2s; }
.service-card:hover { transform: translateY(-4px); z-index: 2; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--border); transition: background .2s; }
.service-card:hover::before { background: var(--orange); }

.service-icon { width: 48px; height: 48px; background: var(--light); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; margin-bottom: 12px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
.service-features li::before { content: ''; width: 5px; height: 5px; background: var(--orange); clip-path: polygon(50% 0%, 100% 100%, 0% 100%); margin-top: 5px; flex-shrink: 0; }

.service-price-tag { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.price-start { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.price-val { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--orange); }
.price-unit { font-size: 16px; color: var(--text-muted); }
.price-note { font-size: 12px; color: var(--text-muted); }

/* ---- PRICING ---- */
.pricing-section { background: var(--navy); padding: 96px 8%; }

.pricing-tabs { display: flex; margin-top: 48px; border-bottom: 2px solid rgba(255,255,255,.1); }
.ptab { background: none; border: none; color: var(--steel); padding: 14px 28px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; }
.ptab.active { color: var(--white); border-bottom-color: var(--orange); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.dispatch-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.tier-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 32px 28px; position: relative; }
.tier-card.featured { border-color: var(--orange); background: rgba(232,98,10,.08); }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 14px; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.tier-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--white); margin-bottom: 4px; }
.tier-trucks { font-size: 12px; color: var(--steel); letter-spacing: 2px; margin-bottom: 24px; }
.tier-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--white); line-height: 1; }
.tier-price .currency { font-size: 24px; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--orange); }
.tier-price .period { font-size: 13px; color: var(--steel); display: block; margin-top: 4px; margin-bottom: 20px; }
.tier-breakdown { background: rgba(255,255,255,.04); padding: 16px; margin-bottom: 24px; }
.tier-breakdown p { font-size: 13px; color: var(--steel); line-height: 1.6; }
.tier-breakdown strong { color: var(--white); }
.tier-cta { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: var(--white); padding: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; }
.tier-cta:hover, .tier-card.featured .tier-cta { background: var(--orange); border-color: var(--orange); }

.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.addon-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 28px 24px; display: flex; gap: 20px; }
.addon-icon-wrap { width: 44px; height: 44px; background: rgba(232,98,10,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.addon-icon-wrap svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.addon-label { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); margin-bottom: 6px; }
.addon-desc { font-size: 13px; color: var(--steel); line-height: 1.6; margin-bottom: 16px; }
.addon-price-row { display: flex; align-items: baseline; gap: 6px; }
.ap { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--orange); }
.au { font-size: 13px; color: var(--steel); }

/* ---- SAVINGS ---- */
.savings-section { background: var(--navy); padding: 0 8% 96px; }
.savings-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 72px; }

.savings-controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.ctrl-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 24px; }
.ctrl-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--steel); text-transform: uppercase; margin-bottom: 12px; display: block; }
.ctrl-val { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--white); line-height: 1; margin-bottom: 10px; }
.ctrl-val em { color: var(--orange); font-style: normal; }
.ctrl-val-unit { font-size: 20px; color: var(--steel); }
.ctrl-range { width: 100%; accent-color: var(--orange); cursor: pointer; }
.ctrl-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--steel); margin-top: 6px; }
.zero-note { font-size: 12px; color: var(--steel); font-style: italic; margin-top: 6px; min-height: 16px; }

.savings-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-bottom: 3px; }
.sc-card { padding: 32px 28px; }
.sc-card.theirs { background: #130806; border: 1px solid rgba(192,57,43,.25); }
.sc-card.ours { background: rgba(232,98,10,.07); border: 1px solid rgba(232,98,10,.35); }
.sc-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; margin-bottom: 18px; }
.sc-badge.bad { background: rgba(192,57,43,.2); color: #e07060; }
.sc-badge.good { background: rgba(232,98,10,.2); color: var(--orange); }
.sc-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--white); margin-bottom: 4px; }
.sc-sub { font-size: 13px; color: var(--steel); margin-bottom: 24px; }
.sc-line { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sc-line:last-of-type { border: none; }
.sc-line-label { font-size: 13px; color: var(--steel); }
.sc-line-val { font-family: 'Bebas Neue', sans-serif; font-size: 19px; }
.sc-line-val.red { color: #e07060; }
.sc-line-val.org { color: var(--orange); }
.sc-line-val.wht { color: var(--white); }
.sc-total { margin-top: 16px; padding: 18px; display: flex; justify-content: space-between; align-items: center; }
.sc-card.theirs .sc-total { background: rgba(192,57,43,.1); border: 1px solid rgba(192,57,43,.2); }
.sc-card.ours .sc-total { background: rgba(232,98,10,.1); border: 1px solid rgba(232,98,10,.25); }
.sc-total-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--steel); margin-bottom: 4px; }
.sc-total-val { font-family: 'Bebas Neue', sans-serif; font-size: 38px; line-height: 1; }
.sc-total-val.red { color: #e07060; }
.sc-total-val.org { color: var(--orange); }
.sc-total-right { text-align: right; }
.sc-total-pct-label { font-size: 10px; color: var(--steel); letter-spacing: 1px; margin-bottom: 2px; }
.sc-total-pct { font-family: 'Bebas Neue', sans-serif; font-size: 26px; }
.sc-total-pct.red { color: #e07060; }
.sc-total-pct.org { color: var(--orange); }

.savings-banner { background: var(--orange); padding: 32px 40px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-bottom: 24px; }
.sb-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.sb-headline { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--white); line-height: 1; }
.sb-sub { font-size: 14px; color: rgba(255,255,255,.8); margin-top: 6px; }
.sb-right { text-align: right; flex-shrink: 0; }
.sb-save-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.sb-save-val { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--white); line-height: 1; }
.sb-save-period { font-size: 13px; color: rgba(255,255,255,.75); }

.annual-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.ac { padding: 24px; text-align: center; }
.ac.a1 { background: rgba(192,57,43,.07); border: 1px solid rgba(192,57,43,.2); }
.ac.a2 { background: rgba(232,98,10,.07); border: 1px solid rgba(232,98,10,.25); }
.ac.a3 { background: rgba(26,122,74,.08); border: 1px solid rgba(26,122,74,.25); }
.ac-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.ac-val { font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 1; }
.ac-val.red { color: #e07060; }
.ac-val.org { color: var(--orange); }
.ac-val.grn { color: #4ecb87; }
.ac-note { font-size: 12px; color: var(--steel); margin-top: 6px; }

.savings-footnote { padding: 18px 24px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); display: flex; align-items: flex-start; gap: 14px; }
.fn-icon { width: 36px; height: 36px; background: rgba(232,98,10,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.fn-icon svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fn-text { font-size: 12px; color: var(--steel); line-height: 1.7; }
.fn-text strong { color: var(--white); }

/* ---- CALCULATOR ---- */
.calculator-section { background: var(--light); }

.calc-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 64px; align-items: start; }
.calc-form { background: var(--white); border: 1px solid var(--border); padding: 40px; }
.calc-label { font-size: 13px; font-weight: 700; letter-spacing: .5px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; display: block; }
.calc-slider { width: 100%; accent-color: var(--orange); cursor: pointer; margin-bottom: 8px; }
.calc-val-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.calc-val { font-weight: 700; color: var(--text-dark); }
.calc-helper { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; }
.calc-toggle-row { display: flex; margin-bottom: 12px; }
.ctoggle { flex: 1; padding: 10px; background: var(--light); border: 1px solid var(--border); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all .2s; }
.ctoggle:first-child { border-right: none; }
.ctoggle.on { background: var(--orange); border-color: var(--orange); color: var(--white); }

.calc-results { background: var(--navy); padding: 40px; }
.results-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 28px; }
.result-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.rl-label { font-size: 14px; color: var(--steel); }
.rl-val { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); }
.rl-val.orange { color: var(--orange); }
.result-total { margin-top: 24px; padding: 20px; background: rgba(232,98,10,.1); border: 1px solid rgba(232,98,10,.3); }
.rt-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.rt-val { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; color: var(--white); }
.rt-val span { color: var(--orange); }
.rt-note { font-size: 12px; color: var(--steel); margin-top: 8px; }

/* ---- WHY ATS ---- */
.why-section { background: var(--white); }

.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-top: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; color: var(--border); }
.why-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.why-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.why-visual { background: var(--navy); padding: 48px; position: relative; overflow: hidden; }
.wv-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 40px 40px; }
.wv-content { position: relative; z-index: 1; }
.wv-mark { margin-bottom: 24px; display: block; }
.wv-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--white); line-height: 1; }
.wv-stat-num em { color: var(--orange); font-style: normal; }
.wv-stat-label { font-size: 13px; color: var(--steel); letter-spacing: 1px; margin-bottom: 8px; }
.wv-divider { width: 40px; height: 2px; background: rgba(255,255,255,.1); margin: 8px 0 28px; }
.wv-quote { font-size: 15px; color: var(--steel); line-height: 1.7; font-style: italic; border-left: 3px solid var(--orange); padding-left: 16px; }

/* ---- CTA ---- */
.cta-section { background: var(--orange); padding: 80px 8%; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 54px; color: var(--white); line-height: 1; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.8); margin-top: 12px; line-height: 1.6; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.btn-white { background: var(--white); color: var(--orange); padding: 16px 36px; border: none; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); }
.btn-white:hover { opacity: .9; }
.cta-contact { font-size: 13px; color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-contact strong { color: var(--white); font-size: 16px; }

/* ---- FOOTER ---- */
footer { background: var(--navy); padding: 48px 8%; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 13px; color: var(--steel); line-height: 1.7; margin-top: 12px; max-width: 240px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--white); letter-spacing: 1.5px; }
.footer-col h5 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 13px; color: var(--steel); }
.footer-col ul li a { color: var(--steel); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); padding: 20px 8%; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--steel); }
.footer-dot { color: var(--orange); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 64px; }
  h2.section-title { font-size: 44px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right, .hero-diagonal { display: none; }
  .hero h1 { font-size: 58px; }
  .services-grid { grid-template-columns: 1fr; }
  .dispatch-tiers { grid-template-columns: 1fr; }
  .savings-controls { grid-template-columns: 1fr; }
  .savings-comparison { grid-template-columns: 1fr; }
  .annual-row { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { grid-template-columns: 1fr; }
  .savings-banner { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-items { gap: 20px; }
  nav { padding: 0 4%; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 44px; }
  h2.section-title { font-size: 36px; }
  section { padding: 64px 6%; }
  footer { grid-template-columns: 1fr; }
  .savings-banner { padding: 24px; }
}
