/* ============================================================
   RUVEPI NAYISE — DESIGN SYSTEM
   Split Contrast | Floating Card Islands | Albert Sans
   ============================================================ */


:root {
  
  --color-dark-900: #0f0f14;
  --color-dark-800: #16161f;
  --color-dark-700: #1e1e2a;
  --color-dark-600: #252535;
  --color-light-50: #f8f7f4;
  --color-light-100: #f0ede8;
  --color-light-200: #e4e0d8;
  --color-light-300: #c8c2b8;
  --color-accent: #c17f3e;
  --color-accent-light: #d4954f;
  --color-accent-dark: #a86a2e;
  --color-accent-subtle: rgba(193, 127, 62, 0.12);
  --color-text-dark: #1a1a24;
  --color-text-body: #3d3d4e;
  --color-text-muted: #6b6b80;
  --color-text-light: #f0ede8;
  --color-text-light-muted: rgba(240, 237, 232, 0.72);

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

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  
  --shadow-low: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-mid: 0 2px 6px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.10), 0 20px 48px rgba(0,0,0,0.06);
  --shadow-high: 0 4px 8px rgba(0,0,0,0.10), 0 12px 32px rgba(0,0,0,0.14), 0 32px 64px rgba(0,0,0,0.10);
  --shadow-accent: 0 4px 16px rgba(193, 127, 62, 0.25), 0 8px 32px rgba(193, 127, 62, 0.12);

  
  --font-family: 'Albert Sans', sans-serif;
  --header-height: 80px;

  
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 450ms cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: var(--font-family);
  background-color: var(--color-light-50);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-family);
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.surface {
  background-color: var(--color-light-50);
}

.surface-raised {
  background-color: #ffffff;
  box-shadow: var(--shadow-mid);
  border-radius: var(--radius-lg);
}

.surface-inset {
  background-color: var(--color-light-100);
  border: 1px solid var(--color-light-200);
  border-radius: var(--radius-md);
}


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

.space-card {
  padding: var(--space-lg);
}


.text-display {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);

  & em {
    font-style: normal;
    color: var(--color-accent);
  }
}

.text-display--sm {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.text-body {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--color-text-body);
  font-weight: 400;
}

.text-caption {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

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

.text-accent {
  color: var(--color-accent);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
  min-height: 44px;

  &:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(193, 127, 62, 0.35), 0 12px 40px rgba(193, 127, 62, 0.18);
    color: #ffffff;
  }

  &:active {
    transform: translateY(0);
  }
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background-color: transparent;
  color: var(--color-text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-light-300);
  letter-spacing: 0.01em;
  transition: border-color var(--transition-base), color var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
  white-space: nowrap;
  min-height: 44px;

  &:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
  }
}

.action-ghost--light {
  color: var(--color-text-light);
  border-color: rgba(240, 237, 232, 0.4);

  &:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: rgba(193, 127, 62, 0.08);
  }
}


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

.container--narrow {
  max-width: 820px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.header-flip-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  perspective: 1200px;
  height: var(--header-height);
}

.site-header {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--transition-slow);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(16px);
  background-color: rgba(248, 247, 244, 0.92);

  &.is-flipped {
    transform: rotateX(-180deg);
  }

  &.nav-dark {
    background-color: rgba(15, 15, 20, 0.92);
    border-bottom-color: rgba(255,255,255,0.08);

    & .nav-link {
      color: var(--color-text-light);

      &:hover {
        color: var(--color-accent);
      }
    }

    & .hamburger .bar {
      background-color: var(--color-text-light);
    }
  }
}

.header-front,
.header-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.header-back {
  transform: rotateX(180deg);
  background-color: var(--color-dark-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-base);

  &:hover {
    opacity: 0.8;
  }
}

.nav-primary,
.nav-secondary {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-body);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-base);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    border-radius: var(--radius-full);
  }

  &:hover {
    color: var(--color-accent);

    &::after {
      transform: scaleX(1);
    }
  }

  &.nav-link--active {
    color: var(--color-accent);

    &::after {
      transform: scaleX(1);
    }
  }
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

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

  &:hover {
    background-color: var(--color-accent-subtle);
  }

  & .bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-base);
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.75rem var(--space-md);
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-base), color var(--transition-base);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  &:hover {
    background-color: rgba(193, 127, 62, 0.15);
    color: var(--color-accent);
  }
}

.mobile-close {
  color: var(--color-text-light-muted);
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: var(--radius-md);
  transition: color var(--transition-base), background-color var(--transition-base);

  &:hover {
    color: var(--color-accent);
    background-color: rgba(193, 127, 62, 0.15);
  }
}


body::before {
  content: '';
  display: block;
  height: var(--header-height);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  background-color: var(--color-dark-900);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--space-3xl) + var(--space-xl));
  padding-bottom: var(--space-3xl);

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

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;

  &:first-child {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 127, 62, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
  }

  &.hero-bg-shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 127, 62, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(193, 127, 62, 0.15);
  border: 1px solid rgba(193, 127, 62, 0.3);
  color: var(--color-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero .text-display {
  color: var(--color-text-light);
}

.hero-lead {
  color: var(--color-text-light-muted);
  font-size: 1.125rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.hero-visual-accent {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(193, 127, 62, 0.3);
  animation: pulse-ring 3s ease-out infinite;

  &:nth-child(1) {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
  }

  &.pulse-ring--2 {
    width: 110px;
    height: 110px;
    animation-delay: 1s;
  }

  &.pulse-ring--3 {
    width: 140px;
    height: 140px;
    animation-delay: 2s;
  }
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.4); }
}

.pulse-center {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-accent);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-high);

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(193, 127, 62, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
  }
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.02);
  }
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */

.benefits-section {
  background-color: var(--color-light-50);
}

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

  & .text-display--sm {
    margin-bottom: var(--space-sm);
  }
}

.section-lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.benefit-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);

  &:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(193, 127, 62, 0.3);
  }

  & h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: var(--space-sm) 0 var(--space-xs);
  }

  & dl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  & dt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-top: 0.75rem;
  }

  & dd {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.55;
  }
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
  transition: background-color var(--transition-base), transform var(--transition-base);

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

/* ============================================================
   DARK INTRO SECTION
   ============================================================ */

.dark-intro-section {
  background-color: var(--color-dark-800);

  & .container {
    position: relative;
  }
}

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

.dark-intro-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dark-intro-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-high);
}

.dark-intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.03);
  }
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */

.workflow-section {
  background-color: var(--color-light-100);
}

.workflow-steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background-color: white;
  border: 1px solid var(--color-light-200);
  transition: transform var(--transition-base), box-shadow var(--transition-base);

  &:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-mid);
    border-color: rgba(193, 127, 62, 0.2);
  }
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background-color: var(--color-accent-subtle);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.step-content {
  & h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
  }

  & .text-body {
    font-size: 0.9375rem;
  }
}

.workflow-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: calc(var(--space-lg) + 2rem);
  color: var(--color-accent);
  font-size: 0.875rem;
  opacity: 0.5;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.workflow-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================================
   DARK FEATURE SECTION
   ============================================================ */

.dark-feature-section {
  background-color: var(--color-dark-900);
}

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

.feature-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-high);
}

.feature-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.03);
  }
}

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

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;

  & i {
    margin-top: 0.2rem;
    flex-shrink: 0;
  }
}

/* ============================================================
   COURSES PREVIEW
   ============================================================ */

.courses-preview-section {
  background-color: var(--color-light-50);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.course-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-high);
  }
}

.course-img-wrap {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) 0;
}

.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  .course-card:hover & {
    transform: scale(1.05);
  }
}

.course-body {
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;

  & h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
  }

  & dl {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
  }

  & dt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-top: 0.5rem;
  }

  & dd {
    font-size: 0.875rem;
    color: var(--color-text-body);
  }
}

.course-tag {
  display: inline-block;
  background-color: var(--color-accent-subtle);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  background-color: var(--color-dark-700);
}

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

.faq-header {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));

  & .text-display--sm {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
  }

  & .text-body {
    color: var(--color-text-light-muted);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);

  &:hover {
    border-color: rgba(193, 127, 62, 0.3);
  }
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 600;
  gap: var(--space-sm);
  min-height: 44px;
  transition: color var(--transition-base);

  &:hover {
    color: var(--color-accent);
  }

  &[aria-expanded="true"] {
    color: var(--color-accent);

    & .faq-icon {
      transform: rotate(180deg);
    }
  }
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.875rem;
  transition: transform var(--transition-base);
  color: var(--color-accent);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);

  & .text-body {
    color: var(--color-text-light-muted);
    font-size: 0.9375rem;
  }
}

/* ============================================================
   CTA DARK SECTION
   ============================================================ */

.cta-dark-section {
  background-color: var(--color-dark-900);

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

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

.cta-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  & meter {
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: rgba(255,255,255,0.1);

    &::-webkit-meter-bar {
      background-color: rgba(255,255,255,0.1);
      border-radius: var(--radius-full);
    }

    &::-webkit-meter-optimum-value {
      background-color: var(--color-accent);
      border-radius: var(--radius-full);
    }
  }
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.cta-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-high);
}

.cta-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.03);
  }
}

/* ============================================================
   CTA STRIP (DARK)
   ============================================================ */

.cta-dark-section.cta-strip-section,
.philosophy-cta,
.courses-cta,
.join-modules-preview {
  background-color: var(--color-dark-800);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-strip-text {
  flex: 1;
  min-width: 280px;

  & .text-display--sm {
    margin-bottom: var(--space-xs);
  }
}

.cta-strip-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */

.page-hero {
  background-color: var(--color-light-50);
  padding-top: calc(var(--space-3xl) + var(--space-md));
  padding-bottom: var(--space-2xl);
}

.page-hero--dark {
  background-color: var(--color-dark-900);
}

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

.page-hero-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.page-hero-lead {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  max-width: 560px;
}

/* ============================================================
   PHILOSOPHY PAGE
   ============================================================ */

.philosophy-intro {
  background-color: var(--color-light-50);
}

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

.philosophy-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);

  & .text-display--sm {
    margin-bottom: var(--space-sm);
  }
}

.philosophy-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
}

.philosophy-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.03);
  }
}

.principles-section {
  background-color: var(--color-dark-800);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.principle-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);

  &:hover {
    transform: translateY(-6px);
    border-color: rgba(193, 127, 62, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  & h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: var(--space-sm) 0 var(--space-xs);
  }
}

.principle-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.approach-section {
  background-color: var(--color-light-50);
}

.approach-content {
  max-width: 760px;
  margin: 0 auto;

  & header {
    margin-bottom: var(--space-xl);
  }
}

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

.approach-details {
  margin-top: var(--space-md);
  padding: var(--space-md);

  & summary {
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    min-height: 44px;
    transition: color var(--transition-base);

    &::-webkit-details-marker {
      display: none;
    }

    &::before {
      content: '+';
      font-size: 1.25rem;
      color: var(--color-accent);
      font-weight: 400;
      transition: transform var(--transition-base);
    }

    &:hover {
      color: var(--color-accent);
    }
  }

  &[open] summary::before {
    transform: rotate(45deg);
  }
}

.details-content {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-left: 1.75rem;
}

.philosophy-cta {
  background-color: var(--color-dark-900);
}

/* ============================================================
   COURSES PAGE
   ============================================================ */

.courses-full-section {
  background-color: var(--color-light-50);
  display: flex;
  flex-direction: column;
  gap: 0;

  & .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
  }
}

.course-full-card {
  padding: var(--space-xl);
  transition: box-shadow var(--transition-base);

  &:hover {
    box-shadow: var(--shadow-high);
  }
}

.course-full-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.course-duration {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

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

.course-full-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);

  & h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
  }
}

.course-details-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.375rem 1rem;
  align-items: start;

  & dt {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    padding-top: 0.125rem;
  }

  & dd {
    font-size: 0.9375rem;
    color: var(--color-text-body);
  }
}

.course-topics {
  & h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
  }
}

.topic-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  & li {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    padding-left: 1.25rem;
    position: relative;

    &::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--color-accent);
      font-size: 0.875rem;
    }
  }
}

.course-full-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-mid);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.course-full-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);

  &:hover {
    transform: scale(1.03);
  }
}

.course-full-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-light-200);
}

.courses-cta {
  background-color: var(--color-dark-900);
}

/* ============================================================
   JOIN PAGE
   ============================================================ */

.join-hero {
  background-color: var(--color-light-50);
  padding-top: calc(var(--space-3xl) + var(--space-md));
}

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

.join-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}

.join-what-happens {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);

  & h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
  }
}

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

.join-step-num {
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.join-note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  margin-top: var(--space-sm);

  & i {
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  & .text-body {
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }
}

.join-form-wrap {
  & h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
  }
}

.join-modules-preview {
  background-color: var(--color-dark-800);
}

.modules-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.module-preview-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition-base), border-color var(--transition-base);

  &:hover {
    transform: translateY(-4px);
    border-color: rgba(193, 127, 62, 0.3);
  }

  & h3 {
    font-size: 1.0625rem;
    font-weight: 700;
  }

  & meter {
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);

    &::-webkit-meter-bar {
      background-color: rgba(255,255,255,0.1);
      border-radius: var(--radius-full);
    }

    &::-webkit-meter-optimum-value {
      background-color: var(--color-accent);
      border-radius: var(--radius-full);
    }
  }

  & small {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

/* ============================================================
   FORMS
   ============================================================ */

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

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

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

  & label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
  }

  & input,
  & select,
  & textarea {
    font-family: var(--font-family);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background-color: var(--color-light-100);
    border: 1.5px solid var(--color-light-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
    min-height: 44px;

    &:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(193, 127, 62, 0.12);
    }

    &::placeholder {
      color: var(--color-text-muted);
    }
  }

  & textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
  }

  & select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
}

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

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

  & input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex-shrink: 0;
    margin-top: 0.15rem;
    accent-color: var(--color-accent);
    cursor: pointer;
  }

  & a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;

    &:hover {
      color: var(--color-accent-dark);
    }
  }
}

.form-error {
  background-color: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;

  & p {
    font-size: 0.875rem;
    color: #c0392b;
    font-weight: 500;
  }
}

.form-submit {
  align-self: flex-start;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  background-color: var(--color-light-50);
  padding-top: calc(var(--space-3xl) + var(--space-md));
  padding-bottom: var(--space-2xl);
}

.contact-hero-content {
  max-width: 640px;
}

.contact-facts {
  background-color: var(--color-dark-800);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);

  & i {
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  & strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
  }

  & .text-caption {
    color: var(--color-text-light-muted);
  }
}

.contact-main {
  background-color: var(--color-light-50);
}

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

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);

  & .text-display--sm {
    margin-bottom: var(--space-sm);
  }
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);

  & i {
    font-size: 1.125rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
  }

  & strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
  }

  & a,
  & address {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    font-style: normal;
    transition: color var(--transition-base);

    &:hover {
      color: var(--color-accent);
    }
  }
}

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

.contact-form-col {
  & .text-display--sm {
    margin-bottom: var(--space-lg);
  }
}

.contact-form-card {
  padding: var(--space-xl);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
  background-color: var(--color-light-50);
  padding-top: calc(var(--space-3xl) + var(--space-md));
}

.legal-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid var(--color-light-200);

  & h1 {
    margin-bottom: var(--space-sm);
  }

  & .text-caption {
    margin-bottom: var(--space-md);
  }
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.legal-section {
  & h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-light-200);
  }

  & h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: var(--space-md);
    margin-bottom: 0.75rem;
  }

  & .text-body {
    margin-bottom: var(--space-sm);

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: var(--space-sm) 0;
  padding-left: 0;

  & li {
    font-size: 0.9375rem;
    color: var(--color-text-body);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;

    &::before {
      content: '•';
      position: absolute;
      left: 0.5rem;
      color: var(--color-accent);
    }
  }
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanks-page {
  & .site-header {
    background-color: rgba(15, 15, 20, 0.92);
    border-bottom-color: rgba(255,255,255,0.08);

    & .nav-link {
      color: var(--color-text-light);

      &:hover {
        color: var(--color-accent);
      }
    }

    & .hamburger .bar {
      background-color: var(--color-text-light);
    }
  }
}

.thanks-main {
  min-height: calc(100vh - var(--header-height) - 280px);
}

.thanks-hero {
  background-color: var(--color-dark-900);
  min-height: calc(100vh - var(--header-height) - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thanks-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thanks-icon {
  font-size: 4rem;
  color: var(--color-accent);
  animation: thanks-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes thanks-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-btn {
  margin-top: var(--space-sm);
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--color-dark-900);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-lg);
}

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

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

.footer-logo {
  opacity: 0.9;
  transition: opacity var(--transition-base);

  &:hover {
    opacity: 1;
  }
}

.footer-tagline {
  color: var(--color-text-light-muted);
  max-width: 220px;
  line-height: 1.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-md);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;

  & a {
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.6);
    transition: color var(--transition-base);
    display: inline-block;

    &:hover {
      color: var(--color-accent);
    }
  }
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  & p {
    font-size: 0.9rem;
    color: rgba(240, 237, 232, 0.6);
    line-height: 1.5;
  }

  & a {
    color: rgba(240, 237, 232, 0.6);
    transition: color var(--transition-base);

    &:hover {
      color: var(--color-accent);
    }
  }
}

.footer-separator {
  height: 1px;
  background-color: rgba(255,255,255,0.08);
  margin-bottom: var(--space-lg);
}

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

.footer-copy {
  color: rgba(240, 237, 232, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-md);

  & a {
    font-size: 0.8125rem;
    color: rgba(240, 237, 232, 0.4);
    transition: color var(--transition-base);

    &:hover {
      color: var(--color-accent);
    }
  }
}

/* ============================================================
   COOKIE CONSENT BAR
   ============================================================ */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-dark-800);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);

  &.is-visible {
    transform: translateY(0);
  }
}

.cookie-bar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  flex-wrap: wrap;
}

.cookie-bar-text {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  flex: 1;
  min-width: 200px;

  & a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;

    &:hover {
      color: var(--color-accent-light);
    }
  }
}

.cookie-bar-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  min-height: 44px;
  white-space: nowrap;

  &.cookie-btn--primary {
    background-color: var(--color-accent);
    color: white;

    &:hover {
      background-color: var(--color-accent-light);
      transform: translateY(-1px);
    }
  }

  &.cookie-btn--secondary {
    background-color: transparent;
    color: var(--color-text-light-muted);
    border: 1px solid rgba(255,255,255,0.2);

    &:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
    }
  }
}

.cookie-bar-expanded {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-categories {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;

  & input {
    accent-color: var(--color-accent);
    margin-bottom: 0.25rem;
  }

  & span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
  }

  & small {
    font-size: 0.75rem;
    color: var(--color-text-light-muted);
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --space-3xl: 6rem;
    --space-2xl: 4rem;
  }

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

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

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

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

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

  .hero-img {
    height: 380px;
  }

  .dark-intro-grid,
  .feature-split,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dark-intro-img,
  .feature-img,
  .philosophy-img {
    height: 360px;
  }

  .cta-dark-section .container {
    grid-template-columns: 1fr;
  }

  .cta-img {
    height: 300px;
  }

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

  .faq-header {
    position: static;
  }

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

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

  .course-full-grid {
    grid-template-columns: 1fr;
  }

  .course-full-figure {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .join-layout {
    grid-template-columns: 1fr;
  }

  .join-info {
    position: static;
  }

  .modules-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
    --space-lg: 1.5rem;
  }

  .nav-primary,
  .nav-secondary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
    padding: 0 var(--space-md);
  }

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

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

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

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

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .footer-legal-links {
    gap: var(--space-sm);
  }

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

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

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

  .hero-img {
    height: 300px;
  }

  .course-img-wrap {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) 0;
  }

  .space-card {
    padding: var(--space-md);
  }

  .course-full-card {
    padding: var(--space-md);
  }

  .contact-form-card {
    padding: var(--space-md);
  }

  .cookie-bar-main {
    padding: var(--space-sm) var(--space-md);
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-bar-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-bar-expanded {
    padding: var(--space-sm) var(--space-md);
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-categories {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .workflow-step {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .workflow-connector {
    padding-left: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-accent {
    display: none;
  }

  .hero-badge {
    font-size: 0.75rem;
  }
}