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

:root {
  --bg-hero: #ffffff;
  --section-bg: #f5f2ed;
  --shape-color: #d4e8e0;
  --shape-color-2: #e2ebe8;
  --text-dark: #2d2a26;
  --text-muted: #6b5d52;
  --subtitle-accent: #a67c52;
  --btn-teal: #5a9b8a;
  --btn-teal-hover: #4a8a79;
  --card-bg: #f0eeea;
  --card-border: rgba(0,0,0,0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --font: 'Open Sans', Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-hero);
  line-height: 1.5;
  margin: 0;
  padding-top: 5.5rem;
  max-width: 100%;
  
}



.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.section-reveal.section-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal .scroll-reveal-item {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}

.scroll-reveal.in-view .scroll-reveal-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-reveal .scroll-reveal-item:nth-child(1) { transition-delay: 0.08s; }
.scroll-reveal .scroll-reveal-item:nth-child(2) { transition-delay: 0.18s; }
.scroll-reveal .scroll-reveal-item:nth-child(3) { transition-delay: 0.28s; }
.scroll-reveal .scroll-reveal-item:nth-child(4) { transition-delay: 0.38s; }
.scroll-reveal .scroll-reveal-item:nth-child(5) { transition-delay: 0.48s; }
.scroll-reveal .scroll-reveal-item:nth-child(6) { transition-delay: 0.58s; }
.scroll-reveal .scroll-reveal-item:nth-child(7) { transition-delay: 0.68s; }
.scroll-reveal .scroll-reveal-item:nth-child(8) { transition-delay: 0.78s; }
.scroll-reveal .scroll-reveal-item:nth-child(9) { transition-delay: 0.88s; }
.scroll-reveal .scroll-reveal-item:nth-child(10) { transition-delay: 0.98s; }
.scroll-reveal .scroll-reveal-item:nth-child(11) { transition-delay: 1.08s; }
.scroll-reveal .scroll-reveal-item:nth-child(12) { transition-delay: 1.18s; }

.scroll-reveal.serve .serve-reveal-label {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.05s;
}
.scroll-reveal.serve .serve-reveal-title {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.12s;
}
.scroll-reveal.serve .serve-reveal-tagline {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.19s;
}
.scroll-reveal.serve.in-view .serve-reveal-label,
.scroll-reveal.serve.in-view .serve-reveal-title,
.scroll-reveal.serve.in-view .serve-reveal-tagline {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.serve .serve-reveal-card {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.serve.in-view .serve-reveal-card {
  opacity: 1;
  transform: scale(1);
}
.scroll-reveal.serve .serve-grid .serve-reveal-card:nth-child(1) { transition-delay: 0.22s; }
.scroll-reveal.serve .serve-grid .serve-reveal-card:nth-child(2) { transition-delay: 0.32s; }
.scroll-reveal.serve .serve-grid .serve-reveal-card:nth-child(3) { transition-delay: 0.42s; }
.scroll-reveal.serve .serve-grid .serve-reveal-card:nth-child(4) { transition-delay: 0.52s; }
.scroll-reveal.serve .serve-grid .serve-reveal-card:nth-child(5) { transition-delay: 0.62s; }

.scroll-reveal.faq .faq-reveal-title {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  filter: blur(10px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.75s ease-out;
  transition-delay: 0.05s;
}
.scroll-reveal.faq.in-view .faq-reveal-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.scroll-reveal.faq .faq-reveal-card {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease-out;
}
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(odd) {
  transform: translateX(-48px);
}
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(even) {
  transform: translateX(48px);
}
.scroll-reveal.faq.in-view .faq-reveal-card {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(1) { transition-delay: 0.18s; }
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(2) { transition-delay: 0.28s; }
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(3) { transition-delay: 0.38s; }
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(4) { transition-delay: 0.48s; }
.scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(5) { transition-delay: 0.58s; }

.scroll-reveal.outcomes .outcomes-reveal-title {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.05s;
}
.scroll-reveal.outcomes.in-view .outcomes-reveal-title {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.scroll-reveal.outcomes .outcomes-reveal-card {
  opacity: 0;
  transform: translateX(-56px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.outcomes.in-view .outcomes-reveal-card {
  opacity: 1;
  transform: translateX(0);
}
.scroll-reveal.outcomes .outcomes-grid .outcomes-reveal-card:nth-child(1) { transition-delay: 0.15s; }
.scroll-reveal.outcomes .outcomes-grid .outcomes-reveal-card:nth-child(2) { transition-delay: 0.28s; }
.scroll-reveal.outcomes .outcomes-grid .outcomes-reveal-card:nth-child(3) { transition-delay: 0.41s; }

.scroll-reveal.programs .programs-reveal-title {
  opacity: 0;
  transform: translateX(52px);
  filter: blur(6px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.65s ease-out;
  transition-delay: 0.05s;
}
.scroll-reveal.programs.in-view .programs-reveal-title {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.scroll-reveal.programs .programs-reveal-table {
  opacity: 0;
  transform: translateX(-52px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease-out;
  transition-delay: 0.22s;
}
.scroll-reveal.programs.in-view .programs-reveal-table {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 5rem;
  z-index: 2147483647;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.logo:hover {
  transform: scale(1.05);
}
.logo-img {
  height: 56px;
  width: auto;
  min-height: 40px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--btn-teal);
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--btn-teal);
}
.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact-item:hover {
  color: var(--btn-teal);
}

.contact-item .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn-header {
  background: var(--btn-teal);
  color: #fff;
}

.btn-header:hover {
  background: var(--btn-teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(90,155,138,0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2147483648;
  border-radius: 8px;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2147483646;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 85vw);
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2147483647;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 5rem 1.25rem 2rem;
}

.nav-drawer-inner a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s ease;
}

.nav-drawer-inner a:hover {
  color: var(--btn-teal);
}

.nav-drawer-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-drawer-cta {
  margin-top: 1rem;
  border-bottom: none;
  justify-content: center;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(85vh, 700px);
  padding: 2rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-bg-curve {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: min(420px, 45vw);
  height: min(320px, 35vw);
  background: rgba(212, 232, 224, 0.4);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  min-height: min(75vh, 580px);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.07), 0 6px 20px rgba(0,0,0,0.04);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  display: block;
}

.hero-content-wrap {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 420px;
}

.hero-content-block {
  padding: 1.75rem 2rem 1.75rem 1.75rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 40px 40px 44px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.03);

}

.hero-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--btn-teal);
  background: rgba(90, 155, 138, 0.12);
  border: 1px solid rgba(90, 155, 138, 0.3);
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.hero-title {
  font-family: 'Quicksand', var(--font);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2d2a26;
  margin: 0 0 0.5rem;
}

.hero-content-block .hero-subtitle {
  margin: 0;
  max-width: 100%;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-tagline-lead {
  color: #5a9b8a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-tagline {
  color: #a67c52;
  font-weight: 700;
}

.hero-tagline-accent {
  color: #4a8a79;
  font-weight: 700;
}

.hero-subtitle .hero-tagline-lead,
.hero-subtitle .hero-tagline,
.hero-subtitle .hero-tagline-accent {
  display: inline;
}

.hero-tout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  background: #fff;
  color: #6b6d5a;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px dashed rgba(107,109,90,0.35);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.hero-tout:hover {
  background: #fafaf8;
  border-color: rgba(107,109,90,0.5);
  color: #5a5c4a;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hero-badge-top {
  top: 1.5rem;
  right: 1.5rem;
  max-width: 200px;
}

.hero-badge-line {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d2a26;
  margin: 0 0 0.2rem;
  line-height: 1.35;
}

.hero-badge-line:last-of-type {
  margin-bottom: 0.6rem;
}

.hero-badge-avatars {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.95);
  margin-left: -8px;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

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

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-cards {
  position: absolute;
  bottom: -0.25rem;
  right: 0rem;
  
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  max-width: 50%;
  padding: 0.75rem 1rem;
  
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d2a26;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-card-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.hero-card-icon svg {
  width: 20px;
  height: 20px;
  color: #8b7355;
}

.hero-card-video {
  border-left: 1px solid rgba(0,0,0,0.06);
}

.hero-play {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5a9b8a;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(90,155,138,0.35);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-card-video:hover .hero-play {
  transform: scale(1.1);
  background: var(--btn-teal-hover);
  box-shadow: 0 4px 14px rgba(90,155,138,0.45);
}

.hero-play svg {
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

@media (max-width: 1024px) {
  .hero-container {
    border-radius: 32px;
    min-height: min(70vh, 520px);
  }

  .hero-content-wrap {
    top: 1.25rem;
    left: 1.25rem;
    max-width: 380px;
  }

  .hero-content-block {
    padding: 1.5rem 1.75rem 1.5rem 1.5rem;
    border-radius: 36px 36px 40px 24px;
  }

  .hero-badge-top {
    top: 1.25rem;
    right: 1.25rem;
  }

  .hero-cards {
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 5rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header {
    min-height: 4.5rem;
  }

  .header-inner {
    padding: 0.75rem 1rem;
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    display: none;
  }

  .nav-overlay,
  .nav-drawer {
    display: block;
  }

  .header-right {
    display: none;
  }

  .header-contact {
    gap: 0.75rem;
  }

  .contact-item {
    font-size: 0.8rem;
  }

  .contact-item:first-child {
    display: none;
  }

  .hero {
    padding: 1.5rem 1rem 2rem;
    min-height: auto;
  }

  .hero-container {
    min-height: min(70vh, 480px);
    border-radius: 28px;
  }

  .hero-content-wrap {
    top: 1rem;
    left: 1rem;
    max-width: 300px;
    gap: 0.6rem;
  }

  .hero-content-block {
    padding: 1.25rem 1.35rem 1.25rem 1.25rem;
    border-radius: 32px 32px 36px 22px;
  }

  .hero-tout {
    padding: 0.75rem 1.15rem 0.75rem 1.05rem;
    font-size: 0.85rem;
  }

  .hero-badge-top {
    display: none;
  }

  .hero-badge-line {
    font-size: 0.8rem;
  }

  .hero-avatar {
    width: 24px;
    height: 24px;
  }

  .hero-cards {
    bottom: 1.25rem;
    right: 1rem;
    left: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-card-item {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }

  .hero-card-video {
    border-left: none;
  }
}

@media (max-width: 480px) {
  .btn-header {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card-video {
    width: 100%;
    justify-content: center;
  }
}

.welcome {
  position: relative;
  padding: 4rem 1.5rem 4.5rem;
  background: var(--section-bg);
  overflow: hidden;
}

.welcome-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.welcome-deco-left {
  top: 1rem;
  left: 1rem;
  width: min(140px, 22vw);
  height: min(140px, 22vw);
}

.welcome-deco-right {
  bottom: 1rem;
  right: 1rem;
  width: min(160px, 26vw);
  height: min(130px, 21vw);
}

.welcome-svg {
  position: absolute;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}

.welcome-svg-sun {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: welcomeFloat 4s ease-in-out infinite;
}

.welcome-svg-star {
  width: 44%;
  height: 44%;
  top: 8%;
  left: 52%;
  animation: welcomeFloat 3.5s ease-in-out infinite 0.5s;
}

.welcome-svg-balloons {
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  animation: welcomeFloat 4.2s ease-in-out infinite 0.3s;
}

.welcome-svg-crayon {
  width: 50%;
  height: auto;
  bottom: 15%;
  right: -5%;
  animation: welcomeFloat 3.8s ease-in-out infinite 0.7s;
}

@keyframes welcomeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes welcomeLanding {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--subtitle-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: welcomeLanding 0.65s ease-out 0.1s forwards;
}

.welcome-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 2rem;
  opacity: 0;
  animation: welcomeLanding 0.7s ease-out 0.35s forwards;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  animation: welcomeLanding 0.7s ease-out 0.6s forwards;
}

.welcome-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.welcome-promise {
  margin-top: 0.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.welcome-promise-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--subtitle-accent);
  margin-bottom: 0.5rem;
}

.welcome-promise-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .welcome {
    padding: 3rem 1rem 3.5rem;
  }

  .welcome-deco-left {
    width: min(100px, 28vw);
    height: min(100px, 28vw);
    top: 0.75rem;
    left: 0.5rem;
  }

  .welcome-deco-right {
    width: min(110px, 30vw);
    height: min(90px, 24vw);
    bottom: 0.75rem;
    right: 0.5rem;
  }

  .welcome-svg-crayon {
    width: 42%;
    bottom: 10%;
  }

  .welcome-title {
    margin-bottom: 1.5rem;
  }

  .welcome-promise {
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .welcome {
    padding: 2.5rem 1rem 3rem;
  }

  .welcome-deco-left {
    width: 80px;
    height: 80px;
  }

  .welcome-deco-right {
    width: 90px;
    height: 75px;
  }

  .welcome-label {
    font-size: 0.9rem;
  }
}

.founder {
  position: relative;
  padding: 4.5rem 1.5rem 5rem;
  background: var(--section-bg);
  overflow: hidden;
}

.founder-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--btn-teal) 0%, var(--subtitle-accent) 100%);
  z-index: 1;
}

.founder-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.founder-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.founder-blob-1 {
  width: min(400px, 70vw);
  height: min(400px, 70vw);
  background: #d4e8e0;
  bottom: -15%;
  right: -10%;
}

.founder-blob-2 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  background: #e8dfd0;
  top: -5%;
  left: -8%;
}

.founder-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.founder-header {
  margin-bottom: 2.5rem;
}

.founder-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--btn-teal);
  margin-bottom: 0.6rem;
}

.founder-line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-teal), var(--subtitle-accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

.founder-title {
  font-family: var(--font);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 700;
  color: #1f1d1a;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.founder-title-line {
  display: inline-block;
}

.founder-title-highlight {
  display: inline-block;
  margin-top: 0.2em;
  color: var(--btn-teal);
}

.founder-reveal .founder-reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-reveal .founder-label { transition-delay: 0.05s; }
.founder-reveal .founder-line {
  transform: translateY(12px) scaleX(0);
  transform-origin: left;
  transition-delay: 0.15s;
}
.founder-reveal .founder-title-line { transition-delay: 0.25s; }
.founder-reveal .founder-title-highlight { transition-delay: 0.45s; }

.founder-reveal.founder-in-view .founder-reveal-item,
.founder-reveal.founder-in-view .founder-title-line,
.founder-reveal.founder-in-view .founder-title-highlight {
  opacity: 1;
  transform: translateY(0);
}

.founder-reveal.founder-in-view .founder-line {
  transform: translateY(0) scaleX(1);
}

.founder-reveal .founder-reveal-card {
  transform: translateY(36px) scale(0.98);
  transition-delay: 0.5s;
}
.founder-reveal .founder-reveal-img { transition-delay: 0.65s; }
.founder-reveal .founder-reveal-quote { transition-delay: 0.8s; }
.founder-reveal .founder-reveal-intro { transition-delay: 0.7s; }
.founder-reveal .founder-reveal-creds { transition-delay: 0.9s; }
.founder-reveal .founder-reveal-end { transition-delay: 1.05s; }

.founder-reveal.founder-in-view .founder-reveal-card {
  transform: translateY(0) scale(1);
}

.founder-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.founder-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-image-wrap {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 3px solid #fff;
}

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

.founder-quote-wrap {
  border-left: 4px solid var(--btn-teal);
  padding-left: 1.25rem;
  background: linear-gradient(90deg, rgba(90,155,138,0.06) 0%, transparent 100%);
  padding: 1rem 1rem 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.founder-quote {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
}

.founder-attribution {
  margin: 0;
}

.founder-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  margin: 0 0 0.2rem 0;
}

.founder-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.founder-right {
  min-width: 0;
}

.founder-intro {
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.founder-credentials-box {
  background: linear-gradient(135deg, rgba(90,155,138,0.08) 0%, rgba(212,232,224,0.3) 100%);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(90,155,138,0.15);
}

.founder-credentials-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--btn-teal);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.founder-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.founder-credentials li {
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}

.founder-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--btn-teal);
  border-radius: 50%;
  opacity: 0.7;
}

.founder-conclusion {
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-left {
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .founder-right {
    order: 0;
  }

  .founder-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .founder-quote-wrap {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .founder {
    padding: 3rem 1rem 4rem;
  }

  .founder-card {
    padding: 1.75rem 1.25rem;
  }

  .founder-title-highlight {
    margin-top: 0.15em;
  }

  .founder-image-wrap {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .founder {
    padding: 2.5rem 1rem 3.5rem;
  }

  .founder-header {
    margin-bottom: 1.75rem;
  }

  .founder-title {
    font-size: 1.55rem;
  }

  .founder-line {
    width: 36px;
  }

  .founder-card {
    padding: 1.5rem 1rem;
  }

  .founder-image-wrap {
    max-width: 240px;
  }

  .founder-credentials-box {
    padding: 1rem 1.25rem;
  }
}

.diff {
  padding: 4.5rem 1.5rem 5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.diff-reveal .diff-reveal-item {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.diff-reveal .diff-reveal-left {
  transform: translateX(-48px);
  transition-delay: 0.05s;
}
.diff-reveal .diff-reveal-line {
  transform: scaleX(0);
  transform-origin: left;
  transition-delay: 0.12s;
}
.diff-reveal .diff-reveal-right {
  transform: translateX(48px);
  transition-delay: 0.18s;
}
.diff-reveal .diff-reveal-left.diff-tagline { transition-delay: 0.28s; }

.diff-reveal .diff-reveal-spotlight {
  transform: translateY(40px);
  transition-delay: 0.4s;
}
.diff-reveal .diff-reveal-spotlight:last-of-type {
  transition-delay: 0.6s;
}

.diff-reveal .diff-reveal-card {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.diff-reveal .diff-cards .diff-reveal-card:nth-child(1) { transition-delay: 0.08s; }
.diff-reveal .diff-cards .diff-reveal-card:nth-child(2) { transition-delay: 0.2s; }
.diff-reveal .diff-cards .diff-reveal-card:nth-child(3) { transition-delay: 0.32s; }
.diff-reveal .diff-cards .diff-reveal-card:nth-child(4) { transition-delay: 0.44s; }

.diff-reveal.diff-in-view .diff-reveal-item {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}
.diff-reveal.diff-in-view .diff-reveal-line {
  transform: scaleX(1);
}

.diff-reveal.diff-cards-in-view .diff-reveal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.diff-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.diff-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}

.diff-blob-1 {
  width: 340px;
  height: 340px;
  background: rgba(90, 155, 138, 0.12);
  top: -100px;
  right: -80px;
}

.diff-blob-2 {
  width: 260px;
  height: 260px;
  background: rgba(166, 124, 82, 0.1);
  bottom: 10%;
  left: -60px;
}

.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.diff-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-teal);
  margin-bottom: 0.5rem;
}

.diff-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.diff-tagline {
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.diff-spotlights {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.diff-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.diff-spotlight-reverse .diff-spotlight-content {
  order: 1;
}

.diff-spotlight-reverse .diff-spotlight-img-wrap,
.diff-spotlight-reverse .diff-spotlight-collage {
  order: -1;
}

.diff-spotlight-content {
  min-width: 0;
}

.diff-spotlight-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(90, 155, 138, 0.18) 0%, rgba(90, 155, 138, 0.08) 100%);
  color: var(--btn-teal);
  margin-bottom: 1.25rem;
}

.diff-spotlight-icon svg {
  width: 28px;
  height: 28px;
  margin: auto;
}

.diff-spotlight-heading {
  font-family: var(--font);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.diff-spotlight-text {
  font-size: clamp(1rem, 1.15vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.diff-spotlight-img-wrap {
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.diff-spotlight-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.diff-spotlight-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  min-width: 0;
}

.diff-collage-img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.diff-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.diff-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 155, 138, 0.15);
}

.diff-card-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--btn-teal);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.75rem;
}

.diff-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(90, 155, 138, 0.12) 0%, rgba(90, 155, 138, 0.06) 100%);
  color: var(--btn-teal);
  margin-bottom: 1rem;
}

.diff-card-icon svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.diff-card-title {
  font-family: var(--font);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.diff-card-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .diff-spotlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }

  .diff-spotlight-reverse .diff-spotlight-content {
    order: 0;
  }

  .diff-spotlight-reverse .diff-spotlight-collage {
    order: -1;
  }

  .diff-spotlights {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .diff-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 2rem;
  }
}

@media (max-width: 600px) {
  .diff {
    padding: 3rem 1rem 4rem;
  }

  .diff-tagline {
    margin-bottom: 1.75rem;
  }

  .diff-spotlights {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .diff-spotlight-icon {
    width: 48px;
    height: 48px;
  }

  .diff-spotlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .diff-collage-img {
    min-height: 120px;
  }

  .diff-cards {
    grid-template-columns: 1fr;
    padding-top: 1.75rem;
    gap: 1rem;
  }

  .diff-card {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .diff {
    padding: 2.5rem 1rem 3.5rem;
  }

  .diff-title {
    font-size: 1.55rem;
  }

  .diff-card-icon {
    width: 40px;
    height: 40px;
  }

  .diff-card-icon svg {
    width: 20px;
    height: 20px;
  }
}

.evidence {
  padding: 4.5rem 1.5rem 5rem;
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
}

.evidence-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.evidence-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.evidence-blob-1 {
  width: 320px;
  height: 320px;
  background: rgba(90, 155, 138, 0.15);
  top: -80px;
  right: -80px;
}

.evidence-blob-2 {
  width: 280px;
  height: 280px;
  background: rgba(166, 124, 82, 0.12);
  bottom: -60px;
  left: -60px;
}

.evidence-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(90, 155, 138, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.evidence-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.evidence-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-teal);
  margin-bottom: 0.5rem;
}

.evidence-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.evidence-tagline {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.evidence-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.evidence-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.evidence-pillar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.evidence-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 155, 138, 0.15);
}

.evidence-pillar-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(90, 155, 138, 0.15) 0%, rgba(90, 155, 138, 0.08) 100%);
  color: var(--btn-teal);
  margin-bottom: 1rem;
}

.evidence-pillar-icon svg {
  width: 26px;
  height: 26px;
  margin: auto;
}

.evidence-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.evidence-pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.evidence-result-wrap {
  display: flex;
  justify-content: center;
}

.evidence-result-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 69px;
  width: 100%;
  
  background: linear-gradient(135deg, var(--btn-teal) 0%, var(--btn-teal-hover) 100%);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(90, 155, 138, 0.35);
}

.evidence-result-badge {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.evidence-result-text {
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.5;
  margin: 0;
}

.evidence-result-text strong {
  font-weight: 800;
}

.evidence-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.evidence-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .evidence-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .evidence-result-wrap {
    justify-content: center;
  }

  .evidence-result-card {
    max-width: 100%;
  }

  .evidence-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .evidence {
    padding: 3rem 1rem 4rem;
  }

  .evidence-tagline {
    margin-bottom: 1.75rem;
  }

  .evidence-hero {
    margin-bottom: 1.75rem;
  }

  .evidence-pillars {
    grid-template-columns: 1fr;
  }

  .evidence-pillar {
    padding: 1.25rem 1rem;
  }

  .evidence-result-card {
    padding: 1.25rem 1.25rem;
  }

  .evidence-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .evidence {
    padding: 2.5rem 1rem 3.5rem;
  }

  .evidence-title {
    font-size: 1.5rem;
  }

  .evidence-result-card {
    padding: 1rem 1.25rem;
  }

  .evidence-pillar-icon {
    width: 42px;
    height: 42px;
  }

  .evidence-pillar-icon svg {
    width: 22px;
    height: 22px;
  }
}

.activities {
  padding: 4rem 1.5rem 4.5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.activities-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.activities-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.activities-title-emoji {
  font-size: 1.15em;
}

.activities-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  font-weight: 600;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.activities-collage-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.activities-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 1;
}

.activities-collage-cell {
  overflow: hidden;
  line-height: 0;
}

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

.activities-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(45, 42, 38, 0.85) 0%, rgba(45, 42, 38, 0.5) 70%, transparent 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.activities-overlay-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.activities-overlay-title {
  font-family: var(--font);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .activities {
    padding: 3rem 1rem 3.5rem;
  }

  .activities-collage-card {
    border-radius: 16px;
  }

  .activities-overlay-card {
    padding: 1rem 1.25rem;
  }

  .activities-overlay-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .activities {
    padding: 2.5rem 1rem 3rem;
  }

  .activities-title {
    font-size: 1.55rem;
  }
}

.environment {
  padding: 4rem 1.5rem 4.5rem;
  background: var(--section-bg);
}

.environment-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.environment-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.3;
}

.environment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.environment-collage {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.4rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  aspect-ratio: 1;
}

.environment-collage-cell {
  overflow: hidden;
  line-height: 0;
}

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

.environment-list-wrap {
  min-width: 0;
}

.environment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.environment-list li {
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: #4a6b7a;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
}

.environment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a8fa0;
}

.environment-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .environment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .environment-collage {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .environment {
    padding: 3rem 1rem 3.5rem;
  }

  .environment-collage {
    gap: 0.3rem;
    max-width: 100%;
  }

  .environment-title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .environment {
    padding: 2.5rem 1rem 3rem;
  }

  .environment-title {
    font-size: 1.55rem;
  }
}

.serve {
  padding: 4.5rem 1.5rem 5rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.serve-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.serve-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23d4e8e0' fill-opacity='0.4' d='M0 60 Q360 20 720 60 T1440 60 V120 H0 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
}

.serve-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.serve-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-teal);
  text-align: center;
  margin-bottom: 0.5rem;
}

.serve-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.serve-tagline {
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.serve-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 155, 138, 0.15);
}

.serve-card-wide {
  grid-column: 2 / -1;
  display: grid;
  
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
}

.serve-card-wide .serve-card-icon {
  margin-bottom: 0;
}

.serve-card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(90, 155, 138, 0.15) 0%, rgba(90, 155, 138, 0.08) 100%);
  color: var(--btn-teal);
  margin-bottom: 1rem;
}

.serve-card-icon svg {
  width: 26px;
  height: 26px;
  margin: auto;
}

.serve-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.serve-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serve-card-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .serve-card-wide .serve-card-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .serve-tagline {
    margin-bottom: 1.75rem;
  }

  .serve-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .serve-card {
    padding: 1.25rem 1rem;
  }

  .serve-card-wide {
    grid-column: 1 / -1;
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .serve-card-icon {
    width: 42px;
    height: 42px;
  }

  .serve-card-icon svg {
    width: 22px;
    height: 22px;
  }
}

.journey {
  padding: 4rem 1.5rem 4.5rem;
  background: transparent;
}

.journey-inner {
  margin: 0 auto;
}

.journey-curve-wrap {
  position: relative;
  min-height: 200px;
  padding: 0 0.5rem;
  overflow: hidden;
}

.journey-curve-svg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100px;
  transform: translateX(-50%);
  color: #b8956e;
  pointer-events: none;
}

.journey-nodes {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0.5rem;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
  max-width: 150px;
}

.journey-node:nth-child(1) { margin-top: 24px; }
.journey-node:nth-child(2) { margin-top: 8px; }
.journey-node:nth-child(3) { margin-top: 0; }
.journey-node:nth-child(4) { margin-top: 0; }
.journey-node:nth-child(5) { margin-top: 8px; }
.journey-node:nth-child(6) { margin-top: 24px; }

.journey-node-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #b8956e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.journey-node-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.journey-node-label {
  font-family: var(--font);
  font-size: clamp(0.7rem, 0.95vw, 0.8rem);
  font-weight: 600;
  color: #5a5550;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}

@media (max-width: 900px) {
  .journey-nodes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 0.5rem;
  }

  .journey-node {
    flex: 0 0 calc(33.333% - 0.5rem);
    max-width: none;
    margin-top: 0 !important;
  }

  .journey-curve-wrap {
    min-height: auto;
  }

  .journey-curve-svg {
    display: none;
  }
}

@media (max-width: 600px) {
  .journey {
    padding: 3rem 1rem 3.5rem;
  }

  .journey-node {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .journey-node-circle {
    width: 56px;
    height: 56px;
  }

  .journey-node-icon {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .journey {
    padding: 2.5rem 1rem 3rem;
  }

}

.programs {
  padding: 4rem 1.5rem 4.5rem;
  background: #fff;
}

.programs-inner {
  max-width: 900px;
  margin: 0 auto;
}

.programs-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.programs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.programs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
}

.programs-table thead tr {
  border-bottom: 2px solid rgba(0,0,0,0.12);
}

.programs-col-header {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 800;
  color: #2d2a26;
  padding: 1rem 1.25rem;
  text-align: center;
  background: var(--card-bg);
}

.programs-label-cell {
  background: var(--card-bg);
  border: none;
  width: 28%;
}

.programs-label {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 800;
  color: #2d2a26;
  padding: 1rem 1.25rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}

.programs-cell {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.55;
  color: var(--text-muted);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}

.programs-table tbody tr {
  transition: background 0.2s ease;
}
.programs-table tbody tr:hover {
  background: rgba(90,155,138,0.06);
}
.programs-table tbody tr:last-child .programs-label,
.programs-table tbody tr:last-child .programs-cell {
  border-bottom: none;
}

.programs-special {
  font-size: 0.85em;
  color: #c53030;
  font-weight: 600;
}

.programs-cell strong {
  color: #2d2a26;
}

@media (max-width: 600px) {
  .programs {
    padding: 3rem 1rem 3.5rem;
  }

  .programs-label,
  .programs-cell,
  .programs-col-header {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .programs {
    padding: 2.5rem 1rem 3rem;
  }

  .programs-title {
    font-size: 1.4rem;
  }
}

.enrolment {
  position: relative;
  padding: 2rem 1.5rem 2.5rem;

}

.enrolment-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.enrolment-circle {
  position: absolute;
  border-radius: 50%;
}

.enrolment-circle-1 {
  width: min(220px, 38vw);
  height: min(220px, 38vw);
  top: -8%;
  left: -4%;
  background: rgba(212, 232, 224, 0.7);
}

.enrolment-circle-2 {
  width: min(160px, 28vw);
  height: min(160px, 28vw);
  top: 15%;
  left: 12%;
  background: rgba(184, 218, 232, 0.5);
}

.enrolment-circle-3 {
  width: min(100px, 18vw);
  height: min(100px, 18vw);
  top: 5%;
  left: 35%;
  background: rgba(234, 220, 200, 0.6);
}

.enrolment-circle-4 {
  width: min(80px, 14vw);
  height: min(80px, 14vw);
  top: 25%;
  left: 8%;
  background: rgba(212, 232, 224, 0.55);
}

.enrolment-circle-5 {
  width: min(140px, 24vw);
  height: min(140px, 24vw);
  top: -5%;
  right: 15%;
  background: rgba(200, 228, 218, 0.5);
}

.enrolment-circle-6 {
  width: min(90px, 16vw);
  height: min(90px, 16vw);
  top: 20%;
  right: 5%;
  background: rgba(230, 240, 235, 0.8);
}

.enrolment-circle-7 {
  width: min(120px, 20vw);
  height: min(120px, 20vw);
  bottom: -6%;
  left: 20%;
  background: rgba(184, 218, 232, 0.4);
}

.enrolment-circle-8 {
  width: min(70px, 12vw);
  height: min(70px, 12vw);
  bottom: 15%;
  left: 5%;
  background: rgba(234, 210, 180, 0.5);
}

.enrolment-circle-9 {
  width: min(180px, 30vw);
  height: min(180px, 30vw);
  bottom: -10%;
  right: -5%;
  background: rgba(212, 232, 224, 0.55);
}

.enrolment-circle-10 {
  width: min(55px, 10vw);
  height: min(55px, 10vw);
  top: 40%;
  right: 25%;
  background: rgba(220, 235, 228, 0.7);
}

.enrolment-circle-11 {
  width: min(65px, 11vw);
  height: min(65px, 11vw);
  bottom: 30%;
  right: 12%;
  background: rgba(240, 228, 210, 0.5);
}

.enrolment-circle-12 {
  width: min(45px, 8vw);
  height: min(45px, 8vw);
  top: 55%;
  left: 28%;
  background: rgba(184, 218, 232, 0.45);
}

.enrolment-card {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  background: #c26c4f;
  border-radius: 40px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.enrolment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.enrolment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.enrolment-content {
  min-width: 0;
}

.enrolment-title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #2d2a26;
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.enrolment-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.enrolment-steps li {
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.45;
  color: #2d2a26;
  margin-bottom: 0.45rem;
  padding-left: 0;
}

.enrolment-steps li strong {
  color: #2d2a26;
}

.enrolment-cta-row {
  margin: 0.25rem 0 0.6rem !important;
}

.btn-enrolment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  background: var(--btn-teal);
  color: #fff;
  border: 2px dashed rgba(255,255,255,0.8);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-enrolment:hover {
  background: var(--btn-teal-hover);
  color: #fff;
  transform: translateY(-2px);
}

.enrolment-note {
  font-size: clamp(0.82rem, 0.95vw, 0.88rem);
  color: #2d2a26;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}

.enrolment-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.enrolment-image-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.enrolment-blob {
  position: absolute;
  border-radius: 32px;
}

.enrolment-blob-yellow {
  width: 85%;
  height: 75%;
  right: -5%;
  top: 10%;
  background: rgba(234, 210, 160, 0.6);
  transform: rotate(-6deg);
}

.enrolment-blob-white {
  width: 90%;
  height: 80%;
  right: -8%;
  top: 5%;
  background: rgba(255,255,255,0.35);
  transform: rotate(4deg);
}

.enrolment-image {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: 110px;
  max-width: 260px;
  max-height: 247px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.enrolment-attribution {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  margin-left: 110px;
  padding: 0.4rem 0.75rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.enrolment-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2d2a26;
  margin: 0 0 0.1rem;
}

.enrolment-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .enrolment-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .enrolment-image-wrap {
    order: -1;
  }

  .enrolment-image {
    max-width: 240px;
    max-height: 200px;
  }
}

@media (max-width: 600px) {
  .enrolment {
    padding: 1.5rem 1rem 2rem;
  }

  .enrolment-card {
    padding: 1.25rem 1rem;
    border-radius: 32px;
  }

  .enrolment-title {
    margin-bottom: 0.65rem;
  }

  .enrolment-steps li {
    margin-bottom: 0.4rem;
  }

  .btn-enrolment {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
  }

  .enrolment-image {
    max-width: 220px;
    max-height: 180px;
  }
}

@media (max-width: 480px) {
  .enrolment {
    padding: 1.25rem 1rem 1.75rem;
  }

  .enrolment-card {
    padding: 1rem 0.85rem;
    border-radius: 24px;
  }

  .enrolment-title {
    font-size: 1.25rem;
  }
}

.faq {
  position: relative;
  padding: 4rem 1.5rem 4.5rem;
  background: var(--section-bg);
  overflow: hidden;
}

.faq-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(180px, 30vw);
  height: min(150px, 25vw);
  pointer-events: none;
  z-index: 0;
}

.faq-deco-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.faq-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faq-card:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: min(400px, 100%);
}

.faq-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.faq-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.faq-card-question {
  font-family: var(--font);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 800;
  color: #2d2a26;
  margin: 0 0 0.6rem;
  line-height: 1.35;
}

.faq-card-answer {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.gallery {
  padding: 4rem 1.5rem 4.5rem;
  background: #fff;
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item-featured {
  aspect-ratio: 16/10;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

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

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(140px, auto);
    grid-auto-flow: dense;
    gap: 1rem;
  }

  .gallery-item {
    aspect-ratio: auto;
    min-height: 160px;
  }

  .gallery-item-featured {
    grid-column: 1 / -1;
    min-height: 220px;
    aspect-ratio: 21/9;
  }

  .gallery-item-wide {
    grid-column: span 2;
    min-height: 180px;
    aspect-ratio: 2/1;
  }

  .gallery-item-tall {
    grid-row: span 2;
    min-height: 320px;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 1.25rem;
  }

  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 320px;
    aspect-ratio: auto;
  }

  .gallery-item-wide {
    grid-column: span 2;
    min-height: 200px;
  }

  .gallery-item-tall {
    grid-row: span 2;
    min-height: 340px;
  }
}

.scroll-reveal.gallery .gallery-reveal-title {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
}

.scroll-reveal.gallery .gallery-reveal-item {
  opacity: 0;
  transform: translateY(24px);
}

.scroll-reveal.gallery.in-view .gallery-reveal-title,
.scroll-reveal.gallery.in-view .gallery-reveal-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(6) { transition-delay: 0.3s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(7) { transition-delay: 0.35s; }
.scroll-reveal.gallery .gallery-grid .gallery-reveal-item:nth-child(8) { transition-delay: 0.4s; }

.gallery-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-empty-icon-wrap {
  flex-shrink: 0;
}

.gallery-empty-icon {
  width: 80px;
  height: 80px;
  color: #9ca3af;
}

.gallery-empty-content {
  flex: 1;
  min-width: 0;
}

.gallery-empty-title {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.gallery-empty-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 480px) {
  .gallery-empty-state {
    gap: 1.25rem;
  }
}

.gallery-more-wrap {
  margin-top: 1.5rem;
  width: 100%;
}

.gallery-more-grid {
  margin-top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .gallery-more-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(140px, auto);
    grid-auto-flow: dense;
    gap: 1rem;
  }

  .gallery-more-grid .gallery-item {
    aspect-ratio: auto;
    min-height: 160px;
  }

  .gallery-more-grid .gallery-item-featured {
    grid-column: 1 / -1;
    min-height: 220px;
    aspect-ratio: 21/9;
  }

  .gallery-more-grid .gallery-item-wide {
    grid-column: span 2;
    min-height: 180px;
    aspect-ratio: 2/1;
  }

  .gallery-more-grid .gallery-item-tall {
    grid-row: span 2;
    min-height: 320px;
  }
}

@media (min-width: 900px) {
  .gallery-more-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    gap: 1.25rem;
  }

  .gallery-more-grid .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 320px;
    aspect-ratio: auto;
  }

  .gallery-more-grid .gallery-item-wide {
    grid-column: span 2;
    min-height: 200px;
  }

  .gallery-more-grid .gallery-item-tall {
    grid-row: span 2;
    min-height: 340px;
  }
}

.gallery-view-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

.gallery-view-more-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--btn-teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.gallery-view-more-btn:hover {
  background: var(--btn-teal-hover);
}

.gallery-view-more-btn:active {
  transform: scale(0.98);
}

.outcomes {
  padding: 4rem 1.5rem 4.5rem;
  background: var(--section-bg);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.35;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.outcomes-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.outcomes-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  border-color: var(--btn-teal);
}

.outcomes-card-title {
  font-family: var(--font);
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  font-weight: 800;
  color: #2d2a26;
  margin: 0 0 1rem;
  line-height: 1.3;
  text-align: center;
}

.outcomes-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.outcomes-card-list li {
  font-size: clamp(0.9rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding-left: 1.25rem;
  position: relative;
}

.outcomes-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--btn-teal);
  font-weight: 700;
}

.outcomes-card-list li:last-child {
  margin-bottom: 0;
}

.reviews-show {
  padding: 4rem 1.5rem 4.5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(90,155,138,0.06) 0%, transparent 55%), #fff;
  position: relative;
}

.reviews-show-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-show-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.reviews-show-slider-wrap {
  overflow: hidden;
  width: 100%;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.reviews-show-track {
  display: flex;
  gap: 1.5rem;
  width: 200%;
  animation: reviews-slide-loop 40s linear infinite;
  will-change: transform;
}

.reviews-show-track:hover {
  animation-play-state: paused;
}

.reviews-show-card {
  flex: 0 0 calc(50% / var(--reviews-count, 3) - 1rem);
  min-width: 280px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(90,155,138,0.12);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reviews-show-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 42px 42px 0;
  border-color: transparent rgba(90,155,138,0.08) transparent transparent;
}

.reviews-show-card:hover {
  box-shadow: 0 6px 24px rgba(90,155,138,0.12);
  border-color: rgba(90,155,138,0.25);
}

.reviews-show-rating {
  font-size: 1.1rem;
  color: #e8b923;
  letter-spacing: 0.2em;
  margin: 0 0 0.9rem;
  line-height: 1;
}

.reviews-show-text {
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1.25rem;
  font-style: normal;
}

.reviews-show-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--btn-teal);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reviews-show-author::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btn-teal);
  flex-shrink: 0;
}

.scroll-reveal.reviews-show .reviews-show-title {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.reviews-show.in-view .reviews-show-title {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reviews-slide-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

  .reviews-show-card {
    min-width: 260px;
  }

  .reviews-show-track {
    animation-duration: 35s;
  }
}

@media (max-width: 600px) {
  .serve,
  .faq,
  .outcomes,
  .reviews-show {
    padding: 3rem 1rem 3.5rem;
  }

  .serve-title,
  .faq-title {
    margin-bottom: 1.5rem;
  }

  .outcomes-title {
    margin-bottom: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-card {
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .serve,
  .faq,
  .outcomes {
    padding: 2.5rem 1rem 3rem;
  }

  .serve-title,
  .faq-title,
  .outcomes-title {
    font-size: 1.55rem;
  }

  .outcomes-card {
    padding: 1.25rem 1.25rem;
  }
}

@keyframes approachFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes approachIconFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes approachIconWiggle {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

@keyframes approachResultGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.approach {
  padding: 4rem 1.5rem 4.5rem;
  background: var(--section-bg);
  overflow: hidden;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach-title {
  font-family: var(--font);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #2d2a26;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  animation: approachFadeUp 0.7s ease-out both;
}

.approach-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  animation: approachFadeUp 0.7s ease-out 0.15s both;
}

.approach-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.approach-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--btn-teal);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  animation: approachFadeUp 0.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.approach-card-1 {
  animation-delay: 0.2s;
  border-left-color: var(--btn-teal);
}

.approach-card-2 {
  animation-delay: 0.3s;
  border-left-color: var(--subtitle-accent);
}

.approach-card-3 {
  animation-delay: 0.4s;
  border-left-color: var(--btn-teal);
}

.approach-card-4 {
  animation-delay: 0.5s;
  border-left-color: var(--subtitle-accent);
}

.approach-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: var(--card-bg);
  flex-shrink: 0;
}

.approach-card-1 .approach-card-icon {
  background: rgba(90, 155, 138, 0.15);
}

.approach-card-2 .approach-card-icon {
  background: rgba(166, 124, 82, 0.15);
}

.approach-card-3 .approach-card-icon {
  background: rgba(90, 155, 138, 0.15);
}

.approach-card-4 .approach-card-icon {
  background: rgba(166, 124, 82, 0.15);
}

.approach-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.approach-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.approach-result-wrap {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--card-border);
  animation: approachFadeUp 0.7s ease-out 0.6s both;
}

.approach-result {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .approach-title,
  .approach-subtitle,
  .approach-card,
  .approach-result-wrap {
    animation: none;
  }

  .approach-card:hover {
    transform: none;
  }

  .logo:hover,
  .btn-header:hover,
  .hero-cta:hover,
  .hero-badge:hover,
  .hero-card-item:hover,
  .hero-card-video:hover .hero-play,
  .diff-card:hover,
  .enrolment-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .approach {
    padding: 3rem 1rem 3.5rem;
  }

  .approach-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .approach {
    padding: 2.5rem 1rem 3rem;
  }

  .approach-card {
    padding: 1.25rem 1.5rem;
  }

  .approach-title {
    font-size: 1.6rem;
  }

  .approach-result-wrap {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
  }

  .scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(odd),
  .scroll-reveal.faq .faq-grid .faq-reveal-card:nth-child(even) {
    transform: translateY(24px);
  }
}

.footer {
  position: relative;
  background: var(--text-dark);
  color: rgba(255,255,255,0.88);
  padding: 3rem 1.5rem 2rem;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  color: var(--text-dark);
  line-height: 0;
}

.footer-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: block;
  height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.35rem;
}

.footer-ages {
  font-size: 0.85rem;
  color: var(--btn-teal);
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--btn-teal);
}

.footer-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: var(--btn-teal);
}

.footer-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--btn-teal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.footer-cta:hover {
  background: var(--btn-teal-hover);
}

.footer-badge-wrap {
  text-align: center;
  padding: 1.25rem 0;
}

.footer-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(90,155,138,0.2);
  color: var(--btn-teal);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(90,155,138,0.4);
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0.25;
}

.footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--btn-teal);
}

.footer-dot:nth-child(1) { transform: translateY(0); }
.footer-dot:nth-child(2) { transform: translateY(4px); }
.footer-dot:nth-child(3) { transform: translateY(8px); }
.footer-dot:nth-child(4) { transform: translateY(4px); }
.footer-dot:nth-child(5) { transform: translateY(0); }

@media (min-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-dots {
    bottom: 2rem;
    right: 2rem;
  }
}

@media (min-width: 900px) {
  .footer-top {
    gap: 3rem;
  }
}
