/* ── SHARED STYLES — SandbagsToGo ── */
/* Canonical source: src/partials/shared.css
   Generated to deploy/shared.css by scripts/build.py
   Last built: 2026-04-15 */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --orange: #F17500;
  --orange-light: #FF8C1A;
  --orange-dark: #C96200;
  --black: #111111;
  --black-mid: #1C1C1C;
  --black-card: #222222;
  --black-border: #333333;
  --white: #FFFFFF;
  --gray: #A0A0A0;
  --gray-light: #CCCCCC;
  --text: #E8E8E8;
  --hover-bg: #2a2a2a;
  --footer-bg: #0A0A0A;
  --header-bg: rgba(17,17,17,0.97);
  --text-heading: #FFFFFF;
}

/* ── LIGHT THEME ── */
/* html[data-theme="light"] has specificity [0,1,1], beating :root [0,1,0] in
   page-level inline <style> blocks that redeclare the same variables. */
html[data-theme="light"] {
  --black:        #FFFFFF;
  --black-mid:    #F4F4F4;
  --black-card:   #FFFFFF;
  --black-border: #DDDDDD;
  --text:         #1A1A1A;
  --gray:         #555555;
  --gray-light:   #888888;
  --hover-bg:     #EEEEEE;
  --footer-bg:    #F4F4F4;
  --header-bg:    rgba(255,255,255,0.97);
  --text-heading: #111111;
}

@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) {
    --black:        #FFFFFF;
    --black-mid:    #F4F4F4;
    --black-card:   #FFFFFF;
    --black-border: #DDDDDD;
    --text:         #1A1A1A;
    --gray:         #555555;
    --gray-light:   #888888;
    --hover-bg:     #EEEEEE;
    --footer-bg:    #F4F4F4;
    --header-bg:    rgba(255,255,255,0.97);
    --text-heading: #111111;
  }
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 66px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.15s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--orange-light); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  border: 2px solid var(--black-border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--black-mid); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.1s;
  display: inline-block;
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--black-border);
  padding: 40px 40px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 32px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo-img {
  height: 66px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-contact a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 4px;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray-light); text-decoration: none; }
.footer-veteran {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── ALERT BAR ── */
.alert-bar {
  background: var(--orange);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 40px;
  text-align: center;
}
.alert-bar p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.alert-bar a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}
.alert-bar a:hover { opacity: 0.75; }
.alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* ── MOBILE CALL BAR ── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--orange);
  padding: 12px 20px;
  gap: 10px;
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px;
  border-radius: 2px;
}
.mobile-call-bar .mcb-call {
  background: var(--black);
  color: var(--white);
}
.mobile-call-bar .mcb-quote {
  background: transparent;
  color: var(--black);
  border: 2px solid rgba(0,0,0,0.3);
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV PANEL ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px; /* matches .site-header height */
  left: 0;
  right: 0;
  background: var(--black-mid);
  border-bottom: 2px solid var(--orange);
  z-index: 199;
  padding: 8px 0 16px;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid var(--black-border);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); background: var(--black-card); }
.mobile-nav a.mobile-nav-cta {
  color: var(--orange);
  margin: 12px 24px 0;
  border: 1px solid var(--orange);
  border-radius: 2px;
  text-align: center;
  padding: 12px 24px;
}
.mobile-nav a.mobile-nav-cta:hover { background: var(--orange); color: var(--black); }

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.theme-toggle:hover { opacity: 0.7; }

.mobile-theme-row {
  padding: 12px 24px;
  border-bottom: 1px solid var(--black-border);
}
.mobile-theme-row .theme-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0;
  color: var(--gray-light);
}

/* ── LOGO LIGHT MODE ── */
html[data-theme="light"] .logo-img { filter: invert(1) hue-rotate(180deg); }
html[data-theme="light"] .footer-logo-img { filter: invert(1) hue-rotate(180deg); }
@media (prefers-color-scheme: light) {
  html:not([data-theme="dark"]) .logo-img { filter: invert(1) hue-rotate(180deg); }
  html:not([data-theme="dark"]) .footer-logo-img { filter: invert(1) hue-rotate(180deg); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .header-nav { display: none; }
  .header-phone { display: none; }
  #theme-toggle { display: none; }
  .nav-hamburger { display: flex; }
  .logo-img { height: 48px; }
  footer { padding: 40px 20px 100px; }
  .footer-top { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
}

/* ── PAGE HERO (quote, orders, credit-application) ── */
.page-hero { background: var(--black-mid); border-bottom: 1px solid var(--black-border); padding: 48px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(241,117,0,0.08) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; position: relative; z-index: 2; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.page-hero-eyebrow .line { width: 28px; height: 2px; background: var(--orange); }
.page-hero-eyebrow span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 6vw, 5rem); color: var(--text-heading); text-transform: uppercase; line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: var(--gray); max-width: 520px; line-height: 1.65; }
.page-hero-phone { text-align: center; padding: 24px 32px; background: var(--black-card); border: 1px solid var(--black-border); border-top: 3px solid var(--orange); border-radius: 2px; white-space: nowrap; }
.page-hero-phone-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.page-hero-phone a { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--orange); text-decoration: none; letter-spacing: 0.02em; display: block; margin-bottom: 4px; }
.page-hero-phone-sub { font-size: 0.8rem; color: var(--gray); }

/* ── STEP PROGRESS (quote, orders) ── */
.step-progress { display: flex; align-items: center; margin-bottom: 32px; }
.step-pip { display: flex; align-items: center; gap: 10px; }
.step-connector { flex: 1; height: 2px; background: var(--black-border); margin: 0 8px; transition: background 0.3s; }
.step-connector.completed { background: var(--orange); }
.pip-num { width: 36px; height: 36px; border-radius: 2px; background: var(--black-card); border: 2px solid var(--black-border); font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; color: var(--gray); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.step-pip.active .pip-num { background: transparent; border-color: var(--orange); color: var(--orange); }
.step-pip.completed .pip-num { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--black); }
.pip-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); transition: color 0.3s; white-space: nowrap; }
.step-pip.active .pip-label { color: var(--orange); }
.step-pip.completed .pip-label { color: var(--orange); }

/* ── FORM FIELDS (quote, orders) ── */
.field-group { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 6px; }
label .req { color: var(--orange); margin-left: 2px; }
label .optional { font-weight: 400; color: var(--gray); text-transform: none; letter-spacing: 0; font-size: 0.75rem; margin-left: 4px; }

/* ── FORM BUTTONS (quote, orders) ── */
.btn-next, .btn-back, .btn-submit { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 28px; border-radius: 2px; border: none; cursor: pointer; transition: all 0.15s; }
.btn-next, .btn-submit { background: var(--orange); color: var(--black); }
.btn-next:hover, .btn-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-back { background: transparent; color: var(--gray-light); border: 2px solid var(--black-border); }
.btn-back:hover { border-color: var(--gray); color: var(--text-heading); }

/* ── INTERIOR PAGE HERO ── */
.hero { background: var(--black-mid); padding: 80px 40px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 85% 50%, rgba(223,111,37,0.1) 0%, transparent 65%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: var(--orange); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 20px; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 6vw, 5rem); color: var(--text-heading); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; }
.hero-sub { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 24px 0 0; line-height: 1.7; }

/* ── SECTION LAYOUT ── */
section { padding: 72px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-eyebrow .eline { width: 28px; height: 2px; background: var(--orange); }
.section-eyebrow span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text-heading); text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; }
.section-body { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }

/* ── CTA BAND ── */
.cta-band { background: var(--orange); padding: 72px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: url('/images/sandbag-wall-transp-1.jpg'); background-size: cover; background-position: center; opacity: 0.4; mix-blend-mode: multiply; }
.cta-inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--black); text-transform: uppercase; margin-bottom: 12px; }
.cta-band p { font-size: 1.05rem; color: rgba(0,0,0,0.7); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── HERO STATS (interior pages) ── */
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; padding-top: 36px; border-top: 1px solid var(--black-border); margin-top: 36px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--orange); line-height: 1; }
.stat-label { font-size: 0.76rem; color: var(--gray); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 4px; }

/* ── FAQ ACCORDION ── */
.faq-item { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 2px; margin-bottom: 6px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-heading); cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; transition: color 0.15s; }
.faq-q:hover { color: var(--orange); }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--orange); transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 14px 20px 16px; font-size: 0.93rem; color: var(--gray); line-height: 1.65; border-top: 1px solid var(--black-border); }
.faq-item.open .faq-a { display: block; }

/* ── FORM CONTAINER ── */
.form-container { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 2px; overflow: hidden; }
.form-step { display: none; padding: 36px; animation: fadeIn 0.3s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.form-step-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--black-border); }
.form-step-header h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--text-heading); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.form-step-header p { font-size: 0.9rem; color: var(--gray); line-height: 1.55; }

/* ── FORM INPUTS ── */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], select, textarea { width: 100%; background: var(--black-mid); border: 1px solid var(--black-border); border-radius: 2px; color: var(--text); font-family: 'Barlow', sans-serif; font-size: 0.95rem; padding: 10px 14px; transition: border-color 0.15s; appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); }
input::placeholder, textarea::placeholder { color: var(--gray); }
input.error, select.error { border-color: var(--error); }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A0A0A0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: var(--black-mid); padding-right: 36px; }
textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.field-error { font-size: 0.78rem; color: var(--error); margin-top: 5px; display: none; }
.field-error.visible { display: block; }

/* ── RADIO / CHECKBOX ── */
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-group.vertical { flex-direction: column; }
.radio-opt, .check-opt { display: flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--black-mid); border: 1px solid var(--black-border); border-radius: 2px; cursor: pointer; transition: border-color 0.15s, background 0.15s; font-size: 0.88rem; color: var(--gray-light); user-select: none; }
.radio-opt:hover, .check-opt:hover { border-color: var(--gray); color: var(--text-heading); }
.radio-opt input, .check-opt input { display: none; }
.radio-opt.selected, .check-opt.selected { border-color: var(--orange); background: rgba(241,117,0,0.1); color: var(--text-heading); }
.radio-indicator { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--black-border); flex-shrink: 0; transition: all 0.15s; }
.radio-opt.selected .radio-indicator { border-color: var(--orange); background: var(--orange); }
.check-indicator { width: 14px; height: 14px; border-radius: 2px; border: 2px solid var(--black-border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all 0.15s; }
.check-opt.selected .check-indicator { background: var(--orange); border-color: var(--orange); color: var(--black); }
.check-opt.selected .check-indicator::after { content: '✓'; }

/* ── PRODUCT TILES ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.product-tile { border: 1px solid var(--black-border); border-radius: 2px; padding: 12px; cursor: pointer; transition: border-color 0.15s, background 0.15s; background: var(--black-mid); display: flex; align-items: flex-start; gap: 10px; user-select: none; }
.product-tile:hover { border-color: var(--gray); }
.product-tile.selected { border-color: var(--orange); background: rgba(241,117,0,0.08); }
.product-tile-check { width: 16px; height: 16px; border: 2px solid var(--black-border); border-radius: 1px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all 0.15s; }
.product-tile.selected .product-tile-check { background: var(--orange); border-color: var(--orange); color: var(--black); }
.product-tile.selected .product-tile-check::after { content: '✓'; }
.product-tile-info { flex: 1; }
.product-tile-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.2; margin-bottom: 3px; }
.product-tile.selected .product-tile-name { color: var(--text-heading); }
.product-tile-desc { font-size: 0.75rem; color: var(--gray); line-height: 1.35; }
.product-fields { display: none; }
.product-fields.visible { display: block; }
.product-fields-inner { margin-top: 16px; padding: 20px; background: var(--black); border: 1px solid var(--black-border); border-left: 3px solid var(--orange); border-radius: 0 2px 2px 0; }
.product-fields-inner h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.88rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }

/* ── NOTICES ── */
.notice { padding: 12px 16px; border-radius: 2px; font-size: 0.85rem; line-height: 1.55; margin-bottom: 16px; }
.notice-warning { background: rgba(241,117,0,0.1); border: 1px solid rgba(241,117,0,0.3); color: var(--gray-light); }
.notice-warning strong { color: var(--orange); }
.notice-info { background: rgba(255,255,255,0.04); border: 1px solid var(--black-border); color: var(--gray); }
.notice-error { background: rgba(224,82,82,0.1); border: 1px solid rgba(224,82,82,0.3); color: var(--gray-light); display: none; }
.notice-error.visible { display: block; }
.notice-error strong { color: var(--error); }

/* ── FORM NAV ── */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--black-border); gap: 16px; }
.step-counter { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }

/* ── FORM SUCCESS ── */
.form-success { display: none; padding: 56px 36px; text-align: center; }
.success-icon { width: 64px; height: 64px; background: rgba(76,175,80,0.15); border: 2px solid var(--success); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 24px; }
.form-success h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--text-heading); text-transform: uppercase; margin-bottom: 12px; }
.form-success p { color: var(--gray); font-size: 0.95rem; max-width: 400px; margin: 0 auto 24px; line-height: 1.65; }

/* ── SIDEBAR CARD ── */
.sidebar-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: 2px; padding: 24px; margin-bottom: 16px; }
.sidebar-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--black-border); }
.sidebar-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; color: var(--gray-light); line-height: 1.45; }
.sidebar-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.sidebar-phone { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--orange); text-decoration: none; letter-spacing: 0.02em; margin-top: 10px; }

/* ── RESPONSIVE: HERO / SECTION / CTA ── */
@media (max-width: 640px) {
  section { padding: 52px 20px; }
  .hero { padding: 52px 20px 64px; }
  .cta-band { padding: 56px 20px; }
}
