/* ============================================
   LIBER SAFE GLOBAL — DESIGN SYSTEM
   Maximalist Color Concept
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* COLOR PALETTE — MAXIMALIST */
  --color-yellow: #F5C518;
  --color-yellow-dark: #D4A800;
  --color-yellow-light: #FFF3B0;
  --color-coral: #E8472A;
  --color-coral-dark: #C43520;
  --color-coral-light: #FFE8E3;
  --color-indigo: #2D3A8C;
  --color-indigo-dark: #1E2860;
  --color-indigo-light: #E8EAFF;
  --color-teal: #0E7C7B;
  --color-teal-dark: #065958;
  --color-teal-light: #D4F0EF;
  --color-dark: #12131A;
  --color-dark-2: #1E2030;
  --color-dark-text: #1A1B26;
  --color-light: #F6F5F0;
  --color-light-2: #EEECEA;
  --color-white: #FDFCFA;

  /* TEXT ON COLORED BACKGROUNDS */
  --text-on-yellow: #12131A;
  --text-on-coral: #FDFCFA;
  --text-on-indigo: #FDFCFA;
  --text-on-teal: #FDFCFA;
  --text-on-dark: #EEECEA;
  --text-on-light: #1A1B26;

  /* TYPOGRAPHY */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  /* TYPE SCALE */
  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 2.5vw, 1.375rem);
  --text-xl: clamp(1.25rem, 3vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 4vw, 2.25rem);
  --text-3xl: clamp(2rem, 5vw, 3rem);
  --text-4xl: clamp(2.5rem, 7vw, 4.5rem);
  --text-hero: clamp(3.5rem, 12vw, 9rem);

  /* SPACING SCALE */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* BORDER RADIUS SCALE */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 40px;
  --radius-full: 999px;

  /* SHADOW SCALE */
  --shadow-sm: 0 1px 3px rgba(18,19,26,0.08), 0 1px 2px rgba(18,19,26,0.06);
  --shadow-md: 0 4px 6px rgba(18,19,26,0.07), 0 10px 15px rgba(18,19,26,0.08);
  --shadow-lg: 0 10px 25px rgba(18,19,26,0.10), 0 20px 40px rgba(18,19,26,0.08);
  --shadow-xl: 0 20px 50px rgba(18,19,26,0.15), 0 40px 80px rgba(18,19,26,0.10);
  --shadow-coral: 0 8px 20px rgba(232,71,42,0.25), 0 20px 40px rgba(232,71,42,0.12);
  --shadow-indigo: 0 8px 20px rgba(45,58,140,0.25), 0 20px 40px rgba(45,58,140,0.12);
  --shadow-yellow: 0 8px 20px rgba(245,197,24,0.30), 0 20px 40px rgba(245,197,24,0.15);
  --shadow-teal: 0 8px 20px rgba(14,124,123,0.25), 0 20px 40px rgba(14,124,123,0.12);

  /* TRANSITIONS */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* LAYOUT */
  --container-max: 1240px;
  --header-height: 76px;
}

/* --- DARK MODE TOKENS --- */
[data-theme="dark"] {
  --color-dark: #0A0B12;
  --color-dark-2: #12131F;
  --color-light: #1A1B28;
  --color-light-2: #22243A;
  --color-white: #1E2030;
  --color-dark-text: #E8E9F5;
  --text-on-light: #E8E9F5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.25), 0 10px 15px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.3), 0 20px 40px rgba(0,0,0,0.2);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-on-light);
  background-color: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base), opacity var(--transition-base);
}

ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- SECTION COLOR THEMES --- */
.section-yellow {
  background-color: var(--color-yellow);
  color: var(--text-on-yellow);
}
.section-coral {
  background-color: var(--color-coral);
  color: var(--text-on-coral);
}
.section-indigo {
  background-color: var(--color-indigo);
  color: var(--text-on-indigo);
}
.section-teal {
  background-color: var(--color-teal);
  color: var(--text-on-teal);
}
.section-dark {
  background-color: var(--color-dark);
  color: var(--text-on-dark);
}
.section-light {
  background-color: var(--color-light);
  color: var(--text-on-light);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: var(--space-xs);
}
.section-eyebrow.light { opacity: 0.75; }

.section-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}
.section-heading.light { color: var(--color-white); }
.section-heading.dark-text { color: var(--color-dark-text); }

.section-intro {
  font-size: var(--text-lg);
  line-height: 1.6;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto;
}
.section-intro.light { color: var(--color-white); }
.section-intro.dark-text { color: var(--color-dark-text); }

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

.light-text { color: rgba(253,252,250,0.9); }
.dark-text { color: var(--color-dark-text); }

.mt-md { margin-top: var(--space-md); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--color-coral-dark);
  border-color: var(--color-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232,71,42,0.35);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--color-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
  border-color: var(--color-yellow);
  box-shadow: var(--shadow-yellow);
}
.btn-yellow:hover {
  background: var(--color-yellow-dark);
  border-color: var(--color-yellow-dark);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-coral);
}
.btn-coral:hover {
  background: var(--color-coral-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark-text);
  border-color: var(--color-dark-text);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-hero-primary {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
  font-size: var(--text-base);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-coral);
}
.btn-hero-primary:hover {
  background: var(--color-coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232,71,42,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
  font-size: var(--text-base);
  padding: 1rem 2rem;
}
.btn-hero-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-card {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-card:hover {
  background: var(--color-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-card-light {
  background: var(--color-white);
  color: var(--color-indigo);
  border-color: var(--color-white);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-card-light:hover {
  background: var(--color-indigo-light);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: var(--text-base);
  padding: 1rem 2.25rem;
}

.btn-full { width: 100%; justify-content: center; }

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,19,26,0.08);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

[data-theme="dark"] .site-header {
  background: rgba(18,19,26,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }

.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  background: var(--color-indigo-light);
  color: var(--color-indigo);
}

[data-theme="dark"] .nav-link { color: var(--text-on-dark); }
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  background: rgba(45,58,140,0.3);
  color: var(--color-yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-cta { display: none; }

.dark-mode-toggle {
  background: none;
  border: 2px solid rgba(18,19,26,0.15);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark-text);
  transition: all var(--transition-base);
  font-size: 1rem;
}
.dark-mode-toggle:hover {
  background: var(--color-indigo);
  border-color: var(--color-indigo);
  color: var(--color-white);
  transform: rotate(20deg);
}
[data-theme="dark"] .dark-mode-toggle {
  border-color: rgba(255,255,255,0.2);
  color: var(--text-on-dark);
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--color-indigo-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark-text);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
[data-theme="dark"] .hamburger span { background: var(--text-on-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-indigo);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.25); }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover { color: var(--color-yellow); }

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--color-light);
  padding-top: var(--header-height);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--space-md);
}

.hero-text-cutout {
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.hero-display {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: saturate(1.2) contrast(1.1);
  display: block;
}

[data-theme="dark"] .hero-display {
  filter: saturate(1.4) contrast(1.2) brightness(1.3);
}

.hero-sub-block {
  max-width: 600px;
}

.hero-lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--color-dark-text);
  margin-bottom: var(--space-lg);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-dark-text);
  opacity: 0.5;
  font-size: var(--text-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- INTRO STRIP --- */
.intro-strip {
  padding: var(--space-2xl) 0;
}

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

.intro-strip-text .section-heading {
  font-size: var(--text-2xl);
  margin-bottom: 0;
}

.intro-strip-desc p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

/* --- PROGRAMS / CARDS --- */
.programs-section {
  padding: var(--space-2xl) 0;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.program-card {
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.program-card:hover {
  transform: translateY(-6px);
}

.card-coral {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--shadow-coral);
}
.card-coral:hover { box-shadow: 0 20px 50px rgba(232,71,42,0.35); }

.card-indigo {
  background: var(--color-indigo);
  color: var(--color-white);
  box-shadow: var(--shadow-indigo);
}
.card-indigo:hover { box-shadow: 0 20px 50px rgba(45,58,140,0.4); }

.card-teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-teal);
}
.card-teal:hover { box-shadow: 0 20px 50px rgba(14,124,123,0.35); }

.card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-yellow);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
}

.card-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  opacity: 0.88;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  opacity: 0.9;
}

.card-features li i {
  color: var(--color-yellow);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.featured-card { transform: scale(1.02); }
.featured-card:hover { transform: scale(1.02) translateY(-6px); }

/* --- HOW SECTION --- */
.how-section {
  padding: var(--space-2xl) 0;
}

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

.how-text-col h2 { margin-bottom: var(--space-md); }
.how-text-col p { margin-bottom: var(--space-md); }

.how-steps-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: rgba(253,252,250,0.25);
  line-height: 1;
  padding-top: 0.2rem;
}

.step-content h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.step-content p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* --- GALLERY --- */
.gallery-section {
  padding: var(--space-2xl) 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

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

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,58,140,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--color-white);
  font-size: 1.5rem;
}

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

.gallery-large {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

.gallery-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/6;
}

/* --- METHOD PREVIEW --- */
.method-preview {
  padding: var(--space-2xl) 0;
}

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

.method-image-col {
  position: relative;
}

.method-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-indigo);
}

.method-img-badge {
  position: absolute;
  bottom: -var(--space-md);
  right: var(--space-md);
  background: var(--color-yellow);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: var(--shadow-yellow);
  bottom: var(--space-md);
}

.method-text-col { padding: var(--space-sm) 0; }
.method-text-col p { margin-bottom: var(--space-md); }

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.method-tag {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition-fast);
}
.method-tag:hover { background: rgba(255,255,255,0.2); }

/* --- AUDIENCE --- */
.audience-section {
  padding: var(--space-2xl) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.audience-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.audience-icon {
  width: 52px;
  height: 52px;
  background: var(--color-indigo-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.audience-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-dark-text);
}

.audience-card p {
  font-size: var(--text-sm);
  color: var(--color-dark-text);
  opacity: 0.75;
}

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

.audience-full-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* --- CTA BAND --- */
.cta-band {
  padding: var(--space-xl) 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

.cta-band-text h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.cta-band-text p {
  opacity: 0.85;
  font-size: var(--text-base);
}

/* --- PAGE HERO --- */
.page-hero {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.page-hero-desc {
  font-size: var(--text-lg);
  opacity: 0.85;
  line-height: 1.6;
}

/* --- MISSION / APPROACH --- */
.mission-section, .approach-section {
  padding: var(--space-2xl) 0;
}

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

.mission-text h2 { margin-bottom: var(--space-md); }
.mission-text p { margin-bottom: var(--space-md); }
.approach-text h2 { margin-bottom: var(--space-md); }
.approach-text p { margin-bottom: var(--space-md); }

.rounded-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- VALUES --- */
.values-section {
  padding: var(--space-2xl) 0;
}

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

.value-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: background var(--transition-base), transform var(--transition-base);
}

.value-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.value-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* --- APPROACH PILLARS --- */
.approach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-text);
}

.pillar i {
  width: 36px;
  height: 36px;
  background: var(--color-indigo-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo);
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* --- AREA SECTIONS --- */
.area-section {
  padding: var(--space-2xl) 0;
}

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

.area-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  opacity: 0.15;
  margin-bottom: var(--space-xs);
}

.area-number.light-num { color: var(--color-white); opacity: 0.2; }
.area-number.dark-num { color: var(--color-dark); opacity: 0.12; }

.area-text p { margin-bottom: var(--space-md); }

.area-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.module-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(18,19,26,0.1);
  color: var(--color-dark-text);
}

.module-tag.light-tag {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.module-tag.dark-tag {
  background: rgba(18,19,26,0.08);
  color: var(--color-dark-text);
}

/* --- METHODOLOGIES GRID --- */
.methodologies-grid-section {
  padding: var(--space-2xl) 0;
}

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

.method-card {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.method-card:hover {
  transform: translateY(-4px);
}

.method-card-coral {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--shadow-coral);
}
.method-card-yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
  box-shadow: var(--shadow-yellow);
}
.method-card-teal {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: var(--shadow-teal);
}

.method-card-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.method-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.method-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
  opacity: 0.88;
  margin-bottom: var(--space-md);
}

.method-use {
  font-size: var(--text-xs);
  opacity: 0.75;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* --- METHOD INTRO --- */
.method-intro {
  padding: var(--space-2xl) 0;
}

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

.method-intro-text h2 { margin-bottom: var(--space-md); }
.method-intro-text p { margin-bottom: 0; }

/* --- METHOD TEACHING --- */
.method-teaching {
  padding: var(--space-2xl) 0;
}

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

.method-teaching-text h2 { margin-bottom: var(--space-md); }
.method-teaching-text p { margin-bottom: var(--space-md); }

.method-teaching-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.teaching-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.ts-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.teaching-step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.teaching-step p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

/* --- CONTACT --- */
.contact-section {
  padding: var(--space-2xl) 0;
}

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

.contact-form-col h2 { margin-bottom: var(--space-sm); }
.contact-form-col > p { margin-bottom: var(--space-lg); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-text);
}

.required-star { color: var(--color-coral); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(18,19,26,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-dark-text);
  background: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-indigo);
  box-shadow: 0 0 0 3px rgba(45,58,140,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox { flex-direction: row; align-items: flex-start; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-dark-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid rgba(18,19,26,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  accent-color: var(--color-indigo);
  margin-top: 2px;
}

.checkbox-label a { color: var(--color-indigo); text-decoration: underline; }

.contact-info-col h2 { margin-bottom: var(--space-lg); }

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-indigo-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-indigo);
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 0.2rem;
}

.info-card p, .info-card a {
  font-size: var(--text-sm);
  color: var(--color-dark-text);
  opacity: 0.75;
}

.info-card a:hover { opacity: 1; color: var(--color-indigo); }

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

/* --- LEGAL PAGES --- */
.legal-section {
  padding: var(--space-2xl) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-dark-text);
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-dark-text);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: var(--color-dark-text);
  opacity: 0.85;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--color-dark-text);
  opacity: 0.85;
}

.legal-content a { color: var(--color-indigo); text-decoration: underline; }
.legal-content a:hover { color: var(--color-coral); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: var(--text-sm);
}

.cookie-table th, .cookie-table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(18,19,26,0.1);
  text-align: left;
  color: var(--color-dark-text);
}

.cookie-table th {
  background: var(--color-indigo-light);
  font-family: var(--font-heading);
  font-weight: 600;
}

.cookie-table tr:nth-child(even) td { background: rgba(18,19,26,0.02); }

/* --- THANKS PAGE --- */
.thanks-main {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

.thanks-section {
  flex: 1;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  display: flex;
  align-items: center;
}

.thanks-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--color-teal);
  margin-bottom: var(--space-lg);
}

.thanks-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: var(--color-dark-text);
}

.thanks-desc {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-dark-text);
}

.thanks-sub {
  font-size: var(--text-base);
  opacity: 0.7;
  margin-bottom: var(--space-xl);
  color: var(--color-dark-text);
}

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

/* --- FOOTER --- */
.site-footer {
  padding: var(--space-2xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.footer-logo-link { display: inline-flex; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }

.footer-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  opacity: 0.6;
  color: var(--text-on-dark);
}

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

.footer-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-on-dark);
  opacity: 0.75;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  padding: 0.25rem 0.5rem;
}
.footer-nav a:hover { opacity: 1; color: var(--color-yellow); }

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}

.footer-legal-nav a {
  font-size: var(--text-xs);
  color: var(--text-on-dark);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}
.footer-legal-nav a:hover { opacity: 0.9; }

.footer-contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-on-dark);
  opacity: 0.65;
}

.footer-contact-row i { margin-right: 0.4rem; color: var(--color-yellow); }
.footer-contact-row a { color: inherit; }
.footer-contact-row a:hover { opacity: 1; color: var(--color-yellow); }

.footer-copy {
  font-size: var(--text-xs);
  opacity: 0.4;
  color: var(--text-on-dark);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-dark-2);
  color: var(--text-on-dark);
  border-top: 3px solid var(--color-yellow);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  padding: var(--space-md);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  margin-bottom: 0.35rem;
  color: var(--color-yellow);
}

.cookie-text p {
  font-size: var(--text-sm);
  opacity: 0.8;
}

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

.btn-cookie-accept {
  background: var(--color-yellow);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}
.btn-cookie-accept:hover { background: var(--color-yellow-dark); transform: translateY(-1px); }

.btn-cookie-customize {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}
.btn-cookie-customize:hover { background: rgba(255,255,255,0.2); }

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}
.btn-cookie-reject:hover { color: var(--color-white); border-color: rgba(255,255,255,0.4); }

.cookie-customize-panel {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-customize-panel h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.cookie-category {
  margin-bottom: var(--space-sm);
}

.cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  line-height: 1.5;
}

.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-yellow);
  margin-top: 2px;
}

/* --- DARK MODE ADAPTATIONS --- */
[data-theme="dark"] .audience-card {
  background: var(--color-dark-2);
}

[data-theme="dark"] .info-card {
  background: var(--color-dark-2);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: var(--color-dark-2);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}

[data-theme="dark"] .form-group label {
  color: var(--text-on-dark);
}

[data-theme="dark"] .audience-card h4,
[data-theme="dark"] .audience-card p {
  color: var(--text-on-dark);
}

[data-theme="dark"] .pillar { color: var(--text-on-dark); }

[data-theme="dark"] .legal-content h2,
[data-theme="dark"] .legal-content h3,
[data-theme="dark"] .legal-content p,
[data-theme="dark"] .legal-content li {
  color: var(--text-on-dark);
}

[data-theme="dark"] .cookie-table th,
[data-theme="dark"] .cookie-table td {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .cookie-table th {
  background: rgba(45,58,140,0.4);
}

[data-theme="dark"] .module-tag {
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
}

[data-theme="dark"] .section-light {
  background: var(--color-light);
}

[data-theme="dark"] .hero-lead { color: var(--text-on-dark); }
[data-theme="dark"] .hero-bg-image { opacity: 0.15; }

/* --- SCROLL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .intro-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-large {
    grid-column: 1 / -1;
    aspect-ratio: 16/6;
  }

  .gallery-wide {
    grid-column: 1 / -1;
  }

  .methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .footer-contact-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .header-cta { display: inline-flex; }

  .intro-strip-inner {
    grid-template-columns: 55% 1fr;
    gap: var(--space-2xl);
  }

  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-inner {
    grid-template-columns: 40% 1fr;
    gap: var(--space-2xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 4/3;
  }

  .gallery-wide {
    grid-column: 3 / 5;
    grid-row: 2;
    aspect-ratio: 4/3;
  }

  .gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 2; }

  .method-preview-inner {
    grid-template-columns: 45% 1fr;
    gap: var(--space-2xl);
  }

  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .mission-inner {
    grid-template-columns: 1fr 45%;
  }

  .approach-inner {
    grid-template-columns: 45% 1fr;
  }

  .area-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .alt-layout .area-image { order: -1; }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .method-intro-inner {
    grid-template-columns: 1fr 40%;
    gap: var(--space-2xl);
  }

  .method-teaching-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* ============================================
   RESPONSIVE — WIDE (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .container { padding: 0 var(--space-lg); }

  .gallery-item:nth-child(2) { aspect-ratio: 1; }
  .gallery-item:nth-child(3) { aspect-ratio: 1; }
  .gallery-item:nth-child(4) { aspect-ratio: 1; }
}