/* ============================================================
   FEVAVI NILOVE – MAIN STYLESHEET
   Dark Premium Design System
   BEM Naming Convention Throughout
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS / CUSTOM PROPERTIES
   ============================================================ */
:root {
  
  --color-bg-base:        #0d0d14;
  --color-bg-surface:     #12121f;
  --color-bg-elevated:    #18182a;
  --color-bg-card:        #1e1e30;
  --color-bg-card-hover:  #242438;

  --color-primary:        #7c5cbf;
  --color-primary-light:  #9b7fd4;
  --color-primary-dark:   #5c3fa0;
  --color-primary-glow:   rgba(124, 92, 191, 0.25);

  --color-accent:         #4fc3f7;
  --color-accent-light:   #81d4fa;
  --color-accent-dark:    #0288d1;
  --color-accent-glow:    rgba(79, 195, 247, 0.2);

  --color-secondary:      #e879a0;
  --color-secondary-glow: rgba(232, 121, 160, 0.2);

  --color-text-primary:   #eeeef5;
  --color-text-secondary: #a8a8c0;
  --color-text-muted:     #6b6b85;
  --color-text-on-accent: #0d0d14;

  --color-border:         rgba(255, 255, 255, 0.07);
  --color-border-accent:  rgba(124, 92, 191, 0.35);

  --color-success:        #4caf82;
  --color-error:          #e87979;

  
  --gradient-primary:     linear-gradient(135deg, #7c5cbf 0%, #4fc3f7 100%);
  --gradient-hero:        radial-gradient(ellipse at 60% 40%, rgba(124,92,191,0.3) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(79,195,247,0.2) 0%, transparent 50%);
  --gradient-card:        linear-gradient(135deg, rgba(124,92,191,0.08) 0%, rgba(79,195,247,0.04) 100%);
  --gradient-text:        linear-gradient(135deg, #9b7fd4 0%, #4fc3f7 100%);

  
  --font-heading:         'Space Grotesk', sans-serif;
  --font-body:            'Inter', sans-serif;

  
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;

  
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:    0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-xl:    0 20px 50px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.5);
  --shadow-glow-primary: 0 0 20px rgba(124,92,191,0.4), 0 0 60px rgba(124,92,191,0.15);
  --shadow-glow-accent:  0 0 20px rgba(79,195,247,0.4), 0 0 60px rgba(79,195,247,0.15);

  
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  
  --container-max:    1280px;
  --container-narrow: 760px;
  --container-legal:  860px;
  --nav-height:       72px;
}

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

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

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: var(--space-5);
}

.section__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--legal {
  max-width: var(--container-legal);
}

.section {
  padding: var(--space-24) 0;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  box-shadow: 0 4px 15px var(--color-primary-glow), 0 2px 6px rgba(0,0,0,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--color-primary-glow), 0 4px 12px rgba(0,0,0,0.4);
  filter: brightness(1.1);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  background: rgba(124, 92, 191, 0.08);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--color-accent-glow);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  min-height: 40px;
}

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

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), box-shadow var(--transition-slow);
}

.nav--solid {
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 20px rgba(0,0,0,0.4);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
}

.nav__hamburger:hover {
  background: rgba(255,255,255,0.07);
}

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base), width var(--transition-base);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav__hamburger.is-active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   7. MOBILE MENU – CURTAIN DROP
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 100vh;
  background: var(--color-bg-surface);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-16) var(--space-6);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
}

.mobile-menu__item {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

.mobile-menu__link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-secondary);
  padding: var(--space-3) var(--space-6);
  text-align: center;
  transition: color var(--transition-base);
  position: relative;
}

.mobile-menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--color-text-primary);
}

.mobile-menu__link--active::after,
.mobile-menu__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu__close {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-menu__close:hover {
  color: var(--color-text-primary);
  border-color: var(--color-primary-light);
  background: var(--color-primary-glow);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-menu__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(124,92,191,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(79,195,247,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(232,121,160,0.1) 0%, transparent 40%);
  z-index: 0;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

.hero__particle--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,92,191,0.08) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero__particle--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79,195,247,0.07) 0%, transparent 70%);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.hero__particle--3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(232,121,160,0.06) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation-delay: 4s;
}

.hero__particle--4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,92,191,0.04) 0%, transparent 70%);
  bottom: -10%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(124, 92, 191, 0.12);
  border: 1px solid rgba(124, 92, 191, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary-light);
  width: fit-content;
}

.hero__badge i {
  color: var(--color-accent);
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(124,92,191,0.15);
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

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

.hero__image-frame:hover .hero__image {
  transform: scale(1.03);
}

.hero__image-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.hero__stat-card {
  position: absolute;
  background: rgba(18, 18, 31, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.hero__stat-card i {
  color: var(--color-accent);
  font-size: var(--text-lg);
}

.hero__stat-card--1 {
  bottom: 40px;
  left: -24px;
  animation-delay: 0s;
}

.hero__stat-card--2 {
  top: 40px;
  right: -24px;
  animation-delay: 2s;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}

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

/* ============================================================
   9. DECORATIVE STRIPS
   ============================================================ */
.strip {
  overflow: hidden;
}

.strip--gradient {
  padding: var(--space-4) 0;
  background: linear-gradient(90deg, transparent, rgba(124,92,191,0.06) 30%, rgba(79,195,247,0.06) 70%, transparent);
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: 0 var(--space-6);
  flex-wrap: wrap;
}

.strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: inline-block;
  opacity: 0.5;
}

.strip__dot:nth-child(odd) {
  background: var(--color-primary);
  opacity: 0.4;
}

.strip__dot:nth-child(even) {
  background: var(--color-accent);
  opacity: 0.35;
}

.strip--line {
  padding: 0;
}

.strip__line-inner {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary) 30%, var(--color-accent) 70%, transparent);
  opacity: 0.3;
}

.strip--accent {
  background: var(--color-bg-elevated);
  padding: var(--space-4) 0;
  overflow: hidden;
}

.strip__accent-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  animation: stripScroll 20s linear infinite;
  width: max-content;
}

.strip__accent-inner span {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.strip__accent-inner i {
  color: var(--color-primary);
  font-size: 0.5rem;
  opacity: 0.6;
}

@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   10. PROBLEM SECTION
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.problem__text {
  padding-top: var(--space-4);
}

.problem__lead {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.problem__body {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

.problem__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.problem__card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem__card:hover::before {
  opacity: 1;
}

.problem__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(124, 92, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary-light);
  font-size: var(--text-lg);
  transition: background var(--transition-base);
}

.problem__card:hover .problem__card-icon {
  background: rgba(124, 92, 191, 0.2);
}

.problem__card-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

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

/* ============================================================
   11. WHAT WE DO SECTION
   ============================================================ */
.what-we-do__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.what-we-do__intro {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.what-we-do__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.feature__card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature__card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
}

.feature__card:hover::after {
  transform: scaleX(1);
}

.feature__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  background: rgba(124, 92, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary-light);
  font-size: var(--text-xl);
  transition: all var(--transition-base);
}

.feature__card:hover .feature__card-icon {
  background: rgba(124, 92, 191, 0.25);
  box-shadow: 0 0 20px var(--color-primary-glow);
  color: var(--color-accent);
}

.feature__card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

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

/* ============================================================
   12. JOURNEY / HORIZONTAL SCROLL SECTION
   ============================================================ */
.journey {
  overflow: hidden;
}

.journey__header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  margin-bottom: var(--space-10);
}

.journey__intro {
  color: var(--color-text-secondary);
  max-width: 520px;
}

.journey__scroll-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
  padding: var(--space-4) var(--space-6) var(--space-8);
  cursor: grab;
}

.journey__scroll-wrapper:active {
  cursor: grabbing;
}

.journey__scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}

.journey__scroll-wrapper::-webkit-scrollbar-track {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-full);
}

.journey__scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.journey__scroll-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  padding: var(--space-2) var(--space-6) var(--space-4);
}

.journey__step {
  width: 280px;
  flex-shrink: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.journey__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.journey__step:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
  transform: translateY(-4px);
}

.journey__step:hover::before {
  opacity: 1;
}

.journey__step-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-border-accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.5;
}

.journey__step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(124, 92, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
}

.journey__step:hover .journey__step-icon {
  background: rgba(79, 195, 247, 0.15);
  color: var(--color-accent);
}

.journey__step-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

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

.journey__scroll-hint {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-6);
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================================
   13. COMPARISON TABLE SECTION
   ============================================================ */
.comparison__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.comparison__intro {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.comparison__table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.comparison__th {
  padding: var(--space-6) var(--space-6);
  text-align: center;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-weight: 600;
  position: relative;
}

.comparison__th--feature {
  text-align: left;
  width: 35%;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison__th--featured {
  background: rgba(124, 92, 191, 0.1);
  border-left: 1px solid var(--color-border-accent);
  border-right: 1px solid var(--color-border-accent);
}

.comparison__tier-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.comparison__tier-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.comparison__tier-name {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
}

.comparison__row {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

.comparison__row:last-child {
  border-bottom: none;
}

.comparison__row:hover {
  background: rgba(255,255,255,0.02);
}

.comparison__feature {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: left;
  background: var(--color-bg-surface);
}

.comparison__cell {
  padding: var(--space-4) var(--space-6);
  text-align: center;
  background: var(--color-bg-surface);
}

.comparison__cell--featured {
  background: rgba(124, 92, 191, 0.05);
  border-left: 1px solid var(--color-border-accent);
  border-right: 1px solid var(--color-border-accent);
}

.comparison__check {
  color: var(--color-success);
  font-size: var(--text-lg);
}

.comparison__minus {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  opacity: 0.4;
}

.comparison__partial {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.comparison__cta-row td {
  padding: var(--space-6);
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
}

.comparison__cta-cell {
  text-align: center;
}

.comparison__cta-cell--featured {
  background: rgba(124, 92, 191, 0.08);
  border-left: 1px solid var(--color-border-accent);
  border-right: 1px solid var(--color-border-accent);
}

/* ============================================================
   14. IMAGE BREAK SECTION
   ============================================================ */
.image-break {
  position: relative;
  overflow: hidden;
}

.image-break__inner {
  position: relative;
  height: 420px;
}

.image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124,92,191,0.15) 0%, rgba(79,195,247,0.08) 100%);
  padding: var(--space-8);
}

.image-break__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  max-width: 760px;
  line-height: 1.5;
  font-style: italic;
  position: relative;
}

.image-break__quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 0;
  position: absolute;
  top: -10px;
  left: -30px;
}

/* ============================================================
   15. INSIGHTS / SPLIDE SECTION
   ============================================================ */
.insights__header {
  margin-bottom: var(--space-10);
}

.insights__splide .splide__track {
  overflow: visible;
}

.insight__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.insight__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.insight__card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.insight__card:hover::before {
  opacity: 1;
}

.insight__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(79, 195, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.insight__card:hover .insight__card-icon {
  background: rgba(79, 195, 247, 0.2);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.insight__card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

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


.splide__pagination__page {
  background: var(--color-text-muted);
  transition: all var(--transition-base);
}

.splide__pagination__page.is-active {
  background: var(--color-primary);
  transform: scale(1.3);
}

.splide__arrow {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.splide__arrow svg {
  fill: var(--color-text-primary);
}

.splide__arrow:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
}

.splide__arrow:disabled {
  opacity: 0.3;
}

/* ============================================================
   16. FOR WHOM SECTION
   ============================================================ */
.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.for-whom__image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.for-whom__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,92,191,0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.for-whom__image-wrapper:hover .for-whom__image {
  transform: scale(1.03);
}

.for-whom__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.for-whom__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.for-whom__icon {
  color: var(--color-success);
  font-size: var(--text-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.for-whom__item strong {
  color: var(--color-text-primary);
}

/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-section__inner {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124,92,191,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-4);
}

.cta-section__text {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  max-width: 540px;
  margin: 0 auto var(--space-8);
}

.cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   18. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-16)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(124,92,191,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(79,195,247,0.1) 0%, transparent 45%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.page-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   19. STORY PAGE
   ============================================================ */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.story__chapter-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-6);
}

.story__text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.story__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   20. VALUES SECTION
   ============================================================ */
.values__header {
  margin-bottom: var(--space-10);
}

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

.values__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.values__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.values__card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.values__card:hover::after {
  transform: scaleX(1);
}

.values__card-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--space-4);
}

.values__card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

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

/* ============================================================
   21. APPROACH SECTION
   ============================================================ */
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.approach__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.approach__text {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

/* ============================================================
   22. MISSION SECTION
   ============================================================ */
.mission__inner {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission__bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(79,195,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mission__quote-icon {
  font-size: var(--text-4xl);
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: var(--space-6);
}

.mission__statement {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-primary);
  max-width: 720px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
  font-style: italic;
}

.mission__divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
}

.mission__sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   23. WORKSHOPS PAGE
   ============================================================ */
.workshop-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.workshop-intro__body {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.workshop-intro__image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.workshops__header {
  margin-bottom: var(--space-10);
}

.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.workshop__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.workshop__card--featured {
  border-color: var(--color-border-accent);
  background: linear-gradient(135deg, rgba(124,92,191,0.08) 0%, rgba(79,195,247,0.04) 100%);
  box-shadow: var(--shadow-lg), 0 0 30px var(--color-primary-glow);
}

.workshop__card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.workshop__card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--gradient-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.workshop__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.workshop__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-xl);
  background: rgba(124, 92, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: var(--text-xl);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.workshop__card:hover .workshop__card-icon {
  background: rgba(124, 92, 191, 0.22);
  color: var(--color-accent);
}

.workshop__card-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: flex-end;
}

.workshop__card-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg-elevated);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.workshop__card-tag--featured {
  color: var(--color-primary-light);
  background: rgba(124, 92, 191, 0.15);
}

.workshop__card-duration {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

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

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

.workshop__card-topics-title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.workshop__card-topics-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.workshop__card-topics-list li {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-left: var(--space-5);
  position: relative;
}

.workshop__card-topics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
}

.workshop__card-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   24. FORMAT SECTION (Workshops page)
   ============================================================ */
.format__header {
  margin-bottom: var(--space-10);
}

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

.format__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.format__card:hover {
  border-color: var(--color-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.format__card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.format__card:hover .format__card-image {
  transform: scale(1.03);
}

.format__card-body {
  padding: var(--space-6);
}

.format__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(124, 92, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.format__card-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

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

/* ============================================================
   25. CONTACT PAGE
   ============================================================ */
.contact-main {
  padding-top: var(--nav-height);
}

.contact-page__header {
  text-align: center;
  margin-bottom: var(--space-10);
  padding-top: var(--space-12);
}

.contact-page__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.contact-page__subtitle {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.contact-page__lang-note {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: rgba(79, 195, 247, 0.06);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-8);
}

.contact-page__lang-note i {
  font-size: var(--text-2xl);
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-page__lang-note strong {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--color-text-primary);
}

.contact-page__lang-note p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

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

.contact-form__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.contact-form__optional {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: var(--text-xs);
}

.contact-form__input,
.contact-form__textarea {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  outline: none;
  width: 100%;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-bg-card);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.contact-form__input.is-error,
.contact-form__textarea.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(232, 121, 121, 0.15);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__helper {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.contact-form__error {
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: 500;
  display: none;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__field--checkbox {
  flex-direction: column;
  gap: var(--space-2);
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.contact-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  background: var(--color-bg-elevated);
}

.contact-form__checkbox:checked + .contact-form__checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-form__checkbox:checked + .contact-form__checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.contact-form__checkbox-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-form__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.contact-form__link:hover {
  color: var(--color-accent-light);
}

.contact-form__submit {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  min-height: 56px;
}


.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
  padding: var(--space-8);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(124, 92, 191, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.contact-info__item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.contact-info__item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.contact-info__link {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.contact-info__link:hover {
  color: var(--color-accent-light);
}


.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-12);
}

.contact-map__iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}

/* ============================================================
   26. THANKS PAGE
   ============================================================ */
.thanks-main {
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
}

.thanks__inner {
  text-align: center;
  padding: var(--space-24) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.thanks__animation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks__checkmark {
  width: 100px;
  height: 100px;
}

.thanks__checkmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.8s ease forwards;
}

.thanks__checkmark-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease 0.8s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks__content {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.6s ease 1.4s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

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

.thanks__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.thanks__text {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  max-width: 480px;
  line-height: 1.7;
}

.thanks__btn {
  margin-top: var(--space-4);
}

/* ============================================================
   27. LEGAL PAGES
   ============================================================ */
.legal-page {
  padding-top: calc(var(--nav-height) + var(--space-12));
}

.legal-page__header {
  margin-bottom: var(--space-10);
}

.legal-page__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-3);
}

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

.legal-page__intro,
.legal-page__lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}

.legal-page__section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}

.legal-page__section:last-child {
  border-bottom: none;
}

.legal-page__section h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.legal-page__section p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

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

.legal-page__list {
  list-style: disc;
  padding-left: var(--space-6);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-page__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.legal-page__link:hover {
  color: var(--color-accent-light);
}

.legal-page__box {
  background: rgba(79, 195, 247, 0.05);
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.legal-page__box-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-accent);
}

.legal-page__box p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-page__cookie-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-4) 0;
}

.legal-page__cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-page__cookie-row:last-child {
  border-bottom: none;
}

.legal-page__cookie-row--header {
  background: var(--color-bg-elevated);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.legal-page__required {
  color: var(--color-success);
  font-weight: 600;
  font-size: var(--text-xs);
}

.legal-page__optional {
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-xs);
}

/* ============================================================
   28. FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: auto;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  transition: opacity var(--transition-base);
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo-img {
  width: 32px;
  height: 32px;
}

.footer__logo span {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  position: relative;
  display: inline-block;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary-light);
  transition: width var(--transition-base);
}

.footer__nav-link:hover {
  color: var(--color-text-primary);
}

.footer__nav-link:hover::after {
  width: 100%;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__address p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
}

.footer__address i {
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: var(--text-sm);
}

.footer__contact-link {
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.footer__contact-link:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.footer__copy-legal {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================================
   29. COOKIE CONSENT – SIDE PANEL (RIGHT)
   ============================================================ */
.cookie-panel {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: var(--color-bg-elevated);
  border-left: 1px solid var(--color-border-accent);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl), -4px 0 30px rgba(124,92,191,0.15);
}

.cookie-panel.is-open {
  right: 0;
}

.cookie-panel__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.cookie-panel__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-panel__header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.cookie-panel__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(124, 92, 191, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.cookie-panel__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.cookie-panel__subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cookie-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-panel__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cookie-panel__category {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  transition: border-color var(--transition-base);
}

.cookie-panel__category:hover {
  border-color: var(--color-border-accent);
}

.cookie-panel__category-info {
  flex: 1;
}

.cookie-panel__category-name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--color-text-primary);
}

.cookie-panel__category-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}


.cookie-panel__toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-panel__toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-panel__toggle-label {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.cookie-panel__toggle-label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-text-muted);
  transition: all var(--transition-base);
}

.cookie-panel__toggle-input:checked + .cookie-panel__toggle-label {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-panel__toggle-input:checked + .cookie-panel__toggle-label::after {
  left: 23px;
  background: white;
}

.cookie-panel__toggle-input:disabled + .cookie-panel__toggle-label {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-panel__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cookie-panel__btn-accept {
  width: 100%;
  padding: var(--space-3) var(--space-5);
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.cookie-panel__btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--color-primary-glow);
  filter: brightness(1.1);
}

.cookie-panel__btn-reject {
  width: 100%;
  padding: var(--space-3) var(--space-5);
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
}

.cookie-panel__btn-reject:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-muted);
}

.cookie-panel__links {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.cookie-panel__link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.cookie-panel__link:hover {
  color: var(--color-accent);
}

.cookie-settings-trigger {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-accent);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9990;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  font-size: var(--text-base);
}

.cookie-settings-trigger:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary-glow);
  transform: scale(1.1);
}

/* ============================================================
   30. INTL-TEL-INPUT OVERRIDES
   ============================================================ */
.iti__flag-container {
  background: transparent;
}

.iti__selected-dial-code {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.iti__country-list {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-lg);
}

.iti__country:hover,
.iti__country.iti__highlight {
  background: var(--color-bg-card-hover);
}

.iti__divider {
  border-bottom-color: var(--color-border);
}

/* ============================================================
   31. RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    padding: var(--space-12) var(--space-6);
  }

  .hero__visual {
    display: none;
  }

  .hero__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }

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

  .problem__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .workshops__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .for-whom__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .for-whom__image-col {
    display: none;
  }

  .story__grid,
  .approach__grid,
  .workshop-intro__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

/* ============================================================
   32. RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 var(--space-5);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__container {
    padding: var(--space-8) var(--space-5);
  }

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

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

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

  .what-we-do__features {
    grid-template-columns: 1fr;
  }

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

  .comparison__table-wrapper {
    border-radius: var(--radius-xl);
  }

  .cta-section__inner {
    padding: var(--space-10) var(--space-6);
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .image-break__inner {
    height: 280px;
  }

  .image-break__quote {
    font-size: var(--text-base);
  }

  .image-break__quote::before {
    display: none;
  }

  .contact-page__header {
    padding-top: var(--space-8);
  }

  .contact-page__lang-note {
    flex-direction: column;
    gap: var(--space-3);
  }

  .contact-info {
    padding: var(--space-5);
  }

  .mission__inner {
    padding: var(--space-10) var(--space-6);
  }

  .cookie-panel {
    width: 100%;
    right: -100%;
  }

  .legal-page__cookie-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .legal-page__cookie-row--header {
    display: none;
  }

  .workshops__grid {
    max-width: 100%;
  }

  .journey__step {
    width: 240px;
  }
}

/* ============================================================
   33. RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .nav__logo-text {
    font-size: var(--text-base);
  }

  .comparison__table {
    min-width: 480px;
  }

  .journey__step {
    width: 220px;
  }
}

/* ============================================================
   34. UTILITY CLASSES
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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