/* PRO Landing – stable layout (no form drifting) */
:root{
  --navy:#0B2E4E;
  --navy2:#081F33;
  --accent:#F47C20;
  --bg:#F6F8FC;
  --text:#0F172A;
  --muted:#475569;
  --card:#FFFFFF;
  --border:rgba(15, 23, 42, .10);
  --shadow:0 18px 50px rgba(2,6,23,.10);
  --shadow2:0 10px 24px rgba(2,6,23,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#fff;color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1160px;margin:0 auto;padding:70px 20px}
@media (max-width: 980px){.container{padding:56px 18px}}

/* Header */
.header{
  position:sticky;top:0;z-index:60;
  background:rgba(11,46,78,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{max-width:1160px;margin:0 auto;padding:14px 20px;display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:12px}
.brand__mark{width:38px;height:38px;border-radius:12px;background:linear-gradient(135deg, rgba(244,124,32,.98), rgba(244,124,32,.70));box-shadow:0 12px 30px rgba(244,124,32,.25)}
.brand__name{font-weight:900;letter-spacing:.2px;color:#fff;font-size:16px;line-height:1.1}
.brand__sub{font-size:12px;color:rgba(255,255,255,.72);margin-top:2px}
.header__contacts{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:10px 14px;font-size:13px;color:rgba(255,255,255,.86)}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  white-space:nowrap
}
.chip svg{width:16px;height:16px;opacity:.95}
.chip strong{color:#fff}

/* Typography */
h1{font-size:46px;line-height:1.06;margin:0 0 14px;color:var(--navy)}
@media (max-width: 520px){h1{font-size:34px}}
h2{font-size:30px;line-height:1.2;margin:0 0 18px;color:var(--navy)}
h3{font-size:18px;line-height:1.25;margin:0 0 10px;color:var(--text)}
p{margin:0 0 12px;line-height:1.65;font-size:16px;color:var(--muted)}
.mb8{margin-bottom:8px}
.mt8{margin-top:8px}
.mt12{margin-top:12px}
.mt14{margin-top:14px}
.muted{color:var(--muted)}
.accentText{color:var(--accent);font-weight:900}
.leadStrong{font-size:16px;color:var(--text);font-weight:800}
.cardSmall{font-weight:1000;color:var(--text)}

/* Buttons */
.ctaRow{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  background:linear-gradient(135deg, rgba(244,124,32,1), rgba(244,124,32,.88));
  color:#fff;padding:14px 18px;border-radius:14px;text-decoration:none;font-weight:900;
  box-shadow:0 16px 34px rgba(244,124,32,.26);
  border:1px solid rgba(244,124,32,.35);
  transition:transform .12s ease, box-shadow .12s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 18px 40px rgba(244,124,32,.30)}
.btn svg{width:18px;height:18px}
.btnGhost{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 18px;border-radius:14px;
  background:rgba(11,46,78,.06);
  border:1px solid rgba(11,46,78,.12);
  color:var(--navy);
  text-decoration:none;font-weight:900;
  cursor:pointer;
}

/* Badges */
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}
.badge{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(11,46,78,.07);border:1px solid rgba(11,46,78,.10);color:var(--navy);font-weight:900;font-size:13px}

/* Layout grids (names separated to avoid collisions) */
.cardsGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media (max-width: 980px){.cardsGrid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 520px){.cardsGrid{grid-template-columns:1fr}}

.twoColGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
@media (max-width: 720px){.twoColGrid{grid-template-columns:1fr}}

/* Card */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow2);
}
.card--soft{background:rgba(255,255,255,.78)}
.note{margin-top:14px}

/* Sections */
.section{border-bottom:1px solid var(--border)}
.section--alt{background:var(--bg)}

/* Hero */
.hero{
  position:relative;
  background:
    radial-gradient(1200px 520px at 15% 5%, rgba(244,124,32,.18), transparent 55%),
    radial-gradient(1100px 520px at 85% 10%, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff);
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero__grid{display:grid;grid-template-columns:1.12fr .88fr;gap:34px;align-items:start}
@media (max-width: 980px){.hero__grid{grid-template-columns:1fr}.hero__right{order:-1}}

.kpi{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}
@media (max-width: 980px){.kpi{grid-template-columns:repeat(2,1fr)}}
.kpi__item{background:rgba(255,255,255,.78);border:1px solid var(--border);border-radius:16px;padding:14px;box-shadow:0 10px 26px rgba(2,6,23,.05)}
.kpi__value{font-weight:1000;color:var(--text);font-size:16px}
.kpi__label{font-size:12px;color:var(--muted);margin-top:4px}

.hero__right{
  background:linear-gradient(180deg, #ffffff, rgba(255,255,255,.78));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.hero__rightTitle{font-weight:1000;color:var(--text);margin:0 0 8px}
.hero__rightText{font-size:14px;color:var(--muted);margin-bottom:14px}

.truckImgWrap{margin:-18px 0 10px 0;display:flex;justify-content:center;position:relative}
.truckImgWrap::before{content:"";position:absolute;width:420px;height:120px;bottom:-10px;background:radial-gradient(ellipse at center, rgba(2,6,23,.18) 0%, rgba(2,6,23,.08) 40%, rgba(2,6,23,0) 70%);filter:blur(18px);z-index:0}
.truckImg{
  width:100%;max-width:620px;height:auto;border-radius:20px;border:none;
  box-shadow:0 40px 80px rgba(2,6,23,.22);
  background:linear-gradient(180deg,#ffffff,#eef3fb);
  padding:14px;transform:translateY(-10px);
  position:relative;z-index:1
}

.trustLine{
  margin-top:18px;
  display:flex;flex-wrap:wrap;align-items:center;gap:10px;
  color:rgba(11,46,78,.85);
  font-weight:700;font-size:13px;
}
.trustDot{width:4px;height:4px;border-radius:999px;background:rgba(11,46,78,.35)}
.trustLine__item{padding:6px 10px;border-radius:999px;background:rgba(11,46,78,.06);border:1px solid rgba(11,46,78,.10)}

/* Micro proof */
.microProof{margin-top:14px;display:grid;gap:10px}
.microProof__row{display:flex;gap:10px;align-items:flex-start}
.microProof__badge{flex:0 0 auto;font-weight:1000;font-size:12px;color:var(--navy);background:rgba(244,124,32,.12);border:1px solid rgba(244,124,32,.20);padding:6px 10px;border-radius:999px}
.microProof__text{font-size:13px;color:var(--muted);line-height:1.4}

/* Callout */
.callout{
  margin-top:16px;
  background:linear-gradient(135deg, rgba(11,46,78,.06), rgba(244,124,32,.08));
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:var(--radius);
  padding:20px;
}
.callout__title{font-weight:1000;color:var(--text);font-size:18px;margin-bottom:6px}
.callout__text{margin:0;color:var(--muted)}

/* Specs */
.specs{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width: 980px){.specs{grid-template-columns:1fr}}
.specList{margin:0;padding:0;list-style:none}
.specList li{display:flex;gap:10px;align-items:flex-start;padding:10px 0;border-top:1px solid var(--border)}
.specList li:first-child{border-top:none}
.check{width:22px;height:22px;border-radius:8px;background:rgba(244,124,32,.12);display:grid;place-items:center;border:1px solid rgba(244,124,32,.18);flex:0 0 auto;margin-top:2px}
.check svg{width:14px;height:14px;stroke:var(--accent)}
.specText{color:var(--muted)}

.miniGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
@media (max-width: 520px){.miniGrid{grid-template-columns:1fr}}
.miniCard{background:#fff;border:1px solid var(--border);border-radius:14px;padding:12px;font-weight:800;color:var(--text);box-shadow:none}
.divider{height:1px;background:var(--border);margin:14px 0}

/* Price */
.priceBox{
  background:linear-gradient(180deg, rgba(244,124,32,.10), rgba(244,124,32,.04));
  border:1px solid rgba(244,124,32,.18);
  border-radius:var(--radius);
  padding:20px;
}
.priceRow{display:flex;flex-wrap:wrap;gap:10px 18px;align-items:baseline;margin-top:10px}
.priceVal{font-size:22px;font-weight:1000;color:var(--text)}
.priceLbl{font-size:13px;color:var(--muted)}

/* Forms */
form{display:grid;gap:12px}
.fields{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media (max-width: 720px){.fields{grid-template-columns:1fr}}

input, select{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid var(--border);
  font-size:15px;
  outline:none;
  background:#fff;
  font-family:inherit;
}
input:focus, select:focus{border-color:rgba(244,124,32,.55);box-shadow:0 0 0 4px rgba(244,124,32,.12)}

button{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  width:100%;
  background:linear-gradient(135deg, rgba(244,124,32,1), rgba(244,124,32,.88));
  border:none;
  color:white;
  padding:14px 18px;
  border-radius:14px;
  font-weight:1000;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(244,124,32,.26);
  transition:transform .12s ease, box-shadow .12s ease;
}
button:hover{transform:translateY(-1px);box-shadow:0 18px 40px rgba(244,124,32,.30)}
.fineprint{font-size:13px;color:var(--muted);margin-top:10px}
.formCard{position:relative}

/* Calculator */
.calcBar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  margin:8px 0 6px;padding:14px;border-radius:16px;
  border:1px solid rgba(244,124,32,.18);
  background:linear-gradient(180deg, rgba(244,124,32,.10), rgba(244,124,32,.04));
}
.calcPrice{font-size:28px;font-weight:1100;color:var(--text)}
.mutedSmall{font-size:13px;color:var(--muted)}

/* SEO block */
.seoBlock{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow2);
}
.seoTitle{margin:0 0 10px;color:var(--navy)}
.seoText{margin:0 0 12px}
.seoTags{display:flex;flex-wrap:wrap;gap:10px}
.tag{font-size:13px;font-weight:800;color:var(--navy);background:rgba(11,46,78,.06);border:1px solid rgba(11,46,78,.12);padding:8px 10px;border-radius:999px}

/* Mini footer note */
.miniFooterNote{
  margin-top:16px;
  border:1px dashed rgba(11,46,78,.25);
  border-radius:18px;
  padding:16px;
  background:rgba(11,46,78,.03);
}
.miniFooterNote__title{font-weight:1000;color:var(--text);margin-bottom:6px}
.miniFooterNote__text{margin:0}

/* Footer */
.footer{background:linear-gradient(180deg, var(--navy2), #061626);color:#fff;text-align:center;padding:44px 20px}
.footer p{color:rgba(255,255,255,.82);margin:8px 0}
.footer a{color:#fff;text-decoration:underline}
.footer__small{margin-top:14px;font-size:13px;opacity:.85}

/* Toast */
.toast{
  position:fixed;right:14px;bottom:14px;z-index:100;
  background:rgba(11,46,78,.96);color:#fff;
  padding:12px 14px;border-radius:16px;
  box-shadow:0 20px 60px rgba(2,6,23,.18);
  border:1px solid rgba(255,255,255,.10);
  display:none;
  max-width:360px;
}
.toast strong{display:block;margin-bottom:4px}
.toast__text{opacity:.92}
.toast a{color:#fff;text-decoration:underline}

/* Mobile sticky CTA */
.stickyCta{
  position:fixed;left:12px;right:12px;bottom:12px;z-index:70;
  display:none;
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:18px;
  padding:10px;
  box-shadow:0 20px 50px rgba(2,6,23,.14);
  backdrop-filter:saturate(160%) blur(10px);
}
.stickyCta__inner{display:flex;gap:10px}
.stickyBtn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:10px;background:linear-gradient(135deg, rgba(244,124,32,1), rgba(244,124,32,.88));color:#fff;text-decoration:none;font-weight:1000;border-radius:14px;padding:12px 14px}
.stickyBtn svg{width:18px;height:18px}
@media (max-width: 820px){.stickyCta{display:block}}
