/* ============================================================
   OFFERINGS PAGE (offerings.html) — Page-specific styles
   ============================================================ */

/* ── STICKY SIDE INDEX ── */
.off-index {
  position: fixed;
  left: var(--px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.off-index-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bd-dark);
  border: 1px solid var(--text-muted);
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
}

.off-index-dot.active,
.off-index-dot:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.4);
}

.off-index-dot .dot-label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.off-index-dot:hover .dot-label {
  opacity: 1;
}

/* ─────────────────────────────────────────
   OFFERING ROW
───────────────────────────────────────── */
.offering-row {
  padding: clamp(70px, 8vw, 120px) var(--px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  border-bottom: 1px solid var(--bd-dark);
  position: relative;
  overflow: hidden;
}

.offering-row.alt {
  direction: rtl;
}

.offering-row.alt>* {
  direction: ltr;
}

/* backgrounds */
.offering-row.dark {
  background: var(--navy);
}

.offering-row.mid {
  background: var(--navy-mid);
}

.offering-row.surf {
  background: var(--navy-surf);
}

.offering-row.light {
  background: var(--surface);
}

/* ─────────────────────────────────────────
   CONTENT
───────────────────────────────────────── */
.offering-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.off-num-large {
  font-family: var(--display);
  font-size: clamp(68px, 7vw, 110px);
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  opacity: 0.95;
}

.off-title-large {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.dark .off-title-large,
.mid .off-title-large,
.surf .off-title-large {
  color: #fff;
}

.light .off-title-large {
  color: var(--navy);
}

.off-body {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.9;
  max-width: 620px;
}

.dark .off-body,
.mid .off-body,
.surf .off-body {
  color: var(--text-muted);
}

.light .off-body {
  color: #4a5a74;
}

/* ─────────────────────────────────────────
   BULLETS
───────────────────────────────────────── */
.off-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.off-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.8;
}

.dark .off-bullets li,
.mid .off-bullets li,
.surf .off-bullets li {
  color: var(--text-muted);
}

.light .off-bullets li {
  color: #4a5a74;
}

.off-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.off-bullets li strong {
  font-weight: 700;
  color: #fff;
}

.light .off-bullets li strong {
  color: var(--navy);
}

/* ─────────────────────────────────────────
   BUTTON
───────────────────────────────────────── */
.fade-up.d4 {
  margin-top: 8px;
}

.btn.btn-filled,
.btn.btn-bordered-light {
  min-height: 54px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.btn-filled:hover,
.btn.btn-bordered-light:hover {
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   IMAGE SECTION
───────────────────────────────────────── */
.offering-visual {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offering-visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.82) saturate(0.9);
}

.offering-visual:hover img {
  transform: scale(1.03);
}

.offering-visual-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dark .offering-visual-overlay,
.mid .offering-visual-overlay,
.surf .offering-visual-overlay {
  background: linear-gradient(135deg,
      rgba(21, 102, 255, 0.18) 0%,
      transparent 60%);
}

.light .offering-visual-overlay {
  background: linear-gradient(135deg,
      rgba(21, 102, 255, 0.12) 0%,
      transparent 60%);
}

/* ─────────────────────────────────────────
   BADGE BELOW IMAGE
───────────────────────────────────────── */
.outcome-badge {
  position: static;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--blue);
  color: white;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   TABLET
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .offering-row {
    gap: 50px;
  }

  .offering-visual img {
    height: 440px;
  }

  .off-title-large {
    font-size: 48px;
  }
}

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .offering-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 24px;
  }

  .offering-row.alt {
    direction: ltr;
  }

  .offering-content {
    max-width: 100%;
  }

  .offering-visual {
    order: 2;
  }

  .offering-visual img {
    height: 320px;
  }

  .off-title-large {
    font-size: 42px;
  }

  .off-body {
    font-size: 15px;
    line-height: 1.8;
  }

  .off-bullets {
    gap: 14px;
  }

  .off-bullets li {
    font-size: 14px;
    line-height: 1.7;
  }

  .btn.btn-filled,
  .btn.btn-bordered-light {
    width: 100%;
  }

  .outcome-badge {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .off-index {
    display: none;
  }
}

/* ─────────────────────────────────────────
   SMALL MOBILE
───────────────────────────────────────── */
@media (max-width: 560px) {
  .off-num-large {
    font-size: 52px;
  }

  .off-title-large {
    font-size: 36px;
  }

  .offering-visual img {
    height: 260px;
  }

  .off-body {
    font-size: 14px;
  }
}

/* ── SUMMARY TABLE ── */
.summary-section {
  background: var(--navy-mid);
  padding: var(--py) var(--px);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--bd-dark);
  border: 1px solid var(--bd-dark);
  margin-top: 48px;
}

.sum-card {
  background: var(--navy-surf);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.22s;
}

.sum-card:hover {
  background: var(--navy-mid);
}

.sum-n {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.sum-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}

.sum-outcome {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sum-link {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .offering-row {
    grid-template-columns: 1fr;
  }

  .offering-row.alt {
    direction: ltr;
  }

  .off-index {
    display: none;
  }

  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offering-bg-num {
    display: none;
  }
}

@media (max-width: 560px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .off-num-large {
    font-size: 52px;
  }

  .offering-visual {
    aspect-ratio: 16/9;
  }
}