/* ============================================================
   kWPrime — Stylesheet v4
   Header/footer: vivid orange bg
   Body: cream/white for readability
   Accents: orange buttons/borders, gold highlights, blue details
   Font: Plus Jakarta Sans (Calibre-equivalent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }

:root {
  /* Orange — nav, hero, footer, accents */
  --orange:        #ea580c;
  --orange-dark:   #c2410c;
  --orange-light:  #f97316;
  --orange-pale:   #fff7ed;
  --orange-mid:    #fed7aa;
  --orange-border: rgba(234, 88, 12, 0.22);

  /* Gold — secondary accent */
  --gold:          #b8860b;
  --gold-light:    #d4a017;
  --gold-pale:     #fdf8ec;
  --gold-border:   rgba(184, 134, 11, 0.25);

  /* Blue — highlights, hub cards, partner cards */
  --blue:          #1a4a8c;
  --blue-light:    #2056a8;
  --blue-pale:     #eef2fb;
  --blue-border:   rgba(26, 74, 140, 0.2);

  /* Body neutrals — cream background, white cards */
  --cream:         #fafaf7;
  --warm-white:    #f5f4f0;
  --white:         #ffffff;
  --border:        #e2dfd8;
  --border-dark:   #cac6bc;
  --text:          #1c1916;
  --muted:         #6b6760;
  --muted-light:   #9a9690;

  --font:   'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max:    1200px;
  --pad:    24px;
  --radius: 8px;
}

html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION — orange background
   ══════════════════════════════════════════════════════════════ */
nav {
  background: var(--orange);
  border-bottom: 3px solid var(--orange-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-wrap { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-name { font-size: 19px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.logo-name span { color: var(--gold-light); }
.logo-sub { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a {
  padding: 7px 14px; border-radius: 6px; text-decoration: none;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); transition: .15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.2); font-weight: 700; }
.btn-nav {
  background: var(--white); color: var(--orange);
  border: none; padding: 9px 22px; border-radius: 7px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  font-family: var(--font); text-decoration: none; display: inline-block; transition: .15s;
}
.btn-nav:hover { background: var(--orange-pale); }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.ham span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.mob-menu {
  display: none; flex-direction: column;
  background: var(--orange-dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px var(--pad) 16px;
}
.mob-menu a {
  padding: 13px 0; font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.85); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1); display: block; transition: .15s;
}
.mob-menu a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER — orange background (inner pages)
   ══════════════════════════════════════════════════════════════ */
.ph {
  background: var(--orange);
  padding: 56px var(--pad) 48px;
  color: var(--white);
  border-bottom: 3px solid var(--orange-dark);
  position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 1px,
    transparent 1px, transparent 48px);
  pointer-events: none;
}
.ph-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.ph-tag { font-size: 11px; font-weight: 700; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.ph h1 { font-size: clamp(28px, 5vw, 50px); font-weight: 800; line-height: 1.05; margin-bottom: 12px; letter-spacing: -0.02em; }
.ph p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   BODY SECTIONS — light cream/white background
   ══════════════════════════════════════════════════════════════ */
section { padding: 72px var(--pad); }
.sec { max-width: var(--max); margin: 0 auto; }
.sec-alt { background: var(--warm-white); }

.s-tag { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.s-h { font-size: clamp(24px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--text); margin-bottom: 10px; }
.s-sub { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 40px; }
.gold-line { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px 0 20px; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 13px 28px; border-radius: 7px; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; font-family: var(--font);
  text-decoration: none; display: inline-block; transition: .15s;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent; color: var(--orange);
  padding: 13px 28px; border-radius: 7px; font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--orange); cursor: pointer; font-family: var(--font);
  text-decoration: none; display: inline-block; transition: .15s;
}
.btn-outline:hover { background: var(--orange-pale); }
.btn-ghost {
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 13px 28px; border-radius: 7px; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer; font-family: var(--font);
  text-decoration: none; display: inline-block; transition: .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-sm {
  background: var(--orange); color: var(--white); border: none; border-radius: 6px;
  padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font); text-decoration: none; display: inline-block; transition: .15s;
}
.btn-sm:hover { background: var(--orange-dark); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   BADGES
   ══════════════════════════════════════════════════════════════ */
.badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.badge-green { background: var(--orange-pale); color: var(--orange-dark); border: 1px solid var(--orange-border); }
.badge-gold  { background: var(--gold-pale);   color: var(--gold);        border: 1px solid var(--gold-border); }
.badge-blue  { background: var(--blue-pale);   color: var(--blue);        border: 1px solid var(--blue-border); }

/* ══════════════════════════════════════════════════════════════
   PARTNER STRIP — light warm stripe
   ══════════════════════════════════════════════════════════════ */
.pstrip { background: var(--warm-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px var(--pad); }
.pstrip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.pstrip-lbl { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.pchip { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 5px 14px; font-size: 13px; font-weight: 700; color: var(--text); }
.pchip-green { color: var(--orange-dark); border-color: var(--orange-border); background: var(--orange-pale); }
.pchip-gold  { color: var(--gold);        border-color: var(--gold-border);   background: var(--gold-pale); }
.pchip-blue  { color: var(--blue);        border-color: var(--blue-border);   background: var(--blue-pale); }
.sep { color: var(--border-dark); font-size: 16px; }

/* ══════════════════════════════════════════════════════════════
   SPEC GRID — light cards
   ══════════════════════════════════════════════════════════════ */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-bottom: 24px; }
.spec { background: var(--warm-white); border: 1px solid var(--border); border-radius: 7px; padding: 12px 14px; }
.spec .sv { font-size: 17px; font-weight: 800; color: var(--orange-dark); line-height: 1.2; letter-spacing: -0.01em; }
.spec .sk { font-size: 11px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   HIGHLIGHT BOX
   ══════════════════════════════════════════════════════════════ */
.hbox { background: var(--orange-pale); border: 1px solid var(--orange-border); border-left: 3px solid var(--orange); border-radius: 7px; padding: 16px 20px; margin-top: 20px; }
.hbox h5 { font-size: 13px; font-weight: 700; color: var(--orange-dark); margin-bottom: 6px; }
.hbox p  { font-size: 13px; color: #7c3308; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   WHY CARDS — white on cream
   ══════════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card { padding: 28px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); border-top: 3px solid var(--gold); transition: .2s; }
.why-card:hover { box-shadow: 0 4px 20px rgba(234,88,12,.08); transform: translateY(-2px); }
.wi { width: 42px; height: 42px; background: var(--orange-pale); border: 1px solid var(--orange-border); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.wi svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   TRUCK CARDS — white on cream
   ══════════════════════════════════════════════════════════════ */
.truck-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.tc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .2s; text-decoration: none; display: block; color: inherit; }
.tc:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(234,88,12,.1); }
.tc-img { background: var(--warm-white); padding: 32px; display: flex; align-items: center; justify-content: center; min-height: 180px; border-bottom: 1px solid var(--border); }
.tc-body { padding: 22px; }
.tc-body h3 { font-size: 20px; font-weight: 800; color: var(--text); margin: 10px 0 4px; letter-spacing: -0.02em; }
.tc-body .model { font-size: 13px; color: var(--muted); font-weight: 500; }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.tc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.tc-foot .fl { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.tc-foot .fv { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ══════════════════════════════════════════════════════════════
   TRUCK DETAIL
   ══════════════════════════════════════════════════════════════ */
.tdetail { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.tdetail-top { padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; border-bottom: 1px solid var(--border); background: var(--warm-white); }
.tdetail-top img { width: 100%; border-radius: 7px; display: block; border: 1px solid var(--border); }
.tdetail-top h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 14px; color: var(--text); }
.tdetail-top p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.tdetail-body { padding: 32px 40px; }

/* ══════════════════════════════════════════════════════════════
   FINANCE TABS — white panel on cream
   ══════════════════════════════════════════════════════════════ */
.ftabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.ftab { background: var(--white); border: 1px solid var(--border); border-radius: 7px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); color: var(--muted); transition: .15s; }
.ftab.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.ftab:hover:not(.active) { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.fpanel { display: none; }
.fpanel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.fd h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--text); }
.fd p  { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.fpts { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fpts li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.fpts li::before {
  content: '';
  min-width: 18px; height: 18px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ea580c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px; flex-shrink: 0;
}
/* Finance card — dark orange for contrast on light page */
.fcard { background: var(--orange-dark); border-radius: var(--radius); padding: 28px; color: var(--white); position: relative; overflow: hidden; }
.fcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.fcard h4 { font-size: 11px; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.frow { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.frow:last-of-type { border-bottom: none; }
.frow .fk { font-size: 13px; color: rgba(255,255,255,.65); }
.frow .fv { font-size: 13px; font-weight: 700; color: var(--white); }
.fcta { width: 100%; margin-top: 20px; background: var(--gold); color: #3d2800; border: none; border-radius: 7px; padding: 13px; font-size: 14px; font-weight: 800; cursor: pointer; font-family: var(--font); text-decoration: none; display: block; text-align: center; transition: .15s; }
.fcta:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   CALCULATOR — dark orange section (like hero/footer)
   ══════════════════════════════════════════════════════════════ */
.calc-sec { background: var(--orange-dark); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.calc-inner { max-width: var(--max); margin: 0 auto; padding: 72px var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.calc-sec .s-tag { color: var(--gold-light); }
.calc-sec .s-h { color: var(--white); }
.calc-sec .gold-line { background: var(--gold); }
.calc-sec > .calc-inner > div > p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 24px; }
.calc-form label { font-size: 12px; color: rgba(255,255,255,.65); display: block; margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.calc-form select,
.calc-form input { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 7px; padding: 11px 14px; color: var(--white); font-family: var(--font); font-size: 15px; margin-bottom: 16px; -webkit-appearance: none; appearance: none; transition: .15s; }
.calc-form select:focus, .calc-form input:focus { outline: none; border-color: var(--gold); }
.calc-form input::placeholder { color: rgba(255,255,255,.35); }
.calc-form select option { background: var(--orange-dark); color: var(--white); }
.cr { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; }
.cr::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.cr h4 { font-size: 11px; color: var(--gold-light); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.crrow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.crrow:last-of-type { border-bottom: none; }
.crrow .ck { font-size: 13px; color: rgba(255,255,255,.55); }
.crrow .cv { font-size: 13px; font-weight: 700; color: var(--white); }
.cv-big { font-size: 26px !important; color: var(--gold-light) !important; font-weight: 800; letter-spacing: -0.02em; }
.cr-note { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; margin-top: 14px; font-style: italic; }
.calc-help { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 7px; padding: 14px 18px; margin-top: 14px; }
.calc-help p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   PARTNER CARDS (About) — white on cream
   ══════════════════════════════════════════════════════════════ */
.pg { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; border-top: 3px solid var(--blue); }
.pcl { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
.pc p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.pctag { display: inline-block; margin-top: 14px; margin-right: 6px; font-size: 10px; font-weight: 700; background: var(--warm-white); color: var(--muted); border: 1px solid var(--border); padding: 2px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════════════════════════
   HUB GRID — white on cream
   ══════════════════════════════════════════════════════════════ */
.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.hub-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; border-left: 3px solid var(--blue); }
.hub-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.hub-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.hub-status { display: inline-block; font-size: 10px; font-weight: 700; margin-top: 12px; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hs-live { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.hs-plan { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--blue-border); }

/* ══════════════════════════════════════════════════════════════
   CTA BAND — blue for contrast variation
   ══════════════════════════════════════════════════════════════ */
.cta-band { background: var(--blue); padding: 64px var(--pad); text-align: center; color: var(--white); }
.cta-band h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-band p  { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--blue); padding: 13px 28px; border-radius: 7px; font-weight: 800; font-size: 15px; border: none; cursor: pointer; font-family: var(--font); text-decoration: none; display: inline-block; transition: .15s; }
.btn-white:hover { background: var(--blue-pale); }
.btn-white-ghost { background: transparent; color: var(--white); padding: 13px 28px; border-radius: 7px; font-weight: 600; font-size: 15px; border: 1px solid rgba(255,255,255,.5); cursor: pointer; font-family: var(--font); text-decoration: none; display: inline-block; transition: .15s; }
.btn-white-ghost:hover { background: rgba(255,255,255,.12); }

/* ══════════════════════════════════════════════════════════════
   CONTACT — white form on cream
   ══════════════════════════════════════════════════════════════ */
.cgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.cf { display: flex; flex-direction: column; gap: 12px; }
.cf input, .cf select, .cf textarea { width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 7px; padding: 11px 14px; font-family: var(--font); font-size: 15px; color: var(--text); transition: .15s; }
.cf input::placeholder, .cf textarea::placeholder { color: var(--muted-light); }
.cf input:focus, .cf select:focus, .cf textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-pale); }
.cf textarea { height: 110px; resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit { background: var(--orange); color: var(--white); border: none; border-radius: 7px; padding: 13px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: .15s; }
.cf-submit:hover { background: var(--orange-dark); }
.cf-submit:disabled { background: var(--muted-light); cursor: default; }
.ci h4 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.01em; }
.ci > p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.ci-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-dot { width: 38px; height: 38px; min-width: 38px; background: var(--orange-pale); border: 1px solid var(--orange-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ci-dot svg { width: 17px; height: 17px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ci-lbl { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.ci-val { font-size: 14px; color: var(--text); font-weight: 500; margin-top: 3px; word-break: break-all; }
.form-error { display: none; background: #fff0f0; border: 1px solid #fcc; border-left: 3px solid #d00; border-radius: 7px; padding: 14px 18px; margin-bottom: 16px; font-size: 14px; color: #900; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — orange background
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--orange);
  color: rgba(255,255,255,.75);
  padding: 56px var(--pad) 28px;
  border-top: 3px solid var(--orange-dark);
}
.ft { max-width: var(--max); margin: 0 auto; }
.ftop { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.2); }
.fb p { font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 260px; }
.fcol h5 { font-size: 10px; color: rgba(255,255,255,.5); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.fcol a { display: block; font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 10px; text-decoration: none; transition: .15s; }
.fcol a:hover { color: var(--white); }
.fbot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,.5); }
.fbot-gold { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .fpanel.active  { grid-template-columns: 1fr; }
  .calc-inner     { grid-template-columns: 1fr; padding: 56px var(--pad); }
  .cgrid          { grid-template-columns: 1fr; }
  .ftop           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tdetail-top    { grid-template-columns: 1fr; gap: 28px; }
  .hero-grid      { grid-template-columns: 1fr !important; }
  .pg             { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --pad: 16px; }
  .nav-links, .btn-nav { display: none; }
  .ham { display: flex; }
  section { padding: 52px var(--pad); }
  .ph { padding: 44px var(--pad) 36px; }
  .ftabs { flex-direction: column; }
  .cf-row { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr; }
  .fbot { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-ghost, .btn-white, .btn-white-ghost { text-align: center; }
  .pg { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .truck-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .tdetail-body { padding: 24px var(--pad); }
  .tdetail-top { padding: 24px var(--pad); }
  h1, h2, h3, p, li, a, span { word-break: break-word; overflow-wrap: break-word; }
}
