:root {
  --green-900: #082f1d;
  --green-800: #0b3f23;
  --green-700: #12683a;
  --green-600: #18864b;
  --green-100: #eaf7ee;
  --green-50: #f4fbf6;

  --gold-600: #d4a017;
  --gold-400: #f6d46b;
  --gold-100: #fff4cf;

  --ink: #1d2b3a;
  --muted: #667789;
  --white: #ffffff;
  --soft: #f7faf7;

  --line: rgba(18, 104, 58, 0.14);
  --line-gold: rgba(212, 160, 23, 0.30);

  --shadow-sm: 0 10px 24px rgba(8, 47, 29, 0.08);
  --shadow: 0 18px 44px rgba(8, 47, 29, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 47, 29, 0.18);

  --radius: 22px;
  --radius-lg: 30px;
  --container: 1160px;
}

/* RESET */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 160, 23, 0.10), transparent 25%),
    radial-gradient(circle at top right, rgba(18, 104, 58, 0.10), transparent 28%),
    linear-gradient(180deg, #f6fbf7 0%, #ffffff 50%, #f6fbf7 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(44px, 5.3vw, 72px);
  color: var(--green-900);
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--green-900);
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--green-700);
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}

.section-label.light {
  color: #fff7d7;
}

.section-label.light::before {
  background: linear-gradient(90deg, #fff7d7, var(--gold-400));
}

/* TOPBAR */

.topbar {
  background: linear-gradient(90deg, var(--green-900), var(--green-700), var(--green-900));
  color: #fff;
  border-bottom: 3px solid var(--gold-600);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 104, 58, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(8, 47, 29, 0.06);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 2px;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-sm);
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: var(--green-700);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #354657;
}

.nav a:hover {
  color: var(--green-700);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-900), var(--green-700), var(--green-600));
  color: #fff;
  box-shadow: 0 14px 28px rgba(18, 104, 58, 0.26);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  box-shadow: 0 14px 28px rgba(212, 160, 23, 0.24);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 14px 28px rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: #fff;
  color: var(--green-800);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.center {
  justify-content: center;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* HERO */

.hero {
  padding: 26px 0 48px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-areas: "media content";
  gap: 28px;
  align-items: center;
}

.hero-media {
  grid-area: media;
  padding: 8px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--gold-600), var(--green-700), var(--gold-400)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-content {
  grid-area: content;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.15), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffdf6 100%);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}

.badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content p {
  margin-top: 14px;
  font-size: 18px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 24px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.hero-benefits span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--gold-600);
  font-weight: 900;
}

.microcopy {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: #788898;
}

/* TRUST STRIP */

.trust-strip {
  padding: 10px 0 42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div {
  padding: 18px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.2;
}

.trust-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

/* SECTIONS */

.section {
  padding: 72px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(18, 104, 58, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(244, 251, 246, 0.92), rgba(255, 255, 255, 0.96));
  border-top: 1px solid rgba(18, 104, 58, 0.08);
  border-bottom: 1px solid rgba(18, 104, 58, 0.08);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head p {
  margin-top: 12px;
  font-size: 17px;
}

/* ALUMNI */

.alumni-section {
  padding-top: 62px;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.alumni-card {
  padding: 22px 16px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.alumni-logo {
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #d8eff8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alumni-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.alumni-card h3 {
  font-size: 19px;
  color: var(--green-900);
  margin-bottom: 6px;
}

.alumni-card p {
  font-size: 13px;
  line-height: 1.45;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.feature-card h3 {
  color: var(--green-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
}

/* SPLIT */

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.split-copy p {
  margin-top: 14px;
  font-size: 17px;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list div {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.problem-list strong {
  display: block;
  color: var(--green-900);
  font-size: 18px;
}

.problem-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

/* RESULT */

.result-section {
  padding-top: 56px;
}

.result-box {
  padding: 38px 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(246, 212, 107, 0.20), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--green-700), #12344c);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.result-box h2,
.result-box p {
  color: #fff;
}

.result-box p {
  margin-top: 12px;
  max-width: 760px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.result-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.result-grid div::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-400);
}

/* PROGRAM */

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-card {
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.program-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.program-badge.blue {
  background: #e8f3ff;
  color: #0d5f9c;
}

.program-badge.green {
  background: var(--green-100);
  color: var(--green-700);
}

.program-card h3 {
  color: var(--green-900);
  font-size: 28px;
  margin-bottom: 10px;
}

.program-card p {
  margin-bottom: 18px;
}

.program-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.program-card li {
  padding: 12px 14px;
  border-radius: 15px;
  background: var(--green-50);
  border: 1px solid rgba(18, 104, 58, 0.08);
  font-weight: 700;
}

.program-card li::before {
  content: "✓ ";
  color: var(--green-700);
  font-weight: 900;
}

/* CTA PANEL */

.cta-panel {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(246, 212, 107, 0.24), transparent 24%),
    radial-gradient(circle at bottom right, rgba(18, 104, 58, 0.12), transparent 28%),
    linear-gradient(180deg, #fffef7 0%, #fff 100%);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}

.cta-panel > p {
  max-width: 760px;
  margin: 12px auto 0;
  font-size: 17px;
}

.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0;
  text-align: left;
}

.scholarship-grid div {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.scholarship-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 16px;
}

.scholarship-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

/* BOARDING */

.boarding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.boarding-grid article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.boarding-grid strong {
  display: block;
  color: var(--green-900);
  font-size: 20px;
}

.boarding-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-sm);
}

.gallery-grid-full {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: #ffffff;
}

/* FAQ */

.faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  color: var(--green-900);
}

.faq details p {
  padding: 0 20px 18px;
}

/* FINAL CTA */

.final-cta {
  padding: 42px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(246, 212, 107, 0.20), transparent 25%),
    linear-gradient(135deg, var(--green-900), var(--green-700), #12344c);
  box-shadow: var(--shadow-lg);
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  margin: 12px auto 24px;
}

/* FOOTER */

.footer {
  padding: 46px 0 88px;
  background: var(--green-900);
  border-top: 4px solid var(--gold-600);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 8px;
}

.footer p,
.footer a,
.footer strong {
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-400);
}

.footer a {
  display: block;
  margin-top: 8px;
}

/* STICKY */

.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0fb45a, #087a3c);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(8, 122, 60, 0.34);
}

.mobile-cta {
  display: none;
}

/* TABLET */

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "content";
  }

  .trust-grid,
  .feature-grid,
  .alumni-grid,
  .scholarship-grid,
  .gallery-grid,
  .gallery-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .program-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .boarding-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 18px));
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  h3 {
    font-size: 20px;
  }

  .topbar-inner {
    min-height: auto;
    padding: 8px 0;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .topbar a {
    min-height: 28px;
    font-size: 12px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .brand strong {
    font-size: 17px;
  }

  .header-btn {
    display: none;
  }

  .hero {
    padding: 18px 0 34px;
  }

  .hero-wrap {
    gap: 16px;
  }

  .hero-media {
    padding: 5px;
    border-radius: 22px;
  }

  .hero-media img {
    border-radius: 16px;
  }

  .hero-content {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .badge {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-benefits {
    gap: 8px;
    margin: 16px 0 20px;
  }

  .hero-benefits span {
    font-size: 12px;
    min-height: 32px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn,
  .btn-lg {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
    padding: 0 14px;
  }

  .microcopy {
    font-size: 12px !important;
  }

  .trust-strip {
    padding: 0 0 32px;
  }

  .trust-grid,
  .feature-grid,
  .alumni-grid,
  .scholarship-grid,
  .gallery-grid,
  .gallery-grid-full,
  .boarding-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    padding: 15px;
  }

  .trust-grid strong {
    font-size: 17px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p {
    font-size: 16px;
  }

  .alumni-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .alumni-logo {
    width: 92px;
    height: 92px;
  }

  .alumni-logo img {
    width: 62px;
    height: 62px;
  }

  .feature-card,
  .program-card,
  .boarding-grid article,
  .scholarship-grid div {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .split {
    gap: 20px;
  }

  .split-copy p {
    font-size: 16px;
  }

  .problem-list div {
    padding: 18px;
    border-radius: 18px;
  }

  .result-box,
  .cta-panel,
  .final-cta {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .program-card h3 {
    font-size: 24px;
  }

  .gallery-grid img {
    height: 250px;
  }

  .gallery-card img {
    height: 240px;
  }

  .gallery-card figcaption {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-wa {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(18, 104, 58, 0.14);
    backdrop-filter: blur(14px);
    box-shadow: 0 -12px 28px rgba(8, 47, 29, 0.10);
  }

  .mobile-cta a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 900;
    font-size: 14px;
  }

  .mobile-cta a:first-child {
    background: linear-gradient(135deg, var(--green-900), var(--green-700), var(--green-600));
    color: #fff;
  }

  .mobile-cta a:last-child {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--green-900);
  }

  .footer {
    padding-bottom: 110px;
  }
}