:root {
  --green: #087f5b;
  --green2: #0b9b70;
  --deep: #064b38;
  --cream: #fffaf0;
  --gold: #d9a441;
  --orange: #ef7f31;
  --ink: #17352d;
  --muted: #66756f;
  --white: #fff;
  --line: #e8eee9;
  --shadow: 0 18px 50px rgba(7, 57, 43, 0.1);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1140px, calc(100% - 36px));
  margin: auto;
}
.topbar {
  background: var(--deep);
  color: #eaf8f2;
  font-size: 13px;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8, 127, 91, 0.08);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #43b88f);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(8, 127, 91, 0.25);
}
.brand small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 11px 17px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(8, 127, 91, 0.18);
}
.menu-btn {
  display: none;
  border: 0;
  background: #eef8f4;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  color: var(--green);
  font-size: 22px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4fbf7 0%, #fffaf0 58%, #fff 100%);
  padding: 70px 0 86px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(8, 127, 91, 0.07);
  right: -180px;
  top: -200px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f6ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 13px;
  border-radius: 999px;
  text-transform: uppercase;
}
.badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a574;
  box-shadow: 0 0 0 5px rgba(35, 165, 116, 0.13);
}
h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 20px 0 22px;
  color: var(--deep);
}
h1 span {
  color: var(--orange);
}
.lead {
  font-size: 18px;
  color: #52655e;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 25px rgba(8, 127, 91, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #076e50;
}
.btn-secondary {
  background: #fff;
  border-color: #dce8e2;
  color: var(--deep);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #a9cdbf;
}
.hero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #60736c;
  font-size: 13px;
}
.hero-note strong {
  color: var(--green);
}
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, 0.8);
}
.hero-card {
  position: absolute;
  left: -22px;
  bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  max-width: 245px;
}
.hero-card b {
  display: block;
  color: var(--deep);
  font-size: 15px;
}
.hero-card span {
  font-size: 12px;
  color: var(--muted);
}
section {
  padding: 92px 0;
}
.section-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 9px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  color: var(--deep);
}
.section-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}
.problem {
  background: #fff;
}
.problem-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
  align-items: center;
}
.quote-box {
  background: var(--cream);
  border-radius: 30px;
  padding: 35px;
  border: 1px solid #f3ead8;
  position: relative;
  overflow: hidden;
}
.quote-box::after {
  content: "“";
  position: absolute;
  font-size: 180px;
  line-height: 1;
  color: rgba(217, 164, 65, 0.16);
  right: 12px;
  top: -28px;
  font-family: Georgia;
}
.question {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--deep);
  position: relative;
  z-index: 1;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 25px;
}
.check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.check-icon {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e8f6f0;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.pillars {
  background: #f6fbf8;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.program {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(7, 57, 43, 0.045);
}
.program-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef8f4;
  display: grid;
  place-items: center;
  font-size: 21px;
  margin-bottom: 15px;
}
.program h3 {
  margin: 0 0 7px;
  color: var(--deep);
  font-size: 18px;
}
.program p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.program-more {
  margin-top: 26px;
  background: linear-gradient(135deg, var(--deep), var(--green));
  color: #fff;
  border-radius: 26px;
  padding: 30px;
  overflow: hidden;
}
.program-more-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #fff;
}
.program-more-copy p {
  margin: 0 0 24px;
  color: #d5ebe2;
  font-size: 15px;
  max-width: 720px;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.activity {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.28s;
}
.activity:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}
.activity img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.4s;
}
.activity:hover img {
  transform: scale(1.06);
}
.activity figcaption {
  padding: 11px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.gallery-section {
  background: #fffaf4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #ddd;
  min-height: 250px;
  text-align: left;
}
.gallery-card:nth-child(3n) {
  min-height: 330px;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: 0.45s;
}
.gallery-card:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 45px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  display: flex;
  flex-direction: column;
}
.gallery-overlay b {
  font-size: 15px;
}
.gallery-overlay small {
  font-size: 11px;
  opacity: 0.9;
}
.environment {
  background: #f6fbf8;
}
.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.env-photo {
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.env-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.env-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.env-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
  font-weight: 800;
  font-size: 14px;
}
.teacher {
  background: #fff;
}
.teacher-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.teacher-photo {
  min-height: 520px;
}
.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-copy {
  padding: 55px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.teacher-copy blockquote {
  font-size: 27px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--deep);
  margin: 18px 0;
}
.trust {
  background: var(--deep);
  color: #fff;
}
.trust .section-title,
.trust .section-kicker {
  color: #fff;
}
.trust .section-intro {
  color: #c9ded6;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 35px;
}
.testi {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 22px;
}
.stars {
  color: #f4c768;
  letter-spacing: 3px;
}
.testi p {
  font-size: 15px;
  color: #e8f4ef;
}
.testi small {
  color: #bcd3ca;
}
.spm {
  background: #fffaf0;
}
.spm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}
.spm-card {
  background: #fff;
  border: 1px solid #eee5d6;
  border-radius: 25px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(73, 55, 20, 0.05);
}
.spm-card h3 {
  margin-top: 0;
  color: var(--deep);
}
.program-row {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd5c6;
}
.program-row:last-child {
  border-bottom: 0;
}
.program-row b {
  min-width: 170px;
  color: var(--green);
}
.info-list {
  display: grid;
  gap: 11px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #eee5d6;
  font-size: 14px;
}
.info-row b {
  color: var(--deep);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 25px;
}
.step {
  padding: 20px;
  border-radius: 19px;
  background: #fff;
  border: 1px solid #eee5d6;
}
.step-num {
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
}
.step h4 {
  margin: 6px 0;
  color: var(--deep);
}
.step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.cta {
  padding: 85px 0;
  background: linear-gradient(135deg, #eaf7f1, #fff6df);
}
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: #fff;
  border: 1px solid #e5eee9;
  border-radius: 32px;
  padding: 45px;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 47px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--deep);
  margin: 0 0 12px;
}
.cta-box p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}
footer {
  background: #04382a;
  color: #d9eee7;
  padding: 48px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 30px;
}
footer h3 {
  color: #fff;
  margin-top: 0;
}
footer p,
footer li {
  font-size: 13px;
  color: #b9d3ca;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 12px;
  color: #91b6aa;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #20b66b;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(32, 182, 107, 0.35);
  border: 4px solid #fff;
}
.wa-label {
  position: fixed;
  right: 88px;
  bottom: 30px;
  z-index: 69;
  background: #fff;
  border: 1px solid #e1ece6;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  color: var(--deep);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.faq {
  display: grid;
  gap: 10px;
  margin-top: 35px;
}
details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  padding: 0 18px;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 900;
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--green);
  font-size: 22px;
}
details[open] summary::after {
  content: "−";
}
details p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 0 18px;
  margin: 0;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  max-width: 950px;
  width: 100%;
  position: relative;
}
.lightbox img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  border-radius: 18px;
}
.lightbox-caption {
  color: #fff;
  padding: 13px 4px;
  text-align: center;
}
.close {
  position: absolute;
  right: -5px;
  top: -45px;
  border: 0;
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

.hero-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 8px;
  flex-wrap: wrap;
}
.hero-logo {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #fff;
  padding: 7px;
  object-fit: contain;
  border: 1px solid #e3eee9;
  box-shadow: 0 8px 22px rgba(7, 57, 43, 0.08);
}
.hero-logo-label {
  font-size: 11px;
  font-weight: 800;
  color: #61736d;
  line-height: 1.25;
  max-width: 90px;
}
.hero-school-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-school-logos-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.hero-school-logos-wrap .hero-logo-label {
  max-width: 260px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 10px;
  }
  .menu-btn {
    display: block;
  }
  .hero-grid,
  .problem-grid,
  .env-grid,
  .teacher-card,
  .spm-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 45px;
  }
  .hero-photo img {
    height: 430px;
  }
  .hero-card {
    left: 15px;
  }
  .program-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program-more {
    padding: 24px;
  }
  .activity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card,
  .gallery-card:nth-child(3n) {
    min-height: 260px;
  }
  .teacher-photo {
    min-height: 380px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1140px);
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .topbar .hide-mobile {
    display: none;
  }
  .brand {
    font-size: 13px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .hero {
    padding: 38px 0 60px;
  }
  h1 {
    font-size: 46px;
  }
  .lead {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-actions .btn {
    width: 100%;
  }
  section {
    padding: 68px 0;
  }
  .program-more {
    padding: 20px;
  }
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .checks,
  .program-grid,
  .gallery-grid,
  .env-list,
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-photo img {
    height: 390px;
    border-width: 5px;
  }
  .gallery-card,
  .gallery-card:nth-child(3n) {
    min-height: 310px;
  }
  .env-photo {
    height: 390px;
  }
  .teacher-copy {
    padding: 32px 25px;
  }
  .teacher-copy blockquote {
    font-size: 22px;
  }
  .spm-card {
    padding: 22px;
  }
  .program-row {
    display: block;
  }
  .program-row b {
    display: block;
    margin-bottom: 3px;
  }
  .info-row {
    display: block;
  }
  .info-row b {
    display: block;
    margin-bottom: 3px;
  }
  .cta-box {
    padding: 28px 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 7px;
  }
  .wa-label {
    display: none;
  }
}
