@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0f2340;
  --navy-mid: #1a3a5c;
  --navy-light: #2a5280;
  --gold: #c8a96e;
  --gold-light: #e8d5a3;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-100: #f4f2ee;
  --gray-200: #e8e4dc;
  --gray-400: #a09888;
  --gray-600: #6b6355;
  --gray-800: #3d3830;
  --text: #1a1610;
  --text-muted: #6b6355;
  --line: rgba(15,35,64,0.12);
  --line-light: rgba(15,35,64,0.07);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(15,35,64,0.08);
  --shadow-md: 0 4px 20px rgba(15,35,64,0.10);
  --shadow-lg: 0 12px 48px rgba(15,35,64,0.14);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --max: 1120px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

/* ── NAV ───────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; gap: 1px; }
.nav-logo-main { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: 0.01em; }
.nav-logo-sub { font-size: 10px; font-weight: 300; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.72); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 22px; }

/* ── HERO ──────────────────────────────── */
.hero {
  background: var(--navy);
  padding: clamp(4rem, 10vw, 8rem) var(--pad) clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.3);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 14px; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }

/* ── WHO ARE YOU ───────────────────────── */
.audience-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.audience-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.audience-prompt { font-size: 13px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.audience-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.aud-pill {
  font-size: 12px; font-weight: 400;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--cream);
  transition: all 0.2s;
  white-space: nowrap;
}
.aud-pill:hover { border-color: var(--navy); color: var(--navy); background: white; }

/* ── SECTION SHELL ─────────────────────── */
.section { padding: clamp(3rem, 7vw, 6rem) var(--pad); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500; line-height: 1.28;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-lead {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}
.section-dark .section-lead { color: rgba(255,255,255,0.65); }

/* ── PROGRAM CARDS ─────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.program-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  position: relative;
}
.program-card:hover { background: var(--cream); }
.program-card::after {
  content: '→';
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-size: 16px; color: var(--gray-400);
  transition: transform 0.2s, color 0.2s;
}
.program-card:hover::after { transform: translateX(4px); color: var(--navy); }
.prog-accent {
  width: 32px; height: 3px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.prog-name {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.prog-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.prog-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* ── DOS BANNER ────────────────────────── */
.dos-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0 0;
}
.dos-banner-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,169,110,0.4);
  padding: 4px 10px; border-radius: var(--radius-sm);
  white-space: nowrap;
}
.dos-banner-text { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.75); flex: 1; line-height: 1.6; }
.dos-banner-link {
  font-size: 13px; font-weight: 500; color: var(--gold);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.dos-banner-link:hover { gap: 10px; }

/* ── FEATURE ROWS ──────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.feature-row:nth-child(even) .feature-content { order: 2; }
.feature-row:nth-child(even) .feature-visual { order: 1; }
.feature-inner { max-width: var(--max); margin: 0 auto; }
.feature-content {}
.feature-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500; line-height: 1.3;
  color: var(--navy);
  margin-bottom: 1rem;
}
.feature-body { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--text-muted); margin-bottom: 1.5rem; }
.feature-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,169,110,0.07);
}
.fv-label { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.fv-metric { display: flex; gap: 1rem; align-items: baseline; margin-bottom: 0.75rem; }
.fv-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: white; line-height: 1; }
.fv-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); }
.fv-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.25rem 0; }
.fv-item { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; align-items: flex-start; }
.fv-item-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }

/* ── CTA BAND ──────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  text-align: center;
}
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; margin-bottom: 1rem; font-weight: 500; }
.cta-band p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); margin-bottom: 2rem; line-height: 1.75; }
.cta-pair { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────── */
footer {
  background: var(--gray-800);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad) 1.5rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: white; margin-bottom: 4px; }
.footer-brand-sub { font-size: 10px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col-title { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none; }

/* ── INNER PAGE HERO ───────────────────── */
.page-hero {
  background: var(--navy);
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; max-width: 720px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 500; color: white; line-height: 1.22; margin-bottom: 1rem; }
.page-hero p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── CONTACT FORM ──────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy); }
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-form {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: white;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-form:hover { background: var(--navy-mid); }

/* ── CARDS ─────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.card-dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.card-icon { font-size: 24px; margin-bottom: 1rem; color: var(--gold); }
.card-title { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.card-dark .card-title { color: white; }
.card-body { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.card-dark .card-body { color: rgba(255,255,255,0.55); }

/* ── TIER TABLE ────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.tier-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.tier-header { background: var(--navy); padding: 1.25rem 1.5rem; }
.tier-name { font-family: var(--serif); font-size: 16px; font-weight: 500; color: white; margin-bottom: 4px; }
.tier-price { font-size: 22px; font-weight: 400; color: var(--gold); font-family: var(--serif); }
.tier-price-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.5); }
.tier-body { padding: 1.25rem 1.5rem; }
.tier-feature { font-size: 13px; font-weight: 300; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--line-light); display: flex; gap: 8px; align-items: flex-start; }
.tier-feature:last-child { border-bottom: none; }
.tier-check { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ── UTILITIES ─────────────────────────── */
.divider-line { height: 1px; background: var(--line); margin: 3rem 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--navy);
  color: white;
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-mid); }
.label-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-sm);
  display: inline-block;
}
.tag-gov { background: #f0f0ec; color: #4a4a3a; }
.tag-intl { background: #e8f0f8; color: #1a3a5c; }
.tag-us { background: #eaf4e8; color: #2a4a28; }
.tag-phil { background: #faf0e0; color: #5a3a10; }
.tag-corp { background: #ede8f8; color: #3a2a68; }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-content { order: unset; }
  .feature-row:nth-child(even) .feature-visual { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .dos-banner { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }
