@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ===========================
   CUSTOM PROPERTIES
=========================== */
:root {
  --color-primary: oklch(55% 0.18 160);
  --color-secondary: oklch(62% 0.20 260);
  --color-accent: oklch(72% 0.22 50);

  --color-primary-light: color-mix(in oklch, var(--color-primary), white 40%);
  --color-primary-dark: color-mix(in oklch, var(--color-primary), black 20%);
  --color-secondary-light: color-mix(in oklch, var(--color-secondary), white 40%);
  --color-secondary-dark: color-mix(in oklch, var(--color-secondary), black 20%);
  --color-accent-light: color-mix(in oklch, var(--color-accent), white 40%);
  --color-accent-dark: color-mix(in oklch, var(--color-accent), black 15%);

  --color-bg: oklch(98% 0.005 160);
  --color-surface: oklch(99.5% 0.003 160);
  --color-border: color-mix(in oklch, var(--color-primary), white 75%);
  --color-text: oklch(22% 0.02 240);
  --color-text-muted: oklch(48% 0.02 240);
  --color-text-light: oklch(65% 0.015 240);

  --gradient-hero: linear-gradient(135deg, oklch(55% 0.18 160) 0%, oklch(62% 0.20 260) 50%, oklch(72% 0.22 50) 100%);
  --gradient-brand: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 60%, var(--color-accent) 100%);
  --gradient-section: linear-gradient(160deg, color-mix(in oklch, var(--color-primary), white 92%) 0%, color-mix(in oklch, var(--color-secondary), white 92%) 100%);
  --gradient-cta: linear-gradient(135deg, color-mix(in oklch, var(--color-primary), black 5%) 0%, color-mix(in oklch, var(--color-secondary), black 5%) 100%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--color-primary), transparent 88%), 0 1px 2px color-mix(in oklch, var(--color-secondary), transparent 92%);
  --shadow-md: 0 4px 12px color-mix(in oklch, var(--color-primary), transparent 82%), 0 2px 6px color-mix(in oklch, var(--color-secondary), transparent 88%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--color-primary), transparent 75%), 0 4px 12px color-mix(in oklch, var(--color-secondary), transparent 82%);
  --shadow-xl: 0 16px 48px color-mix(in oklch, var(--color-primary), transparent 68%), 0 8px 24px color-mix(in oklch, var(--color-secondary), transparent 78%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ===========================
   UTILITY
=========================== */
.Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.GradientText {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.SectionLabel {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 88%);
  padding: 0.3em 0.85em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.SectionHeading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.SectionSubheading {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* ===========================
   BUTTONS
=========================== */
.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8em 1.75em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  min-height: 44px;
  white-space: nowrap;
}

.Btn--primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-md);
}
.Btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.Btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.Btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.Btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.Btn--outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* ===========================
   SITE HEADER
=========================== */
.SiteHeader {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.SiteHeader-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.SiteHeader-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.SiteHeader-nav {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}

.SiteHeader-navLink {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.45em 0.85em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 92%);
}

.SiteHeader-menuToggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.SiteHeader-menuToggle:hover { background: var(--color-border); }

.SiteHeader-menuIcon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.SiteHeader-menuToggle.is-open .SiteHeader-menuIcon:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.SiteHeader-menuToggle.is-open .SiteHeader-menuIcon:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.SiteHeader-menuToggle.is-open .SiteHeader-menuIcon:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.SiteHeader-mobilePanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.SiteHeader-mobilePanel.is-open {
  max-height: 400px;
}

.SiteHeader-mobilePanelLink {
  display: block;
  padding: 0.9rem var(--space-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}
.SiteHeader-mobilePanelLink:hover,
.SiteHeader-mobilePanelLink.is-active {
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 94%);
  padding-left: calc(var(--space-md) + 6px);
}

@media (min-width: 768px) {
  .SiteHeader-nav { display: flex; }
  .SiteHeader-menuToggle { display: none; }
  .SiteHeader-mobilePanel { display: none; }
}

/* ===========================
   HERO SECTION
=========================== */
.PageHero {
  background: var(--gradient-hero);
  padding: var(--space-xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.PageHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.PageHero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.PageHero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: var(--space-sm);
}

.PageHero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.PageHero-heading .GradientText {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.PageHero-subheading {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.PageHero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.PageHero-mosaic {
  position: relative;
  height: 380px;
  display: none;
}

.PageHero-mosaicItem {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.4);
}

.PageHero-mosaicItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.PageHero-mosaicItem--1 {
  width: 200px; height: 160px;
  top: 20px; left: 30px;
  transform: rotate(-4deg);
  z-index: 3;
}
.PageHero-mosaicItem--2 {
  width: 170px; height: 190px;
  top: 10px; right: 10px;
  transform: rotate(3deg);
  z-index: 2;
}
.PageHero-mosaicItem--3 {
  width: 155px; height: 145px;
  top: 140px; left: 0;
  transform: rotate(2deg);
  z-index: 4;
}
.PageHero-mosaicItem--4 {
  width: 145px; height: 160px;
  top: 160px; right: 40px;
  transform: rotate(-2.5deg);
  z-index: 3;
}
.PageHero-mosaicItem--5 {
  width: 160px; height: 130px;
  bottom: 0; left: 120px;
  transform: rotate(1.5deg);
  z-index: 5;
}

@media (min-width: 900px) {
  .PageHero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .PageHero-mosaic { display: block; }
}

/* ===========================
   INNER HERO (interior pages)
=========================== */
.InnerHero {
  background: var(--gradient-hero);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.InnerHero .SectionLabel {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.InnerHero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.InnerHero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   INTRO SECTION
=========================== */
.IntroSection {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.IntroSection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.IntroSection-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.IntroSection-text .Btn { margin-top: var(--space-sm); }

.IntroSection-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
}


.FeatureCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.FeatureCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.FeatureCard--offset1 { transform: translateX(0); }
.FeatureCard--offset2 { transform: translateX(10px); }
.FeatureCard--offset3 { transform: translateX(20px); }

.FeatureCard--offset1:hover { transform: translateX(0) translateY(-3px); }
.FeatureCard--offset2:hover { transform: translateX(10px) translateY(-3px); }
.FeatureCard--offset3:hover { transform: translateX(20px) translateY(-3px); }

.FeatureCard-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.FeatureCard-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.FeatureCard-body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (min-width: 900px) {
  .IntroSection-grid { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   DIVIDER WAVE
=========================== */
.DividerWave {
  position: relative;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.DividerWave-dots {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, var(--color-primary-light) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

/* ===========================
   COURSE SECTION (SWIPER)
=========================== */
.CourseSection {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.CourseSection-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.CourseSwiper {
  padding-bottom: 60px !important;
}

.CourseCard {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.CourseCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.CourseCard-imgWrap {
  height: 200px;
  overflow: hidden;
}

.CourseCard-imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.CourseCard:hover .CourseCard-imgWrap img {
  transform: scale(1.05);
}

.CourseCard-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.CourseCard-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 88%);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.CourseCard-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.CourseCard-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.CourseCard-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-sm);
  transition: gap var(--transition-fast);
}
.CourseCard-link:hover { gap: 0.65rem; }

.swiper-pagination-bullet { background: var(--color-text-light); opacity: 0.5; }
.swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
}

/* ===========================
   WHY SECTION
=========================== */
.WhySection {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.WhySection-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.WhySection-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.WhySection-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.WhySection-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 0.5em 1.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.WhySection-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.WhySection-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: var(--space-md) 0;
}

.WhySection-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.WhySection-list i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .WhySection-inner { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   GALLERY SECTION
=========================== */
.GallerySection {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.GallerySection-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.GalleryGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.GalleryGrid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.GalleryGrid-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.GalleryGrid-item--wide {
  grid-column: 1 / -1;
}

.GalleryGrid-item--wide img {
  height: 280px;
}

.GalleryGrid-item:hover img {
  transform: scale(1.06);
}

.GalleryGrid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

.GalleryGrid-item:hover .GalleryGrid-overlay {
  opacity: 1;
}

.GalleryGrid-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .GalleryGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .GalleryGrid-item--wide {
    grid-column: 1 / 3;
  }
  .GalleryGrid-item img { height: 240px; }
  .GalleryGrid-item--wide img { height: 300px; }
}

/* ===========================
   CTA SECTION
=========================== */
.CtaSection {
  padding: var(--space-2xl) 0;
  background: var(--gradient-cta);
  position: relative;
  overflow: hidden;
}

.CtaSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.CtaSection-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.CtaSection-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.CtaSection-heading .GradientText {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.CtaSection-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.CtaSection-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.LibraryCta, .EnrollCta {
  padding: var(--space-2xl) 0;
  background: var(--gradient-cta);
}

/* ===========================
   ABOUT PAGE
=========================== */
.AboutMission {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.AboutMission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.AboutMission-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.AboutMission-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.AboutMission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .AboutMission-grid { grid-template-columns: 1fr 1fr; }
}

.AboutValues {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.AboutValues-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.ValueCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.ValueCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ValueCard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.ValueCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ValueCard-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.ValueCard-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.ValueCard-body {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

@media (min-width: 600px) {
  .ValueCards { grid-template-columns: 1fr 1fr; }
}

.AboutFormat {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.AboutFormat-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.FormatDetails {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.FormatDetail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.FormatDetail:hover { box-shadow: var(--shadow-md); }

.FormatDetail i {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.FormatDetail strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.FormatDetail span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (min-width: 600px) {
  .FormatDetails { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   COURSE LIBRARY PAGE
=========================== */
.LibrarySection {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.LibraryGroup {
  margin-bottom: var(--space-2xl);
}

.LibraryGroup-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.LibraryGroup-label i {
  font-size: 1.4rem;
  color: var(--color-primary);
}

.LibraryGroup-label h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.LibraryGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.LibraryCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.LibraryCard::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gradient-brand);
}

.LibraryCard:hover {
  transform: translateY(-3px) translateX(3px);
  box-shadow: var(--shadow-lg);
}

.LibraryCard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.LibraryCard-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 88%);
  padding: 0.2em 0.65em;
  border-radius: var(--radius-full);
}

.LibraryCard-duration {
  font-size: 0.82rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.LibraryCard-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.LibraryCard-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.LibraryCard-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.LibraryCard-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-secondary);
  background: color-mix(in oklch, var(--color-secondary), white 90%);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-full);
}

@media (min-width: 768px) {
  .LibraryGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .LibraryGrid { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================
   HOW TO ENROLL PAGE
=========================== */
.EnrollSteps {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.EnrollSteps-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.StepCards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.StepCards::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

.StepCard {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.StepCard:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.StepCard-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
}

.StepCard-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.StepCard-content p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.StepCard-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.EnrollFaq {
  padding: var(--space-2xl) 0;
  background: var(--gradient-section);
}

.EnrollFaq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.FaqList {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.FaqItem {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.FaqItem-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition-fast);
  min-height: 52px;
}

.FaqItem-question:hover {
  background: color-mix(in oklch, var(--color-primary), white 94%);
}

.FaqItem-question i {
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 1rem;
}

.FaqItem-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.FaqItem-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease, padding var(--transition-base);
}

.FaqItem-answer.is-open {
  max-height: 300px;
}

.FaqItem-answer p {
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
=========================== */
.ContactSection {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}

.ContactSection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .ContactSection-grid { grid-template-columns: 1fr 1fr; }
}


.ChatForm {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.ChatForm-header {
  background: var(--gradient-brand);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: white;
}

.ChatForm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ChatForm-header strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.ChatForm-header span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.ChatForm-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.ChatBubble { max-width: 90%; }

.ChatBubble--question {
  align-self: flex-start;
}

.ChatBubble--question p {
  background: color-mix(in oklch, var(--color-primary), white 90%);
  color: var(--color-text);
  padding: 0.65em 1em;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.ChatBubble--answer {
  align-self: flex-end;
  width: 100%;
}

.ChatBubble--answer input,
.ChatBubble--answer textarea {
  width: 100%;
  padding: 0.65em 1em;
  background: color-mix(in oklch, var(--color-secondary), white 92%);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}

.ChatBubble--answer input:focus,
.ChatBubble--answer textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary), transparent 80%);
}

.ChatForm-privacy {
  margin-top: var(--space-xs);
}

.PrivacyCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.PrivacyCheck input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.PrivacyCheck a {
  color: var(--color-primary);
  font-weight: 500;
}

.ChatForm-send {
  align-self: flex-end;
  background: var(--gradient-brand);
  color: white;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  margin-top: var(--space-xs);
  min-height: 44px;
}
.ChatForm-send:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


.ContactInfo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.ContactInfo-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.ContactInfo-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.ContactInfo-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.ContactInfo-item strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.ContactInfo-item p,
.ContactInfo-item a {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ContactInfo-item a:hover { color: var(--color-primary); }


.BuildingInfo {
  background: color-mix(in oklch, var(--color-primary), white 92%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
}

.BuildingInfo-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.BuildingInfo p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.BuildingInfo-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.BuildingInfo-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.BuildingInfo-steps i {
  color: var(--color-primary);
  font-size: 0.55rem;
  margin-top: 5px;
  flex-shrink: 0;
}


.MapSection {
  padding: 0 0 var(--space-2xl);
  background: var(--color-bg);
}

.MapSection-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.MapSection-wrap iframe { display: block; }

/* ===========================
   THANKS PAGE
=========================== */
.ThanksMain {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  padding: var(--space-xl) var(--space-md);
  background: var(--gradient-section);
}

.ThanksPage {
  text-align: center;
  max-width: 520px;
}

.ThanksPage-icon {
  font-size: 4rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.ThanksPage-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.ThanksPage-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ===========================
   LEGAL PAGES
=========================== */
.LegalHero {
  background: var(--gradient-hero);
  padding: var(--space-xl) 0 var(--space-lg);
}

.LegalHero-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 0.4rem;
}

.LegalHero-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
}

.LegalHero-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  line-height: 1.7;
}

.LegalBody {
  padding: var(--space-2xl) 0;
  background: var(--color-bg);
}


.AccordionLegal {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.AccordionLegal-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.AccordionLegal-item:hover {
  box-shadow: var(--shadow-md);
}

.AccordionLegal-item.is-open {
  box-shadow: var(--shadow-md);
}

.AccordionLegal-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background var(--transition-fast);
  min-height: 56px;
  gap: 1rem;
}

.AccordionLegal-trigger:hover {
  background: color-mix(in oklch, var(--color-primary), white 94%);
}

.AccordionLegal-trigger i {
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.AccordionLegal-item.is-open .AccordionLegal-trigger i {
  transform: rotate(180deg);
}

.AccordionLegal-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.AccordionLegal-item.is-open .AccordionLegal-panel {
  max-height: 2000px;
}

.AccordionLegal-panel p,
.AccordionLegal-panel ul,
.AccordionLegal-panel table {
  padding: 0 var(--space-md) var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.AccordionLegal-panel ul {
  padding-left: calc(var(--space-md) + 1.5rem);
}

.AccordionLegal-panel li {
  list-style: disc;
  margin-bottom: 0.35rem;
}

.AccordionLegal-panel a {
  color: var(--color-primary);
  font-weight: 500;
}

.AccordionLegal-panel strong {
  color: var(--color-text);
  font-weight: 600;
}

.CookieTable {
  width: calc(100% - 3rem);
  margin: 0 var(--space-md) var(--space-sm);
  border-collapse: collapse;
  font-size: 0.85rem;
}

.CookieTable th,
.CookieTable td {
  padding: 0.6em 0.8em;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.CookieTable th {
  font-weight: 600;
  color: var(--color-text);
  background: color-mix(in oklch, var(--color-primary), white 93%);
}

.CookieTable td { color: var(--color-text-muted); }

.AccordionLegal-panel code {
  background: color-mix(in oklch, var(--color-secondary), white 90%);
  padding: 0.15em 0.45em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--color-secondary-dark);
  font-family: monospace;
}

/* ===========================
   SITE FOOTER
=========================== */
.SiteFooter {
  background: color-mix(in oklch, var(--color-text), transparent 8%);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 0;
  margin-top: auto;
}

.SiteFooter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.SiteFooter-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: var(--space-sm);
  max-width: 280px;
}

.SiteFooter-nav h4,
.SiteFooter-legal h4,
.SiteFooter-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.SiteFooter-nav a,
.SiteFooter-legal a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}
.SiteFooter-nav a:hover,
.SiteFooter-legal a:hover {
  color: white;
}

.SiteFooter-contact p {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.SiteFooter-contact i {
  margin-top: 3px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.SiteFooter-contact a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
}
.SiteFooter-contact a:hover { color: white; }

.SiteFooter-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.SiteFooter-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 600px) {
  .SiteFooter-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .SiteFooter-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ===========================
   BACK TO TOP
=========================== */
.BackToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  z-index: 200;
}

.BackToTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.BackToTop:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ===========================
   COOKIE CONSENT
=========================== */
.CookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: 90%;
  max-width: 460px;
}

.CookieConsent.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.CookieConsent-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-md);
  transition: all 0.4s ease;
}

.CookieConsent-compact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.CookieConsent-msg {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.CookieConsent-msg a {
  color: var(--color-primary);
  font-weight: 500;
}

.CookieConsent-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.CookieConsent-btn {
  padding: 0.55em 1.2em;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
  min-height: 36px;
}

.CookieConsent-btn--accept {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-sm);
}
.CookieConsent-btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.CookieConsent-btn--settings {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.CookieConsent-btn--settings:hover {
  border-color: var(--color-primary);
  background: color-mix(in oklch, var(--color-primary), white 92%);
}

.CookieConsent-expanded {
  display: none;
}

.CookieConsent-expanded.is-active {
  display: block;
}

.CookieConsent-expanded h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.CookieConsent-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
}

.CookieConsent-category:last-of-type { border-bottom: none; }

.CookieConsent-categoryInfo strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.CookieConsent-categoryInfo span {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.CookieToggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.CookieToggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.CookieToggle-slider {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--color-text-light), white 40%);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.CookieToggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.CookieToggle input:checked + .CookieToggle-slider {
  background: var(--color-primary);
}

.CookieToggle input:checked + .CookieToggle-slider::before {
  transform: translateX(20px);
}

.CookieToggle input:disabled + .CookieToggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.CookieConsent-saveBtn {
  width: 100%;
  margin-top: var(--space-sm);
  background: var(--gradient-brand);
  color: white;
  padding: 0.7em;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  min-height: 40px;
}
.CookieConsent-saveBtn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===========================
   RESPONSIVE HELPERS
=========================== */
@media (max-width: 599px) {
  .PageHero { padding: var(--space-xl) 0; }
  .CtaSection-actions { flex-direction: column; align-items: center; }
  .StepCards::before { display: none; }
}

@media (min-width: 768px) {
  .Container { padding: 0 var(--space-lg); }
}