:root {
  --navy: #0B1F3A;
  --navy-light: #142D52;
  --teal: #1B9AAA;
  --teal-light: #E8F6F8;
  --teal-mid: #A8DCE3;
  --gold: #F4A623;
  --gold-light: #FEF5E6;
  --cream: #FDFAF5;
  --white: #FFFFFF;
  --gray-50: #F7F8FA;
  --gray-100: #EDEEF2;
  --gray-300: #C2C5D0;
  --gray-500: #777D90;
  --gray-700: #3E4358;
  --text-dark: #0D1226;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--cream); font-size: 16px; line-height: 1.7; }

/* TOPBAR */
.topbar { background: var(--navy); color: #9DBCD8; font-size: 13px; padding: 8px 0; }
.topbar a { color: var(--teal-mid); text-decoration: none; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* NAV */
nav { background: var(--white); border-bottom: 1px solid var(--gray-100); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(11,31,58,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.logo-sub { font-size: 10px; font-weight: 500; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-700); text-decoration: none; padding: 8px 13px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { background: var(--gray-50); color: var(--navy); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-links .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; box-shadow: 0 8px 40px rgba(11,31,58,0.12); padding: 8px; min-width: 220px; z-index: 200; }
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a { display: block; padding: 9px 14px; font-size: 13.5px; border-radius: 8px; }
.nav-links .dropdown-menu a:hover { background: var(--teal-light); color: var(--teal); }
.nav-ctas { display: flex; align-items: center; gap: 10px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 8px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-outline { background: transparent; border: 1.5px solid var(--gray-300); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #158898; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,154,170,0.35); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-gold:hover { background: #e6981a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(244,166,35,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); font-weight: 600; }
.btn-white:hover { background: var(--gray-50); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* MOBILE NAV */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 16px 24px; box-shadow: 0 8px 30px rgba(11,31,58,0.1); z-index: 99; max-height: calc(100vh - 72px); overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 0; font-size: 15px; color: var(--gray-700); text-decoration: none; border-bottom: 1px solid var(--gray-100); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-sub { padding-left: 14px; font-size: 14px; color: var(--gray-500); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%),repeating-linear-gradient(-45deg,#fff 0,#fff 1px,transparent 0,transparent 50%); background-size: 40px 40px; }
.page-hero-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(27,154,170,0.18) 0%,transparent 70%); top: -100px; right: -60px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #4A7A9B; margin-bottom: 18px; }
.breadcrumb a { color: #4A7A9B; text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-mid); }
.breadcrumb span { color: var(--teal-mid); }
.page-hero-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 10px; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(30px,4vw,48px); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero-desc { font-size: 17px; color: #9DBCD8; max-width: 580px; line-height: 1.7; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* SECTIONS */
section { padding: 72px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px,3.5vw,38px); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* CARDS */
.card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 16px; padding: 28px; transition: all 0.25s; }
.card:hover { box-shadow: 0 8px 40px rgba(11,31,58,0.09); transform: translateY(-2px); }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 24px; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.ci-teal { background: var(--teal-light); }
.ci-gold { background: var(--gold-light); }
.ci-navy { background: rgba(11,31,58,0.06); }
.card-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.tag { font-size: 11.5px; font-weight: 500; padding: 4px 10px; border-radius: 100px; border: 1px solid; }
.tag-teal { background: var(--teal-light); color: #0E7583; border-color: var(--teal-mid); }
.tag-gold { background: var(--gold-light); color: #8B5E0A; border-color: #FAD08A; }
.tag-navy { background: rgba(11,31,58,0.06); color: var(--navy); border-color: rgba(11,31,58,0.12); }

/* FEATURE LIST */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); }
.feature-check { width: 22px; height: 22px; background: var(--teal-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg,var(--teal) 0%,#0E6B78 100%); padding: 64px 0; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-title { font-family: var(--font-serif); font-size: clamp(22px,3vw,32px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.25; }
.cta-band-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* FORM */
.form-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 20px; padding: 36px; box-shadow: 0 4px 30px rgba(11,31,58,0.06); }
.form-title { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-100); border-radius: 10px; font-family: var(--font-sans); font-size: 14px; color: var(--text-dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,154,170,0.1); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23777D90' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-submit { width: 100%; padding: 13px; font-size: 15px; font-weight: 600; border-radius: 10px; cursor: pointer; transition: all 0.2s; border: none; background: var(--teal); color: var(--white); font-family: var(--font-sans); margin-top: 4px; }
.form-submit:hover { background: #158898; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,154,170,0.3); }

/* TESTIMONIAL */
.testimonial-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 16px; padding: 28px; transition: box-shadow 0.2s; }
.testimonial-card:hover { box-shadow: 0 6px 30px rgba(11,31,58,0.08); }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14.5px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.author-role { font-size: 12px; color: var(--gray-500); }

/* FOOTER */
footer { background: var(--navy); color: #7A9BB8; padding: 60px 0 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: 13px; color: #4A7A9B; margin-bottom: 18px; }
.footer-desc { font-size: 13.5px; color: #5C8AA8; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #4A7A9B; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: #6E9AB8; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #3A6280; }
.footer-bottom a { color: #3A6280; text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-mid); }

/* SPLIT LAYOUT */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-3-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

/* INFO SIDEBAR */
.info-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 16px; padding: 22px 24px; margin-bottom: 20px; }
.info-card-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

/* STAT BOXES */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; }
.stat-box { background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: 14px; padding: 22px 20px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-num span { font-size: 22px; color: var(--teal); }
.stat-label { font-size: 13px; color: var(--gray-500); }

/* BG VARIANTS */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-gray { background: var(--gray-50); }

/* PROGRAM LINK CARD */
.prog-link-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 14px; padding: 18px 20px; text-decoration: none; transition: all 0.22s; color: inherit; }
.prog-link-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(27,154,170,0.1); transform: translateX(4px); }
.prog-link-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.prog-link-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.prog-link-sub { font-size: 12.5px; color: var(--gray-500); }
.prog-link-arrow { margin-left: auto; color: var(--teal); font-size: 18px; }

/* STEP */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.step:not(:last-child)::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 1px; background: var(--gray-100); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: white; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* PRICING */
.price-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 20px; padding: 32px 28px; transition: all 0.25s; position: relative; overflow: hidden; }
.price-card:hover { box-shadow: 0 8px 40px rgba(11,31,58,0.1); transform: translateY(-3px); }
.price-card.featured { border-color: var(--teal); border-width: 2px; }
.price-badge { display: inline-block; background: var(--teal); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.price-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.price-amount { font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 16px; color: var(--gray-500); font-weight: 400; }
.price-desc { font-size: 13.5px; color: var(--gray-500); margin-bottom: 22px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gray-700); }
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

@media (max-width: 900px) {
  .split-2 { grid-template-columns: 1fr; }
  .split-3-1 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .cta-band-inner { flex-direction: column; }
  .page-hero { padding: 50px 0 44px; }
}
