:root {
  --navy: #0f1f3d;
  --navy-light: #1a3260;
  --gold: #c9952a;
  --gold-light: #e0b84a;
  --cream: #f8f6f1;
  --cream-dark: #eeeae0;
  --text: #1a1a2e;
  --text-muted: #5a6270;
  --white: #ffffff;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
}

.hero-decoration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.07;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.deco-ring-1 { width: 400px; height: 400px; top: 50px; right: 80px; }
.deco-ring-2 { width: 280px; height: 280px; top: 110px; right: 140px; }
.deco-line {
  position: absolute;
  width: 2px;
  height: 400px;
  background: var(--gold);
  right: 220px;
  top: 50px;
}

/* ── STATS ── */
.stats {
  background: var(--navy-light);
  padding: 48px 48px;
}

.stats-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 800px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ── PROOF ── */
.proof {
  background: var(--cream);
  padding: 96px 48px;
}

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.quote-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.quote-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.quote-school {
  font-size: 13px;
  color: var(--text-muted);
}

.quote-atar {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
}

.proof-logos-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uni-logo {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--cream-dark);
  padding: 8px 14px;
  border-radius: 2px;
}

/* ── SUBJECTS ── */
.subjects {
  background: var(--white);
  padding: 96px 48px;
}

.subjects-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.subjects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.subject-group {
  margin-bottom: 32px;
}

.group-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.group-items {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ── OUTCOMES ── */
.outcomes {
  background: var(--cream);
  padding: 96px 48px;
}

.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.outcome-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-card {
  background: var(--navy);
  color: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  margin-top: 56px;
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-old {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.price-new {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}

.pricing-note {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}

.pricing-free {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

/* ── CLOSING ── */
.closing {
  background: var(--navy);
  padding: 112px 48px;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  background: var(--cream-dark);
  padding: 36px 48px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 64px 28px; min-height: auto; padding-top: 80px; padding-bottom: 80px; }
  .stats { padding: 40px 28px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .proof { padding: 64px 28px; }
  .proof-inner { grid-template-columns: 1fr; gap: 48px; }
  .subjects { padding: 64px 28px; }
  .subjects-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 28px; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .pricing-card { margin-top: 0; }
  .closing { padding: 72px 28px; }
  .footer { padding: 28px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-links { margin-left: 0; }
}