/* ============================================================
   komanda.org — Complete Design System CSS
   Production-ready stylesheet
   ============================================================ */

/* ============================================================
   1. CSS RESET & VARIABLES
   ============================================================ */

:root {
  /* Brand Colors */
  --indigo: #1a2f5a;
  --turquoise: #0cc0df;
  --milk: #f9f8f4;
  --amber: #f4a261;
  --dark: #0d1b36;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --white: #ffffff;

  /* Extended Palette */
  --indigo-light: #2a4278;
  --indigo-dark: #111f3d;
  --turquoise-light: #3dd5ef;
  --turquoise-dark: #0aa0bb;
  --turquoise-10: rgba(12, 192, 223, 0.1);
  --turquoise-20: rgba(12, 192, 223, 0.2);
  --amber-light: #f6b77a;
  --amber-dark: #e8894a;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;

  /* Text Colors */
  --text-primary: #0d1b36;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Border Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow: 0 4px 24px rgba(26, 47, 90, 0.08);
  --shadow-lg: 0 8px 48px rgba(26, 47, 90, 0.15);
  --shadow-card: 0 2px 16px rgba(26, 47, 90, 0.06);
  --shadow-sm: 0 1px 8px rgba(26, 47, 90, 0.04);
  --shadow-turquoise: 0 4px 24px rgba(12, 192, 223, 0.3);
  --shadow-amber: 0 4px 24px rgba(244, 162, 97, 0.3);

  /* Transition */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* Typography Scale */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-md: 1.125rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 1.875rem;
  --font-3xl: 2.25rem;
  --font-4xl: 3rem;
  --font-5xl: 3.75rem;

  /* Layout */
  --header-h: 80px;
  --container-max: 1240px;
  --container-px: 24px;

  /* Z-index scale */
  --z-below: -1;
  --z-base: 0;
  --z-above: 10;
  --z-nav: 100;
  --z-header: 1000;
  --z-modal: 2000;
  --z-cookie: 9999;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background-color: var(--turquoise);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--indigo);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--turquoise);
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--indigo);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.375rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h5 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

em {
  font-style: italic;
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */

/* Container */
.container {
  max-width: var(--container-max);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Section */
.section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.section-sm {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section-lg {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

/* Section Tag / Pill Label */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  background-color: var(--turquoise-10);
  border: 1px solid var(--turquoise-20);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--turquoise);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Section Title */
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--turquoise);
}

/* Section Subtitle */
.section-subtitle {
  font-size: var(--font-md);
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-white {
  color: var(--white) !important;
}

.text-turquoise {
  color: var(--turquoise) !important;
}

.text-indigo {
  color: var(--indigo) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-muted {
  color: var(--text-muted);
  font-size: var(--font-sm);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-turquoise {
  background-color: var(--turquoise-10);
  color: var(--turquoise-dark);
  border: 1px solid var(--turquoise-20);
}

.badge-indigo {
  background-color: rgba(26, 47, 90, 0.1);
  color: var(--indigo);
  border: 1px solid rgba(26, 47, 90, 0.2);
}

.badge-amber {
  background-color: rgba(244, 162, 97, 0.1);
  color: var(--amber-dark);
  border: 1px solid rgba(244, 162, 97, 0.2);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--turquoise), var(--indigo));
  border-radius: var(--radius-full);
  margin: 16px 0 32px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: var(--font-base);
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.btn:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* Primary Button */
.btn-primary {
  background-color: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
}

.btn-primary:hover {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-turquoise);
}

.btn-primary:active {
  transform: translateY(0) scale(1);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}

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

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-outline-turquoise {
  background-color: transparent;
  color: var(--turquoise);
  border-color: var(--turquoise);
}

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

/* Amber Button */
.btn-amber {
  background-color: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

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

/* Turquoise Button */
.btn-turquoise {
  background-color: var(--turquoise);
  color: var(--white);
  border-color: var(--turquoise);
}

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

/* Button Sizes */
.btn-sm {
  font-size: var(--font-sm);
  padding: 8px 20px;
}

.btn-lg {
  font-size: var(--font-md);
  padding: 18px 40px;
}

.btn-full {
  width: 100%;
}

.btn-submit {
  width: 100%;
  background-color: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  padding: 16px 32px;
  font-size: var(--font-md);
}

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

/* ============================================================
   5. HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  z-index: var(--z-header);
  transition: box-shadow var(--transition), background-color var(--transition),
              border-color var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(229, 231, 235, 0.8);
}

.header .container {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--indigo);
  color: var(--turquoise);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: background-color var(--transition), transform var(--transition);
}

.logo:hover .logo-icon {
  background-color: var(--turquoise);
  color: var(--white);
  transform: rotate(-3deg);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text .org {
  color: var(--turquoise);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--turquoise);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list a:hover {
  color: var(--indigo);
  background-color: rgba(26, 47, 90, 0.04);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.nav-list .active a {
  color: var(--indigo);
  font-weight: 600;
  background-color: rgba(26, 47, 90, 0.06);
}

.nav-list .active a::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  background-color: var(--milk);
  color: var(--indigo);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: var(--font-sm);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  letter-spacing: 0.05em;
}

.lang-switcher:hover {
  background-color: var(--indigo);
  color: var(--white);
  border-color: var(--indigo);
  transform: scale(1.05);
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.burger:hover {
  background-color: rgba(26, 47, 90, 0.06);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--indigo);
  border-radius: var(--radius-full);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(13, 27, 54, 0.5);
  z-index: calc(var(--z-header) - 1);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--indigo) 0%, #152548 40%, var(--dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cdefs%3E%3CradialGradient id='g1' cx='70%25' cy='40%25' r='60%25'%3E%3Cstop offset='0%25' stop-color='%230cc0df' stop-opacity='0.12'/%3E%3Cstop offset='100%25' stop-color='%230cc0df' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='800' height='600' fill='url(%23g1)'/%3E%3C/svg%3E") center/cover;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom/100% 100%;
  pointer-events: none;
  z-index: 2;
}

/* Geometric Decorations */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border: 1px solid rgba(12, 192, 223, 0.08);
  background: radial-gradient(circle at center, rgba(12, 192, 223, 0.05) 0%, transparent 70%);
}

.hero-bg-circle-2 {
  width: 400px;
  height: 400px;
  bottom: 50px;
  right: 200px;
  border: 1px solid rgba(12, 192, 223, 0.06);
}

.hero-bg-circle-3 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 40%;
  background: rgba(12, 192, 223, 0.04);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  color: var(--white);
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  background-color: rgba(12, 192, 223, 0.12);
  border: 1px solid rgba(12, 192, 223, 0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--turquoise);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--turquoise);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--turquoise);
  border-radius: var(--radius-full);
  opacity: 0.4;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--turquoise);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-image-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--indigo) 0%, transparent 30%);
  pointer-events: none;
}

/* Floating Cards on Hero */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: white;
  white-space: nowrap;
}

.hero-float-card-1 {
  top: 10%;
  left: -10%;
  animation: float1 4s ease-in-out infinite;
}

.hero-float-card-2 {
  bottom: 20%;
  left: -15%;
  animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   7. CARDS
   ============================================================ */

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(12, 192, 223, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--turquoise-10);
  color: var(--turquoise);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition), transform var(--transition);
}

.card:hover .card-icon {
  background-color: var(--turquoise);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--indigo);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  color: var(--gray);
  line-height: 1.7;
  font-size: var(--font-sm);
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--turquoise);
  font-weight: 600;
  font-size: var(--font-sm);
  margin-top: auto;
  padding-top: 20px;
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  text-decoration: underline;
  gap: 10px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Card top accent */
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise), var(--indigo));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-accent-amber {
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.card-accent-indigo {
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
}

/* ============================================================
   8. FEATURES SECTION
   ============================================================ */

.features {
  background-color: var(--milk);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(12, 192, 223, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--turquoise-20);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--turquoise-10), rgba(26, 47, 90, 0.05));
  color: var(--turquoise);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--turquoise), var(--indigo));
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--indigo);
  margin-bottom: 10px;
}

.feature-text {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.7;
}

/* ============================================================
   9. STATS SECTION
   ============================================================ */

.stats-section {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(12,192,223,0.12)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), transform var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--turquoise);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  display: block;
}

.stat-label {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   10. TESTIMONIALS
   ============================================================ */

.testimonials {
  background-color: var(--milk);
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-quote {
  font-size: 40px;
  color: var(--turquoise);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 4px;
  opacity: 0.6;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: var(--font-sm);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--turquoise), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-md);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--indigo);
  font-size: var(--font-sm);
}

.testimonial-role {
  font-size: var(--font-xs);
  color: var(--gray);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
  margin-left: auto;
  font-size: 14px;
}

/* ============================================================
   11. PROGRAMS / PROGRAM CARDS
   ============================================================ */

.program-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--turquoise-20);
}

.program-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--turquoise), var(--indigo));
  flex-shrink: 0;
}

.program-card-top.amber {
  background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}

.program-card-top.indigo {
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
}

.program-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  background-color: var(--turquoise-10);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  margin-bottom: 16px;
}

.program-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.program-level.beginner {
  background-color: rgba(16, 185, 129, 0.1);
  color: #065f46;
}

.program-level.intermediate {
  background-color: rgba(244, 162, 97, 0.1);
  color: #92400e;
}

.program-level.advanced {
  background-color: rgba(239, 68, 68, 0.1);
  color: #7f1d1d;
}

.program-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--indigo);
  margin-bottom: 10px;
  line-height: 1.3;
}

.program-desc {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.program-meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
  margin-bottom: 20px;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-xs);
  color: var(--gray);
  font-weight: 500;
}

.program-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--turquoise);
  flex-shrink: 0;
}

.program-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.program-price-label {
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--turquoise-dark);
  background-color: var(--turquoise-10);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ============================================================
   12. DIRECTIONS / CATEGORY CARDS
   ============================================================ */

.directions {
  background-color: var(--white);
}

.direction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background-color: var(--indigo);
}

.direction-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.direction-card:hover .direction-card-bg {
  transform: scale(1.08);
}

.direction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 54, 0.9) 0%, rgba(13, 27, 54, 0.3) 60%, transparent 100%);
  transition: background var(--transition);
}

.direction-card:hover .direction-card-overlay {
  background: linear-gradient(to top, rgba(13, 27, 54, 0.95) 0%, rgba(13, 27, 54, 0.6) 60%, rgba(13, 27, 54, 0.1) 100%);
}

.direction-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: var(--white);
  transform: translateY(0);
  transition: transform var(--transition);
}

.direction-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(12, 192, 223, 0.2);
  border: 1.5px solid rgba(12, 192, 223, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--turquoise);
  transition: background var(--transition);
}

.direction-card:hover .direction-card-icon {
  background: var(--turquoise);
  color: var(--white);
}

.direction-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.direction-card-count {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.direction-card-desc {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top var(--transition);
}

.direction-card:hover .direction-card-desc {
  max-height: 100px;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-gray);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-tab:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(26, 47, 90, 0.04);
}

.category-tab.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

/* ============================================================
   13. LEARNING PATH
   ============================================================ */

.learning-path {
  background-color: var(--milk);
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.path-step {
  display: flex;
  gap: 32px;
  position: relative;
  padding-bottom: 48px;
}

.path-step:last-child {
  padding-bottom: 0;
}

.path-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.path-number {
  width: 56px;
  height: 56px;
  background: var(--indigo);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(26, 47, 90, 0.1);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.path-step.active .path-number,
.path-step:hover .path-number {
  background: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(12, 192, 223, 0.2);
  transform: scale(1.1);
}

.path-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--indigo), var(--light-gray));
  margin-top: 8px;
  border-radius: var(--radius-full);
  min-height: 40px;
}

.path-step:last-child .path-line {
  display: none;
}

.path-step-right {
  flex: 1;
  padding-top: 12px;
  padding-bottom: 16px;
}

.path-step-tag {
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 8px;
  display: block;
}

.path-step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  color: var(--indigo);
  margin-bottom: 10px;
}

.path-step-text {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.7;
}

/* ============================================================
   14. FAQ
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--indigo);
  font-size: var(--font-base);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--turquoise);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition), border-color var(--transition),
              transform var(--transition);
  color: var(--gray);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.faq-item.active .faq-question {
  color: var(--turquoise);
}

.faq-item.active .faq-icon {
  background-color: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--gray);
  line-height: 1.75;
  font-size: var(--font-sm);
}

.faq-answer-inner p + p {
  margin-top: 12px;
}

/* ============================================================
   15. FORMS
   ============================================================ */

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--indigo);
  font-size: var(--font-sm);
}

.form-label .required {
  color: var(--error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: var(--font-base);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:hover {
  border-color: rgba(12, 192, 223, 0.5);
}

.form-control:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.15);
  background-color: var(--white);
}

.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.valid {
  border-color: var(--success);
}

.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: var(--font-base);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-select:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(12, 192, 223, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-error {
  display: block;
  font-size: var(--font-xs);
  color: var(--error);
  margin-top: 6px;
  font-weight: 500;
}

.form-hint {
  display: block;
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-top: 6px;
}

.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

/* ============================================================
   16. CONTACT SECTION
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--indigo);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--turquoise-10);
  color: var(--turquoise);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-text-label {
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-text-value {
  color: var(--indigo);
  font-weight: 600;
  font-size: var(--font-sm);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  margin-top: 32px;
  border: 1px solid var(--light-gray);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(26, 47, 90, 0.08);
  color: var(--indigo);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
  background-color: var(--turquoise);
  color: var(--white);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   17. COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--indigo);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: var(--z-cookie);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  font-size: var(--font-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-text a {
  color: var(--turquoise);
  text-decoration: underline;
  transition: color var(--transition);
}

.cookie-text a:hover {
  color: var(--turquoise-light);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   18. FOOTER
   ============================================================ */

.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-logo .logo-icon {
  background: rgba(12, 192, 223, 0.15);
  color: var(--turquoise);
  border: 1px solid rgba(12, 192, 223, 0.2);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-sm);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-heading {
  color: var(--white);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: var(--font-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-sm);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--font-sm);
  line-height: 1.5;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  color: var(--turquoise);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--turquoise);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.footer-social .social-link {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
}

.footer-social .social-link:hover {
  background-color: var(--turquoise);
  color: var(--white);
}

/* ============================================================
   19. BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--turquoise);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.breadcrumb-current {
  color: var(--turquoise);
  font-weight: 600;
}

/* Breadcrumb on light bg */
.breadcrumb.light {
  color: var(--gray);
}

.breadcrumb.light a {
  color: var(--gray);
}

.breadcrumb.light a:hover {
  color: var(--turquoise);
}

.breadcrumb.light .breadcrumb-sep {
  color: var(--light-gray);
}

/* ============================================================
   20. PAGE HERO
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--indigo) 0%, #152548 50%, var(--dark) 100%);
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(12, 192, 223, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C360,60 1080,0 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom/100% 100%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.page-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-hero-title span {
  color: var(--turquoise);
}

.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  max-width: 600px;
}

/* Page Hero with milk bottom */
.page-hero.milk-bottom::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C360,60 1080,0 1440,30 L1440,60 L0,60 Z' fill='%23f9f8f4'/%3E%3C/svg%3E") no-repeat bottom/100% 100%;
}

/* ============================================================
   21. PROSE (Privacy / Long-form content)
   ============================================================ */

.prose {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: var(--text-secondary);
}

.prose h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--indigo);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--indigo);
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  margin-bottom: 16px;
  padding-left: 0;
}

.prose ul li,
.prose ol li {
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
  font-size: var(--font-sm);
  line-height: 1.7;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--turquoise);
  border-radius: 50%;
}

.prose ol {
  counter-reset: ol-counter;
}

.prose ol li {
  counter-increment: ol-counter;
}

.prose ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-weight: 700;
  font-size: var(--font-xs);
}

.prose a {
  color: var(--turquoise);
  text-decoration: underline;
  transition: color var(--transition);
}

.prose a:hover {
  color: var(--turquoise-dark);
}

.prose strong {
  color: var(--text-primary);
  font-weight: 700;
}

.prose .prose-note {
  background: var(--turquoise-10);
  border-left: 3px solid var(--turquoise);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: var(--font-sm);
}

/* ============================================================
   22. THANK YOU PAGE
   ============================================================ */

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) var(--container-px) 80px;
  background: linear-gradient(135deg, var(--milk) 0%, var(--white) 100%);
}

.thank-you-content {
  max-width: 560px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--turquoise-10), rgba(12, 192, 223, 0.05));
  border: 2px solid var(--turquoise-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.thank-you-icon svg {
  width: 48px;
  height: 48px;
  color: var(--turquoise);
}

.thank-you-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--indigo);
  margin-bottom: 16px;
}

.thank-you-subtitle {
  font-size: var(--font-md);
  font-weight: 600;
  color: var(--turquoise-dark);
  margin-bottom: 20px;
}

.thank-you-text {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
  font-size: var(--font-sm);
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   23. MATERIALS
   ============================================================ */

.materials-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--light-gray);
  font-size: var(--font-sm);
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-btn:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.filter-btn.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

.filter-btn .filter-count {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 1px 7px;
  font-size: var(--font-xs);
}

.filter-btn:not(.active) .filter-count {
  background: rgba(26, 47, 90, 0.08);
  color: var(--text-muted);
}

.material-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), opacity var(--transition);
  display: flex;
  flex-direction: column;
}

.material-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--turquoise-20);
}

.material-card.hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.material-card-top {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, var(--milk), var(--light-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.material-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.material-icon {
  width: 64px;
  height: 64px;
  color: var(--indigo);
  opacity: 0.15;
}

.material-icon-fg {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--turquoise);
}

.material-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.material-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--indigo);
  line-height: 1.3;
  margin-bottom: 4px;
}

.material-desc {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.65;
  flex: 1;
}

.material-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
  margin-top: 12px;
}

.material-duration {
  font-size: var(--font-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.material-duration svg {
  width: 12px;
  height: 12px;
}

.material-free {
  font-size: var(--font-xs);
  font-weight: 700;
  color: var(--success);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: auto;
}

/* ============================================================
   24. SVG DECORATIONS
   ============================================================ */

.bg-dots {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}

.blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.blob-turquoise {
  fill: rgba(12, 192, 223, 0.06);
}

.blob-indigo {
  fill: rgba(26, 47, 90, 0.04);
}

/* Decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.deco-circle-outline {
  border: 1.5px solid;
}

.deco-circle-turquoise {
  border-color: rgba(12, 192, 223, 0.2);
}

.deco-circle-indigo {
  border-color: rgba(26, 47, 90, 0.1);
}

/* ============================================================
   25. SCROLL REVEAL ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   26. SECTION-SPECIFIC ADDITIONAL STYLES
   ============================================================ */

/* About - Team */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}

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

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--indigo), var(--turquoise));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--white);
}

.team-card-body {
  padding: 24px;
}

.team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--indigo);
  margin-bottom: 6px;
}

.team-role {
  font-size: var(--font-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--turquoise-dark);
  background: var(--turquoise-10);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.65;
}

/* Self Study - Methodology */
.method-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise), var(--indigo));
}

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

.method-number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(12, 192, 223, 0.12);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

/* Tips */
.tip-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.tip-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: var(--turquoise-20);
}

.tip-number {
  width: 36px;
  height: 36px;
  background: var(--turquoise-10);
  color: var(--turquoise-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-sm);
  flex-shrink: 0;
}

.tip-content {
  flex: 1;
}

.tip-title {
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 4px;
  font-size: var(--font-sm);
}

.tip-text {
  color: var(--gray);
  font-size: var(--font-sm);
  line-height: 1.6;
}

/* Tool cards */
.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-gray);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--turquoise-20);
}

.tool-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--turquoise-10);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
}

.tool-card:hover .tool-logo {
  background: var(--turquoise);
}

.tool-name {
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 6px;
  font-size: var(--font-sm);
}

.tool-desc {
  color: var(--gray);
  font-size: var(--font-xs);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(12, 192, 223, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-md);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   27. RESPONSIVE DESIGN
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  :root {
    --container-px: 32px;
  }

  .hero .container {
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }

  .stats-grid {
    gap: 24px;
  }
}

/* 992px */
@media (max-width: 992px) {
  :root {
    --space-4xl: 64px;
    --space-5xl: 96px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-stat {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 480px;
  }

  .hero-image {
    height: 360px;
  }

  .hero-float-card-1,
  .hero-float-card-2 {
    display: none;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Header */
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: calc(var(--z-header) - 1);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    display: block;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-list a {
    font-size: var(--font-base);
    padding: 12px 16px;
    width: 100%;
    display: block;
  }

  .nav-list a::after {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }

  .header .container {
    gap: 16px;
  }

  /* Path steps */
  .path-step {
    gap: 24px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 28px;
  }
}

/* 768px */
@media (max-width: 768px) {
  :root {
    --space-4xl: 56px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero::after {
    height: 40px;
  }

  .hero-image-wrapper {
    max-width: 360px;
  }

  .hero-image {
    height: 280px;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }

  .page-hero::after {
    height: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .hero-stats {
    gap: 24px;
  }

  .direction-card-desc {
    display: none;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .path-step {
    gap: 16px;
  }

  .path-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* 576px */
@media (max-width: 576px) {
  :root {
    --container-px: 16px;
  }

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

  .hero .container {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-stat {
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

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

  .stat-item {
    padding: 24px 16px;
  }

  .logo-text {
    font-size: 17px;
  }

  .lang-switcher {
    padding: 6px 12px;
    font-size: var(--font-xs);
  }

  .card {
    padding: 24px 20px;
  }

  .program-card-body {
    padding: 20px;
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 20px 16px;
  }

  .section-title {
    font-size: clamp(1.625rem, 6vw, 2.5rem);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .category-tabs {
    gap: 6px;
  }

  .category-tab {
    padding: 7px 14px;
    font-size: var(--font-xs);
  }

  .materials-filter {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 14px;
    font-size: var(--font-xs);
  }

  .path-step {
    gap: 12px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 480px */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-tag {
    font-size: 10px;
  }

  .section-tag {
    font-size: 10px;
  }

  .faq-question {
    font-size: var(--font-sm);
  }

  .program-meta {
    flex-direction: column;
    gap: 8px;
  }

  .program-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .team-card-img {
    height: 180px;
  }

  .testimonial-author {
    flex-wrap: wrap;
  }

  .breadcrumb {
    font-size: var(--font-xs);
  }

  .footer-social {
    gap: 6px;
  }

  .hero-float-card {
    display: none;
  }

  .social-links {
    gap: 6px;
  }

  .header-actions .btn {
    display: none;
  }
}

/* Print */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .burger,
  .nav-overlay {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .page-hero {
    padding-top: 40px;
    background: var(--milk) !important;
    color: var(--indigo) !important;
  }

  .page-hero-title,
  .page-hero-subtitle {
    color: var(--indigo) !important;
  }

  .breadcrumb a,
  .breadcrumb-current,
  .breadcrumb-sep {
    color: var(--gray) !important;
  }

  .prose {
    max-width: 100%;
  }

  a {
    text-decoration: underline;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
