/* ─── WHO WE HELP — dark directory section ─── */
.sol-wwh {
  padding: 44px 40px;
  background: #17120E;
}

.sol-wwh-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 2-column header */
.sol-wwh-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 52px;
}

.sol-wwh-headline-col .section-eyebrow { color: #D39A2D; }
.sol-wwh-headline-col .section-title {
  color: #F4E6D3;
  margin-bottom: 0;
}

.sol-wwh-body-col {
  padding-top: 28px;
}

.sol-wwh-body {
  font-size: 22px;
  color: rgba(244, 230, 211, 0.82);
  line-height: 1.72;
}

/* Directory / Index */
.sol-dir {
  border-top: 1px solid rgba(244, 230, 211, 0.10);
}

.sol-dir-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 230, 211, 0.07);
  transition: background 0.12s;
}

a.sol-dir-row {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.sol-dir-row:hover {
  background: rgba(244, 230, 211, 0.028);
}

a.sol-dir-row:hover .sol-dir-name {
  color: #C9A24B;
}

.sol-dir-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sol-dir-icon {
  color: rgba(244, 230, 211, 0.75);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sol-dir-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #F4E6D3;
  white-space: nowrap;
}

/* Leader dots — spans full available width between name and tag */
.sol-dir-dots {
  flex: 1;
  height: 0;
  border-bottom: 1px dotted rgba(244, 230, 211, 0.35);
  margin: 0 16px;
}

.sol-dir-tag {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 230, 211, 0.88);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── WHAT WE OFFER — BENTO GRID ─── */
.sol-offer {
  padding: 52px 40px;
  background: #EBD8BC;
  border-top: 1px solid rgba(80, 50, 25, 0.10);
  position: relative;
}

/* Ambient dot-grid texture */
.sol-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27, 23, 19, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.sol-offer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── BENTO GRID ─── */
.sol-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  grid-template-rows: auto auto;
  gap: 14px;
  grid-template-areas:
    "headline headline pricing"
    "hw       opt      pricing";
  align-items: stretch;
}

.sol-bento-headline { grid-area: headline; }
.sol-bento-pricing  { grid-area: pricing; }
.sol-bento-hw       { grid-area: hw; }
.sol-bento-opt      { grid-area: opt; }

/* ─── HEADLINE CELL (no card bg) ─── */
.sol-bento-headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2.5rem 1.5rem 0;
}

.sol-bento-headline .section-title {
  margin-bottom: 0;
  line-height: 1.15;
  max-width: 460px;
}

.sol-offer-rule {
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 20px 0;
}

.sol-offer-sub {
  font-size: 17px;
  color: var(--charcoal-lt);
  line-height: 1.75;
  max-width: 360px;
}

/* ─── BENTO CARDS ─── */
.sol-bento-card {
  background: var(--cream);
  border: 1px solid rgba(27, 23, 19, 0.08);
  border-radius: 20px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow:
    0 1px 3px rgba(27, 23, 19, 0.05),
    0 4px 16px rgba(27, 23, 19, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .sol-bento-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 2px 6px rgba(27, 23, 19, 0.06),
      0 10px 32px rgba(27, 23, 19, 0.10);
  }
}

.sol-bento-card:active {
  transform: scale(0.99);
  transition-duration: 0.15s;
}

/* ─── CATEGORY LABEL ─── */
.sol-bento-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ─── FEATURE LIST ─── */
.sol-bento-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.sol-bento-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal-lt);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.sol-bento-list li::before {
  content: '—';
  font-size: 9px;
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ─── DIVIDER ─── */
.sol-bento-divider {
  height: 1px;
  background: rgba(27, 23, 19, 0.09);
  margin: 22px 0;
}

/* ─── STAT BLOCK ─── */
.sol-bento-stat-eyebrow {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 7px;
}

.sol-bento-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -1.5px;
}

.sol-bento-stat-op {
  font-size: 28px;
  letter-spacing: -0.5px;
}

.sol-bento-stat-sub {
  font-family: 'Courier New', Courier, monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3D3028;
  margin-top: 8px;
  opacity: 0.75;
}

.sol-bento-stat-note {
  font-size: 12.5px;
  font-style: italic;
  color: #3D3028;
  line-height: 1.55;
  margin-top: 10px;
  opacity: 0.82;
}

/* ─── SVG GRAPHIC (concentric arc — tap/wireless signal) ─── */
.sol-bento-graphic {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  color: var(--charcoal);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

/* ─── TESTIMONIAL (quote only, centered single column) ─── */
.sol-testimonial-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sol-quote-only {
  max-width: 680px;
  margin-top: 32px;
  text-align: center;
}

.sol-quote-only .stars {
  justify-content: center;
}

/* ─── RESPONSIVE — BENTO ─── */
@media (max-width: 1024px) {
  .sol-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "headline headline"
      "pricing  pricing"
      "hw       opt";
  }
  .sol-bento-headline {
    padding: 0.5rem 0 1.5rem;
  }
  .sol-bento-headline .section-title {
    max-width: 100%;
  }
  .sol-offer-sub {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .sol-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "pricing"
      "hw"
      "opt";
    gap: 12px;
  }
  .sol-offer {
    padding: 52px 20px;
  }
  .sol-bento-headline {
    padding: 0 0 1rem;
  }
}

@media (max-width: 900px) {
  .sol-wwh-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sol-wwh-body-col {
    padding-top: 0;
  }
}

/* ─── TESTIMONIAL — cream override (solutions page only) ─── */
.testimonial.sol-testimonial-page {
  background: var(--cream) !important;
}

.testimonial.sol-testimonial-page .section-eyebrow { color: var(--gold); }
.testimonial.sol-testimonial-page .testimonial-quote { color: var(--charcoal); }
.testimonial.sol-testimonial-page .testimonial-attr  { color: var(--charcoal); }
.testimonial.sol-testimonial-page .star               { color: var(--gold); }

/* ─── PROCESS — dark override (solutions page only) ─── */
.sol-process-dark {
  background: #17120E !important;
  border-top: none;
}

.sol-process-dark .section-eyebrow { color: #D39A2D; }
.sol-process-dark .section-title   { color: #F4E6D3; }
.sol-process-dark .section-sub     { color: rgba(244, 230, 211, 0.80); }
.sol-process-dark .section-urgency { color: #C06050; opacity: 1; }

.sol-process-dark .steps-row::before {
  background: rgba(244, 230, 211, 0.2);
  opacity: 1;
}

.sol-process-dark .step-num {
  background: #17120E;
  border-color: #D39A2D;
  color: #D39A2D;
  box-shadow: 0 0 0 5px rgba(211, 154, 45, 0.1), 0 4px 14px rgba(0, 0, 0, 0.3);
}

.sol-process-dark .step-title { color: #F4E6D3; }
.sol-process-dark .step-desc  { color: rgba(244, 230, 211, 0.90); }

.sol-process-dark .steps-cta-btn { background: #D39A2D; }
.sol-process-dark .steps-cta-btn:hover { background: #B27F2F; }

.sol-process-dark .steps-cta-sub,
.sol-process-dark .steps-cta-guarantee { color: rgba(244, 230, 211, 0.68); }

@media (max-width: 640px) {
  .sol-wwh,
  .sol-offer {
    padding: 44px 24px;
  }
  .sol-dir-name { font-size: 16px; }
  .sol-dir-tag { font-size: 9px; letter-spacing: 1px; }
  .sol-cap-block--indent { padding-left: 0; }
  .sol-cap-block:hover { transform: none; }
  .sol-offer-caps::after { display: none; }
  .sol-cap-body { flex-direction: column; gap: 16px; }
  .sol-cap-callout { text-align: left; padding-right: 0; }
  .sol-cap-callout-num { font-size: 26px; }
}

/* ─── 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;
}

/* Dark gradient from bottom — required once text is overlaid on the image */
.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);
}

/* Compensate for heading moved into hero — eyebrow now sits directly above panel */
.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;
  }
}
