/* TomorrowLAB — Premium Home Experience */
.home-premium {
  background: #0a0a0a;
  color: #fff;
}

.hp-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .hp-container { padding-left: 2rem; padding-right: 2rem; }
}

.hp-section {
  padding: 3rem 0;
  position: relative;
}
@media (min-width: 992px) {
  .hp-section { padding: 3.75rem 0; }
}

.hp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00ab5c;
  margin-bottom: 0.85rem;
}
.hp-eyebrow.light { color: #2fd87a; }

.hp-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.hp-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.62);
  max-width: 36rem;
  margin: 0;
}
.hp-subtitle.light { color: rgba(255, 255, 255, 0.72); }

.hp-section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}
.hp-section-head--light .hp-title { color: #fff; }

/* Shared media */
.hp-media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.hp-media img,
.hp-focus-card__media img,
.hp-hero__img,
.hp-impact__bg img,
.hp-cta__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hp-media::after,
.hp-focus-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15), rgba(10,10,10,0.45));
  pointer-events: none;
}
.hp-media:hover img,
.hp-focus-card:hover .hp-focus-card__media img {
  transform: scale(1.06);
}

/* ── HERO ── */
.hp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}
.hp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero__img {
  transform: scale(1.04);
}
.hp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(0,171,92,0.18), transparent 50%);
}
.hp-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hp-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 3rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .hp-hero__inner {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    padding-bottom: 3.5rem;
  }
}
.hp-hero__title {
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 1.25rem;
  color: #fff;
  max-width: 12ch;
}
.hp-hero__desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 34rem;
  margin: 0 0 2rem;
}
.hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(47,216,122,0.35);
  background: rgba(10,10,10,0.45);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hp-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fd87a;
  box-shadow: 0 0 0 0 rgba(47,216,122,0.5);
  animation: hpPulse 2s ease-out infinite;
}
@keyframes hpPulse {
  0% { box-shadow: 0 0 0 0 rgba(47,216,122,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(47,216,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,216,122,0); }
}

.hp-hero__stats {
  display: grid;
  gap: 0.85rem;
}
.hp-float-stat {
  border-radius: 24px;
  padding: 1.15rem 1.25rem;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.hp-float-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(47,216,122,0.4);
}
.hp-float-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2fd87a;
  line-height: 1.1;
}
.hp-float-stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ── ABOUT (30% content / 70% gallery) ── */
.hp-about {
  background: #0a0a0a;
  color: #fff;
}
.hp-about .hp-title {
  color: #fff;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  max-width: 14ch;
}
.hp-about__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hp-about__layout {
    grid-template-columns: 30% 70%;
    gap: 2.5rem;
    align-items: stretch;
  }
}
.hp-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.5rem;
}
.hp-about__lead {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 1.02rem;
  margin: 0 0 1rem;
  max-width: 34ch;
}
.hp-about__content .about-more p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.hp-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(47,216,122,0.45);
  background: rgba(0,171,92,0.12);
  color: #2fd87a;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.hp-read-more:hover {
  background: #00ab5c;
  border-color: #00ab5c;
  color: #fff;
  transform: translateY(-2px);
}
.hp-read-more i { transition: transform 0.25s; }
.hp-read-more.is-open i { transform: rotate(90deg); }

.hp-about__gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
}
@media (min-width: 992px) {
  .hp-about__gallery { min-height: 520px; gap: 1rem; }
}
.hp-about__shot {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.hp-about__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.05) contrast(1.05);
}
.hp-about__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,171,92,0.18), rgba(10,10,10,0.25));
  pointer-events: none;
}
.hp-about__shot:hover img { transform: scale(1.06); }
.hp-about__shot--tall {
  grid-row: 1 / span 2;
}
.hp-about__shot--top,
.hp-about__shot--bottom { min-height: 160px; }

.hp-about__stats {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-radius: 24px;
  padding: 1.2rem 1.1rem;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 992px) {
  .hp-about__stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.35rem 1.5rem;
    margin-top: 2rem;
  }
}
.hp-about__stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hp-about__stat i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2fd87a;
  background: rgba(0,171,92,0.12);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hp-about__stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #2fd87a;
  line-height: 1.1;
}
.hp-about__stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* ── FOCUS / THRUST AREAS (dark) ── */
.hp-focus {
  background:
    radial-gradient(ellipse at top right, rgba(0,171,92,0.12), transparent 45%),
    #0a0a0a;
  color: #fff;
}
.hp-focus .hp-title { color: #fff; }
.hp-focus .hp-subtitle { color: rgba(255,255,255,0.65); }
.hp-focus__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hp-focus__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .hp-focus__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.hp-focus-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  text-decoration: none;
  color: #fff !important;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s;
  opacity: 1 !important;
  transform: none;
}
.hp-focus-card.reveal {
  opacity: 1;
  transform: none;
}
.hp-focus-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 60px rgba(0,0,0,0.45);
  border-color: rgba(47,216,122,0.35);
  color: #fff !important;
}
.hp-focus-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-focus-card__media::after {
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.88) 100%);
}
.hp-focus-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.hp-focus-card .thrust-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 20px rgba(0,171,92,0.35);
  flex-shrink: 0;
}
.hp-focus-card h3 {
  font-size: 1.35rem;
  margin: 0;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hp-focus-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.hp-focus-card--title {
  min-height: 240px;
}
.hp-focus-card--title .hp-focus-card__body {
  min-height: 240px;
}
.hp-focus-card--title h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

/* ── IMPACT ── */
.hp-impact {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
}
@media (min-width: 992px) {
  .hp-impact { padding: 4rem 0; }
}
.hp-impact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-impact__bg img {
  transform: scale(1.08);
}
.hp-impact__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.82), rgba(4,120,87,0.55)),
    rgba(10,10,10,0.35);
}
.hp-impact__inner { position: relative; z-index: 2; }
.hp-dashboard {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .hp-dashboard { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.hp-dash-card {
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  background: rgba(10,10,10,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  transition: transform 0.35s ease, border-color 0.35s;
}
.hp-dash-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47,216,122,0.45);
}
.hp-dash-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.hp-dash-card__top i { color: #2fd87a; font-size: 1.25rem; }
.hp-dash-card strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hp-dash-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
}

/* ── COLLABORATION / BENEFITS (dark) ── */
.hp-collab {
  background:
    radial-gradient(ellipse at left center, rgba(0,171,92,0.1), transparent 50%),
    #0f0f0f;
  color: #fff;
}
.hp-collab .hp-title { color: #fff; }
.hp-collab .hp-subtitle { color: rgba(255,255,255,0.65); }
.hp-collab__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hp-collab__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.hp-collab__media {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
@media (max-width: 991.98px) {
  .hp-collab__media { aspect-ratio: 16 / 10; max-height: 340px; }
}
.hp-glass {
  margin-top: 1.5rem;
  border-radius: 24px;
  padding: 1.35rem 1.4rem;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}
.hp-glass__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.hp-glass__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.25s, background 0.25s;
}
.hp-glass__list li:hover {
  border-color: rgba(47,216,122,0.3);
  background: rgba(0,171,92,0.08);
}
.hp-glass__list .offer-icon {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  margin: 0;
}
.hp-glass__list h3 {
  color: #fff !important;
  margin-bottom: 0.25rem !important;
}
.hp-glass__list p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* ── STORIES (dark) ── */
.hp-stories {
  background:
    radial-gradient(ellipse at bottom right, rgba(0,171,92,0.1), transparent 45%),
    #0a0a0a;
  color: #fff;
}
.hp-stories .hp-title { color: #fff; }
.hp-story-card.story-card,
.hp-stories .story-card {
  border-radius: 24px;
  overflow: hidden;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hp-story-panel.story-panel {
  color: #fff;
  min-height: 100%;
}
.hp-story-content.story-content {
  background: #141414;
  color: #fff;
  padding: 2rem 1.75rem;
}
@media (min-width: 992px) {
  .hp-story-content.story-content { padding: 2.5rem; }
}
.hp-story-content .story-quote {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}
.hp-metric-box.metric-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 0.9rem;
  height: 100%;
}
.hp-metric-box.metric-box small {
  color: rgba(255,255,255,0.5);
}
.hp-metric-box.metric-box strong {
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.4;
}
.hp-metric-box.metric-box i {
  color: #2fd87a !important;
}
.hp-story-nav .story-nav-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.hp-story-nav .story-nav-btn:hover {
  background: rgba(0,171,92,0.25);
  border-color: rgba(47,216,122,0.45);
  color: #fff;
}
.hp-story-nav .story-dot {
  background: rgba(255,255,255,0.25);
}
.hp-story-nav .story-dot.active {
  background: #2fd87a;
}

/* ── CTA ── */
.hp-cta {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 992px) {
  .hp-cta { padding: 4.75rem 0; }
}
.hp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.78));
}
.hp-cta__wave {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -20%;
  height: 45%;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(0,171,92,0.35), transparent 65%);
  animation: hpWave 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hpWave {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.55; }
  50% { transform: translateY(-18px) scaleX(1.05); opacity: 0.85; }
}
.hp-cta__inner {
  position: relative;
  z-index: 3;
}
.hp-cta .hp-title { color: #fff; max-width: 16ch; margin-left: auto; margin-right: auto; }
.hp-cta .hp-subtitle {
  margin: 0 auto 2rem;
  max-width: 32rem;
}
.hp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Button ripple */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: hpRipple 0.6s linear;
  pointer-events: none;
}
@keyframes hpRipple {
  to { transform: scale(4); opacity: 0; }
}

/* Reveal + hero anim compatibility */
.home-premium .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-premium .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hp-cta__wave,
  .hp-badge__dot,
  .hp-media img,
  .hp-focus-card__media img { animation: none !important; transition: none !important; }
}

/* ══════════════════════════════════════
   OUR APPROACH PAGE
══════════════════════════════════════ */
.page-approach {
  background: #0a0a0a;
  color: #fff;
}
.oa-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 3.5rem;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.oa-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.oa-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oa-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.88) 100%);
}
.oa-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}
.oa-hero .hp-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.85rem;
}
.oa-hero .hp-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
}

.oa-thrust {
  background:
    radial-gradient(ellipse at top right, rgba(0,171,92,0.1), transparent 45%),
    #0a0a0a;
}
.oa-thrust .hp-title { color: #fff; }
.oa-thrust__list {
  display: grid;
  gap: 1rem;
}
.oa-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  scroll-margin-top: 100px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.oa-block:hover {
  border-color: rgba(47,216,122,0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.oa-block__icon.thrust-icon {
  margin: 0;
  flex-shrink: 0;
}
.oa-block__body h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}
.oa-block__body > p {
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}
.oa-block .thrust-list {
  color: rgba(255,255,255,0.58);
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
}
.oa-block .thrust-list li { margin-bottom: 0.2rem; }
@media (max-width: 575.98px) {
  .oa-block {
    grid-template-columns: 1fr;
  }
}

.oa-journey {
  background:
    radial-gradient(ellipse at center, rgba(0,171,92,0.12), transparent 55%),
    #0f0f0f;
}
.oa-journey .hp-title { color: #fff; }
.oa-tabs.journey-tabs {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.oa-tabs .journey-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
}
.oa-tabs .journey-tab.active,
.oa-tabs .journey-tab:hover {
  background: rgba(0,171,92,0.2);
  border-color: rgba(47,216,122,0.45);
  color: #fff;
}
.oa-steps {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .oa-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .oa-steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}
.oa-step {
  border-radius: 24px;
  padding: 1.25rem 1.15rem;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}
.oa-step:hover {
  border-color: rgba(47,216,122,0.35);
  transform: translateY(-4px);
}
.oa-step span {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: #2fd87a;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.oa-step h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.oa-step p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.55;
}

.oa-benefits {
  background:
    radial-gradient(ellipse at bottom left, rgba(0,171,92,0.1), transparent 45%),
    #0a0a0a;
}
.oa-benefits .hp-title { color: #fff; }
.oa-benefits__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .oa-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .oa-benefits__grid { grid-template-columns: repeat(4, 1fr); }
}
.oa-offer {
  border-radius: 24px;
  padding: 1.5rem 1.35rem;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.oa-offer:hover {
  border-color: rgba(47,216,122,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.oa-offer .offer-icon { margin-bottom: 1rem; }
.oa-offer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.oa-offer p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   INNER PAGES — Challenges / Media / FAQs
══════════════════════════════════════ */
.page-challenges,
.page-media,
.page-faqs {
  background: #0a0a0a;
  color: #fff;
}
.ip-section {
  background:
    radial-gradient(ellipse at top center, rgba(0,171,92,0.08), transparent 50%),
    #0a0a0a;
}

/* Challenges accordion */
.ip-accordion.challenge-accordion {
  display: grid;
  gap: 0.85rem;
}
.ip-acc-item.challenge-acc-item,
.ip-acc-item.accordion-item {
  background: #141414 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  overflow: hidden;
  margin: 0;
}
.ip-acc-item .accordion-button {
  background: #141414 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: none !important;
  padding: 1.15rem 1.35rem;
}
.ip-acc-item .accordion-button:not(.collapsed) {
  background: rgba(0,171,92,0.12) !important;
  color: #fff !important;
}
.ip-acc-item .accordion-button::after {
  filter: invert(1) brightness(1.4);
}
.ip-acc-item .accordion-body {
  background: #121212;
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 1.35rem 1.5rem;
  line-height: 1.7;
}
.ip-acc-item .accordion-body strong { color: #2fd87a; }
.ip-acc-item .accordion-body ul {
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}
.ip-acc-item .accordion-body li { margin-bottom: 0.3rem; }

/* Media cards */
.ip-media-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ip-media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .ip-media-grid { grid-template-columns: repeat(3, 1fr); }
}
.ip-media-card {
  border-radius: 24px;
  padding: 1.5rem 1.4rem;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ip-media-card:hover {
  border-color: rgba(47,216,122,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.ip-media-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.ip-tag {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,171,92,0.15);
  color: #2fd87a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ip-media-card__meta time {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.ip-media-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
}
.ip-media-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}
.ip-media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #2fd87a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  transition: gap 0.25s, color 0.25s;
}
.ip-media-link:hover {
  color: #fff;
  gap: 0.65rem;
}

/* FAQs */
.ip-faq-list.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}
.ip-faq-list .faq-item {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.ip-faq-list .faq-item.open,
.ip-faq-list .faq-item:hover {
  border-color: rgba(47,216,122,0.3);
}
.ip-faq-list .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.ip-faq-list .faq-question i {
  color: #2fd87a;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.ip-faq-list .faq-item.open .faq-question i {
  transform: rotate(180deg);
}
.ip-faq-list .faq-answer {
  display: none;
  padding: 0 1.25rem 1.2rem;
  color: rgba(255,255,255,0.8) !important;
  line-height: 1.7;
  font-size: 0.95rem;
}
.ip-faq-list .faq-item.open .faq-answer { display: block; }
.ip-faq-list .faq-answer p,
.ip-faq-list .faq-answer li,
.ip-faq-list .faq-answer ul {
  color: rgba(255,255,255,0.8) !important;
}
.ip-faq-list .faq-answer p {
  margin: 0 0 0.65rem !important;
}
.ip-faq-list .faq-answer ul {
  padding-left: 1.15rem;
  margin: 0.35rem 0 0;
}
.ip-faq-list .faq-answer li { margin-bottom: 0.3rem; }
.ip-faq-list .faq-answer a {
  color: #2fd87a !important;
  text-decoration: underline;
}
.ip-faq-list .faq-answer a:hover { color: #fff !important; }

/* Sync our-approach css version note - already linked via v=8 on new pages */
