/* ============================================================
   SLIDE 3 & 4: Option Layout — Stat Bar + 60/40 Body
   Shared classes for both option slides.
   ============================================================ */

/* --- Product image background (light slides) --- */
.opt1-product-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.opt1-product-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FAFBFC 0%, rgba(250,251,252,0.3) 60%, transparent 100%);
}

.opt1-product-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* --- Top bar: title left, stats right --- */
.opt-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.opt-topbar--light {
  border-bottom-color: #E0E4E8;
}

.opt-topbar__left {
  flex: 1;
}

.opt-topbar__stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.opt-stat {
  text-align: right;
}

.opt-stat__value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.opt-stat__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.opt-stat--light .opt-stat__label {
  color: #8B949E;
}

/* --- 60/40 body --- */
.opt-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}

/* Section labels */
.opt-section-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.opt-section-label--green { color: var(--green); }
.opt-section-label--red { color: var(--red); }

/* --- Row items --- */
.opt-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.opt-row--light {
  border-bottom-color: #F0F2F5;
}

.opt-row:last-child {
  border-bottom: none;
}

/* Icon containers */
.opt-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.opt-row__icon--green {
  background: rgba(63,185,80,0.1);
  color: var(--green);
}

.opt-row__icon--red {
  background: rgba(248,81,73,0.08);
  color: var(--red);
}

/* Text - dark mode default */
.opt-row__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.opt-row__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 2px;
  line-height: 1.2;
}

/* Text - light mode */
.opt-row--light .opt-row__text {
  color: #3D4852;
}

.opt-row--light .opt-row__text strong {
  color: #0D1117;
}

/* --- Option 2: Kicker row with badge --- */
.opt2-kicker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.opt2-recommended-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0D1117;
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 100px;
}

/* --- Option 2: Two-column deliverables --- */
.opt2-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .opt-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .opt-topbar__stats {
    gap: 24px;
  }

  .opt-stat { text-align: left; }

  .opt-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .opt2-deliverables {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .opt1-product-bg {
    width: 200px;
    opacity: 0.06;
  }
}
