@import url('tokens.css');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-default);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   Section 1: Navbar
   ============================================ */
.navbar {
  background: var(--color-ice);
  width: 100%;
}

.navbar__header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 var(--padding-global);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 0 0;
  min-width: 0;
}

.navbar__content {
  display: flex;
  align-items: center;
  gap: 202px;
}

.navbar__logo img {
  width: 59px;
  height: 59px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.navbar__link {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-size-regular);
  line-height: 1.5;
  color: var(--color-text);
  white-space: nowrap;
}

.navbar__link--active {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 12px;
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-size-regular);
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
}

.navbar__btn--outline {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}

.navbar__btn--filled {
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: var(--color-white);
}

/* ============================================
   Section 2: Hero
   ============================================ */
.hero {
  width: 100%;
  min-height: 800px;
  background: url('assets/hero-bg.png') center / cover no-repeat;
}

.hero__content {
  padding: 82px 0 0 123px;
}

.hero__headline {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-light);
  font-size: 67.2px;
  line-height: 75.264px;
  letter-spacing: -1.68px;
  color: var(--color-white);
  width: 556px;
}

.hero__subtext {
  margin-top: 31px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-light);
  font-size: 17.92px;
  line-height: 29.12px;
  color: rgba(255, 255, 255, 0.9);
  width: 498px;
}

.hero__ctas {
  margin-top: 41px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 51px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
}

.hero__btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0px 10px 7.5px rgba(0, 0, 0, 0.1), 0px 4px 3px rgba(0, 0, 0, 0.1);
}

.hero__btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.88);
}

.hero__students {
  margin-top: 41px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__students-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  object-fit: cover;
}

.hero__avatar + .hero__avatar {
  margin-left: -16px;
}

.hero__students-count {
  font-family: var(--font-oswald);
  font-weight: var(--font-weight-regular);
  font-size: 30px;
  line-height: 1.5;
  color: var(--color-white);
}

.hero__students-label {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-light);
  font-size: 21.598px;
  line-height: 1.5;
  color: var(--color-white);
}

/* ============================================
   Section 3: Stats Band
   ============================================ */
.stats {
  background: var(--color-blue);
  width: 100%;
  min-height: 367px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.stats__icon {
  height: 75px;
  width: auto;
}

.stats__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
}

.stats__number {
  font-size: 52.141px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.stats__label {
  font-size: 22.558px;
  line-height: 31.017px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  white-space: nowrap;
}

/* ============================================
   Section 4: The Problem We're Solving
   ============================================ */
.problem {
  background: var(--color-white);
  width: 100%;
  padding: 93px 0 167px;
}

.problem__container {
  max-width: 1212px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
}

.problem__left {
  position: relative;
  width: 580px;
  min-width: 580px;
  height: 650px;
}

.problem__image {
  width: 580px;
  height: 650px;
  object-fit: cover;
  border-radius: 8px;
}

.problem__callout {
  position: absolute;
  top: 40px;
  left: 0;
  width: 294px;
  background: var(--color-white);
  border-left: 4px solid var(--color-blue);
  box-shadow: 0px 16px 28px rgba(28, 43, 58, 0.14);
  padding: 20px 24px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.problem__callout-number {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-medium);
  font-size: 38.4px;
  line-height: 38.4px;
  color: var(--color-blue);
}

.problem__callout-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 13.12px;
  line-height: 18.04px;
  color: var(--color-slate);
  width: 150px;
}

.problem__right {
  padding-top: 98px;
  width: 568px;
  flex-shrink: 0;
}

.problem__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.problem__label-text {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.problem__headline {
  margin-top: 21px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 558px;
}

.problem__body {
  margin-top: 11px;
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-slate);
  width: 544px;
}

.problem__chips {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.problem__chip {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 15px;
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 4px;
  gap: 6px;
}

.problem__chip--1 {
  width: 568px;
}

.problem__chip--2 {
  width: 536px;
}

.problem__chip--3 {
  width: 567px;
}

.problem__chip-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.problem__chip-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-medium);
  font-size: 13.12px;
  line-height: 19.68px;
  color: var(--color-slate);
  white-space: nowrap;
}

/* ============================================
   Section 5: Who We Are
   ============================================ */
.whoweare {
  background: var(--color-white);
  width: 100%;
  padding-bottom: 122px;
}

.whoweare__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.whoweare__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whoweare__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.whoweare__label-text {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.whoweare__title {
  margin-top: 22px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 550px;
}

.whoweare__subtitle {
  margin-top: 19px;
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-slate);
  width: 690px;
}

.whoweare__cards {
  margin-top: 67px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 1034px;
  margin-left: auto;
  margin-right: auto;
}

.whoweare__card {
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whoweare__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(28, 43, 58, 0.15);
  border-color: var(--color-blue);
}

.whoweare__card-image {
  height: 200px;
  overflow: hidden;
}

.whoweare__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whoweare__card-content {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whoweare__card-title {
  font-family: var(--font-lora);
  font-weight: var(--font-weight-bold);
  font-size: 17.28px;
  line-height: 25.92px;
  color: var(--color-navy);
  min-height: 52px;
}

.whoweare__card-body {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.72px;
  line-height: 23.92px;
  color: var(--color-slate);
}

/* ============================================
   Section 6: Recognition
   ============================================ */
.recognition {
  background: var(--color-white);
  width: 100%;
  padding-bottom: 245px;
}

.recognition__container {
  max-width: 1031px;
  width: 100%;
  margin: 0 auto;
}

.recognition__text-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.recognition__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recognition__eyebrow {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.recognition__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 28.8px;
  line-height: 43.2px;
  color: var(--color-navy-dark);
  white-space: nowrap;
}

.recognition__description {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.08px;
  line-height: 21.12px;
  color: var(--color-navy-dark);
  width: 324px;
  padding-top: 4px;
}

.recognition__certs {
  margin-top: 86px;
  display: grid;
  grid-template-columns: 345px 342px 340px;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.recognition__cert {
  background: var(--color-blue);
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 14.48px;
  line-height: 17.16px;
  text-align: center;
  color: var(--color-white);
}

/* ============================================
   Section 7: The App
   ============================================ */
.theapp {
  background: var(--color-cream);
  width: 100%;
  padding: 94px 0 132px;
}

.theapp__container {
  max-width: 1027px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 237px;
  box-sizing: border-box;
}

.theapp__left {
  padding-top: 52px;
  flex-shrink: 0;
  width: 272px;
}

.theapp__phone {
  position: relative;
  width: 272px;
  height: 580px;
  overflow: hidden;
}

.theapp__phone-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 16px 56px rgba(28, 43, 58, 0.14));
}

.theapp__play {
  position: absolute;
  left: 115px;
  top: 269px;
  width: 41px;
  height: 41px;
  cursor: pointer;
}

.theapp__learn-more {
  margin-top: 49px;
  margin-left: 52px;
  display: inline-block;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-blue-deep);
  border-bottom: 1px solid var(--color-blue-deep);
  padding-bottom: 2px;
}

.theapp__right {
  flex-shrink: 0;
  width: 478px;
}

.theapp__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theapp__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.theapp__label-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.theapp__heading {
  margin-top: 15px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 399px;
}

.theapp__cards {
  margin-top: 41px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.theapp__card {
  width: 478px;
  height: 154px;
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 25px 29px;
  gap: 20px;
}

.theapp__card--active {
  background: var(--color-cream-2);
  border: 1px solid var(--color-yellow);
  border-left: 4px solid var(--color-yellow);
  box-shadow: 0px 6px 14px rgba(28, 43, 58, 0.11);
  padding-left: 32px;
}

.theapp__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theapp__card-icon--cream {
  background: var(--color-cream);
  border: 1px solid var(--color-card-border);
}

.theapp__card-icon--cream2 {
  background: var(--color-cream-2);
  border: 1px solid var(--color-card-border);
}

.theapp__card-icon--yellow {
  background: var(--color-yellow);
}

.theapp__card-icon img {
  width: 24px;
  height: 24px;
}

.theapp__card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.theapp__card-title {
  font-family: var(--font-lora);
  font-weight: var(--font-weight-semibold);
  font-size: 17.28px;
  line-height: 25.92px;
  color: var(--color-navy);
}

.theapp__card-body {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.72px;
  line-height: 23.92px;
  color: var(--color-slate);
}

/* ============================================
   Section 8: Our Impact
   ============================================ */
.impact {
  background: var(--color-blue-deep);
  width: 100%;
  padding: 96px 0 71px;
}

.impact__header {
  max-width: 1036px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 116px;
}

.impact__header-left {
  flex-shrink: 0;
  width: 478px;
}

.impact__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.impact__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 4px;
}

.impact__label-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.impact__heading {
  margin-top: 16px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-white);
  width: 403px;
}

.impact__header-right {
  flex-shrink: 0;
  width: 442px;
  padding-top: 45px;
}

.impact__body {
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-white);
}

.impact__stats {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1036px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.impact__stat {
  height: 201px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.impact__stat:hover {
  background: rgba(255, 255, 255, 0.18);
}

.impact__stat--highlight {
  background: rgba(255, 255, 255, 0.1);
}

.impact__stat-emoji {
  font-size: 50px;
  line-height: 1;
}

.impact__stat-number {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 44.8px;
  line-height: 44.8px;
  color: var(--color-white);
  text-align: center;
}

.impact__stat-label {
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 13.12px;
  line-height: 18.04px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.impact__testimonials {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1036px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.impact__testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 32px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.impact__testimonial--active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.03);
}

.impact__testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.impact__testimonial-quote {
  font-family: var(--font-lora);
  font-weight: var(--font-weight-regular);
  font-size: 38.4px;
  line-height: 26.88px;
  color: var(--color-white);
}

.impact__testimonial-category {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 14.08px;
  line-height: 21.12px;
  color: var(--color-yellow);
}

.impact__testimonial-text {
  margin-top: 7px;
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-style: italic;
  font-size: 15.36px;
  line-height: 24.96px;
  color: rgba(255, 255, 255, 0.72);
}

.impact__testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact__testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='15' r='7' fill='rgba(255,255,255,0.45)'/%3E%3Cpath d='M8 35c0-7 5.4-12 12-12s12 5 12 12' fill='rgba(255,255,255,0.45)'/%3E%3C/svg%3E") center / cover no-repeat;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.impact__testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.impact__testimonial-name {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 14.08px;
  line-height: 21.12px;
  color: var(--color-white);
}

.impact__testimonial-location {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12.16px;
  line-height: 18.24px;
  color: rgba(255, 255, 255, 0.45);
}

.impact__dots {
  margin-top: 53px;
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 1036px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.impact__dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  display: inline-block;
  transition: background 0.3s ease;
}

.impact__dot--active {
  background: #ffffff;
}

/* ============================================
   Section 9: Our Model
   ============================================ */
.ourmodel {
  background: var(--color-white);
  width: 100%;
  padding: 103px 0 193px;
}

.ourmodel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.ourmodel__label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ourmodel__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.ourmodel__label-text {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.ourmodel__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  text-align: center;
  width: 724px;
  min-height: 134px;
}

.ourmodel__cards {
  margin-top: 3px;
  max-width: 1044px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ourmodel__card {
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 505px;
}

.ourmodel__card-image {
  position: relative;
  height: 200px;
  background: #eeeeee;
  overflow: hidden;
}

.ourmodel__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ourmodel__badge {
  position: absolute;
  top: 16px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: var(--font-lora);
  font-weight: var(--font-weight-bold);
  font-size: 13.12px;
  line-height: 19.68px;
  color: var(--color-blue);
}

.ourmodel__card-content {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ourmodel__card-title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 17.28px;
  line-height: 25.92px;
  color: var(--color-navy);
}

.ourmodel__card-body {
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.72px;
  line-height: 23.92px;
  color: var(--color-slate);
}

/* ============================================
   Section 10: Women Empowerment
   ============================================ */
.women {
  background: var(--color-white);
  width: 100%;
  margin-bottom: 193px;
}

.women__container {
  max-width: 1166px;
  width: 100%;
  margin: 0 auto;
}

.women__banner {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  height: 266px;
}

.women__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.women__panel {
  background: var(--color-cream-2);
  border-radius: 0 0 24px 24px;
  padding: 39px 47px 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.women__left {
  max-width: 682px;
}

.women__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.women__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.women__label-text {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.women__heading {
  margin-top: 24px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 632px;
}

.women__body {
  margin-top: 16px;
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-slate);
}

.women__stats {
  display: flex;
  flex-direction: column;
  gap: 59px;
  padding-top: 18px;
  align-items: flex-end;
}

.women__stats--three {
  flex-direction: row;
  gap: 48px;
  padding-top: 18px;
  align-items: flex-start;
  justify-content: flex-end;
}

.women__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 100px;
}

.women__stat-number {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 32px;
  line-height: 32px;
  color: var(--color-blue);
}

.women__stat-label {
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12.8px;
  line-height: 19.2px;
  color: var(--color-slate-soft);
}

/* ── Section 11: Policy Alignment ── */
.alignment {
  background: #fafaf8;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
}

.alignment__bg {
  position: absolute;
  inset: 0;
  background: url('assets/alignment-doodle-full.png') center / cover no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.alignment__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.alignment__label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.alignment__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 4px;
}

.alignment__label-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-blue);
}

.alignment__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  text-align: center;
  width: 498px;
}

.alignment__cards {
  margin-top: 45px;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.alignment__card {
  background: var(--color-white);
  border: 1px solid var(--color-card-border);
  border-radius: 10px;
  padding: 42px 36px 36px;
  min-height: 298px;
  position: relative;
}

.alignment__badge {
  display: inline-block;
  background: var(--color-blue);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 11.52px;
  line-height: 17.28px;
  letter-spacing: 0.288px;
  color: var(--color-white);
  white-space: nowrap;
}

.alignment__card-title {
  margin-top: 27px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 24px;
  color: var(--color-navy);
}

.alignment__card-body {
  margin-top: 26px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.08px;
  line-height: 22.88px;
  color: var(--color-slate);
  width: 244px;
}

/* ── Section 12: Partners ── */
.partners {
  background: var(--color-white);
  width: 100%;
  padding: 117px 0 111px;
}

.partners__container {
  max-width: 1166px;
  width: 100%;
  margin: 0 auto;
}

.partners__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partners__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 361px;
  flex-shrink: 0;
}

.partners__divider {
  width: 2px;
  height: 54px;
  background: #c4c4c4;
  flex-shrink: 0;
  margin-left: auto;
}

.partners__subtitle {
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-slate);
  width: 469px;
  flex-shrink: 0;
}

.partners__section {
  margin-top: 117px;
  display: flex;
  align-items: flex-start;
}

.partners__section--second {
  margin-top: 21px;
}

.partners__section-label {
  width: 456px;
  flex-shrink: 0;
  padding-top: 10px;
}

.partners__section-title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-semibold);
  font-size: 30px;
  line-height: 51.97px;
  letter-spacing: -1.16px;
  color: #1e3566;
}

.partners__section-title--sub {
  font-weight: var(--font-weight-regular);
  font-size: 24px;
}

.partners__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
  flex: 1;
}

.partners__logo {
  height: 70px;
  max-width: 220px;
  width: 100%;
  object-fit: contain;
}

.partners__logo--wide {
  max-width: 220px;
}

/* ── Section 13: Donate ── */
.donate {
  background: var(--color-cream);
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 687px;
}

.donate__container {
  max-width: 1166px;
  width: 100%;
  margin: 0 auto;
  padding: 108px 0 100px;
  position: relative;
  z-index: 1;
}

.donate__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.donate__label-dash {
  width: 18px;
  height: 2px;
  background: var(--color-gold-dark);
  border-radius: 4px;
}

.donate__label-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 18.72px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.donate__heading {
  margin-top: 16px;
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 53px;
  color: var(--color-navy);
  width: 409px;
}

.donate__body {
  margin-top: 16px;
  font-family: var(--font-noto-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: var(--color-navy);
  width: 460px;
}

.donate__buttons {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 340px;
}

.donate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 340px;
  height: 52px;
  border-radius: 8px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}

.donate__btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  box-shadow: 0px 10px 7.5px rgba(0, 0, 0, 0.1), 0px 4px 3px rgba(0, 0, 0, 0.1);
}

.donate__btn--outline {
  background: transparent;
  color: var(--color-blue);
  border: 1.5px solid var(--color-blue);
  height: 55px;
}

.donate__btn-icon {
  width: 16px;
  height: 16px;
}

.donate__secure {
  margin-top: 22px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 13.12px;
  line-height: 19.68px;
  color: rgba(28, 43, 58, 0.4);
}

.donate__image {
  position: absolute;
  top: 24px;
  right: 0;
  width: 61.7%;
  bottom: 0;
  overflow: hidden;
}

.donate__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Section 14: Final CTA ── */
.cta {
  background: var(--color-navy-dark);
  width: 100%;
  padding: 127px 0 87px;
  position: relative;
  overflow: visible;
}

.cta__student {
  position: absolute;
  left: calc(50% - 720px);
  bottom: 0;
  width: 493px;
  top: -390px;
  pointer-events: none;
}

.cta__student img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cta__container {
  max-width: 712px;
  width: 100%;
  margin-left: calc(50% - 720px + 526px);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 71px;
}

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  text-align: center;
  width: 100%;
}

.cta__eyebrow {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94bdff;
}

.cta__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: -1.6px;
  color: var(--color-white);
}

.cta__heading span {
  color: var(--color-yellow);
}

.cta__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 468px;
}

.cta__subtitle {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  width: 452px;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 59px;
  border-radius: 8px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}

.cta__btn--primary {
  width: 221px;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  box-shadow: 0px 10px 7.5px rgba(0, 0, 0, 0.1), 0px 4px 3px rgba(0, 0, 0, 0.1);
}

.cta__btn--outline {
  width: 231px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cta__btn-icon {
  width: 16px;
  height: 16px;
}

/* ── Section 15: Footer ── */
.footer {
  background: var(--color-blue);
  width: 100%;
  padding: 80px 64px;
}

.footer__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__content {
  display: flex;
  gap: 120px;
  align-items: flex-start;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 400px;
  flex-shrink: 0;
}

.footer__brand {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-semibold);
  font-size: 39.03px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__newsletter-text {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__form {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.footer__input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--color-white);
  border-radius: 24px;
  background: transparent;
  font-family: var(--font-roboto);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer__subscribe {
  padding: 12px 24px;
  background: var(--color-white);
  border: none;
  border-radius: 24px;
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-blue);
  cursor: pointer;
  white-space: nowrap;
}

.footer__privacy {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__privacy a {
  color: var(--color-white);
  text-decoration: underline;
}

.footer__links {
  display: flex;
  gap: 40px;
  flex: 1;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__column--grow {
  flex: 1;
}

.footer__column-title {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__link {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  padding: 8px 0;
  white-space: nowrap;
}

.footer__link--no-pad {
  padding: 0;
}

.footer__link--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

.footer__credits {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-white);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--color-white);
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================
   About Page — Section 2: Compact Hero
   ============================================ */
.abouthero {
  width: 100%;
  height: 435px;
  background:
    url('assets/about-hero-composite.png') center / cover no-repeat,
    linear-gradient(163deg, rgb(30, 53, 102) 0%, rgb(47, 78, 134) 50%, rgb(66, 105, 167) 100%);
  position: relative;
  overflow: hidden;
}

.abouthero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 0 72px;
}

.abouthero__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abouthero__headline {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 51.2px;
  line-height: 57.344px;
  color: var(--color-white);
  width: 661px;
}

.abouthero__subtext {
  margin-top: 10px;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.8px;
  line-height: 27.3px;
  color: rgba(255, 255, 255, 0.75);
  width: 437px;
}

.abouthero__divider {
  margin-top: 18px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.abouthero__stats {
  margin-top: 32px;
  display: flex;
  gap: 40px;
}

.abouthero__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.abouthero__stat-number {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 28.8px;
  line-height: 28.8px;
  color: #f5c45e;
}

.abouthero__stat-label {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Section 3: The Story Behind Kalvi40 ── */
.aboutstory {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.aboutstory__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.aboutstory__left {
  flex: 0 0 608px;
  display: flex;
  flex-direction: column;
}

.aboutstory__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.aboutstory__dash {
  width: 18px;
  height: 2px;
  background: #4269a7;
  display: inline-block;
}

.aboutstory__eyebrow-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4269a7;
}

.aboutstory__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 46.4px;
  line-height: 55.68px;
  letter-spacing: -1.16px;
  color: #1e3566;
  margin: 0 0 20px 0;
  max-width: 528px;
}

.aboutstory__intro {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.8px;
  line-height: 30.24px;
  color: #3a4a60;
  margin: 0 0 16px 0;
  max-width: 590px;
}

.aboutstory__body {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 29.12px;
  color: #3a4a60;
  margin: 0 0 24px 0;
  max-width: 601px;
}

.aboutstory__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aboutstory__check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 24px;
  color: #3a4a60;
}

.aboutstory__check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.aboutstory__right {
  flex: 1;
}

.aboutstory__image-wrap {
  position: relative;
  width: 608px;
  height: 456px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0px 12px 48px rgba(66, 105, 167, 0.18);
}

.aboutstory__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutstory__pill {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.aboutstory__pill-icon {
  width: 12px;
  height: 12px;
}

.aboutstory__pill-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 12px;
  line-height: 16px;
  color: #4269a7;
}

/* ── Section 4: Founder's Story ── */
.aboutfounder {
  width: 100%;
  background: #faf8f3;
  padding: 96px 0;
}

.aboutfounder__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.aboutfounder__left {
  flex: 0 0 608px;
}

.aboutfounder__image-wrap {
  position: relative;
  width: 608px;
  height: 456px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0px 12px 48px rgba(66, 105, 167, 0.18);
}

.aboutfounder__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutfounder__pill {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.aboutfounder__pill-icon {
  width: 12px;
  height: 12px;
}

.aboutfounder__pill-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 12px;
  line-height: 16px;
  color: #4269a7;
}

.aboutfounder__right {
  flex: 1;
}

.aboutfounder__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.aboutfounder__dash {
  width: 18px;
  height: 2px;
  background: #4269a7;
  border-radius: 6px;
  display: inline-block;
}

.aboutfounder__eyebrow-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4269a7;
}

.aboutfounder__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 46.4px;
  line-height: normal;
  letter-spacing: -1.16px;
  color: #1e3566;
  margin: 0 0 32px 0;
  max-width: 564px;
}

.aboutfounder__quote {
  background: #eef2fa;
  border-left: 3px solid #a9bfe0;
  border-radius: 0 14px 14px 0;
  padding: 24px 32px 24px 35px;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aboutfounder__quote-text {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 18.4px;
  line-height: 30.36px;
  color: #1e3566;
  margin: 0;
  max-width: 517px;
}

.aboutfounder__quote-cite {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-semibold);
  font-size: 13.28px;
  line-height: 19.92px;
  letter-spacing: 0.332px;
  color: #4269a7;
  font-style: normal;
}

.aboutfounder__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aboutfounder__body p {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 29.12px;
  color: #3a4a60;
  margin: 0;
  max-width: 598px;
}

.aboutfounder__body strong {
  font-weight: var(--font-weight-bold);
}

/* ── Section 5: Vision & Mission ── */
.aboutvision {
  width: 100%;
  background: #ffffff;
  padding: 80px 0 100px;
}

.aboutvision__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aboutvision__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 46.4px;
  line-height: 51.968px;
  letter-spacing: -1.16px;
  color: #1e3566;
  margin: 0 0 48px 0;
  text-align: center;
}

.aboutvision__cards {
  display: flex;
  gap: 71px;
  width: 100%;
  justify-content: center;
}

.aboutvision__card {
  width: 479px;
  background: #ffffff;
  border: 1px solid #d4dfef;
  border-radius: 22px;
  padding: 40px;
}

.aboutvision__icon-wrap {
  width: 56px;
  height: 56px;
  background: #eef2fa;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.aboutvision__icon {
  width: 28px;
  height: 28px;
}

.aboutvision__card-heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 32px;
  color: #1e3566;
  margin: 0 0 12px 0;
}

.aboutvision__card-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 28.8px;
  color: #3a4a60;
  margin: 0;
}

/* ── Section 6: The People Behind Kalvi40 ── */
.aboutteam {
  width: 100%;
  background: #fff7e2;
  padding: 96px 0 80px;
}

.aboutteam__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

.aboutteam__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}

.aboutteam__header-left {
  flex: 0 0 auto;
}

.aboutteam__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.aboutteam__dash {
  width: 18px;
  height: 2px;
  background: #4269a7;
  border-radius: 6px;
  display: inline-block;
}

.aboutteam__eyebrow-text {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4269a7;
}

.aboutteam__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 46.4px;
  line-height: 51.968px;
  letter-spacing: -1.16px;
  color: #1e3566;
  margin: 0;
  max-width: 320px;
}

.aboutteam__intro {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.8px;
  line-height: 30.24px;
  color: #3a4a60;
  margin: 52px 0 0 0;
  max-width: 463px;
}

.aboutteam__section-row {
  display: flex;
  gap: 48px;
}

.aboutteam__section-labels {
  flex: 0 0 180px;
  padding-top: 8px;
}

.aboutteam__subheading-row {
  margin-bottom: 32px;
}

.aboutteam__subheading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-semibold);
  font-size: 30px;
  line-height: 51.968px;
  letter-spacing: -1.16px;
  color: #1e3566;
  margin: 0 0 8px 0;
}

.aboutteam__subheading--secondary {
  font-weight: var(--font-weight-regular);
  font-size: 22px;
  color: #3a4a60;
}

.aboutteam__subheading-line {
  width: 129px;
  height: 2px;
  background: #1e3566;
}

.aboutteam__section-grids {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.aboutteam__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aboutteam__card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 408px;
}

.aboutteam__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutteam__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 53, 102, 0.92) 0%,
    rgba(30, 53, 102, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 1;
}

.aboutteam__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.aboutteam__card-name {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 17.6px;
  line-height: 22px;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.aboutteam__card-role {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12.8px;
  line-height: 19.2px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
}

.aboutteam__card-pill {
  display: inline-block;
  background: #e8a027;
  color: #ffffff;
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 10.88px;
  line-height: 16.32px;
  letter-spacing: 0.544px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  cursor: pointer;
}

.aboutteam__card-popover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: rgba(30, 58, 110, 0.95);
  padding: 20px 24px;
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.aboutteam__card-popover p {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.aboutteam__card:hover .aboutteam__card-popover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.aboutteam__card:hover .aboutteam__card-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 53, 102, 0.95) 0%,
    rgba(30, 53, 102, 0.6) 60%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* ── Section 7: Supported & Recognised By ── */
.aboutpartners {
  width: 100%;
  background: #ffffff;
  padding: 66px 0 60px;
}

.aboutpartners__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 85px;
}

.aboutpartners__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}

.aboutpartners__header-left {
}

.aboutpartners__eyebrow {
  display: block;
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
}

.aboutpartners__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 28.8px;
  line-height: 43.2px;
  color: #1d2d3e;
  margin: 0;
}

.aboutpartners__desc {
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-regular);
  font-size: 14.08px;
  line-height: 21.12px;
  color: #1d2d3e;
  margin: 0;
  max-width: 324px;
}

.aboutpartners__logos-wrap {
  max-width: 1044px;
  margin: 0 auto;
}

.aboutpartners__logos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #d4dfef;
  border-bottom: none;
}

.aboutpartners__logo-cell {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-right: 1px solid #d4dfef;
  padding: 20px;
}

.aboutpartners__logo-cell:last-child {
  border-right: none;
}

.aboutpartners__logo-img {
  max-height: 108px;
  max-width: 250px;
  object-fit: contain;
}

.aboutpartners__labels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.aboutpartners__label {
  background: #4269a7;
  color: #ffffff;
  font-family: var(--font-dm-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 12.48px;
  line-height: 17.16px;
  text-align: center;
  padding: 12px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.aboutpartners__label:last-child {
  border-right: none;
}

.aboutpartners__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 36px;
}

.aboutpartners__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4dfef;
}

.aboutpartners__dot--active {
  background: #4269a7;
}

/* ── Section 8: Final CTA ── */
.aboutcta {
  width: 100%;
  background: #1d2d3e;
  padding: 127px 0 158px;
}

.aboutcta__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.aboutcta__eyebrow {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94bdff;
  margin-bottom: 23px;
}

.aboutcta__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 64px;
  line-height: 70.4px;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin: 0 0 71px 0;
  max-width: 712px;
}

.aboutcta__heading--gold {
  color: #f5c541;
}

.aboutcta__subtitle {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 48px 0;
  max-width: 452px;
}

.aboutcta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 221px;
  height: 59px;
  background: #4269a7;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  box-shadow: 0px 10px 7.5px rgba(0, 0, 0, 0.1), 0px 4px 3px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════
   OUR WORKS PAGE
   ═══════════════════════════════════════════ */

/* ── Section 2: Hero ── */
.workshero {
  width: 100%;
}

.workshero__bg {
  background: #2e4d84;
  padding: 100px 0 349px;
}

.workshero__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 227px;
  text-align: center;
}

.workshero__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 56px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.workshero__heading--gold {
  color: #f5c541;
}

.workshero__subtitle {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  max-width: 954px;
  margin-left: auto;
  margin-right: auto;
}

.workshero__image-wrap {
  max-width: 1158px;
  margin: -269px auto 0;
  padding-bottom: 257px;
  position: relative;
  z-index: 1;
}

.workshero__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0px 12px 48px 0px rgba(66, 105, 167, 0.18);
}

/* ── Section 3: Mobile App ── */
.worksapp {
  width: 100%;
  background: #fff7e2;
  position: relative;
  overflow: hidden;
  padding: 112px 0 0;
}

.worksapp__deco {
  position: absolute;
  top: 200px;
  left: -530px;
  width: 2586px;
  max-width: none;
  height: auto;
  transform: rotate(10.49deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}

.worksapp__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

.worksapp__title-block {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.worksapp__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0 0 24px 0;
}

.worksapp__text {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.worksapp__row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 131px;
  padding-bottom: 112px;
}

.worksapp__col {
  flex: 1 1 322px;
  max-width: 322px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.worksapp__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.worksapp__icon--sm {
  width: 50px;
  height: 50px;
}

.worksapp__icon--md {
  width: 60px;
  height: 72px;
  object-fit: contain;
}

.worksapp__feature-title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.worksapp__feature-text {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.worksapp__phone {
  flex: 0 1 604px;
  height: 604px;
}

.worksapp__phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Section 4: Intuitive Learning Gallery ── */
.worksgallery {
  width: 100%;
  background: #fff7e2;
  overflow: hidden;
  padding: 112px 64px;
}

.worksgallery__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.worksgallery__title-block {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.worksgallery__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.worksgallery__text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.worksgallery__scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: clip;
  scrollbar-width: none;
}

.worksgallery__scroll::-webkit-scrollbar {
  display: none;
}

.worksgallery__card {
  flex: 0 0 430px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worksgallery__card-img {
  border: 1px solid #d2d2d2;
  overflow: hidden;
  flex-shrink: 0;
}

.worksgallery__card-img--home {
  aspect-ratio: 1440 / 819;
  border-radius: 24px;
}

.worksgallery__card-img--quiz {
  height: 245px;
  border-radius: 24px;
}

.worksgallery__card-img--test {
  height: 246px;
  border-radius: 24px;
}

.worksgallery__card-img--subject {
  height: 245px;
  border-radius: 12px;
}

.worksgallery__card-img--profile {
  height: 252px;
  border-radius: 12px;
}

.worksgallery__card-img--leaderboard {
  height: 245px;
  border-radius: 12px;
}

.worksgallery__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.worksgallery__card-caption {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.worksgallery__card-caption--ss3 {
  font-family: 'Source Sans 3', sans-serif;
}

.worksgallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.worksgallery__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.worksgallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #000000;
}

.worksgallery__dot--active {
  background: #000000;
}

.worksgallery__arrows {
  display: flex;
  gap: 16px;
}

.worksgallery__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

/* ── Section 5: Key Features ── */
.worksfeatures {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 112px 64px;
}

.worksfeatures__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.worksfeatures__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  text-align: center;
}

.worksfeatures__row {
  display: flex;
  gap: 80px;
  align-items: stretch;
  width: 100%;
}

.worksfeatures__image-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.worksfeatures__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.worksfeatures__list {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 8px 0;
  max-height: 552px;
  overflow-y: auto;
  overflow-x: clip;
}

.worksfeatures__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.worksfeatures__num-circle {
  flex: 0 0 94px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fdf4e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worksfeatures__num {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 52px;
  line-height: 1.4;
  color: #fa9141;
}

.worksfeatures__item-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worksfeatures__item-title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.worksfeatures__item-title--bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.worksfeatures__item-text {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* ── Section 6: Beyond the Classroom ── */
.worksbeyond {
  width: 100%;
  background: #f4faff;
  overflow: hidden;
  padding: 112px 64px;
}

.worksbeyond__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.worksbeyond__title-block {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.worksbeyond__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.worksbeyond__text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.worksbeyond__cards {
  display: flex;
  gap: 48px;
  width: 100%;
}

.worksbeyond__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.worksbeyond__card-img {
  width: 100%;
  aspect-ratio: 395 / 408;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.worksbeyond__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.worksbeyond__card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  text-align: center;
  padding: 12px 0;
}

.worksbeyond__card-text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  text-align: center;
}

/* ── Section 7: Inside the Learning Experience ── */
.worksexperience {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 112px 64px;
}

.worksexperience__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.worksexperience__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  text-align: center;
}

.worksexperience__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.worksexperience__row {
  display: flex;
  gap: 48px;
}

.worksexperience__cell {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 395 / 240;
  overflow: hidden;
}

.worksexperience__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Section 8: Expanding the Reach ── */
.worksreach {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 112px 64px;
}

.worksreach__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.worksreach__title-block {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.worksreach__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 462px;
}

.worksreach__text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  max-width: 560px;
}

.worksreach__cards {
  display: flex;
  gap: 48px;
  width: 100%;
}

.worksreach__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.worksreach__card-img {
  width: 100%;
  aspect-ratio: 395 / 218;
  overflow: hidden;
  flex-shrink: 0;
}

.worksreach__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.worksreach__card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.worksreach__card-title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.worksreach__card-text {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* ── Section 9: Donate CTA ── */
.workscta {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440 / 522;
}

.workscta__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 84.3%;
  object-fit: cover;
  display: block;
}

.workscta__panel {
  position: absolute;
  top: 0;
  right: 56px;
  width: 590px;
  height: 430px;
  background: #f5c541;
  clip-path: polygon(0 0, 100% 18.93%, 100% 100%, 0 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 54px;
}

.workscta__heading {
  font-family: var(--font-rubik);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 483px;
}

.workscta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4269a7;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 21px;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
}

/* ============================================
   STORIES OF CHANGE PAGE
   ============================================ */

/* ============================================
   Stories Section 2: Hero
   ============================================ */
.storieshero {
  width: 100%;
  background: var(--color-white);
}

.storieshero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 724;
  overflow: hidden;
}

.storieshero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.storieshero__iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.storieshero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storieshero__play-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storieshero__content {
  padding: 80px 80px;
}

.storieshero__container {
  max-width: 1280px;
  margin: 0 auto;
}

.storieshero__row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.storieshero__col-left {
  flex: 1;
}

.storieshero__col-right {
  flex: 1;
}

.storieshero__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 56px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.storieshero__body {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

/* ============================================
   Stories Section 3: Teachers & Community Testimonials
   ============================================ */
.storiesteachers {
  width: 100%;
  background: var(--color-white);
  padding: 112px 64px;
}

.storiesteachers__container {
  max-width: 1280px;
  margin: 0 auto;
}

.storiesteachers__row {
  display: flex;
  gap: 80px;
  align-items: center;
}

.storiesteachers__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.storiesteachers__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 56px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 634px;
}

.storiesteachers__body {
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.storiesteachers__right {
  position: relative;
  width: 600px;
  height: 600px;
  flex-shrink: 0;
  overflow: hidden;
}

.storiesteachers__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.storiesteachers__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.storiesteachers__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.storiesteachers__play-svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   Stories Section 4: Our Impact
   ============================================ */
.storiesimpact {
  width: 100%;
  background: #1e3a6e;
  padding: 96px 0 77px;
}

.storiesimpact__container {
  max-width: 1036px;
  width: 100%;
  margin: 0 auto;
}

.storiesimpact__header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 75px;
}

.storiesimpact__header-left {
  flex-shrink: 0;
}

.storiesimpact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.storiesimpact__label-dash {
  width: 20px;
  height: 2px;
  background: #f5c541;
}

.storiesimpact__label-text {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 12.48px;
  line-height: 1;
  color: #f5c541;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.storiesimpact__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.storiesimpact__body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 16.96px;
  line-height: 27.56px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 531px;
}

.storiesimpact__stats {
  display: flex;
  gap: 0;
  margin-bottom: 64px;
}

.storiesimpact__stat {
  width: 206px;
  height: 201px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: background 0.25s ease;
}

.storiesimpact__stat:hover {
  background: rgba(255, 255, 255, 0.18);
}

.storiesimpact__stat + .storiesimpact__stat {
  margin-left: 1px;
}

.storiesimpact__stat--highlight {
  background: rgba(255, 255, 255, 0.1);
}

.storiesimpact__stat-emoji {
  font-size: 50px;
  line-height: 1;
}

.storiesimpact__stat-number {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 44.8px;
  line-height: 1;
  color: #ffffff;
}

.storiesimpact__stat-label {
  font-family: 'Noto Sans', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 13.12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.storiesimpact__testimonials {
  display: flex;
  gap: 24px;
  margin-bottom: 77px;
}

.storiesimpact__card {
  width: 329px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.storiesimpact__card--active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.storiesimpact__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.storiesimpact__card-quote {
  font-family: var(--font-lora);
  font-weight: var(--font-weight-regular);
  font-size: 38.4px;
  line-height: 1;
  color: #ffffff;
}

.storiesimpact__card-category {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 14.08px;
  line-height: 1;
  color: #f5c541;
}

.storiesimpact__card-text {
  font-family: 'Noto Sans', sans-serif;
  font-weight: var(--font-weight-regular);
  font-style: italic;
  font-size: 15.36px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 auto 0;
}

.storiesimpact__card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.storiesimpact__card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='15' r='7' fill='rgba(255,255,255,0.35)'/%3E%3Cellipse cx='20' cy='35' rx='12' ry='10' fill='rgba(255,255,255,0.35)'/%3E%3C/svg%3E") center/cover no-repeat;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.storiesimpact__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.storiesimpact__card-name {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-bold);
  font-size: 14.08px;
  line-height: 1.5;
  color: #ffffff;
}

.storiesimpact__card-role {
  font-family: var(--font-source-sans);
  font-weight: var(--font-weight-regular);
  font-size: 12.16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.storiesimpact__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.storiesimpact__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

.storiesimpact__dot--active {
  background: #ffffff;
}

/* ============================================
   Stories Section 5: Donate CTA
   ============================================ */
.storiescta {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440 / 522;
  margin-top: -5.694%;
  z-index: 1;
}

.storiescta__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 84.29%;
  object-fit: cover;
  display: block;
}

.storiescta__panel {
  position: absolute;
  top: 0;
  right: 3.89%;
  width: 40.97%;
  height: 82.57%;
  background: #f5c541;
  clip-path: polygon(0 0, 100% 18.93%, 100% 100%, 0 100%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 65px;
}

.storiescta__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 40px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
  max-width: 398px;
}

.storiescta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4269a7;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: 21.21px;
  line-height: 1.5;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  margin-top: 41px;
}

/* ============================================
   RECOGNITION PAGE
   ============================================ */

/* ============================================
   Recognition Section 2: Awards & Recognitions
   ============================================ */
.recogawards {
  width: 100%;
  background: #fafaf8;
  padding: 97px 0 80px;
}

.recogawards__container {
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 80px;
}

.recogawards__title {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  margin: 0 0 152px 0;
}

.recogawards__row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.recogawards__timeline {
  flex: 1;
  position: relative;
  padding-left: 82px;
}

.recogawards__line {
  position: absolute;
  left: 28px;
  top: 57px;
  bottom: 57px;
  width: 1px;
  background: #4269a7;
}

.recogawards__item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}

.recogawards__item + .recogawards__item {
  margin-top: 139px;
}

.recogawards__icon {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: #4269a7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: -82px;
  top: 0;
  z-index: 1;
}

.recogawards__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recogawards__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.recogawards__body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
  max-width: 489px;
}

.recogawards__cert {
  width: 433px;
  flex-shrink: 0;
}

.recogawards__cert-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.recogawards__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 72px;
}

.recogawards__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.recogawards__dot--active {
  background: #000000;
}

/* ============================================
   Recognition Section 3: Partners
   ============================================ */
.recogpartners {
  width: 100%;
  background: #ffffff;
  padding: 96px 0 120px;
}

.recogpartners__container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 80px;
}

.recogpartners__header {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}

.recogpartners__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 42.4px;
  line-height: 1.25;
  color: #1c2b3a;
  margin: 0;
  max-width: 361px;
  flex-shrink: 0;
}

.recogpartners__subtitle-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 12px;
}

.recogpartners__subtitle-line {
  width: 2px;
  height: 54px;
  background: #4269a7;
  flex-shrink: 0;
}

.recogpartners__subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 16.96px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
}

.recogpartners__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.recogpartners__labels {
  width: 240px;
  flex-shrink: 0;
  padding-top: 8px;
}

.recogpartners__label {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}

.recogpartners__label--csr {
  font-weight: var(--font-weight-semibold);
  font-size: 30px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.recogpartners__divider {
  width: 242px;
  height: 1px;
  background: #000000;
  margin: 16px 0;
}

.recogpartners__logos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recogpartners__grid {
  display: grid;
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.recogpartners__grid--csr {
  grid-template-columns: repeat(4, 1fr);
}

.recogpartners__grid--partners {
  grid-template-columns: repeat(4, 1fr);
}

.recogpartners__logo {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  display: block;
}

/* ═══════════════════════════════════════════════════
   CONTACT US PAGE
   ═══════════════════════════════════════════════════ */

/* ── Section 2: Contact Form ── */
.contactform {
  background: #ffffff;
  width: 100%;
  padding: 112px 64px;
}

.contactform__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contactform__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contactform__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactform__tagline {
  font-family: var(--font-roboto);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}

.contactform__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 56px;
  line-height: 1.2;
  color: #000000;
}

.contactform__image {
  width: 100%;
  aspect-ratio: 600 / 504;
  overflow: hidden;
}

.contactform__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contactform__form {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactform__row {
  display: flex;
  gap: 24px;
}

.contactform__row .contactform__field {
  flex: 1;
  min-width: 0;
}

.contactform__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contactform__label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
}

.contactform__req {
  color: red;
}

.contactform__input {
  height: 48px;
  border: 1px solid #000000;
  padding: 12px;
  font-family: var(--font-roboto);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background: transparent;
  outline: none;
  box-sizing: border-box;
}

.contactform__select-wrap {
  position: relative;
}

.contactform__select {
  width: 100%;
  height: 48px;
  border: 1px solid #000000;
  padding: 12px 40px 12px 12px;
  font-family: var(--font-roboto);
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url('assets/icon-chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 7px;
  cursor: pointer;
  box-sizing: border-box;
}

.contactform__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  cursor: pointer;
}

.contactform__check {
  width: 18px;
  height: 18px;
  border: 1px solid #000000;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
}

.contactform__check:checked {
  background: var(--color-blue);
}

.contactform__check-text {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

.contactform__check-text u {
  color: #000000;
}

.contactform__actions {
  display: flex;
  align-items: flex-start;
}

.contactform__submit {
  background: #4269a7;
  color: #ffffff;
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* ── Section 3: Contact Info ── */
.contactinfo {
  background: #ffffff;
  width: 100%;
}

.contactinfo__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 112px 64px;
  overflow: hidden;
}

.contactinfo__row {
  display: flex;
  gap: 32px;
}

.contactinfo__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactinfo__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactinfo__icon-img {
  width: 100%;
  height: 100%;
}

.contactinfo__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #000000;
}

.contactinfo__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactinfo__heading {
  font-family: var(--font-rubik);
  font-weight: var(--font-weight-regular);
  font-size: 50px;
  line-height: 1.4;
  color: #000000;
}

.contactinfo__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
}

.contactinfo__detail {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
}

.contactinfo__map-wrap {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 64px 112px;
}

.contactinfo__map {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Hamburger & Mobile Menu (hidden on desktop) ── */
.navbar__hamburger {
  display: none;
}

.navbar__mobile-menu {
  display: none;
}

/* ============================================
   MOBILE RESPONSIVE — 394px
   Phase B: @media overrides only
   ============================================ */

@media (max-width: 480px) {

  /* ── Section 1: Navbar ── */
  .navbar__header {
    height: 72px;
    padding: 0 16px;
  }

  .navbar__content {
    gap: 0;
  }

  .navbar__logo img {
    width: 40px;
    height: 40px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__actions {
    gap: 8px;
  }

  .navbar__btn {
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .navbar__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
  }

  .navbar__mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 8px 16px 16px;
    border-top: 1px solid #e5e7eb;
  }

  .navbar__mobile-menu--open {
    display: flex;
  }

  .navbar__mobile-link {
    padding: 12px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1c2b3a;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar__mobile-link:last-child {
    border-bottom: none;
  }

  .navbar__mobile-link--active {
    color: #4269a7;
    font-weight: 500;
  }

  /* ── Section 2: Hero ── */
  .hero {
    height: auto;
    min-height: 500px;
    background-position: center top;
  }

  .hero__content {
    padding: 36px 24px 48px;
  }

  .hero__headline {
    font-size: 36px;
    line-height: 43.45px;
    letter-spacing: -0.97px;
    width: 100%;
    max-width: 321px;
  }

  .hero__subtext {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    max-width: 254px;
  }

  .hero__ctas {
    margin-top: 24px;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 289px;
  }

  .hero__btn {
    width: 100%;
    justify-content: center;
  }

  .hero__students {
    margin-top: 32px;
  }

  .hero__students-count {
    font-size: 24px;
  }

  .hero__students-label {
    font-size: 16px;
  }

  /* ── Section 3: Stats Band ── */
  .stats {
    height: auto;
    padding: 48px 24px;
  }

  .stats__container {
    flex-wrap: wrap;
    gap: 40px 0;
    justify-content: center;
    max-width: 100%;
    padding: 0;
  }

  .stats__item {
    width: 50%;
    gap: 12px;
  }

  .stats__icon {
    height: 50px;
  }

  .stats__number {
    font-size: 32px;
  }

  .stats__label {
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    text-align: center;
    max-width: 120px;
  }

  /* ── Section 4: The Problem We're Solving ── */
  .problem {
    padding: 48px 0 60px;
  }

  .problem__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }

  .problem__left {
    width: 100%;
    min-width: 0;
    height: auto;
  }

  .problem__image {
    width: 100%;
    height: auto;
  }

  .problem__callout {
    width: 188px;
    top: auto;
    bottom: -30px;
    left: auto;
    right: 20px;
    padding: 13px 15px 12px 18px;
    gap: 8px;
    border-radius: 6px;
    border-left-width: 2.5px;
  }

  .problem__callout-number {
    font-size: 24.56px;
    line-height: 24.56px;
  }

  .problem__callout-text {
    font-size: 8.4px;
    line-height: 11.5px;
    width: auto;
  }

  .problem__right {
    padding-top: 0;
    width: 100%;
  }

  .problem__headline {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }

  .problem__body {
    font-size: 14px;
    line-height: normal;
    width: 100%;
  }

  .problem__chips {
    margin-top: 10px;
  }

  .problem__chip {
    height: auto;
    padding: 9px 14px;
  }

  .problem__chip--1,
  .problem__chip--2,
  .problem__chip--3 {
    width: 100%;
  }

  .problem__chip-text {
    font-size: 13.12px;
    line-height: 19.68px;
    white-space: normal;
  }

  /* ── Section 5: Who We Are ── */
  .whoweare {
    padding-bottom: 60px;
  }

  .whoweare__title {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 340px;
  }

  .whoweare__subtitle {
    font-size: 14px;
    line-height: normal;
    width: 100%;
    max-width: 343px;
    padding: 0 20px;
  }

  .whoweare__cards {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 20px;
    margin-top: 40px;
    gap: 24px;
    box-sizing: border-box;
  }

  .whoweare__card-image {
    height: 192px;
  }

  .whoweare__card-content {
    padding: 24px;
  }

  .whoweare__card-title {
    font-size: 16px;
    line-height: 24px;
    min-height: auto;
  }

  .whoweare__card-body {
    font-size: 14px;
    line-height: 22.75px;
  }

  /* ── Section 6: Recognition ── */
  .recognition {
    padding-bottom: 60px;
  }

  .recognition__container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .recognition__text-row {
    flex-direction: column;
    gap: 16px;
  }

  .recognition__heading {
    font-size: 30px;
    line-height: 36px;
    white-space: normal;
    width: 279px;
  }

  .recognition__description {
    width: 100%;
    padding-top: 0;
  }

  .recognition__certs {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 32px;
    background: transparent;
    border: none;
  }

  .recognition__cert {
    height: 113px;
    border-radius: 0;
  }

  /* ── Section 7: The App ── */
  .theapp {
    padding: 48px 0 60px;
  }

  .theapp__container {
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .theapp__left {
    padding-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .theapp__phone {
    width: 200px;
    height: auto;
  }

  .theapp__play {
    left: 80px;
    top: 200px;
  }

  .theapp__learn-more {
    margin-left: 0;
    margin-top: 24px;
    text-align: center;
  }

  .theapp__right {
    width: 100%;
  }

  .theapp__heading {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    max-width: 317px;
  }

  .theapp__card {
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 16px;
    box-sizing: border-box;
  }

  .theapp__card--active {
    padding-left: 24px;
  }

  .theapp__card-icon {
    width: 48px;
    height: 48px;
  }

  .theapp__card-title {
    font-size: 16px;
    line-height: 24px;
  }

  .theapp__card-body {
    font-size: 14px;
    line-height: 22.75px;
  }

  /* ── Section 8: Our Impact ── */
  .impact {
    padding: 60px 0 48px;
  }

  .impact__header {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .impact__header-left {
    width: 100%;
  }

  .impact__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 279px;
  }

  .impact__header-right {
    width: 100%;
    padding-top: 0;
  }

  .impact__body {
    font-size: 14px;
    line-height: normal;
  }

  .impact__stats {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .impact__stat {
    height: 171px;
  }

  .impact__stat-emoji {
    font-size: 36px;
  }

  .impact__stat-number {
    font-size: 30px;
    line-height: 36px;
  }

  .impact__stat-label {
    font-size: 12px;
    line-height: 16px;
  }

  .impact__testimonials {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .impact__testimonial {
    padding: 32px;
    min-height: 294px;
  }

  .impact__dots {
    margin-top: 32px;
  }

  /* ── Section 9: Our Model ── */
  .ourmodel {
    padding: 60px 0 60px;
  }

  .ourmodel__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 340px;
    min-height: auto;
  }

  .ourmodel__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 24px;
  }

  .ourmodel__card {
    min-height: auto;
  }

  .ourmodel__card-image {
    height: 192px;
  }

  .ourmodel__card-content {
    padding: 24px;
  }

  .ourmodel__card-title {
    font-size: 16px;
    line-height: 24px;
  }

  .ourmodel__card-body {
    font-size: 14px;
    line-height: 22.75px;
  }

  /* ── Section 10: Women Empowerment ── */
  .women {
    margin-bottom: 60px;
  }

  .women__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .women__banner {
    height: 180px;
    border-radius: 16px 16px 0 0;
  }

  .women__panel {
    flex-direction: column;
    gap: 32px;
    padding: 24px 20px 32px;
    border-radius: 0 0 16px 16px;
  }

  .women__left {
    max-width: 100%;
  }

  .women__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }

  .women__body {
    font-size: 14px;
    line-height: normal;
  }

  .women__stats {
    gap: 32px;
    padding-top: 0;
    align-items: flex-start;
  }

  .women__stats-row {
    gap: 32px;
  }

  .women__stats-row:last-child {
    gap: 32px;
  }

  .women__stats-row:first-child .women__stat {
    width: auto;
  }

  .women__stats-row:last-child .women__stat:first-child,
  .women__stats-row:last-child .women__stat:last-child {
    width: auto;
  }

  .women__stat-number {
    font-size: 28px;
    line-height: 28px;
  }

  .women__stat-label {
    font-size: 12px;
    line-height: 18px;
  }

  /* ── Section 11: Policy Alignment ── */
  .alignment {
    padding: 60px 0 48px;
  }

  .alignment__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
    max-width: 320px;
  }

  .alignment__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .alignment__card {
    padding: 32px 24px 28px;
    min-height: auto;
  }

  .alignment__card-body {
    width: 100%;
  }

  /* ── Section 12: Partners ── */
  .partners {
    padding: 60px 0;
  }

  .partners__container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .partners__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .partners__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }

  .partners__divider {
    display: none;
  }

  .partners__subtitle {
    font-size: 14px;
    line-height: normal;
    width: 100%;
  }

  .partners__section {
    margin-top: 48px;
    flex-direction: column;
    gap: 24px;
  }

  .partners__section--second {
    margin-top: 40px;
  }

  .partners__section-label {
    width: 100%;
    padding-top: 0;
  }

  .partners__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }

  .partners__logo {
    height: 45px;
    max-width: 110px;
  }

  .partners__logo--wide {
    max-width: 110px;
  }

  /* ── Section 13: Donate ── */
  .donate {
    min-height: auto;
  }

  .donate__container {
    max-width: 100%;
    padding: 48px 20px 40px;
    box-sizing: border-box;
  }

  .donate__heading {
    font-size: 30px;
    line-height: 36px;
    width: 100%;
  }

  .donate__body {
    font-size: 14px;
    line-height: normal;
    width: 100%;
  }

  .donate__buttons {
    margin-top: 32px;
    width: 100%;
  }

  .donate__btn {
    width: 100%;
  }

  .donate__image {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 280px;
  }

  /* ── Section 14: Final CTA ── */
  .cta {
    padding: 48px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta__student {
    position: relative;
    width: 213px;
    top: 0;
    left: 0;
    bottom: auto;
    height: 507px;
    order: 2;
    align-self: flex-start;
    margin-left: 3px;
    pointer-events: none;
  }

  .cta__student img {
    object-position: top left;
  }

  .cta__container {
    max-width: 100%;
    margin-left: auto;
    padding: 0 20px;
    box-sizing: border-box;
    gap: 32px;
    order: 1;
  }

  .cta__heading {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.8px;
  }

  .cta__bottom {
    width: 100%;
    gap: 32px;
  }

  .cta__subtitle {
    font-size: 14px;
    line-height: normal;
    width: 100%;
  }

  .cta__buttons {
    flex-direction: column;
    gap: 14px;
  }

  .cta__btn--primary,
  .cta__btn--outline {
    width: 100%;
  }

  /* ── Section 15: Footer ── */
  .footer {
    padding: 48px 20px;
  }

  .footer__container {
    gap: 48px;
  }

  .footer__content {
    flex-direction: column;
    gap: 40px;
  }

  .footer__newsletter {
    width: 100%;
    gap: 16px;
  }

  .footer__brand {
    font-size: 28px;
  }

  .footer__form {
    flex-direction: column;
    gap: 12px;
  }

  .footer__input {
    width: 100%;
  }

  .footer__subscribe {
    width: 100%;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .footer__link {
    white-space: normal;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: 8px;
  }

  /* ============================================
     ABOUT PAGE — Mobile Overrides
     ============================================ */

  /* ── About Section 2: Compact Hero ── */
  .abouthero {
    height: 780px;
    background:
      url('assets/about-hero-composite.png') 100% bottom / auto 50% no-repeat,
      linear-gradient(163deg, rgb(30, 53, 102) 0%, rgb(47, 78, 134) 50%, rgb(66, 105, 167) 100%);
    overflow: hidden;
  }

  .abouthero__container {
    padding: 55px 20px 0 29px;
    box-sizing: border-box;
    width: 100%;
  }

  .abouthero__headline {
    font-size: 36px;
    line-height: normal;
    width: 319px;
    max-width: 100%;
  }

  .abouthero__subtext {
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    max-width: 100%;
  }

  .abouthero__divider {
    display: none;
  }

  .abouthero__stats {
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 36px;
    justify-content: space-between;
    width: 100%;
  }

  .abouthero__stat {
    width: auto;
  }

  .abouthero__stat-number {
    font-size: 24.686px;
    line-height: 24.686px;
  }

  .abouthero__stat-label {
    font-size: 10.286px;
    line-height: 13.714px;
    letter-spacing: 0.5143px;
  }

  /* ── About Section 3: Story Behind Kalvi40 ── */
  .aboutstory {
    padding: 48px 0;
  }

  .aboutstory__container {
    flex-direction: column;
    padding: 0 16px;
    gap: 32px;
  }

  .aboutstory__left {
    flex: none;
    width: 100%;
    order: 2;
  }

  .aboutstory__right {
    order: 1;
    width: 100%;
    flex: none;
  }

  .aboutstory__heading {
    font-size: 30px;
    line-height: 36px;
    max-width: 100%;
  }

  .aboutstory__intro {
    font-size: 16px;
    line-height: 28px;
    max-width: 100%;
  }

  .aboutstory__body {
    font-size: 16px;
    line-height: 28px;
    max-width: 100%;
  }

  .aboutstory__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 362 / 483;
    border-radius: 24px;
  }

  /* ── About Section 4: Founder's Story ── */
  .aboutfounder {
    padding: 48px 0;
  }

  .aboutfounder__container {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }

  .aboutfounder__left {
    flex: none;
    width: 100%;
  }

  .aboutfounder__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .aboutfounder__heading {
    font-size: 30px;
    line-height: 36px;
    max-width: 100%;
  }

  .aboutfounder__quote {
    padding: 20px 24px;
    margin-bottom: 24px;
  }

  .aboutfounder__quote-text {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .aboutfounder__body p {
    font-size: 14px;
    line-height: 24px;
    max-width: 100%;
  }

  /* ── About Section 5: Vision & Mission ── */
  .aboutvision {
    padding: 48px 0;
  }

  .aboutvision__container {
    padding: 0 20px;
  }

  .aboutvision__heading {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 32px;
  }

  .aboutvision__cards {
    flex-direction: column;
    gap: 24px;
  }

  .aboutvision__card {
    width: 100%;
    padding: 32px 24px;
  }

  .aboutvision__card-heading {
    font-size: 20px;
    line-height: 28px;
  }

  .aboutvision__card-text {
    font-size: 16px;
    line-height: 26px;
  }

  /* ── About Section 6: Team Grid ── */
  .aboutteam {
    padding: 48px 0;
  }

  .aboutteam__container {
    padding: 0 20px;
  }

  .aboutteam__header {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .aboutteam__heading {
    font-size: 30px;
    line-height: 36px;
    max-width: 100%;
  }

  .aboutteam__intro {
    margin-top: 16px;
    max-width: 100%;
  }

  .aboutteam__section-row {
    flex-direction: column;
    gap: 24px;
  }

  .aboutteam__section-labels {
    flex: none;
    width: 100%;
  }

  .aboutteam__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aboutteam__card {
    height: 380px;
  }

  .aboutteam__card-info {
    padding: 16px;
  }

  .aboutteam__card-name {
    font-size: 14px;
    line-height: 18px;
  }

  .aboutteam__card-role {
    font-size: 11px;
    line-height: 16px;
    margin-bottom: 8px;
  }

  .aboutteam__card-pill {
    font-size: 9px;
    padding: 3px 8px;
    margin-right: 4px;
    margin-bottom: 4px;
  }

  .aboutteam__card-popover {
    padding: 14px 16px;
    border-radius: 8px 8px 0 0;
    font-size: 12px;
  }

  .aboutteam__card-popover p {
    font-size: 12px;
    line-height: 18px;
  }

  .aboutteam__card:hover .aboutteam__card-popover {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .aboutteam__card.aboutteam__card--active .aboutteam__card-popover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .aboutteam__card.aboutteam__card--active .aboutteam__card-overlay {
    background: linear-gradient(
      to top,
      rgba(30, 53, 102, 0.95) 0%,
      rgba(30, 53, 102, 0.6) 60%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  /* ── About Section 7: Supported & Recognised By ── */
  .aboutpartners {
    padding: 48px 0;
  }

  .aboutpartners__container {
    padding: 0 20px;
  }

  .aboutpartners__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .aboutpartners__heading {
    font-size: 24px;
    line-height: 32px;
  }

  .aboutpartners__desc {
    max-width: 100%;
  }

  .aboutpartners__logos-wrap {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aboutpartners__logos-row {
    display: contents;
  }

  .aboutpartners__labels-row {
    display: contents;
  }

  .aboutpartners__logo-cell {
    border-right: none;
    border-bottom: none;
    order: var(--cell-order);
  }

  .aboutpartners__logo-cell:nth-child(1) { order: 1; }
  .aboutpartners__logo-cell:nth-child(2) { order: 3; }
  .aboutpartners__logo-cell:nth-child(3) { order: 5; }

  .aboutpartners__label {
    border-right: none;
    height: auto;
    padding: 16px;
    order: var(--label-order);
  }

  .aboutpartners__label:nth-child(1) { order: 2; }
  .aboutpartners__label:nth-child(2) { order: 4; }
  .aboutpartners__label:nth-child(3) { order: 6; }

  /* ── About Section 8: Final CTA ── */
  .aboutcta {
    padding: 48px 20px;
  }

  .aboutcta__container {
    padding: 32px 24px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .aboutcta__heading {
    font-size: 24px;
    line-height: 32px;
    max-width: 100%;
  }

  /* ── Our Works Section 2: Hero ── */
  .workshero__bg {
    padding: 48px 0 120px;
  }

  .workshero__container {
    padding: 0 24px;
  }

  .workshero__heading {
    font-size: 36px;
    line-height: normal;
  }

  .workshero__subtitle {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .workshero__image-wrap {
    max-width: 344px;
    margin: -80px auto 0;
    padding-bottom: 40px;
  }

  .workshero__image {
    height: 179px;
    border-radius: 12px;
  }

  /* ── Our Works Section 3: Mobile App ── */
  .worksapp {
    padding: 48px 0 0;
  }

  .worksapp__deco {
    display: none;
  }

  .worksapp__container {
    padding: 0 16px;
  }

  .worksapp__heading {
    font-size: 30px;
    line-height: 36px;
  }

  .worksapp__text {
    font-size: 16px;
    line-height: 26px;
  }

  .worksapp__row {
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
    padding-bottom: 48px;
  }

  .worksapp__col {
    flex: none;
    max-width: 100%;
    width: 100%;
    gap: 48px;
  }

  .worksapp__phone {
    flex: none;
    height: 256px;
    width: 256px;
    margin: 0 auto;
    order: -1;
  }

  /* ── Our Works Section 4: Gallery ── */
  .worksgallery {
    padding: 48px 16px;
  }

  .worksgallery__container {
    gap: 40px;
  }

  .worksgallery__title-block {
    max-width: 100%;
    text-align: center;
  }

  .worksgallery__heading {
    font-size: 30px;
  }

  .worksgallery__text {
    font-size: 16px;
    line-height: 26px;
  }

  .worksgallery__scroll {
    gap: 16px;
  }

  .worksgallery__card {
    flex: 0 0 300px;
  }

  .worksgallery__card-img--home,
  .worksgallery__card-img--quiz,
  .worksgallery__card-img--test,
  .worksgallery__card-img--subject,
  .worksgallery__card-img--profile,
  .worksgallery__card-img--leaderboard {
    height: auto;
    border-radius: 16px;
  }

  .worksgallery__card-caption {
    font-size: 16px;
  }

  .worksgallery__arrow {
    width: 40px;
    height: 40px;
  }

  /* ── Our Works Section 5: Key Features ── */
  .worksfeatures {
    padding: 48px 16px;
  }

  .worksfeatures__container {
    gap: 40px;
  }

  .worksfeatures__heading {
    font-size: 30px;
  }

  .worksfeatures__row {
    flex-direction: column;
    gap: 40px;
  }

  .worksfeatures__image-wrap {
    display: none;
  }

  .worksfeatures__list {
    flex: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    gap: 32px;
  }

  .worksfeatures__num-circle {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }

  .worksfeatures__num {
    font-size: 40px;
  }

  .worksfeatures__item-title {
    font-size: 20px;
  }

  .worksfeatures__item-text {
    font-size: 14px;
  }

  /* ── Our Works Section 6: Beyond the Classroom ── */
  .worksbeyond {
    padding: 48px 16px;
  }

  .worksbeyond__container {
    gap: 40px;
  }

  .worksbeyond__heading {
    font-size: 30px;
  }

  .worksbeyond__text {
    font-size: 16px;
    line-height: 26px;
  }

  .worksbeyond__cards {
    flex-direction: column;
    gap: 32px;
  }

  .worksbeyond__card-img {
    aspect-ratio: 362 / 362;
    border-radius: 24px;
  }

  .worksbeyond__card-title {
    font-size: 20px;
  }

  .worksbeyond__card-text {
    font-size: 14px;
  }

  /* ── Our Works Section 7: Inside the Learning Experience ── */
  .worksexperience {
    padding: 48px 16px;
  }

  .worksexperience__container {
    gap: 40px;
  }

  .worksexperience__heading {
    font-size: 30px;
  }

  .worksexperience__row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .worksexperience__cell {
    flex: 0 0 calc(50% - 8px);
    aspect-ratio: 173 / 120;
    border-radius: 16px;
  }

  /* ── Our Works Section 8: Expanding the Reach ── */
  .worksreach {
    padding: 48px 16px;
  }

  .worksreach__container {
    gap: 40px;
  }

  .worksreach__heading {
    font-size: 30px;
    max-width: 100%;
  }

  .worksreach__text {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .worksreach__cards {
    flex-direction: column;
    gap: 32px;
  }

  .worksreach__card-img {
    aspect-ratio: 362 / 200;
  }

  .worksreach__card-title {
    font-size: 20px;
  }

  .worksreach__card-text {
    font-size: 14px;
  }

  /* ── Our Works Section 9: Donate CTA ── */
  .workscta {
    aspect-ratio: auto;
  }

  .workscta__bg {
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 394 / 250;
    object-position: left center;
  }

  .workscta__panel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    clip-path: none;
    padding: 48px 28px;
    margin-top: -30px;
    align-items: flex-start;
    text-align: left;
  }

  .workscta__heading {
    font-size: 30px;
    font-weight: 500;
    max-width: 301px;
  }

  .workscta__btn {
    font-size: 21px;
    margin-top: 24px;
  }

  /* ── Stories Section 2: Hero ── */
  .storieshero__video {
    aspect-ratio: 394 / 222;
  }

  .storieshero__content {
    padding: 40px 16px;
  }

  .storieshero__row {
    flex-direction: column;
    gap: 24px;
  }

  .storieshero__heading {
    font-size: 30px;
    text-align: center;
  }

  .storieshero__body {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  /* ── Stories Section 3: Teachers & Community Testimonials ── */
  .storiesteachers {
    padding: 48px 16px;
  }

  .storiesteachers__row {
    flex-direction: column;
    gap: 32px;
  }

  .storiesteachers__heading {
    font-size: 30px;
    text-align: center;
    max-width: 100%;
  }

  .storiesteachers__body {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .storiesteachers__right {
    width: 100%;
    height: auto;
    aspect-ratio: 362 / 300;
  }

  /* ── Stories Section 4: Our Impact ── */
  .storiesimpact {
    padding: 48px 0;
  }

  .storiesimpact__container {
    padding: 0 16px;
  }

  .storiesimpact__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .storiesimpact__label {
    justify-content: center;
  }

  .storiesimpact__heading {
    font-size: 30px;
    text-align: center;
  }

  .storiesimpact__body {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
    text-align: center;
  }

  .storiesimpact__stats {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .storiesimpact__stat {
    width: 50%;
    height: 160px;
    box-sizing: border-box;
  }

  .storiesimpact__stat + .storiesimpact__stat {
    margin-left: 0;
  }

  .storiesimpact__stat:nth-child(5) {
    width: 100%;
  }

  .storiesimpact__stat-emoji {
    font-size: 36px;
  }

  .storiesimpact__stat-number {
    font-size: 32px;
  }

  .storiesimpact__stat-label {
    font-size: 12px;
  }

  .storiesimpact__testimonials {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .storiesimpact__card {
    width: 100%;
    min-height: auto;
    padding: 24px;
  }

  /* ── Stories Section 5: Donate CTA ── */
  .storiescta {
    aspect-ratio: auto;
    margin-top: 0;
  }

  .storiescta__bg {
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 394 / 250;
    object-position: left center;
  }

  .storiescta__panel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    clip-path: none;
    padding: 48px 28px;
    margin-top: -30px;
    align-items: flex-start;
    text-align: left;
  }

  .storiescta__heading {
    font-size: 30px;
    max-width: 301px;
  }

  .storiescta__btn {
    margin-top: 24px;
  }

  /* ── Recognition Section 2: Awards & Recognitions ── */
  .recogawards {
    padding: 48px 0;
  }

  .recogawards__container {
    padding: 0 16px;
  }

  .recogawards__title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .recogawards__row {
    flex-direction: column;
    gap: 40px;
  }

  .recogawards__cert {
    width: 100%;
    order: -1;
  }

  .recogawards__timeline {
    padding-left: 60px;
  }

  .recogawards__line {
    left: 20px;
  }

  .recogawards__icon {
    width: 42px;
    height: 42px;
    left: -60px;
  }

  .recogawards__item + .recogawards__item {
    margin-top: 48px;
  }

  .recogawards__heading {
    font-size: 20px;
  }

  .recogawards__body {
    font-size: 14px;
    max-width: 100%;
  }

  .recogawards__dots {
    margin-top: 40px;
  }

  /* ── Recognition Section 3: Partners ── */
  .recogpartners {
    padding: 48px 0;
  }

  .recogpartners__container {
    padding: 0 16px;
  }

  .recogpartners__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .recogpartners__heading {
    font-size: 30px;
    max-width: 100%;
    text-align: center;
  }

  .recogpartners__subtitle-wrap {
    padding-top: 0;
    justify-content: center;
  }

  .recogpartners__subtitle {
    font-size: 14px;
    text-align: center;
  }

  .recogpartners__body {
    flex-direction: column;
    gap: 32px;
  }

  .recogpartners__labels {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .recogpartners__divider {
    display: none;
  }

  .recogpartners__label {
    font-size: 18px;
  }

  .recogpartners__label--csr {
    font-size: 20px;
  }

  .recogpartners__grid--csr,
  .recogpartners__grid--partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .recogpartners__logo {
    max-height: 80px;
  }

  /* ── Contact Section 2: Contact Form ── */
  .contactform {
    padding: 48px 16px;
  }

  .contactform__container {
    flex-direction: column;
    gap: 32px;
  }

  .contactform__heading {
    font-size: 30px;
  }

  .contactform__image {
    display: none;
  }

  .contactform__row {
    flex-direction: column;
    gap: 24px;
  }

  .contactform__submit {
    width: 100%;
  }

  /* ── Contact Section 3: Contact Info ── */
  .contactinfo__container {
    padding: 48px 16px;
  }

  .contactinfo__row {
    flex-direction: column;
    gap: 32px;
  }

  .contactinfo__heading {
    font-size: 24px;
  }

  .contactinfo__map-wrap {
    padding: 0 16px 48px;
  }

} /* end @media */
