@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --clr-primary:   #2a5c8d;
  --clr-primary-d: #1c3f63;
  --clr-accent:    #e8a020;
  --clr-accent-d:  #c4851a;
  --clr-bg:        #f7f9fc;
  --clr-bg-alt:    #eef2f8;
  --clr-text:      #2d2d2d;
  --clr-text-muted:#666;
  --clr-border:    #dce3ed;
  --clr-white:     #ffffff;
  --radius:        8px;
  --shadow:        0 4px 24px rgba(42,92,141,.10);
  --shadow-lg:     0 8px 48px rgba(42,92,141,.15);
  --transition:    .25s ease;
  --container:     1200px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--clr-text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}
.tag {
  display: inline-block;
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-primary:hover {
  background: var(--clr-primary-d);
  border-color: var(--clr-primary-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn-accent:hover {
  background: var(--clr-accent-d);
  border-color: var(--clr-accent-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn-white:hover {
  background: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--clr-primary-d);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar a:hover { color: var(--clr-accent); }
.topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 20px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--clr-white);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.logo span { color: var(--clr-accent); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--clr-text);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--clr-primary);
  background: var(--clr-bg-alt);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-primary-d);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content h1 { color: var(--clr-white); margin-bottom: 24px; }
.hero-content p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 52px;
}
.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
}
.hero-stat span {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
  display: block;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 500; color: var(--clr-text-muted);
}
.trust-item .icon {
  width: 40px; height: 40px;
  background: var(--clr-bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-primary); font-size: 1.1rem;
  flex-shrink: 0;
}

/* =============================================
   CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; color: var(--clr-text-muted);
  margin-bottom: 10px;
}
.card-meta .badge {
  background: var(--clr-bg-alt);
  color: var(--clr-primary);
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .75rem;
}
.card h3 { margin-bottom: 10px; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: space-between;
}
.course-price {
  font-size: 1.3rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--clr-primary);
}
.course-price small {
  font-size: .75rem; color: var(--clr-text-muted);
  font-family: 'Inter', sans-serif; font-weight: 400;
}

/* =============================================
   FEATURES / BENEFITS
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--clr-bg-alt);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  color: var(--clr-primary);
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* =============================================
   SPLIT SECTION
   ============================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media img {
  width: 100%; border-radius: 18px;
  box-shadow: var(--shadow-lg);
}
.split-content .tag { margin-bottom: 16px; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; }
.checklist { margin: 20px 0 28px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; margin-bottom: 12px;
  color: var(--clr-text);
}
.checklist li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--clr-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 32px 28px;
}
.stars { color: var(--clr-accent); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--clr-text); font-style: italic; margin-bottom: 20px; }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.author-info strong { display: block; font-size: .92rem; color: var(--clr-text); }
.author-info span { font-size: .8rem; color: var(--clr-text-muted); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--clr-primary-d), var(--clr-primary));
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--clr-white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   BLOG / ARTICLES
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .8rem; color: var(--clr-text-muted); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--clr-primary); font-weight: 600; font-size: .9rem;
  margin-top: 12px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 10px; }

/* =============================================
   TEAM
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 32px 20px;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--clr-bg-alt);
}
.team-card h3 { font-size: 1rem; margin-bottom: 6px; }
.team-card span { font-size: .85rem; color: var(--clr-primary); }
.team-card p { font-size: .88rem; margin-top: 10px; }

/* =============================================
   FAQ / ACCORDION
   ============================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .98rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--clr-bg-alt); }
.faq-question.open { background: var(--clr-bg-alt); color: var(--clr-primary); }
.faq-icon { font-size: 1.2rem; transition: transform .3s; color: var(--clr-primary); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  background: var(--clr-white);
}
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { margin: 0; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--clr-bg-alt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--clr-primary);
}
.contact-detail strong { display: block; font-size: .88rem; margin-bottom: 2px; }
.contact-detail span { font-size: .95rem; color: var(--clr-text); }
.form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--clr-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(42,92,141,.1);
  background: var(--clr-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 16px;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/page-hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--clr-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: .84rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb span { color: rgba(255,255,255,.45); }

/* =============================================
   NUMBERS / STATS
   ============================================= */
.stats-section { background: var(--clr-bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span { font-size: .9rem; color: var(--clr-text-muted); }

/* =============================================
   COURSE DETAIL
   ============================================= */
.course-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.course-sticky {
  position: sticky;
  top: 100px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.course-sticky img { width: 100%; height: 200px; object-fit: cover; }
.course-sticky-body { padding: 24px; }
.curriculum-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: .93rem;
  color: var(--clr-text);
}
.curriculum-list li:last-child { border-bottom: none; }
.lesson-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--clr-bg-alt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--clr-primary);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #0e1f35; color: rgba(255,255,255,.7); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: var(--clr-white); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--clr-white);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-accent); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; margin-bottom: 12px;
}
.footer-contact a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--clr-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; margin: 0; }
.footer-bottom-links {
  display: flex; gap: 20px;
}
.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--clr-accent); }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #0e1f35;
  color: rgba(255,255,255,.9);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.cookie-banner p { font-size: .9rem; color: rgba(255,255,255,.85); margin: 0; }
.cookie-banner a { color: var(--clr-accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.policy-content h1 { margin-bottom: 8px; }
.policy-date {
  font-size: .85rem; color: var(--clr-text-muted);
  margin-bottom: 36px; display: block;
}
.policy-content h2 {
  font-size: 1.35rem;
  margin-top: 40px; margin-bottom: 12px;
}
.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px; margin-bottom: 10px;
}
.policy-content p { color: var(--clr-text); margin-bottom: 14px; }
.policy-content ul { margin: 10px 0 18px 24px; list-style: disc; }
.policy-content ul li { margin-bottom: 8px; font-size: .95rem; color: var(--clr-text); }
.policy-content a { color: var(--clr-primary); text-decoration: underline; }
.policy-content table {
  width: 100%; border-collapse: collapse; margin: 20px 0;
  font-size: .9rem;
}
.policy-content th {
  background: var(--clr-bg-alt);
  padding: 10px 14px; text-align: left;
  font-weight: 600; color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.policy-content td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: top;
}

/* =============================================
   BG UTILITIES
   ============================================= */
.bg-light { background: var(--clr-bg); }
.bg-alt   { background: var(--clr-bg-alt); }
.bg-white  { background: var(--clr-white); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.fw-600 { font-weight: 600; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .course-layout { grid-template-columns: 1fr; }
  .course-sticky { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--clr-white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 4px;
    z-index: 800;
  }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 24px; }
  .topbar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-card { padding: 24px 18px; }
}
