/* ============================================================
   EDUZON — Liquid Glass Design System
   Brand: Monarch Eduzon · Royal Indigo + Saffron palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Surface — luminous gradient base */
  --bg-base: #f6f3ff;
  --bg-warm: #fff4e8;
  --bg-cool: #e9efff;
  --bg-mid:  #f1e8ff;

  /* Ink */
  --ink-1: #0a0e1a;
  --ink-2: #2a3142;
  --ink-3: #5b6378;
  --ink-4: #9098ad;
  --ink-on-brand: #ffffff;

  /* Monarch brand — royal indigo */
  --brand-1: #1e2a78;     /* deep */
  --brand-2: #3730a3;     /* core */
  --brand-3: #6366f1;     /* light */
  --brand-glow: #818cf8;

  /* Saffron accent */
  --accent-1: #b45309;
  --accent-2: #d97706;
  --accent-3: #f59e0b;
  --accent-glow: #fbbf24;

  /* Glass system */
  --glass-bg:        rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-bg-soft:   rgba(255, 255, 255, 0.38);
  --glass-border:    rgba(255, 255, 255, 0.65);
  --glass-edge-top:  rgba(255, 255, 255, 0.92);
  --glass-edge-btm:  rgba(255, 255, 255, 0.05);

  --shadow-glass: 0 10px 40px -10px rgba(30, 42, 120, 0.18),
                  0 4px 16px -4px rgba(30, 42, 120, 0.08);
  --shadow-glass-hover: 0 20px 60px -10px rgba(30, 42, 120, 0.25),
                        0 8px 24px -4px rgba(30, 42, 120, 0.12);
  --shadow-inset: inset 0 1px 0 0 rgba(255, 255, 255, 0.95),
                  inset 0 -1px 0 0 rgba(30, 42, 120, 0.06);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --t-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg-base);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   AMBIENT BACKGROUND — gradient orbs that the glass refracts
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top left, var(--bg-cool) 0%, transparent 50%),
    radial-gradient(ellipse at top right, var(--bg-warm) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, var(--bg-mid) 0%, transparent 60%),
    var(--bg-base);
}

.ambient::before,
.ambient::after,
.ambient .orb {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 28s ease-in-out infinite;
}

.ambient::before {
  width: 520px; height: 520px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  animation-duration: 32s;
}
.ambient::after {
  width: 480px; height: 480px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  animation-duration: 26s;
  animation-delay: -8s;
  opacity: 0.45;
}
.ambient .orb-1 {
  width: 600px; height: 600px;
  bottom: -180px; left: 20%;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  animation-duration: 34s;
  animation-delay: -12s;
  opacity: 0.4;
}
.ambient .orb-2 {
  width: 380px; height: 380px;
  top: 60%; left: -80px;
  background: radial-gradient(circle, #fda4af, transparent 70%);
  animation-duration: 30s;
  animation-delay: -4s;
  opacity: 0.35;
}
.ambient .orb-3 {
  width: 420px; height: 420px;
  top: 90%; right: 15%;
  background: radial-gradient(circle, var(--brand-3), transparent 70%);
  animation-duration: 38s;
  animation-delay: -16s;
  opacity: 0.3;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.08); }
  66%      { transform: translate(-40px, 50px) scale(0.95); }
}

/* Subtle film grain for refinement */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   GLASS PRIMITIVE
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass), var(--shadow-inset);
  position: relative;
  overflow: hidden;
}

/* Specular highlight — thin gradient line on top edge */
.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 1) 20%,
    rgba(255, 255, 255, 1) 80%,
    transparent);
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variation-settings: "opsz" 96;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; font-family: 'Manrope', sans-serif; letter-spacing: -0.01em; }

p { color: var(--ink-3); }
a { color: var(--brand-2); text-decoration: none; transition: color .3s var(--t-ease); }
a:hover { color: var(--accent-2); }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--brand-2), transparent);
}

.italic-accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--accent-2);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; font-size: 1.125rem; }

/* ============================================================
   NAVBAR — floating glass capsule
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 2.0rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1180px;
  transition: top .4s var(--t-ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-glass), var(--shadow-inset);
  position: relative;
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,1), transparent);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}
.nav-brand .crest {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  display: grid; place-items: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px -2px rgba(67, 56, 202, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.4);
}
.nav-brand .crest::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent 60%);
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .3s var(--t-ease);
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--brand-2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border-radius: 999px;
  box-shadow: 0 4px 16px -2px rgba(55, 48, 163, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.3),
              inset 0 -1px 0 rgba(0,0,0,0.1);
  transition: all .3s var(--t-ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -2px rgba(55, 48, 163, 0.6),
              inset 0 1px 0 rgba(255,255,255,0.3);
  color: white;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 20px; height: 1.5px;
  background: var(--ink-1);
  transition: all .3s var(--t-ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Top bar above nav */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--ink-3);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.topbar a { color: var(--ink-2); font-weight: 500; }
.topbar a:hover { color: var(--accent-2); }
.topbar .sep { width: 1px; height: 12px; background: var(--ink-4); opacity: .4; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 11rem 0 6rem;
  text-align: center;
  position: relative;
}

.hero h1 {
  margin: 1.5rem auto 1.5rem;
  max-width: 16ch;
}
.hero h1 .italic-accent { font-style: italic; }

.hero-sub {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--ink-3);
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .35s var(--t-ease);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2) 60%, var(--brand-3));
  box-shadow: 0 8px 24px -4px rgba(55, 48, 163, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.3),
              inset 0 -1px 0 rgba(0,0,0,0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(55, 48, 163, 0.6),
              inset 0 1px 0 rgba(255,255,255,0.3);
  color: white;
}
.btn-glass {
  color: var(--ink-1);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass), var(--shadow-inset);
}
.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.85);
  color: var(--ink-1);
}
.btn-accent {
  color: white;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 8px 24px -4px rgba(217, 119, 6, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 5rem auto 0;
}
.hero-stat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: var(--radius-md);
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--brand-2);
  line-height: 1;
  display: block;
}
.hero-stat .num .italic-accent { color: var(--accent-2); }
.hero-stat .label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   WHY EDUZON — feature grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 2.25rem 1.75rem;
  transition: transform .5s var(--t-spring), box-shadow .5s var(--t-ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glass-hover), var(--shadow-inset);
}

.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
}
.why-icon svg {
  width: 28px; height: 28px;
  stroke: var(--brand-2);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card:nth-child(2) .why-icon svg,
.why-card:nth-child(5) .why-icon svg { stroke: var(--accent-2); }

.why-card h4 {
  margin-bottom: 0.5rem;
  color: var(--ink-1);
}
.why-card p {
  font-size: 0.95rem;
  color: var(--ink-3);
}

/* ============================================================
   UNIVERSITIES — partner logos
   ============================================================ */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.uni-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform .5s var(--t-spring), box-shadow .5s var(--t-ease);
  cursor: pointer;
}
.uni-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-glass-hover), var(--shadow-inset);
}

.uni-crest {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: white;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px -4px rgba(30, 42, 120, 0.4),
              inset 0 1px 0 rgba(255,255,255,0.4),
              inset 0 -2px 4px rgba(0,0,0,0.1);
}
.uni-crest::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}
.uni-crest.c1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.uni-crest.c2 { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.uni-crest.c3 { background: linear-gradient(135deg, #047857, #10b981); }
.uni-crest.c4 { background: linear-gradient(135deg, #6b21a8, #a855f7); }
.uni-crest.c5 { background: linear-gradient(135deg, #c2410c, #f97316); }
.uni-crest.c6 { background: linear-gradient(135deg, #0f766e, #14b8a6); }

.uni-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-1);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.uni-tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   COURSES — three pillars
   ============================================================ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.course-card {
  padding: 2.5rem 2rem;
  transition: transform .5s var(--t-spring), box-shadow .5s var(--t-ease);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glass-hover), var(--shadow-inset);
}

.course-card .badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--brand-2);
  margin-bottom: 1.25rem;
}
.course-card.accent .badge { color: var(--accent-1); }

.course-card .level {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink-1);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.course-card .level-it {
  font-style: italic;
  color: var(--brand-2);
  font-weight: 400;
}
.course-card.accent .level-it { color: var(--accent-2); }

.course-card .lede {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}

.course-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.course-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 500;
}
.course-list li::before {
  content: '';
  margin-top: 0.5rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-2);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}
.course-card.accent .course-list li::before { background: var(--accent-2); box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2); }

.course-list .more {
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--ink-4);
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
}
.course-list .more::before { display: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.contact-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info h3 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.contact-info > p {
  font-size: 1rem;
  color: var(--ink-3);
}

.contact-block { display: flex; gap: 1rem; align-items: flex-start; }
.contact-block .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(255,255,255,0.7);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.contact-block .ico svg {
  width: 20px; height: 20px;
  stroke: var(--brand-2);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-block .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.2rem;
}
.contact-block .val {
  font-size: 1rem;
  color: var(--ink-1);
  font-weight: 500;
  line-height: 1.5;
}
.contact-block .val a { color: var(--ink-1); }
.contact-block .val a:hover { color: var(--brand-2); }

.contact-form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--ink-3); margin-bottom: 0.75rem; }

.field {
  position: relative;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-1);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  outline: none;
  transition: all .3s var(--t-ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8),
              inset 0 -1px 0 rgba(30, 42, 120, 0.04);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field textarea:focus {
  background: rgba(255,255,255,0.85);
  border-color: var(--brand-3);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12),
              inset 0 1px 0 rgba(255,255,255,0.8);
}
.field textarea { resize: vertical; min-height: 110px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Honeypot — visually & mechanically hidden but still in DOM */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* CAPTCHA field */
.captcha-field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.captcha-q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-2);
  padding: 0.1rem 0.55rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 8px;
  letter-spacing: 0.05em;
  min-width: 60px;
  text-align: center;
}
.captcha-refresh {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-3);
  transition: all .3s var(--t-ease);
  margin-left: auto;
}
.captcha-refresh:hover {
  background: var(--brand-2);
  color: white;
  border-color: var(--brand-2);
  transform: rotate(180deg);
}
.captcha-refresh:disabled { opacity: 0.5; cursor: wait; }

/* Submit button states */
#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
#submitBtn .btn-label::after {
  content: '';
  display: inline-block;
}
#submitBtn.loading .btn-label::after {
  content: '…';
  animation: dots 1.2s infinite;
}
@keyframes dots {
  0%, 20%   { content: '.';   }
  40%       { content: '..';  }
  60%, 100% { content: '...'; }
}

.form-status {
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-page-hero {
  padding: 9rem 0 3rem;
  text-align: center;
}
.faq-page-hero h1 { margin: 1.25rem auto; max-width: 14ch; }
.faq-page-hero p { font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  transition: box-shadow .4s var(--t-ease);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .3s var(--t-ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-2); }

.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  position: relative;
  transition: all .4s var(--t-spring);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brand-2);
  border-radius: 1px;
  transition: transform .4s var(--t-spring);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 12px; }

.faq-item[open] .faq-icon {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
  border-color: transparent;
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: white; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }

.faq-body {
  padding: 0 1.75rem 1.75rem;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.75;
}
.faq-body p + p { margin-top: 0.85rem; }
.faq-body strong { color: var(--ink-1); font-weight: 600; }
.faq-body em { font-family: 'Fraunces', serif; font-style: italic; color: var(--brand-2); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  margin: 4rem 1rem 1rem;
  padding: 3rem 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 42, 120, 0.95), rgba(55, 48, 163, 0.92));
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(245, 158, 11, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(129, 140, 248, 0.4), transparent 55%);
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.foot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.foot-brand h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.foot-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); max-width: 28ch; }

.foot-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.foot-col a { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.foot-col a:hover { color: var(--accent-glow); }

.foot-bottom {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--t-ease), transform .9s var(--t-ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  section { padding: 5rem 0; }
  .why-grid, .uni-grid, .course-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar { display: none; }
  .nav-wrap { top: 0.75rem; }
  .nav { padding: 0.6rem 0.6rem 0.6rem 1.1rem; }
  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--t-ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .why-grid, .uni-grid, .course-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 2rem 1.5rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { padding: 9rem 0 4rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
