/* ===========================
   THOUGHT SYSTEM — STYLE.CSS
   Wabi-Sabi Digital Theme
   =========================== */


:root {
  --color-earth: #7c6a52;
  --color-sage: #5a7a5e;
  --color-cream: #f5f0e8;

  --primary: var(--color-earth);
  --primary-light: color-mix(in oklch, var(--color-earth), white 40%);
  --primary-lighter: color-mix(in oklch, var(--color-earth), white 70%);
  --primary-dark: color-mix(in oklch, var(--color-earth), black 20%);
  --primary-xdark: color-mix(in oklch, var(--color-earth), black 40%);

  --secondary: var(--color-sage);
  --secondary-light: color-mix(in oklch, var(--color-sage), white 40%);
  --secondary-lighter: color-mix(in oklch, var(--color-sage), white 70%);
  --secondary-dark: color-mix(in oklch, var(--color-sage), black 20%);

  --accent: color-mix(in oklch, var(--color-earth), var(--color-sage) 40%);
  --accent-light: color-mix(in oklch, var(--accent), white 50%);

  --bg-cream: var(--color-cream);
  --bg-cream-dark: color-mix(in oklch, var(--color-cream), var(--color-earth) 10%);
  --bg-warm: color-mix(in oklch, var(--color-cream), var(--color-earth) 5%);
  --bg-section: color-mix(in oklch, var(--color-cream), var(--color-sage) 8%);

  --text-dark: color-mix(in oklch, var(--color-earth), black 55%);
  --text-body: color-mix(in oklch, var(--color-earth), black 35%);
  --text-muted: color-mix(in oklch, var(--color-earth), white 20%);
  --text-light: color-mix(in oklch, var(--color-cream), var(--color-earth) 30%);

  --footer-bg: color-mix(in oklch, var(--color-earth), black 60%);
  --footer-text: color-mix(in oklch, var(--color-cream), var(--color-earth) 20%);

  --border-light: color-mix(in oklch, var(--color-earth), white 65%);
  --border-medium: color-mix(in oklch, var(--color-earth), white 45%);

  
  --shadow-xs: 0 1px 3px color-mix(in oklch, var(--color-earth), transparent 80%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--color-earth), transparent 75%), 0 1px 2px color-mix(in oklch, var(--color-earth), transparent 85%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--color-earth), transparent 70%), 0 2px 4px color-mix(in oklch, var(--color-earth), transparent 80%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--color-earth), transparent 65%), 0 4px 8px color-mix(in oklch, var(--color-earth), transparent 78%);
  --shadow-xl: 0 16px 48px color-mix(in oklch, var(--color-earth), transparent 60%), 0 6px 16px color-mix(in oklch, var(--color-earth), transparent 75%);
  --shadow-card-hover: 0 12px 40px color-mix(in oklch, var(--color-earth), transparent 55%), 0 4px 12px color-mix(in oklch, var(--color-earth), transparent 72%);

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

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;
  --radius-circle: 50%;

  
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  
  --nav-padding: 1.25rem 2rem;
  --nav-padding-scrolled: 0.7rem 1.5rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; line-height: 1.25; color: var(--text-dark); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; line-height: 1.3; color: var(--text-dark); }
h4 { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.section-pad { padding: var(--space-2xl) 0; }


.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header--left { text-align: left; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-xs);
  padding: 0.3rem 0.9rem;
  background: var(--secondary-lighter);
  border-radius: var(--radius-pill);
}
.section-title { margin-bottom: var(--space-sm); }
.section-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-header--left .section-lead { margin: 0; }

/* ================================
   NAVIGATION
   ================================ */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 1000;
  background: color-mix(in oklch, var(--bg-cream), transparent 8%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: padding var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  padding: var(--nav-padding);
}
.nav--scrolled {
  padding: var(--nav-padding-scrolled);
  background: color-mix(in oklch, var(--bg-cream), transparent 2%);
  box-shadow: var(--shadow-lg);
}
.nav--transparent {
  background: color-mix(in oklch, var(--primary-xdark), transparent 15%);
  border-color: color-mix(in oklch, white, transparent 70%);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo {
  width: 36px;
  height: 36px;
  transition: width var(--transition-base), height var(--transition-base);
}
.nav--scrolled .nav__logo { width: 30px; height: 30px; }
.nav__brand-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  transition: font-size var(--transition-base);
}
.nav--scrolled .nav__brand-text { font-size: 1rem; }
.nav__brand--light .nav__brand-text { color: white; }

.nav__menu { display: flex; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__link:hover { background: var(--primary-lighter); color: var(--primary-dark); }
.nav__link--active { background: var(--primary-lighter); color: var(--primary-dark); }
.nav__link--light { color: color-mix(in oklch, white, transparent 15%); }
.nav__link--light:hover { background: color-mix(in oklch, white, transparent 80%); color: white; }


.nav__flip-wrap {
  display: none;
  width: 44px;
  height: 44px;
  perspective: 600px;
  flex-shrink: 0;
}
.nav__flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__flip-inner--flipped { transform: rotateX(180deg); }
.nav__flip-front, .nav__flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.nav__flip-back { transform: rotateX(180deg); }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.nav__hamburger:hover { background: var(--primary-lighter); }
.nav__hamburger--light .nav__hamburger-line { background: white; }
.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: background var(--transition-fast);
}
.nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  color: var(--text-dark);
  background: var(--primary-lighter);
  transition: background var(--transition-fast);
}
.nav__close:hover { background: var(--primary-light); }


.nav__mobile-panel {
  display: none;
  padding: var(--space-sm) 0 var(--space-xs);
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-xs);
}
.nav__mobile-panel.nav__mobile-panel--open { display: block; }
.nav__mobile-list { display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav__mobile-link:hover, .nav__mobile-link--active {
  background: var(--primary-lighter);
  color: var(--primary-dark);
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.3;
}
.btn--primary {
  background: var(--primary);
  color: var(--bg-cream);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--bg-cream);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary-light);
}
.btn--ghost:hover {
  background: var(--primary-lighter);
  border-color: var(--primary);
  color: var(--primary-dark);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--light {
  background: var(--bg-cream);
  color: var(--primary-dark);
  border-color: var(--bg-cream);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}
.btn--thanks-home {
  background: transparent;
  color: white;
  border-color: white;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
.btn--thanks-home:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.88rem; }

/* ================================
   HERO SECTION
   ================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--space-md) var(--space-2xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-cream-dark) 100%);
}
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: var(--radius-circle);
  opacity: 0.06;
}
.hero__shape--circle-lg {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -150px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}
.hero__shape--circle-sm {
  width: 280px;
  height: 280px;
  background: var(--secondary);
  bottom: 10%;
  left: -80px;
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
  opacity: 0.08;
}
.hero__shape--blob {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 30%;
  left: 20%;
  border-radius: 60% 40% 45% 55% / 50% 60% 40% 50%;
  opacity: 0.04;
}
.hero__shape--ring {
  width: 200px;
  height: 200px;
  border: 24px solid var(--primary);
  background: transparent;
  top: 15%;
  left: 5%;
  border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
  opacity: 0.07;
}
.hero__split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  padding: 0.35rem 1rem;
  background: var(--secondary-lighter);
  border-radius: var(--radius-pill);
}
.hero__title {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero__trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__trust-item i { color: var(--secondary); }

.hero__visual { position: relative; }
.hero__image-wrap {
  border-radius: 28% 72% 24% 76% / 40% 32% 68% 60%;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}
.hero__image-badge i { color: var(--primary); font-size: 1.1rem; }
.hero__float-card {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}
.hero__float-card strong { display: block; font-size: 0.9rem; font-weight: 600; }
.hero__float-card small { font-size: 0.78rem; opacity: 0.8; }
.hero__float-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits { background: var(--bg-warm); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary-light));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
}
.card:hover::before { opacity: 1; }
.card--featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-color: transparent;
}
.card--featured .card__title,
.card--featured .card__body { color: white; }
.card--featured .card__icon { color: color-mix(in oklch, white, transparent 20%); }
.card--featured .card__icon-wrap { background: color-mix(in oklch, white, transparent 80%); }
.card__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.card__icon { font-size: 1.4rem; color: var(--primary); }
.card__title { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card__body { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); }
.card--featured .card__body { color: color-mix(in oklch, white, transparent 20%); }
.card__badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.3rem 0.8rem;
  background: color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: white;
}

/* ================================
   ABOUT INTRO
   ================================ */
.about-intro { background: var(--bg-cream); }
.about-intro__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-intro__visual { position: relative; }
.about-intro__img-wrap {
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-xl);
}
.about-intro__img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 45%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.about-intro__img-sm { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-intro__content { padding-left: var(--space-md); }
.about-intro__content h2 { margin-bottom: var(--space-md); }
.about-intro__content p { margin-bottom: var(--space-md); color: var(--text-muted); }

/* ================================
   COURSES SECTION
   ================================ */
.courses { background: var(--bg-section); }
.courses__list { display: flex; flex-direction: column; gap: var(--space-xl); }
.course-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition-base);
}
.course-item:hover { box-shadow: var(--shadow-md); }
.course-item--reverse { direction: rtl; }
.course-item--reverse > * { direction: ltr; }
.course-item__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-lighter);
  line-height: 1;
  flex-shrink: 0;
}
.course-item__title { margin-bottom: 0.75rem; }
.course-item__desc { color: var(--text-muted); margin-bottom: var(--space-md); font-size: 0.97rem; }
.course-item__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.3rem 0.8rem;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
}
.course-item__visual { border-radius: var(--radius-xl); overflow: hidden; }
.course-item__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ================================
   RESOURCES SECTION
   ================================ */
.resources { background: var(--bg-warm); }
.resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.resources__card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.resources__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
}
.resources__card--accent {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: white;
  border-color: transparent;
}
.resources__card-icon {
  font-size: 1.8rem;
  color: var(--primary);
}
.resources__card--accent .resources__card-icon { color: white; }
.resources__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.resources__card--accent .resources__card-title { color: white; }
.resources__card-desc { font-size: 0.92rem; color: var(--text-muted); }
.resources__card--accent .resources__card-desc { color: color-mix(in oklch, white, transparent 20%); }
.resources__card-type {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.resources__card--accent .resources__card-type { color: color-mix(in oklch, white, transparent 30%); }
.resources__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.resources__card--accent .resources__card-link { color: white; }
.resources__card-link:hover { gap: 0.7rem; color: var(--primary-dark); }
.resources__card--accent .resources__card-link:hover { color: color-mix(in oklch, white, transparent 20%); }

/* ================================
   PROCESS SECTION
   ================================ */
.process { background: var(--bg-cream); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.process__step {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
}
.process__step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.process__step-content h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.process__step-content p { font-size: 0.92rem; color: var(--text-muted); }
.process__connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border-medium);
  margin-top: 30px;
  align-self: flex-start;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-xdark));
  overflow: hidden;
}
.cta-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.cta-section__content {
  padding: var(--space-3xl) var(--space-xl);
  color: white;
}
.cta-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: var(--space-md);
}
.cta-section__text {
  color: color-mix(in oklch, white, transparent 25%);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cta-section__visual { overflow: hidden; height: 100%; }
.cta-section__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

/* ================================
   NEWS PREVIEW
   ================================ */
.news-preview { background: var(--bg-section); }
.news-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.news-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.news-card__img-wrap { overflow: hidden; aspect-ratio: 16/9; }
.news-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.news-card:hover .news-card__img { transform: scale(1.04); }
.news-card__body { padding: var(--space-lg); }
.news-card__date { font-size: 0.8rem; color: var(--text-light); font-weight: 500; display: block; margin-bottom: 0.5rem; }
.news-card__title { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.news-card__excerpt { font-size: 0.92rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.news-card__link:hover { gap: 0.7rem; color: var(--primary-dark); }
.news-preview__more { text-align: center; }

/* ================================
   PAGE HERO
   ================================ */
.page-hero {
  padding: 10rem var(--space-md) var(--space-2xl);
  background: linear-gradient(135deg, var(--bg-cream-dark) 0%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}
.page-hero__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero__title { margin-bottom: var(--space-md); }
.page-hero__lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.75; }

/* ================================
   ABOUT PAGE
   ================================ */
.about-story { background: var(--bg-cream); }
.about-story__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-story__content h2 { margin-bottom: var(--space-md); }
.about-story__content p { color: var(--text-muted); margin-bottom: var(--space-md); }
.about-story__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-values--bg { background: var(--bg-section); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}
.values__item {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.values__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.values__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}
.values__item h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.values__item p { font-size: 0.93rem; color: var(--text-muted); }

.about-approach { background: var(--bg-cream); }
.about-approach__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-approach__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-approach__content { padding-left: var(--space-md); }
.about-approach__content h2 { margin-bottom: var(--space-md); }
.about-approach__content p { color: var(--text-muted); margin-bottom: var(--space-md); }
.about-approach__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.about-approach__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
}
.about-approach__list li i { color: var(--secondary); flex-shrink: 0; }

/* ================================
   GROUPS PAGE
   ================================ */
.groups-intro { background: var(--bg-cream); }
.groups-intro__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.groups-intro__content h2 { margin-bottom: var(--space-md); }
.groups-intro__content p { color: var(--text-muted); margin-bottom: var(--space-md); }
.groups-intro__img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.group-formats--bg { background: var(--bg-section); }
.formats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.format-card { position: relative; }
.format-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.format-card__header i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card--featured .format-card__header i {
  background: color-mix(in oklch, white, transparent 80%);
  color: white;
}
.format-card__features {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.format-card__features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.format-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}
.card--featured .format-card__features li { color: color-mix(in oklch, white, transparent 25%); }
.card--featured .format-card__features li::before { color: color-mix(in oklch, white, transparent 50%); }

.group-topics { background: var(--bg-cream); }
.topics__list { display: flex; flex-direction: column; gap: var(--space-md); }
.topic-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.topic-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.topic-item__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.topic-item__content h3 { margin-bottom: 0.5rem; }
.topic-item__content p { font-size: 0.93rem; color: var(--text-muted); }

.group-who--bg { background: var(--bg-section); }
.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.who__card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-align: center;
}
.who__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.who__icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: var(--space-md);
}
.who__card h3 { margin-bottom: 0.6rem; }
.who__card p { font-size: 0.93rem; color: var(--text-muted); }

/* ================================
   NEWS PAGE
   ================================ */
.news-main { background: var(--bg-cream); }
.news-main__grid { display: flex; flex-direction: column; gap: var(--space-xl); }
.news-article {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-xl);
  align-items: start;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.news-article:hover { box-shadow: var(--shadow-md); }
.news-article--featured {
  grid-template-columns: 1fr 1.8fr;
}
.news-article__img-wrap { overflow: hidden; height: 100%; min-height: 280px; }
.news-article__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.news-article:hover .news-article__img { transform: scale(1.03); }
.news-article__body { padding: var(--space-xl); }
.news-article__meta {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}
.news-article__date { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.news-article__cat {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  background: var(--primary-lighter);
  color: var(--primary-dark);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-article__title { font-size: 1.3rem; margin-bottom: var(--space-md); line-height: 1.35; }
.news-article__body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; }

/* ================================
   CONTACT PAGE
   ================================ */
.contact-main { background: var(--bg-cream); }
.contact-main__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info__items { display: flex; flex-direction: column; gap: var(--space-md); margin: var(--space-lg) 0; }
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-lighter);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info__item strong { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.contact-info__item p, .contact-info__item a { font-size: 0.95rem; color: var(--text-muted); }
.contact-info__item a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }


.contact-form__progress {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.contact-form__step-indicator {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background var(--transition-base), color var(--transition-base);
}
.contact-form__step-indicator--active {
  background: var(--primary);
  color: white;
}
.contact-form__step-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
}
.contact-form__step { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-form__step--hidden { display: none; }
.contact-form__actions { display: flex; gap: var(--space-sm); justify-content: space-between; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field__label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.form-field__input,
.form-field__textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-field__input:focus,
.form-field__textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-lighter);
}
.form-field__textarea { resize: vertical; min-height: 140px; }
.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-field__checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--primary);
  margin-top: 2px;
  cursor: pointer;
}
.form-field__checkbox-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-field__checkbox-label a { color: var(--primary); text-decoration: underline; }


.contact-news--bg { background: var(--bg-section); }
.contact-news__grid { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-news__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}
.contact-news__item:hover { box-shadow: var(--shadow-md); }
.contact-news__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-news__date { font-size: 0.8rem; font-weight: 600; color: var(--secondary); display: block; margin-bottom: 0.3rem; }
.contact-news__body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-news__body p { font-size: 0.92rem; color: var(--text-muted); }

/* ================================
   THANKS PAGE
   ================================ */
.thanks-page { background: var(--primary-dark); min-height: 100vh; display: flex; flex-direction: column; }
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-xdark));
  position: relative;
  overflow: hidden;
}
.thanks-main::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: white;
  opacity: 0.03;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}
.thanks-main__content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.thanks-main__icon {
  font-size: 4rem;
  color: color-mix(in oklch, white, transparent 30%);
  margin-bottom: var(--space-lg);
}
.thanks-main__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: var(--space-md);
}
.thanks-main__text {
  font-size: 1.1rem;
  color: color-mix(in oklch, white, transparent 20%);
  margin-bottom: var(--space-xl);
  line-height: 1.75;
}
.footer--thanks { background: var(--footer-bg); }

/* ================================
   LEGAL PAGES
   ================================ */
.legal-page { padding-top: 6rem; }
.legal-page__header {
  background: var(--bg-cream-dark);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-xl);
}
.legal-page__title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.legal-page__updated { font-size: 0.88rem; color: var(--text-light); margin-top: 0.5rem; }

.legal-page__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  align-items: start;
}


.legal-toc-sidebar {
  position: sticky;
  top: 7rem;
}
.legal-toc-sidebar__inner {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.legal-toc-sidebar__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}
.legal-toc-sidebar__list { display: flex; flex-direction: column; gap: 0.15rem; }
.legal-toc-sidebar__link {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
  line-height: 1.4;
}
.legal-toc-sidebar__link:hover,
.legal-toc-sidebar__link--active {
  background: var(--primary-lighter);
  color: var(--primary-dark);
}


.legal-toc-mobile { display: none; margin-bottom: var(--space-lg); }
.legal-toc-mobile__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: white;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
}
.legal-toc-mobile__toggle:hover { border-color: var(--primary); }
.legal-toc-mobile__toggle i:last-child { margin-left: auto; transition: transform var(--transition-base); }
.legal-toc-mobile__toggle[aria-expanded="true"] i:last-child { transform: rotate(180deg); }
.legal-toc-mobile__nav {
  display: none;
  background: white;
  border: 1.5px solid var(--border-medium);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: var(--space-sm);
}
.legal-toc-mobile__nav.legal-toc-mobile__nav--open { display: block; }
.legal-toc-mobile__nav ul { list-style: none; }
.legal-toc-mobile__nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.legal-toc-mobile__nav a:hover { background: var(--primary-lighter); color: var(--primary-dark); }


.legal-content { min-width: 0; }
.legal-section {
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-lighter);
  display: inline-block;
}
.legal-section p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.85rem; }
.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-section a:hover { color: var(--primary-dark); }

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
}
.footer__accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: var(--space-xl);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: var(--space-md);
}
.footer__logo { width: 32px; height: 32px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__tagline { font-size: 0.88rem; color: color-mix(in oklch, var(--footer-text), transparent 30%); line-height: 1.65; }
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: var(--space-md);
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link {
  font-size: 0.9rem;
  color: color-mix(in oklch, var(--footer-text), transparent 20%);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: white; }
.footer__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: color-mix(in oklch, var(--footer-text), transparent 20%);
}
.footer__contact li i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid color-mix(in oklch, white, transparent 85%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.82rem; color: color-mix(in oklch, var(--footer-text), transparent 40%); }

/* ================================
   SCROLL REVEAL
   ================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   COOKIE CONSENT MODAL
   ================================ */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--text-dark), transparent 40%);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
}
.cookie-backdrop--hidden { display: none; }
.cookie-modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal__icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.cookie-modal__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}
.cookie-modal__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.cookie-modal__categories { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  gap: var(--space-sm);
}
.cookie-category__info { flex: 1; }
.cookie-category__name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.cookie-category__desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--border-medium);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base);
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: var(--radius-circle);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.cookie-modal__actions .btn { flex: 1; justify-content: center; min-width: 120px; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero { padding-top: 7rem; min-height: auto; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__image-badge { left: 0; }
  .hero__float-card { right: 0; }

  .about-intro__split,
  .about-story__split,
  .about-approach__split,
  .groups-intro__split,
  .cta-section__inner { grid-template-columns: 1fr; }
  .about-intro__content { padding-left: 0; }
  .about-approach__content { padding-left: 0; }
  .cta-section__visual { display: none; }

  .course-item { grid-template-columns: 60px 1fr; }
  .course-item__visual { display: none; }
  .course-item--reverse { direction: ltr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer__col--brand { grid-column: 1 / -1; }

  .news-article { grid-template-columns: 1fr; }
  .news-article__img-wrap { min-height: 220px; max-height: 280px; }

  .legal-page__body { grid-template-columns: 1fr; }
  .legal-toc-sidebar { display: none; }
  .legal-toc-mobile { display: block; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__flip-wrap { display: block; }

  .hero__split { gap: var(--space-lg); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; gap: var(--space-xs); }

  .benefits__grid { grid-template-columns: 1fr; }
  .resources__grid { grid-template-columns: 1fr; }
  .formats__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .who__grid { grid-template-columns: 1fr; }

  .news-preview__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 2px; height: 32px; margin: 0; align-self: center; }

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

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section-pad { padding: var(--space-xl) 0; }
  .cta-section__content { padding: var(--space-xl) var(--space-md); }

  .course-item { grid-template-columns: 1fr; }
  .course-item__number { font-size: 2rem; }

  .topic-item { flex-direction: column; gap: var(--space-sm); }
  .contact-news__item { flex-direction: column; gap: var(--space-sm); }
}

@media (max-width: 480px) {
  .nav { width: calc(100% - 1rem); top: 0.5rem; border-radius: var(--radius-xl); padding: 0.9rem 1rem; }
  .hero { padding-top: 5.5rem; }
  .hero__image-badge { position: static; margin-top: var(--space-sm); }
  .hero__float-card { display: none; }
  .contact-form__actions { flex-direction: column; }
  .cookie-modal { padding: var(--space-lg); }
  .cookie-modal__actions { flex-direction: column; }
  .legal-page { padding-top: 5rem; }
}