@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --color-primary: #1A1A2E;
  --color-accent: #C8102E;
  --color-blue: #0F3460;
  --color-light: #F5F4EF;
  --color-white: #FFFFFF;
  --color-text: #1E1E1E;
  --color-muted: #6B6B6B;
  --color-border: #E0DFDA;
  --color-card: #FAFAF7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1280px;
  --section-pad: 96px 0;
  --radius: 4px;
  --shadow: 0 2px 24px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--color-primary);
}

/* ===========================
   UTILITY
=========================== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--gray { background: var(--color-light); }
.section--dark { background: var(--color-primary); color: var(--color-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-white); }
.section--blue { background: var(--color-blue); color: var(--color-white); }
.section--blue h1, .section--blue h2, .section--blue h3 { color: var(--color-white); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.tag--white { color: #fff; border-color: rgba(255,255,255,0.4); }

.label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.label--blue { background: var(--color-blue); }
.label--outline { background: transparent; border: 1px solid var(--color-accent); color: var(--color-accent); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.eyebrow--white { color: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 20px 0;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .divider { margin: 20px auto; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--primary:hover { background: #a50d24; border-color: #a50d24; color: #fff; }
.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--secondary:hover { background: var(--color-primary); color: #fff; }
.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn--white:hover { background: var(--color-light); color: var(--color-primary); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn--ghost:hover { color: #a50d24; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===========================
   HEADER & NAVIGATION
=========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-accent); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 3px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--color-accent); background: rgba(200,16,46,0.06); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--color-accent); padding-left: 22px; background: rgba(200,16,46,0.04); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: all 0.3s; }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  overflow-y: auto;
  z-index: 999;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
}
.mobile-nav-link:hover { color: var(--color-accent); }
.mobile-nav-sub {
  padding: 8px 16px;
  font-size: 0.95rem;
  color: var(--color-muted);
  display: block;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-sub:hover { color: var(--color-accent); }
.mobile-menu-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ===========================
   HERO — INDEX
=========================== */
.hero-main {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-main__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 24px;
  position: relative;
  z-index: 2;
}
.hero-main__content .container--narrow { padding: 0; max-width: 100%; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--color-accent);
}
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--color-accent); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat__label { font-size: 12px; color: var(--color-muted); font-weight: 500; letter-spacing: 0.04em; }

.hero-main__visual {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}
.hero-main__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-main__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.4) 0%, transparent 60%);
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--color-accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  z-index: 5;
  max-width: 220px;
}
.hero-badge__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.hero-badge__text { font-size: 13px; margin-top: 4px; opacity: 0.9; }

/* ===========================
   TICKER / BREAKING BAR
=========================== */
.ticker-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-label {
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 2px;
}
.ticker-item { font-size: 13px; padding: 0 32px; opacity: 0.85; }
.ticker-dot { color: var(--color-accent); margin: 0 12px; font-size: 18px; line-height: 1; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================
   FEATURED TOPICS STRIP
=========================== */
.topics-strip { padding: 48px 0; border-bottom: 1px solid var(--color-border); }
.topics-strip__inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.topics-strip__inner::-webkit-scrollbar { display: none; }
.topic-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-right: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 140px;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
}
.topic-chip:last-child { border-right: none; }
.topic-chip:hover { background: var(--color-light); color: var(--color-accent); }
.topic-chip:hover .topic-icon { background: var(--color-accent); color: #fff; }
.topic-icon {
  width: 44px; height: 44px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.topic-icon svg { width: 20px; height: 20px; }
.topic-chip__name { font-size: 13px; font-weight: 600; white-space: nowrap; }

/* ===========================
   COURSES GRID
=========================== */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--color-border); }
.course-card {
  background: var(--color-white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}
.course-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); z-index: 2; }
.course-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--color-primary);
}
.course-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card:hover .course-card__thumb img { transform: scale(1.04); }
.course-card__level {
  position: absolute;
  top: 16px; left: 16px;
}
.course-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.course-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px; }
.course-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.course-card__desc { font-size: 14px; color: var(--color-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.course-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-muted);
}
.course-card__meta-item { display: flex; align-items: center; gap: 5px; }
.course-card__meta-item svg { width: 14px; height: 14px; color: var(--color-accent); }

.courses-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--color-border); margin-top: 2px; }
.course-card--featured .course-card__thumb { aspect-ratio: 21/9; }
.course-card--featured .course-card__title { font-size: 1.5rem; }

/* ===========================
   EDITORIAL SPLIT
=========================== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.editorial-split__visual { position: relative; overflow: hidden; background: var(--color-primary); }
.editorial-split__visual img { width: 100%; height: 100%; object-fit: cover; }
.editorial-split__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,52,96,0.5) 0%, transparent 70%); }
.editorial-split__content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--color-primary); color: #fff; }
.editorial-split__content h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.editorial-split__content p { color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 16px; font-size: 1.05rem; }
.editorial-split__list { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.editorial-split__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.editorial-split__list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ===========================
   BLOG / ARTICLES GRID
=========================== */
.articles-masthead {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  background: var(--color-border);
  margin-bottom: 2px;
}
.article-card {
  background: var(--color-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); }
.article-card--lead { min-height: 480px; }
.article-card--lead .article-card__thumb { aspect-ratio: 16/9; }
.article-card__thumb { overflow: hidden; position: relative; background: var(--color-primary); }
.article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card__thumb img { transform: scale(1.03); }
.article-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.article-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); }
.article-card__date { font-size: 12px; color: var(--color-muted); }
.article-card__title { font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.article-card--lead .article-card__title { font-size: 1.6rem; }
.article-card__excerpt { font-size: 14px; color: var(--color-muted); line-height: 1.65; flex: 1; }
.article-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.article-card__author { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.article-card__read { font-size: 12px; color: var(--color-muted); }

.articles-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
}

.article-mini {
  background: var(--color-white);
  padding: 24px;
  display: flex; gap: 16px;
  text-decoration: none; color: var(--color-text);
  transition: all var(--transition);
  border-bottom: 1px solid var(--color-border);
}
.article-mini:hover { background: var(--color-light); }
.article-mini__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-border); line-height: 1; flex-shrink: 0; width: 40px; }
.article-mini__content { flex: 1; }
.article-mini__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }
.article-mini__title { font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--color-primary); }

/* ===========================
   INSTRUCTORS
=========================== */
.instructors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.instructor-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.instructor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.instructor-card__photo { aspect-ratio: 3/2; overflow: hidden; background: var(--color-light); }
.instructor-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.instructor-card:hover .instructor-card__photo img { transform: scale(1.04); }
.instructor-card__body { padding: 24px; }
.instructor-card__role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }
.instructor-card__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.instructor-card__bio { font-size: 14px; color: var(--color-muted); line-height: 1.65; margin-bottom: 16px; }
.instructor-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.instructor-tag { padding: 4px 10px; background: var(--color-light); border-radius: 20px; font-size: 12px; color: var(--color-muted); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 16px; }
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: #F5A623; font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial-quote { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.7; color: var(--color-text); margin-bottom: 32px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: var(--color-light); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 1rem; }
.testimonial-role { font-size: 13px; color: var(--color-muted); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); cursor: pointer; transition: all var(--transition); border: none; }
.slider-dot.active { background: var(--color-accent); width: 24px; border-radius: 4px; }
.slider-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.slider-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--color-border);
  background: var(--color-white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.slider-arrow:hover { border-color: var(--color-accent); background: var(--color-accent); color: #fff; }
.slider-arrow svg { width: 18px; height: 18px; }

/* ===========================
   FAQ
=========================== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--color-border); }
.faq-item { background: var(--color-white); padding: 32px; border-bottom: 3px solid transparent; transition: all var(--transition); }
.faq-item:hover { border-bottom-color: var(--color-accent); }
.faq-question { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 12px; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; color: var(--color-accent); }
.faq-answer { font-size: 15px; color: var(--color-muted); line-height: 1.7; }

/* ===========================
   CTA BAND
=========================== */
.cta-band { padding: 96px 0; background: var(--color-accent); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 20px; color: #fff; }
.cta-band p { font-size: 1.15rem; opacity: 0.9; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.cta-band__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===========================
   STATS ROW
=========================== */
.stats-row { padding: 64px 0; background: var(--color-primary); }
.stats-row__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-block { padding: 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-block:last-child { border-right: none; }
.stat-block__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--color-white); line-height: 1; margin-bottom: 8px; }
.stat-block__label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.04em; }
.stat-block__accent { color: var(--color-accent); }

/* ===========================
   PAGE HERO (INNER PAGES)
=========================== */
.page-hero {
  margin-top: 72px;
  padding: 80px 0;
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 120px solid rgba(200,16,46,0.08);
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 640px; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: rgba(255,255,255,0.9); }

/* ===========================
   CONTACT FORM
=========================== */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 8px; padding: 48px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 8px; letter-spacing: 0.04em; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(200,16,46,0.08); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 6px;
  padding: 20px 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success.visible { display: block; }
.form-success__icon { font-size: 2rem; margin-bottom: 8px; }
.form-success__title { font-weight: 700; color: #2E7D32; font-size: 1.1rem; margin-bottom: 4px; }
.form-success__text { font-size: 14px; color: #388E3C; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,16,46,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; color: var(--color-text); font-weight: 500; }
.contact-info-note { font-size: 13px; color: var(--color-muted); margin-top: 2px; }

/* ===========================
   ARTICLE / COURSE DETAIL
=========================== */
.article-hero {
  margin-top: 72px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--color-primary);
  display: flex; align-items: flex-end;
}
.article-hero__img { position: absolute; inset: 0; }
.article-hero__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.article-hero__content { position: relative; z-index: 2; padding: 60px 0; width: 100%; }
.article-hero__label { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; max-width: 760px; line-height: 1.15; margin-bottom: 20px; }
.article-hero__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-hero__meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.75); }
.article-hero__meta-item svg { width: 14px; height: 14px; }

.article-body { max-width: 760px; }
.article-body p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 24px; color: var(--color-text); }
.article-body h2 { font-size: 1.8rem; font-weight: 700; margin: 48px 0 20px; color: var(--color-primary); }
.article-body h3 { font-size: 1.4rem; font-weight: 700; margin: 36px 0 16px; color: var(--color-primary); }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 24px; }
.article-body li { font-size: 1.05rem; line-height: 1.75; margin-bottom: 10px; color: var(--color-text); }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 24px 32px;
  background: var(--color-light);
  margin: 40px 0;
  border-radius: 0 4px 4px 0;
}
.article-body blockquote p { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--color-primary); margin: 0; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; padding: 72px 0; align-items: start; }
.article-sidebar { position: sticky; top: 96px; }
.sidebar-widget { background: var(--color-light); border-radius: 8px; padding: 28px; margin-bottom: 24px; }
.sidebar-widget__title { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--color-accent); }
.sidebar-link { display: block; padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--color-border); color: var(--color-text); transition: all var(--transition); }
.sidebar-link:hover { color: var(--color-accent); padding-left: 6px; }
.sidebar-link:last-child { border-bottom: none; }

/* ===========================
   COURSE DETAIL HEADER
=========================== */
.course-hero {
  margin-top: 72px;
  background: var(--color-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.course-hero__inner { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.course-hero__label { margin-bottom: 16px; }
.course-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 20px; line-height: 1.2; }
.course-hero__desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 32px; }
.course-hero__meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.course-meta-item { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 12px 16px; }
.course-meta-item__label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.course-meta-item__val { font-size: 15px; color: #fff; font-weight: 600; }
.course-hero__card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.course-hero__card-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--color-light); }
.course-hero__card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-hero__card-body { padding: 28px; }
.course-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.course-price span { font-size: 1rem; font-weight: 400; color: var(--color-muted); }
.course-hero__card-btn { width: 100%; margin-top: 16px; justify-content: center; }
.course-hero__card-note { text-align: center; font-size: 12px; color: var(--color-muted); margin-top: 10px; }

/* ===========================
   CURRICULUM
=========================== */
.curriculum-module { border: 1px solid var(--color-border); border-radius: 6px; margin-bottom: 12px; overflow: hidden; }
.curriculum-module__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: var(--color-light);
  cursor: pointer; font-weight: 600; font-size: 15px;
  transition: all var(--transition);
}
.curriculum-module__header:hover { background: var(--color-border); }
.curriculum-module__meta { font-size: 13px; color: var(--color-muted); font-weight: 400; }
.curriculum-module__lessons { display: none; background: var(--color-white); }
.curriculum-module.open .curriculum-module__lessons { display: block; }
.curriculum-lesson { display: flex; align-items: center; gap: 12px; padding: 14px 24px; border-top: 1px solid var(--color-border); font-size: 14px; }
.curriculum-lesson__icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(200,16,46,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.curriculum-lesson__icon svg { width: 14px; height: 14px; color: var(--color-accent); }
.curriculum-lesson__title { flex: 1; color: var(--color-text); }
.curriculum-lesson__dur { font-size: 12px; color: var(--color-muted); }

/* ===========================
   BLOG PAGE
=========================== */
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  font-size: 13px; font-weight: 500;
  background: var(--color-white); cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text);
}
.filter-btn:hover, .filter-btn.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ===========================
   INSTRUCTORS PAGE
=========================== */
.instructors-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.instructor-full-card {
  border-radius: 8px; overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.instructor-full-card:hover { box-shadow: var(--shadow-md); }
.instructor-full-card__photo { aspect-ratio: 4/3; overflow: hidden; background: var(--color-light); }
.instructor-full-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.instructor-full-card:hover .instructor-full-card__photo img { transform: scale(1.04); }
.instructor-full-card__body { padding: 28px; }
.instructor-full-card__role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 6px; }
.instructor-full-card__name { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.instructor-full-card__bio { font-size: 14px; color: var(--color-muted); line-height: 1.7; margin-bottom: 16px; }
.instructor-full-card__courses { font-size: 13px; font-weight: 600; color: var(--color-blue); }

/* ===========================
   TESTIMONIALS PAGE
=========================== */
.testimonials-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-full-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 8px; padding: 36px; box-shadow: var(--shadow); }
.testimonial-full-card .testimonial-stars { margin-bottom: 16px; text-align: left; }
.testimonial-full-card .testimonial-quote { text-align: left; font-size: 1.05rem; margin-bottom: 20px; }
.testimonial-full-card .testimonial-author { justify-content: flex-start; }

/* ===========================
   POLICY PAGES
=========================== */
.policy-content { max-width: 860px; margin: 0 auto; padding: 72px 24px; }
.policy-content h1 { font-size: 2.4rem; margin-bottom: 8px; }
.policy-content .policy-date { font-size: 14px; color: var(--color-muted); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--color-border); }
.policy-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--color-primary); margin: 40px 0 16px; }
.policy-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--color-primary); margin: 28px 0 12px; }
.policy-content p { font-size: 1rem; line-height: 1.8; color: #3A3A3A; margin-bottom: 18px; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 18px; }
.policy-content li { font-size: 1rem; line-height: 1.75; margin-bottom: 8px; color: #3A3A3A; }
.policy-content ul li { list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--color-accent); text-decoration: underline; }
.policy-toc { background: var(--color-light); border-radius: 6px; padding: 24px 28px; margin-bottom: 40px; }
.policy-toc__title { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.policy-toc a { display: block; font-size: 14px; color: var(--color-blue); padding: 4px 0; text-decoration: none; }
.policy-toc a:hover { color: var(--color-accent); }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand__logo { margin-bottom: 20px; }
.footer-brand__logo .logo { color: #fff; }
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 28px; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--color-accent); color: #fff; }
.social-link svg { width: 18px; height: 18px; }
.footer-col__title { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom__copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom__links a:hover { color: rgba(255,255,255,0.8); }

/* ===========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 20px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; min-width: 280px; }
.cookie-banner__text a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===========================
   404 PAGE
=========================== */
.error-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; margin-top: 72px; padding: 80px 24px; }
.error-page__num { font-family: var(--font-display); font-size: clamp(6rem, 15vw, 12rem); font-weight: 900; color: var(--color-border); line-height: 1; margin-bottom: 24px; }
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.error-page p { font-size: 1.1rem; color: var(--color-muted); max-width: 480px; margin: 0 auto 40px; }

/* ===========================
   ABOUT PAGE
=========================== */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; }
.about-split__visual { position: relative; overflow: hidden; background: var(--color-primary); }
.about-split__visual img { width: 100%; height: 100%; object-fit: cover; }
.about-split__content { padding: 80px 64px; background: var(--color-white); display: flex; flex-direction: column; justify-content: center; }
.about-split__content h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 20px; }
.about-split__content p { font-size: 1rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: 8px; padding: 32px; transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.value-card__icon { width: 52px; height: 52px; background: rgba(200,16,46,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-card__icon svg { width: 26px; height: 26px; color: var(--color-accent); }
.value-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card__text { font-size: 14px; color: var(--color-muted); line-height: 1.7; }

/* ===========================
   SITEMAP PAGE
=========================== */
.sitemap-section { margin-bottom: 48px; }
.sitemap-section h2 { font-size: 1.2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--color-accent); }
.sitemap-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sitemap-link { display: block; padding: 10px 0; font-size: 14px; color: var(--color-blue); border-bottom: 1px solid var(--color-border); transition: all var(--transition); }
.sitemap-link:hover { color: var(--color-accent); padding-left: 6px; }

/* ===========================
   PROGRESS BAR
=========================== */
.reading-progress { position: fixed; top: 72px; left: 0; right: 0; height: 3px; background: var(--color-accent); transform-origin: left; transform: scaleX(0); transition: transform 0.1s linear; z-index: 999; }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--color-accent);
  color: #fff;
  border: none; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #a50d24; transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }
