/* ═══════════════════════════════════════════
   HOME PAGE STYLES — stubease.com
   Colors: #FE5000 (Pantone 021C) | #1a2744 (Navy)
═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55) saturate(0.7);
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.50) saturate(0.65);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 39, 68, 0.85) 0%,
    rgba(26, 39, 68, 0.5) 60%,
    rgba(254, 80, 0, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(254, 80, 0, 0.2);
  border: 1px solid #FE5000;
  color: #FE5000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #FE5000;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── TRUST BAND ── */
.trust-band {
  background: var(--color-navy, #1a2744);
  border-bottom: 1px solid rgba(254, 80, 0, 0.2);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 24px;
  white-space: nowrap;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: #FE5000;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── ROI CALCULATOR ── */
.roi-section {
  background: var(--color-bg, #f7f6f2);
  padding: 96px 0;
}
.roi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg);
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(26,39,68,0.12);
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid rgba(26,39,68,0.08);
}
.roi-inputs,
.roi-results {
  padding: 48px;
}
.roi-inputs {
  background: var(--color-bg);
  border-right: 1px solid rgba(26,39,68,0.08);
}
.roi-results {
  background: var(--color-surface);
}
.roi-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.roi-field {
  margin-bottom: 24px;
}
.roi-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.roi-input-wrap input,
.roi-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(26,39,68,0.15);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.roi-input-wrap input:focus,
.roi-field select:focus {
  outline: none;
  border-color: #FE5000;
}
.roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.roi-slider-wrap input[type="range"] {
  flex: 1;
  accent-color: #FE5000;
  height: 6px;
  cursor: pointer;
}
.roi-slider-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FE5000;
  min-width: 48px;
  text-align: right;
}
.roi-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: rgba(26,39,68,0.12);
  border-radius: 50%;
  font-size: 0.68rem;
  color: var(--color-text);
  cursor: help;
  margin-left: 4px;
}
.roi-calc-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px;
}
.roi-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.roi-result-card {
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
.roi-danger {
  background: rgba(161, 44, 44, 0.06);
  border: 1.5px solid rgba(161, 44, 44, 0.25);
}
.roi-safe {
  background: rgba(26, 39, 68, 0.04);
  border: 1.5px solid rgba(26, 39, 68, 0.2);
}
.roi-result-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.roi-result-label small {
  display: block;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.roi-result-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--color-text);
}
.roi-danger .roi-result-val { color: #a12c2c; }
.roi-savings-banner {
  background: var(--color-navy, #1a2744);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
}
[data-theme="dark"] .roi-savings-banner {
  background: linear-gradient(135deg, #1a2744 0%, #0d1627 100%);
}
.roi-savings-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.roi-savings-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #FE5000;
  line-height: 1;
  margin-bottom: 8px;
}
.roi-savings-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.roi-savings-sub strong { color: #fff; }
.roi-breakdown {
  margin-bottom: 24px;
}
.roi-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,39,68,0.08);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.roi-breakdown-row span:last-child {
  font-weight: 600;
  color: var(--color-text);
}
.roi-footnote {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.roi-cta-row {
  display: flex;
  gap: 12px;
}
.roi-cta-row .btn { flex: 1; text-align: center; }

/* ── BEFORE / AFTER ── */
.before-after-section {
  padding: 96px 0;
  background: var(--color-navy, #1a2744);
}
.before-after-section .section-label { color: rgba(255,255,255,0.5); }
.before-after-section .section-title { color: #fff; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.ba-panel {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  margin: 20px 20px 0;
  border-radius: 4px;
}
.ba-badge-danger {
  background: rgba(161,44,44,0.2);
  color: #e07070;
  border: 1px solid rgba(161,44,44,0.4);
}
.ba-badge-safe {
  background: rgba(254,80,0,0.2);
  color: #FE5000;
  border: 1px solid rgba(254,80,0,0.4);
}
.ba-panel img,
.ba-video-wrap video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ba-video-wrap {
  overflow: hidden;
}
.ba-caption {
  padding: 24px;
}
.ba-caption h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ba-caption ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-caption ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.ba-caption ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FE5000;
  font-size: 0.75rem;
}

/* ── 5-STEP INSTALL ── */
.install-section {
  padding: 96px 0;
  background: var(--color-surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
/* 5th card spans a special row */
.steps-grid .step-card:nth-child(4),
.steps-grid .step-card:nth-child(5) {
  grid-column: span 1;
}
/* Make last 2 center in a row of 3 — use subgrid trick */
.steps-grid {
  grid-template-rows: auto auto;
}
.step-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.step-card:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }

.step-card {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid rgba(26,39,68,0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,39,68,0.1);
}
.step-card-highlight {
  background: var(--color-navy, #1a2744);
  border-color: #FE5000;
  box-shadow: 0 4px 24px rgba(254,80,0,0.15);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(26,39,68,0.1);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-card-highlight .step-num {
  color: rgba(254,80,0,0.3);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.step-card-highlight .step-title { color: #fff; }
.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.step-card-highlight p { color: rgba(255,255,255,0.78); }
.step-badge {
  display: inline-block;
  margin-top: 16px;
  background: #FE5000;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.install-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

/* ── HAZARD STATS ── */
.hazard-section {
  padding: 96px 0;
  background: var(--color-bg);
}
[data-theme="dark"] .hazard-section {
  background: #0d1627;
}
.text-orange-label { color: #FE5000; }
.section-title-light {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 16px;
}
[data-theme="dark"] .section-title-light {
  color: #fff;
}
.hazard-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  margin-bottom: 64px;
}
.hazard-stat-card {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(254,80,0,0.25);
  border-radius: 10px;
  padding: 40px 32px;
}
[data-theme="dark"] .hazard-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(254,80,0,0.15);
}
.hazard-stat-icon {
  margin-bottom: 20px;
}
.hazard-stat-icon svg {
  width: 48px;
  height: 48px;
}
.hazard-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FE5000;
  line-height: 1;
  margin-bottom: 16px;
}
.hazard-stat-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted, #4a4a4a);
  line-height: 1.7;
}
[data-theme="dark"] .hazard-stat-desc {
  color: rgba(255,255,255,0.72);
}
.hazard-quote {
  border-left: 4px solid #FE5000;
  padding: 24px 32px;
  background: rgba(0,0,0,0.03);
  border-radius: 0 8px 8px 0;
}
[data-theme="dark"] .hazard-quote {
  background: rgba(255,255,255,0.03);
}
.hazard-quote blockquote {
  font-size: 1.1rem;
  color: var(--color-text, #1a2744);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 12px 0;
}
[data-theme="dark"] .hazard-quote blockquote {
  color: rgba(255,255,255,0.88);
}
.hazard-quote cite {
  font-size: 0.82rem;
  color: var(--color-text-muted, #4a4a4a);
  font-style: normal;
}
[data-theme="dark"] .hazard-quote cite {
  color: rgba(255,255,255,0.5);
}

/* ── PRODUCT FAMILY ── */
.products-section {
  padding: 96px 0;
  background: var(--color-bg);
}
.product-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.product-family-card {
  border: 1px solid rgba(26,39,68,0.1);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.product-family-card:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.1);
}
.product-family-card-future {
  border-style: dashed;
  border-color: rgba(254,80,0,0.3);
  background: rgba(254,80,0,0.01);
}
.product-family-img {
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f2ee;
}
.product-family-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 12px;
}
.product-family-img-placeholder {
  background: var(--color-surface);
}

/* Kit photo needs navy bg so silver Stand-EASE support reads in both themes */
.product-family-img--navy {
  background: #1a2744;
}
[data-theme="light"] .product-family-img--navy {
  background: #1a2744;
}
[data-theme="dark"] .product-family-img-placeholder {
  background: #0d1627;
}
.product-family-img-placeholder svg {
  width: 100%;
  height: 100%;
}
.product-family-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-family-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FE5000;
  background: rgba(254,80,0,0.08);
  border: 1px solid rgba(254,80,0,0.2);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.product-family-badge-future {
  color: var(--color-text-muted);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.15);
}
.product-family-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.future-tag {
  font-size: 0.75rem;
  color: #FE5000;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.product-family-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-family-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-family-specs li {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-left: 16px;
  position: relative;
}
.product-family-specs li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #FE5000;
  font-weight: 700;
}

/* ── TRADES ── */
.trades-section {
  padding: 96px 0;
  background: var(--color-surface);
}
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.trade-card {
  background: var(--color-bg);
  border: 1px solid rgba(26,39,68,0.08);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,39,68,0.09);
}
.trade-icon {
  margin: 0 auto 20px;
  width: 56px;
  height: 56px;
}
.trade-icon svg {
  width: 56px;
  height: 56px;
}
.trade-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.trade-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #FE5000 0%, #cc3f00 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cta-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-ghost-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ── SITE FOOTER ── */
.site-footer {
  background: #0d1627;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand svg {
  height: 36px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-patent {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-nav-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 16px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col a,
.footer-nav-col span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-nav-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-inner span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .hazard-stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-family-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .roi-card { grid-template-columns: 1fr; }
  .roi-inputs { border-right: none; border-bottom: 1px solid rgba(26,39,68,0.08); }
  .ba-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-card:nth-child(4) { grid-column: auto; grid-row: auto; }
  .step-card:nth-child(5) { grid-column: auto; grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 28px; }
  .trust-inner { gap: 4px; }
  .trust-divider { display: none; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .roi-result-grid { grid-template-columns: 1fr; }
  .roi-cta-row { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:nth-child(5) { grid-column: 1; }
  .trades-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}


/* ═══════════════════════════════════════════
   VOCATION SELECTOR SECTION
═══════════════════════════════════════════ */

.vocation-section {
  padding: 5rem 0 4rem;
  background: var(--color-surface, #F9F8F5);
  border-top: 1px solid var(--color-border, #D4D1CA);
}

.vocation-intro {
  font-size: 1.125rem;
  color: var(--color-text-muted, #7A7974);
  margin: 0.75rem 0 2rem;
  max-width: 480px;
}

/* Dropdown row */
.vocation-selector-wrap {
  margin-bottom: 2.5rem;
}

.vocation-dropdown-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vocation-iam-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text, #28251D);
  white-space: nowrap;
}

.vocation-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.vocation-dropdown {
  appearance: none;
  -webkit-appearance: none;
  background: var(--color-bg);
  border: 2px solid #FE5000;
  border-radius: 6px;
  padding: 0.6rem 3rem 0.6rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FE5000;
  cursor: pointer;
  min-width: 340px;
  line-height: 1.2;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vocation-dropdown:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(254, 80, 0, 0.25);
}

.vocation-dropdown:hover {
  border-color: #c93d00;
}

.vocation-chevron {
  position: absolute;
  right: 0.9rem;
  width: 20px;
  height: 20px;
  color: #FE5000;
  pointer-events: none;
  flex-shrink: 0;
}

/* Panel system */
.vocation-panels {
  position: relative;
}

.vocation-panel {
  display: none;
  animation: vocFadeIn 0.3s ease;
}

.vocation-panel.active {
  display: block;
}

@keyframes vocFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vocation-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--color-bg);
  border-radius: 12px;
  border: 1px solid var(--color-border, #D4D1CA);
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Left col */
.vocation-trade-badge {
  display: inline-block;
  background: rgba(254, 80, 0, 0.1);
  color: #FE5000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.vocation-panel-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--color-text, #28251D);
  margin: 0 0 1rem;
}

.vocation-panel-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted, #7A7974);
  margin: 0 0 1.75rem;
}

.vocation-cta {
  display: inline-block;
}

/* Right col — benefits */
.vocation-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vocation-benefit {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.vocation-benefit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.vb-title {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text, #28251D);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.vb-body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted, #7A7974);
}

/* NEC bar */
.vocation-nec-bar {
  margin-top: 1.25rem;
  padding: 0.875rem 1.25rem;
  background: #28251D;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.nec-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.nec-text strong {
  color: #FE5000;
}

/* Responsive */
@media (max-width: 900px) {
  .vocation-panel-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }

  .vocation-dropdown {
    min-width: 260px;
    font-size: 1.35rem;
  }

  .vocation-iam-label {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .vocation-dropdown-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .vocation-dropdown {
    min-width: 100%;
    font-size: 1.125rem;
  }

  .vocation-iam-label {
    font-size: 1.125rem;
  }

  .vocation-panel-headline {
    font-size: 1.5rem;
  }
}


/* ═══════════════════════════════════════════
   BEFORE / AFTER DRAG SLIDER
═══════════════════════════════════════════ */

.before-after-section {
  padding: 5rem 0 3rem;
  background: #1a1814;
}

.before-after-section .section-label {
  color: rgba(255,255,255,0.5);
}

.before-after-section .section-title {
  color: #fff;
}

.ba-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin: 0.5rem 0 2.5rem;
  max-width: 640px;
  line-height: 1.65;
}

/* Slider wrapper */
.ba-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: #000;
}

/* Both images fill the container */
.ba-img-after,
.ba-img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-img-after img,
.ba-img-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Before panel: clipped to left portion */
.ba-img-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s; /* updated via JS, no transition needed */
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  pointer-events: none;
}

.ba-label-before {
  left: 1.25rem;
}

.ba-label-after {
  right: 1.25rem;
  align-items: flex-end;
}

.ba-label-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.ba-tag-danger {
  background: rgba(180, 30, 30, 0.9);
  color: #fff;
}

.ba-tag-safe {
  background: rgba(254, 80, 0, 0.9);
  color: #fff;
}

.ba-label-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  padding: 0 0.25rem;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  z-index: 10;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-handle-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* Captions below */
.ba-captions-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 1rem;
}

.ba-cap-before,
.ba-cap-after {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.ba-cap-before strong,
.ba-cap-after strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.ba-cap-before ul,
.ba-cap-after ul {
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.65);
}

.ba-cap-before li,
.ba-cap-after li {
  margin-bottom: 0.3rem;
}

.ba-cap-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .ba-slider-wrap {
    aspect-ratio: 4/3;
  }

  .ba-captions-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ba-cap-divider {
    display: none;
  }

  .ba-cap-before strong::before {
    content: '✕ ';
    color: #ef4444;
  }

  .ba-cap-after strong::before {
    content: '✓ ';
    color: #FE5000;
  }
}


/* ═══════════════════════════════════════════
   PROOF SECTION — TRIPTYCH WITH HERO VIDEO
═══════════════════════════════════════════ */

.proof-section {
  padding: 5rem 0 4rem;
  background: #141210;
  color: #fff;
}
[data-theme="light"] .proof-section {
  background: #1a2744;
}

.proof-section .section-label {
  color: rgba(255,255,255,0.45);
}

.proof-section .section-title {
  color: #fff;
}

.proof-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  line-height: 1.7;
  margin: 0.75rem 0 3rem;
}

/* Triptych grid */
.proof-triptych {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto 3rem;
  align-items: stretch;
}

/* Shared panel */
.proof-panel {
  display: flex;
  flex-direction: column;
}

/* Photo panels */
.proof-panel-img {
  flex: 1;
  overflow: hidden;
  min-height: 320px;
}

.proof-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

.proof-panel:hover .proof-panel-img img {
  filter: brightness(1);
}

.proof-panel-before .proof-panel-img {
  border-radius: 12px 0 0 0;
}

.proof-panel-after .proof-panel-img {
  border-radius: 0 12px 0 0;
}

/* Caption row */
.proof-panel-caption {
  padding: 1.25rem 1.5rem 1.5rem;
  background: rgba(0,0,0,0.35);
}

.proof-caption-center {
  background: rgba(0,0,0,0.45);
}

.proof-panel-before .proof-panel-caption {
  border-radius: 0 0 0 12px;
}

.proof-panel-after .proof-panel-caption {
  border-radius: 0 0 12px 0;
}

.proof-panel-caption p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0.4rem 0 0;
}

/* Badges */
.proof-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.proof-badge-danger { background: rgba(180,30,30,0.85); color: #fff; }
.proof-badge-safe   { background: rgba(254,80,0,0.85);  color: #fff; }
.proof-badge-orange { background: #FE5000; color: #fff; }

/* CENTER VIDEO PANEL */
.proof-panel-video {
  position: relative;
  z-index: 2;
  transform: translateY(-16px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  border-radius: 12px;
  overflow: hidden;
}

.proof-video-wrap {
  position: relative;
  flex: 1;
  min-height: 340px;
  background: #1a1208;
  overflow: hidden;
}

.proof-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text on video */
.proof-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  pointer-events: none;
  cursor: default;
  transition: opacity 0.3s ease;
}

.proof-video-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #FE5000;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.proof-video-moment {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.9);
  line-height: 1.25;
}

.proof-video-pop {
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.proof-video-pop em {
  color: #FE5000;
  font-style: normal;
}

/* Bottom NEC row */
.proof-nec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-triptych {
    grid-template-columns: 1fr;
    gap: 1px;
    background: #0a0908;
  }

  .proof-panel-video {
    transform: none;
    box-shadow: none;
    border-radius: 0;
    order: -1;
  }

  .proof-panel-before .proof-panel-img,
  .proof-panel-after .proof-panel-img {
    border-radius: 0;
    min-height: 220px;
  }

  .proof-panel-before .proof-panel-caption { border-radius: 0; }
  .proof-panel-after .proof-panel-caption  { border-radius: 0; }

  .proof-video-wrap {
    min-height: 260px;
  }

  .proof-nec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ── PROOF VIDEO: Click-to-play ── */
.proof-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto; /* button is the ONLY interactive element on the video */
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.proof-play-btn:hover {
  transform: scale(1.10);
}
.proof-play-btn svg { width: 72px; height: 72px; }

/* Hide overlay once playing */
.proof-video-wrap.is-playing .proof-video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Video element is NOT directly interactive — play button is the only trigger */
#proof-video { cursor: default; pointer-events: none; }

/* ══════════════════════════════════════════════════════════════
   NEC 300.15(F) COMPLIANCE BAR
══════════════════════════════════════════════════════════════ */
.nec-compliance-bar {
  background: #FE5000;
  padding: 1.25rem 0;
}
.nec-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nec-code-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: rgba(0,0,0,0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  min-width: 120px;
  text-align: center;
}
.nec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.nec-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}
.nec-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.nec-statement {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  min-width: 200px;
}
.nec-badges {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
}
.nec-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2rem;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media(max-width:768px){
  .nec-bar-divider--hide-mobile { display: none; }
  .nec-badges { flex-direction: row; flex-wrap: wrap; }
  .nec-code-block { min-width: unset; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT LEGEND — THE COMPLETE SYSTEM
══════════════════════════════════════════════════════════════ */
.product-legend {
  background: var(--color-bg, #f7f6f2);
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-border, #d4d1ca);
}
.legend-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.legend-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FE5000;
  margin-bottom: 0.5rem;
}
.legend-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text, #0d1520);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.legend-sub {
  font-size: 1rem;
  color: var(--color-text-muted, #5a6070);
}
.legend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media(max-width:900px){ .legend-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px){ .legend-grid { grid-template-columns: 1fr; } }

.legend-card {
  background: var(--color-surface, #fff);
  border: 1.5px solid var(--color-border, #d4d1ca);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.legend-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.legend-card--dev {
  border-style: dashed;
  opacity: 0.85;
}
.legend-card-img {
  background: var(--color-navy, #1a2744);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 140px;
}
.legend-card-img img {
  max-height: 120px;
  max-width: 100%;
  object-fit: contain;
}
.legend-card-img--stand svg,
.legend-card-img--elbow svg,
.legend-card-img--riser svg {
  max-height: 120px;
  width: auto;
}
.legend-card-body {
  padding: 1rem 1.125rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.legend-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text, #0d1520);
  line-height: 1.1;
}
.legend-card-name em { font-style: italic; color: #FE5000; }

/* Secret Sauce tag */
.secret-sauce-tag {
  display: inline-flex;
  align-items: center;
}
.ss-label {
  background: #FE5000;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

.legend-card-dev-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text-muted, #5a6070);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-border, #d4d1ca);
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 2rem;
  width: fit-content;
}
.legend-card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted, #5a6070);
  flex: 1;
}
.legend-card-spec {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FE5000;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

/* Dark mode */
[data-theme="dark"] .product-legend { background: var(--color-bg, #0d1118); }
[data-theme="dark"] .legend-title { color: var(--color-text, #dce3ed); }
[data-theme="dark"] .legend-card {
  background: var(--color-surface, #121820);
  border-color: var(--color-border, #2a3548);
}
[data-theme="dark"] .legend-card-name { color: var(--color-text, #dce3ed); }
[data-theme="dark"] .legend-card-dev-tag { border-color: var(--color-border, #2a3548); }

/* ══════════════════════════════════════════════════════════════
   BEFORE / AFTER COMPARISON SLIDER
══════════════════════════════════════════════════════════════ */
.compare-section {
  background: #0d1b2e;
  padding: 4rem 0;
}
.compare-container { max-width: 1100px; }
.compare-header {
  text-align: center;
  margin-bottom: 2rem;
}
.compare-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
.compare-header .section-label { color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }

.compare-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  border: 2px solid rgba(255,255,255,0.1);
}
@media(max-width:640px){ .compare-wrap { aspect-ratio: 4/3; } }

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.compare-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: none;
}
.compare-before-wrap .compare-img--before {
  width: auto;
  min-width: 100%;
  max-width: none;
}

/* Handle */
.compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.compare-handle-line {
  flex: 1;
  width: 3px;
  background: #FE5000;
  box-shadow: 0 0 12px rgba(254,80,0,0.6);
}
.compare-handle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FE5000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(254,80,0,0.5);
  z-index: 11;
}
.compare-handle-btn svg { width: 24px; height: 24px; }

/* Labels */
.compare-label {
  position: absolute;
  top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  pointer-events: none;
  z-index: 5;
}
.compare-label--before {
  left: 1rem;
  background: rgba(180,30,30,0.85);
  color: #fff;
}
.compare-label--after {
  right: 1rem;
  background: rgba(30,120,60,0.85);
  color: #fff;
}

/* Captions */
.compare-captions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.compare-caption-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  max-width: 45%;
}
.compare-caption-item--right {
  text-align: right;
  flex-direction: row;
  justify-content: flex-end;
}
.compare-caption-badge {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-caption-badge--problem { background: rgba(180,30,30,0.8); color: #fff; }
.compare-caption-badge--result  { background: rgba(30,120,60,0.8); color: #fff; }

/* ══════════════════════════════════════════
   COST TEASER STRIP
   ══════════════════════════════════════════ */
.cost-teaser-strip {
  background: var(--color-navy, #0d1520);
  padding: 2.5rem 0;
  border-top: 3px solid var(--orange, #FE5000);
  border-bottom: 3px solid var(--orange, #FE5000);
}
[data-theme="light"] .cost-teaser-strip {
  background: var(--color-navy, #0d1520);
}
.cost-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cost-teaser-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.cost-teaser-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--orange, #FE5000);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.cost-teaser-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.cost-teaser-divider {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  flex-shrink: 0;
}
.cost-teaser-stat-cta {
  align-items: flex-start;
}
.cost-teaser-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--orange, #FE5000);
  color: white;
  padding: 1rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  gap: 0.25rem;
}
.cost-teaser-cta-btn:hover {
  background: #d94300;
  transform: translateY(-2px);
}
.cost-teaser-cta-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.cost-teaser-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  opacity: 0.85;
  letter-spacing: 0.03em;
}
/* Count-up animation state */
.cost-teaser-num.counting { color: #fff; }
@media (max-width: 600px) {
  .cost-teaser-inner { flex-direction: column; gap: 1.5rem; }
  .cost-teaser-divider { transform: rotate(90deg); font-size: 1.5rem; }
  .cost-teaser-stat-cta { align-items: center; }
  .cost-teaser-cta-btn { align-items: center; }
}

/* ══════════════════════════════════════════
   ROI EMAIL GATE
   ══════════════════════════════════════════ */
.roi-gate {
  grid-column: 1 / -1;
  padding: 2.5rem;
  background: var(--color-surface, #fff);
  border: 2px solid var(--orange, #FE5000);
  border-radius: 10px;
  animation: gateSlideIn 0.4s ease forwards;
}
@keyframes gateSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.roi-gate-inner { max-width: 680px; margin: 0 auto; }
.roi-gate-icon { margin-bottom: 1rem; }
.roi-gate-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text, #0d1520);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.roi-gate-sub {
  font-family: 'Barlow', sans-serif;
  color: var(--color-text-muted, #5a6070);
  font-size: 0.95rem;
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.roi-gate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.roi-gate-field { display: flex; flex-direction: column; gap: 0.35rem; }
.roi-gate-field label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted, #5a6070);
}
.roi-gate-field label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}
.roi-gate-field input {
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--color-border, #d4d1ca);
  border-radius: 5px;
  background: var(--color-bg, #f7f6f2);
  color: var(--color-text, #0d1520);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.roi-gate-field input:focus {
  outline: none;
  border-color: var(--orange, #FE5000);
  background: var(--color-surface, #fff);
}
.roi-gate-field input.invalid { border-color: #c0392b; }
.roi-gate-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.roi-gate-submit { width: 100%; padding: 0.9rem; font-size: 1rem; letter-spacing: 0.04em; }
.roi-gate-submit.loading { opacity: 0.7; pointer-events: none; }
.roi-gate-privacy {
  font-size: 0.75rem;
  color: var(--color-text-faint, #9aa0ac);
  text-align: center;
  margin: 0;
  line-height: 1.4;
}
.roi-gate-error {
  background: var(--color-surface);
  border: 1px solid #e74c3c;
  color: #c0392b;
  padding: 0.65rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .roi-gate { padding: 1.5rem; }
  .roi-gate-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   SPLIT PANEL SECTION — Problem (photo) | Moment (video)
   ═══════════════════════════════════════════════════════ */

.split-panel-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #0d1118;
}

.split-panel {
  position: relative;
  display: flex;
  flex-direction: column;
}

.split-panel-media {
  flex: 1;
  overflow: hidden;
  min-height: 380px;
  position: relative;
}

.split-panel-media img,
.split-panel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Problem side — desaturated + red tint overlay */
.split-panel--problem .split-panel-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(120, 20, 10, 0.18) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.split-panel--problem .split-panel-media img {
  filter: saturate(0.7) brightness(0.85);
}

/* Solution side — video glow */
.split-panel--solution .split-panel-media {
  border-left: 3px solid #FE5000;
}

/* WATCH IT HAPPEN badge on video */
.split-video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #FE5000;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  z-index: 2;
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* Captions */
.split-panel-caption {
  padding: 1.25rem 1.5rem 1.5rem;
  background: #131820;
}

.split-panel-caption--solution {
  background: #1a1006;
  border-left: 3px solid #FE5000;
}

.split-panel-caption p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0.4rem 0 0;
}

/* Badges */
.split-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.split-badge--danger   { background: rgba(180, 30, 20, 0.9); color: #fff; }
.split-badge--solution { background: #FE5000; color: #fff; }
.split-badge--result   { background: rgba(45, 122, 58, 0.9); color: #fff; }

/* Mobile — stack vertically */
@media (max-width: 768px) {
  .split-panel-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-panel--solution .split-panel-media {
    border-left: none;
    border-top: 3px solid #FE5000;
  }
  .split-panel-caption--solution {
    border-left: none;
    border-top: 3px solid #FE5000;
  }
  .split-panel-media {
    min-height: 260px;
  }
}

/* ═══════════════════════════════════════════════════════
   FLOOR RESULT STRIP — full-width photo with overlay text
   ═══════════════════════════════════════════════════════ */

.floor-result-section {
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.floor-result-inner {
  position: relative;
}

.floor-result-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.55);
}

.floor-result-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 5vw;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.floor-result-content {
  max-width: 480px;
  text-align: right;
}

.floor-result-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  margin: 0.5rem 0 0.75rem;
}

.floor-result-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .floor-result-overlay {
    justify-content: center;
    padding: 2rem 1.5rem;
  }
  .floor-result-content {
    text-align: center;
  }
  .floor-result-inner img {
    height: 360px;
  }
}

/* ── ONE-STEP FIELD INSTALL SECTION ── */
.steps-grid--two-col {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .steps-grid--two-col { grid-template-columns: 1fr; }
}

.steps-grid--extraction {
  display: grid;
  grid-template-columns: 1fr;
}

.step-card--shop {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.step-card--field {
  /* inherits step-card-highlight — orange left border, slightly elevated */
}
.step-card--extract {
  background: rgba(254,80,0,0.06);
  border: 1px solid rgba(254,80,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-phase-label {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7974);
  margin-bottom: 0.5rem;
}
.step-phase-label--field {
  color: #FE5000;
}
.step-phase-label--extract {
  color: #FE5000;
  font-size: 0.6rem;
}

.step-phase-icon {
  width: 40px;
  height: 40px;
  color: var(--color-text-muted, #7a7974);
  margin-bottom: 0.75rem;
}
.step-phase-icon svg { width: 100%; height: 100%; }

.step-badge--shop {
  background: rgba(255,255,255,0.07);
  color: var(--color-text-muted, #9a9890);
  border: 1px solid rgba(255,255,255,0.12);
}
.step-badge--extract {
  background: rgba(254,80,0,0.15);
  color: #FE5000;
  border: 1px solid rgba(254,80,0,0.3);
}

.step-num--extract {
  font-size: 2.5rem;
  color: #FE5000;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════
   PRODUCTS ORANGE HEADER BAND
   ═══════════════════════════════════════════════ */
.products-header-band {
  background: #FE5000;
  width: 100%;
  padding: 4rem 6vw 3.5rem;
  box-sizing: border-box;
}

.products-band-headline {
  font-family: inherit;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.75rem 0;
  max-width: 900px;
}

.products-band-quote {
  font-style: italic;
  color: #fff;
  opacity: 0.92;
}

.products-band-copy {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products-band-copy p {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   EQUATION BAND
   ═══════════════════════════════════════════════ */
.equation-band {
  background: var(--color-navy, #1a2744);
  width: 100%;
  padding: 3rem 4vw;
  box-sizing: border-box;
}

[data-theme="light"] .equation-band {
  background: #1a2744;
}

.equation-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.eq-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 160px;
  max-width: 200px;
  padding: 0 0.5rem;
}

.eq-part.eq-result {
  flex: 1 1 180px;
  max-width: 220px;
}

.eq-img-wrap {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.eq-img-wrap img {
  max-height: 130px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

.eq-result .eq-img-wrap img {
  max-height: 150px;
  filter: drop-shadow(0 3px 12px rgba(254,80,0,0.4));
}

.eq-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.eq-result .eq-label {
  color: #FE5000;
  font-size: 1.05rem;
}

.eq-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

.eq-operator {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  padding: 0 0.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 2.5rem; /* optical alignment with images */
}

.eq-equals {
  color: #FE5000;
  opacity: 0.85;
}

/* product card grid stays below */
.products-section .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Responsive */
@media (max-width: 700px) {
  .equation-inner {
    gap: 1rem;
  }
  .eq-operator {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
  .eq-part, .eq-part.eq-result {
    flex: 1 1 120px;
    max-width: 140px;
  }
  .eq-img-wrap {
    height: 90px;
  }
  .eq-img-wrap img, .eq-result .eq-img-wrap img {
    max-height: 80px;
  }
  .products-header-band {
    padding: 2.5rem 1.25rem 2rem;
  }
}

/* ═══════════════════════════════════════════════
   PRODUCTS BAND — TWO-COLUMN BODY
   ═══════════════════════════════════════════════ */
.products-band-body {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.products-band-copy {
  flex: 3;
  min-width: 0;
}

.products-band-figure {
  flex: 2;
  min-width: 0;
  max-width: 380px;
  flex-shrink: 0;
}

.products-band-img-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem 1rem 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.products-band-img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.products-band-caption {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.45;
  margin: 0.6rem 0 0;
  font-style: italic;
}

@media (max-width: 860px) {
  .products-band-body {
    flex-direction: column;
  }
  .products-band-figure {
    max-width: 100%;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   STUB-DOWN CARD — TWO-IMAGE LAYOUT
   ═══════════════════════════════════════════════ */
.stub-down-img-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  padding: 0.75rem;
  background: var(--color-surface);
  height: auto;
}

.stub-down-base-img {
  flex: 1;
  width: 50%;
  height: 200px;
  object-fit: contain;
  background: transparent;
}

.stub-down-context-img {
  flex: 1;
  width: 50%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* ── Stub-Down™ image carousel ─────────────────────────────── */
.sd-carousel {
  position: relative;
  overflow: hidden;
}
.sd-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.sd-slide.sd-slide-active {
  opacity: 1;
  position: relative; /* keeps card height based on first image */
}
/* dot indicators */
.sd-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.sd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26,39,68,0.25);
  transition: background 0.3s;
}
.sd-dot.sd-dot-active {
  background: #FE5000;
}

/* ── Stub-Down™ carousel FIX ───────────────────────────────── */
.sd-carousel {
  position: relative !important;
  height: 240px !important;
}
.sd-slide {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  opacity: 0 !important;
  transition: opacity 0.8s ease-in-out !important;
}
.sd-slide.sd-slide-active {
  opacity: 1 !important;
  position: absolute !important;
}
