.immersive-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  filter: brightness(0.7);
  z-index: -1;
}

.hero-card {
  width: 90% !important;
}

.hero-card h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--secondary-dark);
}

.hero-card .accent {
  color: var(--primary-color);
}

.impact-section {
  position: relative;
  background: #f9fafb;
  margin: 1rem 0;
}

.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/cardboard.png");
  background-repeat: repeat;
  opacity: 3;
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 0 150px 0 150px;
}

.impact-counter-bar {
  background: #1f2937;
  padding: 80px 0;

  border-radius: 0 150px 0 150px;
  overflow: hidden;

  margin: 0 auto;
}

.counter-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.counter-item strong {
  font-size: 3rem;
  color: var(--primary-color);
  display: block;
}

.counter-item p {
  color: white;
}

.story-chapter {
  display: flex;
  align-items: center;
  padding: 100px 5%;
  gap: 60px;
}

.chapter-num {
  font-size: 5rem;
  font-weight: 900;
  color: #f3f4f6;
  position: absolute;
  z-index: -1;
  margin-top: -40px;
}

.strategy-section {
  background: #f9fafb;
  padding: 100px 0;
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.strategy-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  transition: 0.3s;
  border-bottom: 5px solid transparent;
}

.strategy-card.active {
  border-bottom-color: var(--primary-color);
  transform: translateY(-10px);
}

.testimonial-parallax {
  height: 60vh;
  background-attachment: scroll;
  will-change: transform;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  filter: contrast(110%) brightness(95%) saturate(110%) hue-rotate(10deg);
  background-repeat: no-repeat;
  background-position: center;
}

.quote-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px;
  width: 100%;
}
blockquote {
  font-size: 2rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 20px;
}

.next-steps-footer {
  padding: 100px 0;
  background: var(--primary-color);
}
.footer-card {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}
.btn-white {
  background: white;
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 768px) {
  .story-chapter,
  .counter-grid,
  .strategy-grid {
    flex-direction: column;
    text-align: center;
  }
}

.interactive-strategy {
  padding: 40px 0;
  background: #ffffff;
}

.strategy-display {
  position: relative;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  min-height: 400px;
}

.strategy-display::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: var(--secondary-green);
  top: 0;
  right: 0;
  z-index: 0;
  opacity: 0.3;
  border-radius: 0 120px 0 0;
}

.display-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 182px 0 0 0;
  box-shadow: var(--shadow-xl);
  transition: opacity 0.3s ease-in-out;
  filter: contrast(110%) brightness(95%) saturate(110%) hue-rotate(10deg);
}

.display-text h2 {
  font-size: 3rem;
  color: #214768;
  margin-bottom: 20px;
}

.display-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--background-dark);
}

.strategy-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid rgb(219, 219, 219);
}

.tab-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 0 10px 10px;
  border-top: 4px solid transparent;
  margin-top: -4px;
}

.tab-btn .tab-num {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e1e1e1;
  margin-bottom: 5px;
}

.tab-btn .tab-label {
  font-size: 1.4rem;
  font-weight: 550;
  color: #b9b9b9;
}

.tab-btn.active {
  border-top: 6px solid var(--primary-color);
  color: var(--primary-color);
}

.tab-btn.active .tab-num,
.tab-btn.active .tab-label {
  color: var(--primary-color);
}

.tab-btn:hover:not(.active) {
  background: #f9fafb;
}

.partner-card {
  margin-bottom: 40px;
  align-items: center;
}

.partner-card h4 {
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .strategy-display {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .strategy-tabs {
    grid-template-columns: 1fr;
  }
  .display-image img {
    height: 300px;
  }
}

.chapter-split {
  display: flex;
  min-height: 600px;
  align-items: stretch;
  background: #fff;
  overflow: hidden;
}

.chapter-split.reverse {
  flex-direction: row-reverse;
}

.chapter-visual {
  flex: 1;
  position: relative;
}

.chapter-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 150px 0 150px 0;
  filter: contrast(110%) brightness(95%) saturate(110%) hue-rotate(10deg);
}

.chapter-info {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

/* .chapter-info {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: var(--secondary-green-dark);
  border-radius: 100px 0 0 0;
  margin-top: 8rem;
} */

.info-inner {
  max-width: 500px;
}

.chapter-label {
  display: block;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* font-size: 1rem; */
  margin-bottom: 10px;
}

.info-inner h2 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.info-inner p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--background-dark);
  margin-bottom: 20px;
}

.expandable-story {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  margin-top: 25px;
}

@media (max-width: 992px) {
  .chapter-split,
  .chapter-split.reverse {
    flex-direction: column;
  }

  .chapter-visual {
    height: 400px;
  }

  .chapter-info {
    padding: 60px 20px;
  }

  .info-inner h2 {
    font-size: 2rem;
    color: var(--secondary-color);
  }
}

@media (max-width: 480px) {
  .hero-card h1 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--secondary-dark);
  }
}
