/*
  solution-cards.css — Crane Processing "Merchant Paper" card system
  Covers: Roster Panel · Flagged Audit Items · Settlement Confirmed
           Equipment Spec Sheets · Rate Disclosure Schedule
*/


/* ══════════════════════════════════════════════════════════════════
   WHO THIS IS FOR — ROSTER PANEL
   ══════════════════════════════════════════════════════════════════ */

.sol-who {
  padding: calc(2rem + 80px) 1.5rem 2rem;
  background: #EBD8BC;
  border-top: 1px solid rgba(80,50,25,.12);
  border-bottom: 1px solid rgba(80,50,25,.12);
}

.sol-who-inner {
  max-width: 960px;
  margin: 0 auto;
}

.sol-who .section-eyebrow { color: var(--gold, #C7923A); }
.sol-who .section-title   { color: var(--charcoal, #1B1713); margin-bottom: 1.5rem; }

/* Panel container */
.sol-who-panel {
  background: #FDFAF5;
  border: 1px solid rgba(80,50,25,.13);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(28,18,9,.04);
}

/* Panel header strip */
.sol-who-panel-header {
  background: var(--charcoal, #1B1713);
  padding: 0.65rem 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold, #C7923A);
}

/* Rows container */
.sol-who-grid {
  display: flex;
  flex-direction: column;
}

/* Individual row — CSS grid for icon + label/desc alignment without wrappers */
.sol-who-item {
  display: grid;
  grid-template-columns: 1.7rem 32px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.8rem;
  row-gap: 0.1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px dotted rgba(80,50,25,.14);
  border-left: 3px solid transparent;
  /* entrance state */
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity    0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform  0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.18s ease,
    border-left-color 0.18s ease;
}

.sol-who-item:last-child { border-bottom: none; }

@media (hover: hover) and (pointer: fine) {
  .sol-who-item:hover {
    background: rgba(199,146,58,0.05);
    border-left-color: var(--gold, #C7923A);
  }
  .sol-who-item:hover .sol-who-arrow {
    opacity: 0.65;
    transform: translateX(3px);
  }
}

/* Print-in animation: triggered when section gets .visible from scroll-reveal.js */
.sol-who.visible .sol-who-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.10s; }
.sol-who.visible .sol-who-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.165s; }
.sol-who.visible .sol-who-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.23s; }
.sol-who.visible .sol-who-item:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.295s; }

/* Grid cell placements */
.sol-who-rownum {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold, #C7923A);
  letter-spacing: 0.05em;
}

.sol-who-icon {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(199,146,58,.35);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #C7923A);
  flex-shrink: 0;
  margin-bottom: 0;
}

.sol-who-label {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
}

.sol-who-desc {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5C4F3C);
  margin: 0;
}

.sol-who-arrow {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 0.82rem;
  color: var(--muted, #5C4F3C);
  opacity: 0.28;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sol-who-note {
  font-size: 14px;
  color: var(--muted, #5C4F3C);
  text-align: center;
}
.sol-who-note strong { color: var(--charcoal, #1B1713); }


/* ══════════════════════════════════════════════════════════════════
   THE PROBLEM — FLAGGED AUDIT ITEMS
   ══════════════════════════════════════════════════════════════════ */

.sol-problem {
  padding: 2rem 1.5rem;
  background: #17120E;
}

.sol-problem-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sol-problem .section-title,
.sol-proof  .section-title { color: #F4E6D3; }

.sol-problem-sub {
  color: rgba(244,230,211,.62);
  line-height: 1.7;
  margin-top: .75rem;
}

/* Flagged item */
.sol-problem-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  padding: 0.85rem 0.85rem 0.85rem 1.1rem;
  background: rgba(160,56,40,0.045);
  border-bottom: 1px solid rgba(244,230,211,.07);
  /* Stagger entrance */
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-problem-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.sol-problem.visible .sol-problem-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.10s; }
.sol-problem.visible .sol-problem-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.18s; }
.sol-problem.visible .sol-problem-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.26s; }

.sol-problem-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red, #A33828);
  text-transform: uppercase;
}

.sol-problem-title {
  font-size: 17px;
  font-weight: 700;
  color: rgba(244,230,211,.92);
  line-height: 1.4;
}

.sol-problem-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244,230,211,.52);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   HOW CRANE FIXES IT — SETTLEMENT CONFIRMED
   ══════════════════════════════════════════════════════════════════ */

.sol-fix {
  padding: 2rem 1.5rem;
  background: #EBD8BC;
  border-top: 1px solid rgba(80,50,25,.10);
  border-bottom: 1px solid rgba(80,50,25,.10);
}

.sol-fix .section-title  { color: var(--charcoal, #1B1713); }

.sol-fix-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sol-fix-inner .section-title { margin-bottom: 2.5rem; }

/* 2×2 grid */
.sol-fix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}

/* Horizontal stamp card — CSS grid handles layout without HTML wrappers */
.sol-fix-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(80,50,25,.10);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
  .sol-fix-item:hover {
    box-shadow: 0 6px 20px rgba(28,18,9,.07);
  }
  .sol-fix-item:hover .sol-fix-icon {
    background: var(--gold-dark, #9A6A22);
  }
  .sol-fix-item:hover::after {
    opacity: 0.022;
  }
}

/* CONFIRMED watermark — revealed on hover */
.sol-fix-item::after {
  content: 'CONFIRMED';
  position: absolute;
  bottom: 0.55rem;
  right: 0.7rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold, #C7923A);
  opacity: 0;
  letter-spacing: 0.08em;
  pointer-events: none;
  transition: opacity 0.25s ease;
  white-space: nowrap;
  user-select: none;
}

/* Charcoal stamp icon */
.sol-fix-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 44px;
  height: 44px;
  background: var(--charcoal, #1B1713);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: background 0.18s ease;
}

.sol-fix-label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
  line-height: 1.35;
}

.sol-fix-desc {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5C4F3C);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   HARDWARE — EQUIPMENT SPECIFICATION SHEETS
   ══════════════════════════════════════════════════════════════════ */

.sol-hardware {
  padding: 2rem 1.5rem;
  background: #F5F0E8;
  border-top: 1px solid rgba(80,50,25,.08);
}

.sol-hardware-inner   { max-width: 900px; margin: 0 auto; }
.sol-hardware .section-eyebrow { color: var(--gold, #C7923A); }
.sol-hardware .section-title   { color: var(--charcoal, #1B1713); margin-bottom: 0.6rem; }

.sol-hardware-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted, #5C4F3C);
  margin: 0 0 2.5rem;
  max-width: 600px;
}

.sol-hw-grid         { display: grid; grid-template-columns: 1fr 1fr;       gap: 1.5rem;  margin-bottom: 1.5rem; }
.sol-hw-grid--three  { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: 1.25rem; margin-bottom: 1.5rem; }
.sol-hw-grid--single { display: grid; grid-template-columns: 1fr; max-width: 480px; margin-bottom: 1.5rem; }

/* Base card */
.sol-hw-card {
  background: #FDFAF5;
  border: 1px solid rgba(80,50,25,.12);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow:
    0 1px 2px rgba(28,18,9,.05),
    0 4px 16px rgba(28,18,9,.07),
    0 12px 32px rgba(28,18,9,.04);
  position: relative;
  overflow: hidden;
}

/* Dark header band — bleeds to card edges via negative margin */
.sol-hw-card-top {
  margin: -1.75rem -1.75rem 1.5rem;
  padding: 1.35rem 1.5rem 1.2rem;
  background: linear-gradient(155deg, #1C1410 0%, #261B0E 100%);
  border-radius: 7px 7px 0 0;
  position: relative;
  border-bottom: 1px solid rgba(199,146,58,.14);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sol-hw-name-wrap {
  flex: 1;
  min-width: 0;
}

/* Device name in Playfair Display */
.sol-hw-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #EFE0CB;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

/* Tag — catalog label, no pill border */
.sol-hw-tag {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(199,146,58,.9);
  background: rgba(199,146,58,.1);
  border: none;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

/* Gold tag variant — for featured (gold bg) headers */
.sol-hw-tag--gold {
  color: rgba(27,23,19,.7);
  background: rgba(27,23,19,.12);
}

/* Sequence number — typeset catalog entry number */
.sol-hw-seq {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(199,146,58,.22);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

/* Old divider hidden — header strip replaces it */
.sol-hw-rule { display: none; }

/* Spec rows — clean hairline separators, no box or zebra */
.sol-hw-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}

.sol-hw-spec-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.83rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(80,50,25,.07);
  align-items: baseline;
}

.sol-hw-spec-row:last-child  { border-bottom: none; }
.sol-hw-spec-row:nth-child(even) { background: rgba(80,50,25,.025); }
.sol-hw-spec-row + .sol-hw-spec-row { border-top: none; }

.sol-hw-spec-key {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted, #5C4F3C);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 80px;
  opacity: 0.7;
}

.sol-hw-spec-val {
  color: var(--charcoal, #1B1713);
  font-weight: 400;
}

.sol-hw-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted, #5C4F3C);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(80,50,25,.07);
  font-style: italic;
  opacity: 0.8;
}

.sol-hardware-footnote {
  font-size: 14px;
  color: var(--muted, #5C4F3C);
  line-height: 1.65;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* In-section divider labels — "Merchant Statement", "Recommended Equipment" */
.sol-hw-section-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(92,79,60,.8);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sol-hw-section-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Featured card — gold left accent + warmer body */
.sol-hw-card--featured {
  border-left: 3px solid var(--gold, #C7923A);
  background: #FFFCF4;
}
.sol-hw-card--featured .sol-hw-card-top {
  background: linear-gradient(155deg, #9B6618 0%, #C7923A 55%, #D9A84A 100%);
}
.sol-hw-card--featured .sol-hw-name { color: #1B1713; }
.sol-hw-card--featured .sol-hw-tag  { color: rgba(27,23,19,.7); background: rgba(27,23,19,.14); }
.sol-hw-card--featured .sol-hw-seq  { color: rgba(27,23,19,.22); }
.sol-hw-card--review    .sol-hw-seq  { display: none; }
.sol-hw-card--featured .sol-hw-note { border-top-color: rgba(80,50,25,.09); }

/* ── COMPARISON STRIP — thermal receipt ── */
.sol-hw-comparison {
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* The receipt slip itself */
.sol-hw-comp-rows {
  background: #FEFCF8;
  padding: 1rem 1.35rem 1rem;
  border-left: 1px solid rgba(80,50,25,.12);
  border-right: 1px solid rgba(80,50,25,.12);
  border-top: 2px dashed rgba(80,50,25,.45);
  border-bottom: 2px dashed rgba(80,50,25,.45);
  margin-bottom: 1.25rem;
  box-shadow:
    0 1px 3px rgba(28,18,9,.05),
    0 6px 20px rgba(28,18,9,.15),
    0 20px 48px rgba(28,18,9,.08);
}

/* Receipt header — printed label at top of slip */
.sol-hw-comp-rows::before {
  content: 'Processing Statement';
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(80,50,25,.28);
  text-align: center;
  padding-bottom: 0.7rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(80,50,25,.07);
}

.sol-hw-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  gap: 1rem;
}

.sol-hw-comp-row--after {
  border-top: 1px solid rgba(80,50,25,.07);
}

.sol-hw-comp-row--saved {
  border-top: 1px solid rgba(199,146,58,.35);
  margin-top: 0.3rem;
  padding-top: 0.7rem;
  padding-bottom: 0.15rem;
  align-items: center;
}

.sol-hw-comp-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted, #5C4F3C);
  opacity: 0.5;
  flex-shrink: 0;
}

.sol-hw-comp-row--saved .sol-hw-comp-label {
  color: var(--gold, #C7923A);
  opacity: 1;
  font-size: 8px;
}

.sol-hw-comp-amount {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
  white-space: nowrap;
  text-align: right;
}

.sol-hw-comp-row--before .sol-hw-comp-amount {
  text-decoration: line-through;
  opacity: 0.3;
  font-size: 13px;
}

.sol-hw-comp-row--saved .sol-hw-comp-amount {
  color: var(--gold, #C7923A);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sol-hw-comp-unit {
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0;
}

.sol-hw-comp-check {
  display: inline-block;
  font-size: 7.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(199,146,58,.6);
  margin-left: 0.4em;
  font-weight: 700;
  vertical-align: middle;
}

/* Quote as a proper pulled testimonial */
.sol-hw-comp-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted, #5C4F3C);
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(199,146,58,.06);
  border-radius: 2px;
}

.sol-hw-comp-attr {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted, #5C4F3C);
  opacity: 0.75;
  padding-left: 1rem;
}

.sol-hw-comp-attr::before {
  content: '— ';
}

/* ── SPLIT LAYOUT — comparison + single card side by side ── */
.sol-hw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.sol-hw-split .sol-hw-comparison {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.sol-hw-split .sol-hw-grid--single {
  max-width: none;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .sol-hw-split { grid-template-columns: 1fr; }
}

/* Review block card (gas stations) */
.sol-hw-card--review .sol-hw-card-top {
  background: #1D1A11;
}
.sol-hw-card--review .sol-hw-review-block {
  border: none;
  padding: 0;
  background: none;
}


/* ── STATEMENT CARD (replaces thermal receipt) ── */
.sol-statement-card {
  background: #FEFCF8;
  border: 1px solid rgba(80,50,25,.13);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,18,9,.06), 0 6px 24px rgba(28,18,9,.08);
  margin-bottom: 1.25rem;
}

.sol-statement-header {
  background: var(--charcoal, #1B1713);
  padding: 0.55rem 1.25rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(199,146,58,.8);
}

.sol-statement-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 1.25rem 1.25rem 0.75rem;
}

.sol-statement-col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sol-statement-col--after { text-align: right; }

.sol-statement-col-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #5C4F3C);
  opacity: 0.6;
}

.sol-statement-col-proc {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: var(--muted, #5C4F3C);
  opacity: 0.7;
}

.sol-statement-col-amt {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal, #1B1713);
  letter-spacing: -0.02em;
}

.sol-statement-col--before .sol-statement-col-amt {
  color: #B94040;
}

.sol-statement-col--after .sol-statement-col-amt {
  color: #1a6e3c;
}

.sol-statement-col-unit {
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0;
}

.sol-statement-divider {
  font-size: 1.1rem;
  color: var(--gold, #C7923A);
  padding: 0 0.75rem;
  align-self: flex-end;
  padding-bottom: 0.3rem;
  opacity: 0.6;
}

.sol-statement-savings {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid rgba(199,146,58,.2);
  margin: 0 1.25rem;
}

.sol-statement-col--before .sol-statement-col-proc {
  color: rgba(185, 64, 64, 0.55);
  opacity: 1;
}

.sol-statement-col--after .sol-statement-col-proc {
  color: rgba(26, 110, 60, 0.65);
  opacity: 1;
}

.sol-statement-savings-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold, #C7923A);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sol-statement-savings-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted, #5C4F3C);
  letter-spacing: 0.05em;
}

.sol-statement-savings-badge {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold, #C7923A);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: auto;
}

.sol-statement-quote {
  padding: 0.85rem 1.25rem 1rem;
  background: rgba(199,146,58,.05);
  border-top: 1px solid rgba(80,50,25,.07);
}

.sol-statement-quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted, #5C4F3C);
  margin: 0 0 0.35rem;
}

.sol-statement-quote-attr {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #5C4F3C);
  opacity: 0.65;
  font-style: normal;
}
.sol-statement-quote-attr::before { content: '— '; }

@media (max-width: 560px) {
  .sol-statement-cols {
    grid-template-columns: 1fr;
  }
  .sol-statement-col--after { text-align: left; }
  .sol-statement-divider { display: none; }
}


/* ── WHY THIS ONE ── */
.sol-hw-why {
  background: rgba(27,23,19,.04);
  border-top: 1px solid rgba(80,50,25,.09);
  padding: 0.85rem 1.1rem;
  margin-top: 0.25rem;
}

.sol-hw-why-label {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #C7923A);
  margin-bottom: 0.3rem;
}

.sol-hw-why-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted, #5C4F3C);
  margin: 0;
}


/* ── RECOMMENDED STAMP ── */
.sol-hw-rec-stamp {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27,23,19,.45);
  user-select: none;
  pointer-events: none;
}

@media (max-width: 600px) {
  .sol-hw-grid,
  .sol-hw-grid--three { grid-template-columns: 1fr; }
  .sol-hw-grid--single { max-width: 100%; }
}



/* ── HARDWARE SECTION STAGED ENTRANCE ── */

.sol-hardware .section-title {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sol-hardware .section-title.hw-heading-visible {
  opacity: 1;
  transform: translateX(0);
}

.sol-hardware .sol-hw-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sol-hardware .sol-hw-card.hw-card-visible {
  opacity: 1;
  transform: translateY(0);
}


.sol-hardware .sol-hw-spec-row {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sol-hardware .sol-hw-spec-row.hw-row-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ── VIDEO DEMO SLOT ── */

.sol-hw-video-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(80, 50, 25, 0.12);
  box-shadow: 0 8px 32px rgba(28, 18, 9, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.sol-hw-video-wrap.hw-video-visible {
  opacity: 1;
  transform: translateY(0);
}

.sol-hw-video {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .sol-hw-video-wrap {
    border-radius: 0;
    border-left: none;
    border-right: none;
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════════════
   PRICING — RATE DISCLOSURE SCHEDULE
   ══════════════════════════════════════════════════════════════════ */

.sol-pricing {
  padding: 2rem 1.5rem;
  background: #EBD8BC;
  border-top: 1px solid rgba(80,50,25,.10);
}

.sol-pricing-inner         { max-width: 960px; margin: 0 auto; }
.sol-pricing .section-eyebrow { color: var(--gold, #C7923A); }
.sol-pricing .section-title   { color: var(--charcoal, #1B1713); margin-bottom: 2.5rem; }

.sol-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(80,50,25,.16);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.sol-pricing-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(80,50,25,.10);
  background: #FDFBF8;
  position: relative;
  overflow: hidden;
}
.sol-pricing-item:last-child { border-right: none; }

/* Gold top stripe — draws in left-to-right on reveal */
.sol-pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold, #C7923A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-pricing.visible .sol-pricing-item:nth-child(1)::before { transform: scaleX(1); transition-delay:   0ms; }
.sol-pricing.visible .sol-pricing-item:nth-child(2)::before { transform: scaleX(1); transition-delay: 100ms; }
.sol-pricing.visible .sol-pricing-item:nth-child(3)::before { transform: scaleX(1); transition-delay: 200ms; }
.sol-pricing.visible .sol-pricing-item:nth-child(4)::before { transform: scaleX(1); transition-delay: 300ms; }

/* Hover lift — matches proof card behaviour */
.sol-pricing-item {
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.18s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sol-pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28, 18, 9, 0.09);
    z-index: 1;
  }
}

/* Playfair Display for financial numbers */
.sol-pricing-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.sol-pricing-unit {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted, #5C4F3C);
  letter-spacing: 0;
}

.sol-pricing-key {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #C7923A);
  margin-bottom: 0.75rem;
}

.sol-pricing-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted, #5C4F3C);
  margin: 0;
}

.sol-pricing-cta-wrap { text-align: center; }
.sol-pricing-cta-sub  { margin-top: .75rem; font-size: 14px; color: var(--muted, #5C4F3C); }

@media (max-width: 768px) {
  .sol-pricing-grid { grid-template-columns: 1fr 1fr; }
  .sol-pricing-item { border-bottom: 1px solid rgba(80,50,25,.10); }
  .sol-pricing-item:nth-child(2n) { border-right: none; }
  .sol-pricing-item:last-child { border-bottom: none; }
  .sol-pricing-item:nth-last-child(2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .sol-pricing-grid { grid-template-columns: 1fr; }
  .sol-pricing-item { border-right: none; }
}


/* ══════════════════════════════════════════════════════════════════
   GAS STATIONS — HARDWARE REVIEW BLOCK (panel variant)
   ══════════════════════════════════════════════════════════════════ */

.sol-hw-review-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(80,50,25,.10);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(28,18,9,.04);
}

.sol-hw-review-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px dotted rgba(80,50,25,.12);
  transition: background 0.18s ease;
}
.sol-hw-review-item:last-child { border-bottom: none; }

@media (hover: hover) and (pointer: fine) {
  .sol-hw-review-item:hover {
    background: rgba(199, 146, 58, 0.06);
  }
}

.sol-hw-review-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--charcoal, #1B1713);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sol-hw-review-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
  margin-bottom: 0.22rem;
}

.sol-hw-review-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5C4F3C);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   GAS STATIONS — FUEL PRICING BLOCK (variant)
   ══════════════════════════════════════════════════════════════════ */

.sol-pricing-fuel-block {
  background: #fff;
  border: 1px solid rgba(80,50,25,.10);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.sol-pricing-fuel-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted, #5C4F3C);
  font-style: italic;
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dotted rgba(80,50,25,.15);
}

.sol-pricing-fuel-steps  { display: flex; flex-direction: column; gap: 1.1rem; }

.sol-pricing-fuel-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.08rem;
}

.sol-pricing-fuel-num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold, #C7923A);
}

.sol-pricing-fuel-step-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal, #1B1713);
  line-height: 1.3;
}

.sol-pricing-fuel-step-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted, #5C4F3C);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════════════
   PROOF — SECTION WRAPPER (card unchanged)
   ══════════════════════════════════════════════════════════════════ */

.sol-proof              { padding: 2rem 1.5rem; background: #17120E; }
.sol-proof-inner        { max-width: 700px; margin: 0 auto; text-align: center; }
.sol-proof-inner .section-title { margin-bottom: 2.5rem; }
.sol-proof-card-wrap    { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.sol-proof-cta-note     { color: rgba(244,230,211,.62); font-size: 16px; margin-bottom: 1.2rem; }
.sol-proof-cta-sub      { margin-top: .6rem; font-size: 13px; color: rgba(244,230,211,.5); }


/* ══════════════════════════════════════════════════════════════════
   SHARED RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .sol-problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sol-fix-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sol-who      { padding: 2rem 1rem; }
  .sol-fix      { padding: 2rem 1rem; }
  .sol-hardware { padding: 2rem 1rem; }
  .sol-pricing  { padding: 2rem 1rem; }
  .sol-problem  { padding: 2rem 1rem; }
  .sol-who-item { padding: 0.85rem 1rem; }
  .sol-who-panel-header { padding: 0.6rem 1rem; }
}

/* ─── SOLUTION PAGE HERO IMAGE ─── */
.sol-page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sol-page-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.sol-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 18, 14, 0.88) 0%,
    rgba(23, 18, 14, 0.45) 38%,
    transparent 65%
  );
  pointer-events: none;
}

.sol-page-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.sol-page-hero-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 48px;
}

.sol-page-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #C7923A);
  border: 1px solid var(--gold, #C7923A);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}

.sol-page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--cream, #F4E6D3);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.sol-who-inner > .section-eyebrow {
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .sol-page-hero-img {
    height: 260px;
  }
  .sol-page-hero-content-inner {
    padding: 0 20px 32px;
  }
  .sol-page-hero-title {
    margin-bottom: 1.2rem;
  }
}
