:root{
  --navy-deep:  #0E2A47;
  --navy-mid:   #17395E;
  --blue:       #2E6F9E;
  --green:      #1F9D63;
  --gold:       #A9822F;
  --paper:      #F7F5EF;
  --paper-alt:  #EFEBE0;
  --ink:        #1B2430;
  --gray:       #5B6470;
  --line:       #DDD7C6;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}
h1,h2,h3,cite{ font-family: var(--serif); font-style: normal; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; }
img{ max-width: 100%; display: block; }

.wrap{ max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow{ max-width: 780px; }

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1.5px solid transparent;
}
.btn-primary{
  background: var(--green);
  color: #fff;
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 6px 16px rgba(31,157,99,0.3); }
.btn-ghost{
  border-color: rgba(255,255,255,0.4);
  color: inherit;
}
.investment .btn-ghost, .price-card .btn-ghost{
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.08); }
.btn-block{ display: block; text-align: center; margin-top: 16px; }

/* ---------- HEADER ---------- */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,42,71,0.96);
  backdrop-filter: blur(6px);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand{
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: #fff; font-size: 15px; letter-spacing: 0.2px;
}
.brand-mark{ height: 30px; width: auto; display: block; }
.footer-inner .brand-mark{ height: 24px; }
.main-nav{ display: flex; align-items: center; gap: 28px; }
.main-nav a{ color: #CBD8E3; font-size: 14.5px; font-weight: 500; }
.main-nav a:hover{ color: #fff; }
.nav-cta{
  background: var(--green); color: #fff !important;
  padding: 9px 18px; border-radius: 3px; font-weight: 600;
}
.nav-toggle{
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span{ width: 22px; height: 2px; background: #fff; display: block; }

/* ---------- HERO ---------- */
.hero{
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-lines{
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-inner{ position: relative; z-index: 1; }
.eyebrow{
  color: #9FB4C6; font-size: 13.5px; letter-spacing: 0.3px; margin: 0 0 18px;
}
.hero h1{
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  margin: 0;
  line-height: 1.08;
}
.hero h1 .accent{ color: var(--green); }
.hero-tagline{
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 19px; color: #CBD8E3; max-width: 580px;
  margin: 22px 0 34px;
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats{ display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stats div{ display: flex; flex-direction: column; }
.hero-stats strong{ font-family: var(--serif); font-size: 26px; color: #fff; }
.hero-stats span{ font-size: 13px; color: #9FB4C6; margin-top: 2px; }

/* ---------- STORY ---------- */
.story{ padding: 78px 0; }
.story p{ font-size: 17px; color: var(--ink); margin: 0 0 22px; }
.quote-card{
  margin: 34px 0;
  background: #fff;
  border-left: 4px solid var(--green);
  padding: 26px 30px;
  display: flex; gap: 22px; align-items: flex-start;
  box-shadow: 0 2px 14px rgba(14,42,71,0.06);
}
.quote-card img{
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.quote-card p{
  font-family: var(--serif); font-style: italic; font-size: 16.5px;
  color: #2B333D; margin: 0 0 10px;
}
.quote-card cite{
  font-style: normal; font-family: var(--sans); font-size: 13.5px; color: var(--gray);
}
.quote-card cite strong{ color: var(--navy-deep); }

/* ---------- HIGHLIGHT ---------- */
.highlight{
  background: var(--navy-deep);
  color: #fff;
  padding: 56px 0;
}
.highlight-inner{
  display: flex; align-items: center; gap: 36px;
}
.highlight-chart{ flex-shrink: 0; }
.highlight .tag{
  display: inline-block;
  font-size: 12.5px; letter-spacing: 0.3px;
  color: var(--green); border: 1px solid var(--green);
  padding: 4px 10px; border-radius: 3px; margin-bottom: 12px;
}
.highlight h2{ font-size: 26px; margin: 0 0 10px; color: #fff; }
.highlight p{ font-size: 15.5px; color: #CBD8E3; max-width: 640px; margin: 0; }

/* ---------- PROGRAM ---------- */
.program{ padding: 78px 0; }
.two-col{ display: flex; gap: 60px; }
.col{ flex: 1; }
.col h2{
  font-size: 22px; color: var(--navy-deep);
  border-bottom: 1px solid var(--line); padding-bottom: 12px; margin: 0 0 20px;
}
.checklist li{
  position: relative; list-style: none;
  padding-left: 24px; margin-bottom: 14px; font-size: 15px;
}
.checklist li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
}
.plain-list li{
  list-style: none; padding: 10px 0; font-size: 15px;
  border-bottom: 1px dotted var(--line);
}
.eligibility{
  margin-top: 22px;
  background: var(--paper-alt);
  border-left: 3px solid var(--gold);
  padding: 16px 20px; font-size: 14.5px;
}
.eligibility strong{ color: var(--navy-deep); }

/* ---------- FACT STRIP ---------- */
.fact-strip{ background: var(--navy-mid); color: #F2EFE6; padding: 34px 0; }
.fact-grid{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.fact{ display: flex; flex-direction: column; gap: 4px; }
.fact .label{ font-size: 12px; color: #A9BCCC; letter-spacing: 0.3px; }
.fact .value{ font-family: var(--serif); font-size: 19px; color: #fff; }

/* ---------- ABOUT ---------- */
.about{ padding: 78px 0; }
.about-photo-wide{
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(14,42,71,0.15);
  margin-bottom: 40px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
}
.about-inner{ display: flex; gap: 50px; align-items: center; }
.about-text{ flex: 2; }
.about-text h2{ font-size: 24px; color: var(--navy-deep); margin: 0 0 16px; }
.about-text p{ font-size: 15.5px; color: var(--ink); margin: 0; }
.credentials{ flex: 1; display: flex; flex-direction: column; gap: 14px; }
.cred{
  background: #fff; border: 1px solid var(--line);
  padding: 16px; text-align: center; border-radius: 3px;
}
.cred .num{ display: block; font-family: var(--serif); font-size: 24px; color: var(--green); font-weight: 700; }
.cred .lbl{ display: block; font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ---------- INVESTMENT ---------- */
.investment{ padding: 78px 0; }
.investment h2{
  font-size: 24px; color: var(--navy-deep);
  border-bottom: 1px solid var(--line); padding-bottom: 12px; margin: 0 0 30px;
}
.price-row{ display: flex; gap: 30px; }
.price-card{
  flex: 1; padding: 32px 30px; border: 1px solid var(--line);
  background: #fff; border-radius: 4px;
}
.price-card.featured{ border: 2px solid var(--green); background: #F1F8F4; }
.price-card .tag{
  display: block; font-size: 12.5px; color: var(--green); letter-spacing: 0.2px;
  margin-bottom: 12px; font-weight: 600;
}
.price-card .tag.muted{ color: var(--gray); }
.price-card .amount{
  display: block; font-family: var(--serif); font-size: 34px; color: var(--navy-deep);
}
.price-card .gst{ display: block; font-size: 13.5px; color: var(--gray); margin-top: 4px; }

/* ---------- FINAL CTA ---------- */
.final-cta{ background: var(--paper-alt); padding: 60px 0; }
.final-cta-inner{
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.final-cta h2{ font-size: 24px; color: var(--navy-deep); margin: 0 0 6px; }
.final-cta p{ font-size: 15px; color: var(--gray); margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer{ background: var(--navy-deep); color: #B9C6D4; padding: 34px 0; }
.footer-inner{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-inner .brand{ color: #fff; }
.footer-contact a{ color: #CBD8E3; font-size: 14px; }
.footer-contact span{ margin: 0 8px; color: #5B6470; }
.copyright{ font-size: 12.5px; margin: 0; width: 100%; text-align: center; color: #7488A0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 18px; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px){
  .main-nav{
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column; align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .main-nav.open{ transform: translateY(0); }
  .nav-cta{ margin-top: 4px; }
  .nav-toggle{ display: flex; }

  .two-col{ flex-direction: column; gap: 40px; }
  .about-inner{ flex-direction: column; align-items: stretch; gap: 30px; }
  .credentials{ flex-direction: row; }
  .cred{ flex: 1; }
  .price-row{ flex-direction: column; }
  .highlight-inner{ flex-direction: column; text-align: center; }
  .fact-grid{ justify-content: flex-start; }
  .fact{ min-width: 45%; }
  .final-cta-inner{ text-align: center; justify-content: center; }
}

@media (max-width: 480px){
  .hero{ padding: 70px 0 50px; }
  .hero-stats{ gap: 28px; }
  .quote-card{ flex-direction: column; }
  .fact{ min-width: 100%; }
}
