/* ============================================================
   AVOLQENRIX — GLOBAL STYLESHEET
   Living Interface Design System
   ============================================================ */


:root {
  
  --color-primary: #1a6b5c;
  --color-primary-dark: #0f4a3e;
  --color-primary-light: #2d8c78;
  --color-secondary: #6b8f71;
  --color-accent: #c9893a;
  --color-accent-light: #e8a95c;

  --color-bg: #f7f6f2;
  --color-bg-alt: #eef0eb;
  --color-bg-dark: #1c2b27;
  --color-surface: #ffffff;

  --color-text: #1e2d29;
  --color-text-muted: #5a6b65;
  --color-text-light: #8fa39c;

  --color-border: #d8ddd6;
  --color-border-light: #eceee9;

  
  --grad-hero: linear-gradient(135deg, #0f4a3e 0%, #1a6b5c 50%, #2d8c78 100%);
  --grad-accent: linear-gradient(135deg, #c9893a 0%, #e8a95c 100%);
  --grad-section: linear-gradient(180deg, #eef0eb 0%, #f7f6f2 100%);
  --grad-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(238,240,235,0.6) 100%);

  
  --font-heading: 'Crimson Pro', Georgia, serif;
  --font-body: 'Albert Sans', system-ui, sans-serif;

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

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

  
  --shadow-sm: 0 1px 3px rgba(26,107,92,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(26,107,92,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(26,107,92,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(26,107,92,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-glow: 0 0 40px rgba(26,107,92,0.20);

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4,0,0.2,1);

  
  --nav-height: 70px;
}


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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


body > header, body > footer, body > main, body > nav { all: unset; display: block; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; }
address { font-style: normal; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-sm); color: var(--color-text); }
p:last-child { margin-bottom: 0; }


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


.global-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-slow);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}

.global-btn--primary {
  background: var(--grad-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.global-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(201,137,58,0.3);
  color: #fff;
}

.global-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.global-btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.global-btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.global-btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: #fff;
}

.global-btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}


.global-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}
.global-link-arrow:hover { gap: 0.7rem; color: var(--color-accent); }
.global-link-arrow i { transition: transform var(--transition-base); }
.global-link-arrow:hover i { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.global-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,107,92,0.14), 0 1px 6px rgba(0,0,0,0.08);
}

.global-nav {
  position: relative;
}

.global-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}

.global-nav__logo img {
  height: 36px;
  width: auto;
}

.global-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.global-nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}
.global-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-base);
}
.global-nav__link:hover::after,
.global-nav__link.active::after { width: 60%; }
.global-nav__link:hover,
.global-nav__link.active { color: var(--color-primary); }

.global-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.global-nav__search-btn,
.global-nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}
.global-nav__search-btn:hover,
.global-nav__hamburger:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.global-nav__hamburger {
  flex-direction: column;
  gap: 5px;
  display: none;
}
.global-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition-base);
}
.global-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.global-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.global-nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}
.global-nav__mobile.open {
  max-height: 400px;
}
.global-nav__mobile-link {
  display: block;
  padding: 0.85rem var(--space-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}
.global-nav__mobile-link:hover,
.global-nav__mobile-link.active {
  color: var(--color-primary);
  background: var(--color-bg-alt);
  padding-left: calc(var(--space-md) + 8px);
}


.global-search-overlay {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  z-index: 999;
  transform: translateY(-110%);
  opacity: 0;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-lg);
  display: none;
}
.global-search-overlay.open {
  transform: translateY(0);
  opacity: 1;
}
.global-search-overlay__inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.global-search-overlay__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-base);
  outline: none;
}
.global-search-overlay__input:focus { border-color: var(--color-primary); }
.global-search-overlay__close {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-search-overlay__close:hover { background: var(--color-primary); color: #fff; }

/* ============================================================
   HERO SECTION — HOME
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--grad-hero);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) 0;
  max-width: 100%;
  overflow: hidden;
}

.home-hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.home-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.home-hero__shape--1 {
  width: 600px;
  height: 600px;
  background: var(--color-accent);
  top: -200px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}
.home-hero__shape--2 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  bottom: 100px;
  left: -150px;
  animation: float2 15s ease-in-out infinite;
}
.home-hero__shape--3 {
  width: 250px;
  height: 250px;
  background: var(--color-accent-light);
  top: 40%;
  right: 30%;
  opacity: 0.05;
  animation: float3 10s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,20px) scale(1.05)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes float3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(15px,10px)} 66%{transform:translate(-10px,15px)} }

.home-hero__content {
  padding-left: calc((100vw - 1200px)/2 + var(--space-md));
  padding-bottom: var(--space-3xl);
  z-index: 1;
}

.home-hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.home-hero__heading {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.home-hero__subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

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

.home-hero__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform-style: preserve-3d;
  margin-right: calc((100vw - 1200px)/2 + var(--space-md));
  margin-bottom: var(--space-3xl);
}

.home-hero__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.home-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}
.home-hero__wave svg { width: 100%; display: block; }

/* ============================================================
   HOME INTRO
   ============================================================ */
.home-intro {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

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

.home-intro__text .global-label { display: block; }

.home-intro__heading {
  margin-bottom: var(--space-md);
}

.home-intro__text p { color: var(--color-text-muted); margin-bottom: var(--space-md); }

.home-intro__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.home-intro__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow);
}
.home-intro__image:hover { transform: scale(1.02); }

.home-intro__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--grad-accent);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   HOME FEATURES
   ============================================================ */
.home-features {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  position: relative;
}

.home-features__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.home-features__header .global-label { display: block; text-align: center; }
.home-features__sub { color: var(--color-text-muted); max-width: 500px; margin: var(--space-sm) auto 0; }

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

.home-features__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
  cursor: default;
}
.home-features__card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,107,92,0.2);
  transform: translateY(-6px);
}

.home-features__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(26,107,92,0.1) 0%, rgba(45,140,120,0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}
.home-features__card:hover .home-features__icon {
  background: var(--grad-accent);
  color: #fff;
  transform: scale(1.1);
}

.home-features__card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}
.home-features__card p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   HOME JOURNEY
   ============================================================ */
.home-journey {
  padding: var(--space-3xl) 0;
}

.home-journey__header {
  margin-bottom: var(--space-xl);
}
.home-journey__header .global-label { display: block; }

.home-journey__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-journey__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.home-journey__step.revealed { opacity: 1; transform: translateX(0); }

.home-journey__step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(26,107,92,0.08), rgba(45,140,120,0.12));
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(26,107,92,0.15);
  flex-shrink: 0;
}

.home-journey__step-content {
  padding: var(--space-md) 0;
}
.home-journey__step-content h3 { margin-bottom: var(--space-xs); }
.home-journey__step-content p { color: var(--color-text-muted); margin: 0; }

.home-journey__connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(26,107,92,0.3), rgba(26,107,92,0.1));
  margin-left: 32px;
  border-radius: 2px;
}

/* ============================================================
   HOME COUNTERS
   ============================================================ */
.home-counters {
  padding: var(--space-2xl) 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.home-counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.home-counters__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.home-counters__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   HOME COURSES
   ============================================================ */
.home-courses {
  padding: var(--space-3xl) 0;
}

.home-courses__header {
  margin-bottom: var(--space-xl);
}
.home-courses__header .global-label { display: block; }
.home-courses__sub { color: var(--color-text-muted); margin-top: var(--space-sm); }

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

.home-courses__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}
.home-courses__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.home-courses__card-img {
  overflow: hidden;
  height: 220px;
}
.home-courses__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.home-courses__card:hover .home-courses__card-img img { transform: scale(1.06); }

.home-courses__card-body {
  padding: var(--space-lg);
}

.home-courses__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(26,107,92,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.home-courses__card-body h3 { margin-bottom: var(--space-sm); font-size: 1.25rem; }
.home-courses__card-body p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: var(--space-md); }

.home-courses__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   HOME ABOUT PREVIEW
   ============================================================ */
.home-about-preview {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-alt);
}

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

.home-about-preview__image-stack {
  position: relative;
}

.home-about-preview__img--main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.home-about-preview__img--secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-lg);
}

.home-about-preview__text .global-label { display: block; }
.home-about-preview__text h2 { margin-bottom: var(--space-md); }
.home-about-preview__text p { color: var(--color-text-muted); margin-bottom: var(--space-md); }

/* ============================================================
   HOME CONTACT CARDS
   ============================================================ */
.home-contact-cards {
  padding: var(--space-2xl) 0;
}

.home-contact-cards__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.home-contact-cards__header .global-label { display: block; text-align: center; }

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

.home-contact-cards__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.home-contact-cards__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,92,0.2);
}

.home-contact-cards__icon {
  width: 56px;
  height: 56px;
  background: var(--grad-hero);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto var(--space-md);
  transition: transform var(--transition-base);
}
.home-contact-cards__card:hover .home-contact-cards__icon { transform: scale(1.1) rotate(5deg); }

.home-contact-cards__card h3 { margin-bottom: var(--space-xs); font-size: 1.1rem; }
.home-contact-cards__card p { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: var(--space-sm); }

.home-contact-cards__link {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}
.home-contact-cards__link:hover { color: var(--color-accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.global-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 0;
  position: relative;
  overflow: hidden;
}

.global-footer__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,107,92,0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,137,58,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.global-footer .global-container { position: relative; z-index: 1; }

.global-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.global-footer__brand img { margin-bottom: var(--space-md); filter: brightness(1.1); }
.global-footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: var(--space-md); }
.global-footer__brand address { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.global-footer__brand address a { color: rgba(255,255,255,0.6); transition: color var(--transition-base); }
.global-footer__brand address a:hover { color: var(--color-accent-light); }

.global-footer__nav h4,
.global-footer__legal h4,
.global-footer__info h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.global-footer__nav ul,
.global-footer__legal ul,
.global-footer__info ul { list-style: none; }

.global-footer__nav li,
.global-footer__legal li,
.global-footer__info li { margin-bottom: 0.6rem; }

.global-footer__nav a,
.global-footer__legal a,
.global-footer__info a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition-base);
}
.global-footer__nav a:hover,
.global-footer__legal a:hover,
.global-footer__info a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.global-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.global-footer__bottom p { margin: 0; color: rgba(255,255,255,0.3); }

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.team-hero,
.services-hero,
.resources-hero,
.contact-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before,
.services-hero::before,
.resources-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45,140,120,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.team-hero__content,
.services-hero__content,
.resources-hero__content,
.contact-hero__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-3xl);
  position: relative;
  z-index: 1;
}

.team-hero__heading,
.services-hero__heading,
.resources-hero__heading,
.contact-hero__heading {
  color: #fff;
  margin-bottom: var(--space-md);
}

.team-hero__sub,
.services-hero__sub,
.resources-hero__sub,
.contact-hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.team-hero__wave,
.services-hero__wave,
.resources-hero__wave,
.contact-hero__wave {
  position: relative;
  z-index: 2;
}
.team-hero__wave svg,
.services-hero__wave svg,
.resources-hero__wave svg,
.contact-hero__wave svg { width: 100%; display: block; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-philosophy {
  padding: var(--space-3xl) 0;
}

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

.team-philosophy__text .global-label { display: block; }
.team-philosophy__text h2 { margin-bottom: var(--space-md); }
.team-philosophy__text p { color: var(--color-text-muted); }

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

.team-philosophy__value {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}
.team-philosophy__value:hover {
  border-color: rgba(26,107,92,0.2);
  box-shadow: var(--shadow-md);
}
.team-philosophy__value i {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
}
.team-philosophy__value strong { display: block; margin-bottom: 4px; }
.team-philosophy__value p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

.team-members {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-bg-alt);
}

.team-members__header {
  margin-bottom: var(--space-xl);
}
.team-members__header .global-label { display: block; }

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

.team-members__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-slow);
}
.team-members__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-members__photo {
  height: 280px;
  overflow: hidden;
}
.team-members__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.team-members__card:hover .team-members__photo img { transform: scale(1.05); }

.team-members__info {
  padding: var(--space-lg);
}
.team-members__info h3 { margin-bottom: 4px; }
.team-members__role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}
.team-members__info p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--space-md); }

.team-members__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-members__tags span {
  font-size: 0.72rem;
  background: rgba(26,107,92,0.08);
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.team-cta {
  padding: var(--space-2xl) 0;
}
.team-cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.team-cta__inner h2 { margin-bottom: var(--space-md); }
.team-cta__inner p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-formats {
  padding: var(--space-3xl) 0;
}
.services-formats__header { margin-bottom: var(--space-xl); }
.services-formats__header .global-label { display: block; }
.services-formats__header p { color: var(--color-text-muted); margin-top: var(--space-sm); }

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

.services-formats__item {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.services-formats__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,92,0.2);
}
.services-formats__item i {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: block;
}
.services-formats__item h3 { margin-bottom: var(--space-xs); font-size: 1.05rem; }
.services-formats__item p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

.services-grid {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-bg-alt);
}
.services-grid__header { margin-bottom: var(--space-xl); }
.services-grid__header .global-label { display: block; }

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

.services-grid__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.services-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,107,92,0.2);
}
.services-grid__card--highlight {
  border-color: rgba(201,137,58,0.3);
  background: linear-gradient(145deg, rgba(201,137,58,0.04), var(--color-surface));
}
.services-grid__card--highlight:hover { border-color: var(--color-accent); }

.services-grid__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.services-grid__level {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(26,107,92,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.services-grid__duration {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.services-grid__card h3 { margin-bottom: var(--space-sm); font-size: 1.15rem; }
.services-grid__card > p { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: var(--space-md); }

.services-grid__topics {
  list-style: none;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.services-grid__topics li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 4px 0;
  padding-left: 1.2rem;
  position: relative;
}
.services-grid__topics li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
}

.services-faq {
  padding: var(--space-3xl) 0;
}
.services-faq__header { margin-bottom: var(--space-xl); }
.services-faq__header .global-label { display: block; }

.services-faq__list {
  max-width: 800px;
}

.services-faq__item {
  border-bottom: 1px solid var(--color-border);
}
.services-faq__item summary {
  padding: var(--space-md) 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  transition: color var(--transition-base);
}
.services-faq__item summary::-webkit-details-marker { display: none; }
.services-faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.services-faq__item[open] summary::after { transform: rotate(45deg); }
.services-faq__item summary:hover { color: var(--color-primary); }
.services-faq__item p {
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-articles {
  padding: var(--space-3xl) 0;
}
.resources-articles__header { margin-bottom: var(--space-xl); }
.resources-articles__header .global-label { display: block; }

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

.resources-articles__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.resources-articles__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,92,0.2);
}

.resources-articles__icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.resources-articles__category {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.resources-articles__card h3 { margin-bottom: var(--space-sm); font-size: 1.1rem; line-height: 1.3; }
.resources-articles__card p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }

.resources-exercises {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--color-bg-alt);
}
.resources-exercises__header { margin-bottom: var(--space-xl); }
.resources-exercises__header .global-label { display: block; }
.resources-exercises__header p { color: var(--color-text-muted); margin-top: var(--space-sm); }

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

.resources-exercises__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  position: relative;
  transition: all var(--transition-slow);
}
.resources-exercises__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.resources-exercises__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,107,92,0.08);
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  line-height: 1;
}

.resources-exercises__card h3 { margin-bottom: var(--space-sm); font-size: 1.05rem; }
.resources-exercises__card p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--space-md); }

.resources-exercises__time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  background: rgba(26,107,92,0.06);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.resources-cta {
  padding: var(--space-2xl) 0;
}
.resources-cta__inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.resources-cta__inner h2 { margin-bottom: var(--space-md); }
.resources-cta__inner p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.resources-cta__actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
.resources-cta .global-btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.resources-cta .global-btn--ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-section {
  padding: var(--space-3xl) 0;
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-section__form-wrap h2 { margin-bottom: var(--space-lg); }

.contact-form-section__step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xl);
  gap: 0;
}

.contact-form-section__step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.contact-form-section__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.contact-form-section__step.active .contact-form-section__step-num {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(26,107,92,0.15);
}

.contact-form-section__step.done .contact-form-section__step-num {
  background: var(--color-secondary);
  color: #fff;
}

.contact-form-section__step-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}
.contact-form-section__step.active .contact-form-section__step-label { color: var(--color-primary); font-weight: 600; }

.contact-form-section__step-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 var(--space-sm);
  min-width: 40px;
}

.contact-form-section__panel {
  display: none;
  animation: slideInPanel 0.3s ease;
}
.contact-form-section__panel.active { display: block; }

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

.contact-form-section__field {
  margin-bottom: var(--space-md);
}

.contact-form-section__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.contact-form-section__field label span { color: var(--color-accent); }

.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-surface);
  color: var(--color-text);
  transition: all var(--transition-base);
  outline: none;
  min-height: 44px;
}
.contact-form-section__field input:focus,
.contact-form-section__field select:focus,
.contact-form-section__field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,107,92,0.1);
}

.contact-form-section__field--checkbox .contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: normal;
}
.contact-form-section__field--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: auto;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}
.contact-form-section__field--checkbox a { color: var(--color-primary); text-decoration: underline; }

.contact-form-section__nav {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-form-section__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.contact-form-section__info-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.contact-form-section__info-card:hover {
  border-color: rgba(26,107,92,0.2);
  box-shadow: var(--shadow-md);
}
.contact-form-section__info-card i {
  font-size: 1.2rem;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  background: rgba(26,107,92,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-form-section__info-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-form-section__info-card strong { font-size: 0.875rem; }
.contact-form-section__info-card a,
.contact-form-section__info-card span { font-size: 0.875rem; color: var(--color-primary); }
.contact-form-section__info-card small { font-size: 0.75rem; color: var(--color-text-muted); }


.contact-gallery {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
}
.contact-gallery__header { margin-bottom: var(--space-xl); }
.contact-gallery__header .global-label { display: block; }

.contact-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md);
  height: 300px;
}

.contact-gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.contact-gallery__item:hover img { transform: scale(1.05); }


.contact-map {
  padding: var(--space-2xl) 0;
}
.contact-map h2 { margin-bottom: var(--space-lg); }

.contact-map__iframe-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  min-height: calc(100vh - 200px);
}

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

.legal-date {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

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

.legal-content p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: var(--space-md); }
.legal-content ul li { color: var(--color-text-muted); margin-bottom: 6px; font-size: 0.9rem; }
.legal-content a { color: var(--color-primary); text-decoration: underline; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}
.legal-table th,
.legal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  color: var(--color-text);
}
.legal-table td { color: var(--color-text-muted); }
.legal-table tr:nth-child(even) td { background: rgba(238,240,235,0.4); }

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md);
}

.thanks-inner {
  text-align: center;
  max-width: 500px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  animation: pulse-check 2s ease-in-out infinite;
}

@keyframes pulse-check {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thanks-inner h1 { margin-bottom: var(--space-md); }
.thanks-inner p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
.thanks-redirect { font-size: 0.9rem; }
.thanks-redirect #countdown {
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.thanks-inner .global-btn { margin-top: var(--space-md); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.avlx-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 480px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 12px rgba(26,107,92,0.15);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  pointer-events: none;
}

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

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

.avlx-cookie__compact p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.avlx-cookie__compact p a { color: var(--color-primary); text-decoration: underline; }

.avlx-cookie__actions {
  display: flex;
  gap: var(--space-sm);
}

.avlx-cookie__btn-accept {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--grad-hero);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}
.avlx-cookie__btn-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.avlx-cookie__btn-settings {
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.avlx-cookie__btn-settings:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.avlx-cookie__expanded {
  display: none;
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.avlx-cookie.expanded .avlx-cookie__expanded { display: block; }

.avlx-cookie__expanded h4 {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.avlx-cookie__category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.avlx-cookie__category:last-of-type { border-bottom: none; }

.avlx-cookie__category-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text);
}
.avlx-cookie__category-info small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.avlx-cookie__toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.avlx-cookie__toggle input { opacity: 0; width: 0; height: 0; }
.avlx-cookie__toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
}
.avlx-cookie__toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.avlx-cookie__toggle input:checked + .avlx-cookie__toggle-slider { background: var(--color-primary); }
.avlx-cookie__toggle input:checked + .avlx-cookie__toggle-slider::before { transform: translateX(18px); }
.avlx-cookie__toggle input:disabled + .avlx-cookie__toggle-slider { opacity: 0.6; cursor: not-allowed; }

.avlx-cookie__expanded-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.avlx-cookie__btn-save {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--grad-hero);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}
.avlx-cookie__btn-save:hover { opacity: 0.9; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 0;
  }
  .home-hero__content { padding-left: var(--space-md); padding-right: var(--space-md); }
  .home-hero__subtext { margin: 0 auto var(--space-lg); }
  .home-hero__actions { justify-content: center; }
  .home-hero__image-wrap { margin: 0 var(--space-md); max-width: 600px; justify-self: center; margin-bottom: 0; }
  .home-hero__image { height: 350px; }

  .home-features__grid { grid-template-columns: repeat(2, 1fr); }
  .home-courses__grid { grid-template-columns: repeat(2, 1fr); }
  .home-about-preview__grid { grid-template-columns: 1fr; }
  .home-about-preview__image-stack { max-width: 500px; }
  .home-intro__grid { grid-template-columns: 1fr; }
  .home-counters__grid { grid-template-columns: repeat(2, 1fr); }

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

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

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

  .contact-form-section__grid { grid-template-columns: 1fr; }
  .contact-form-section__info { position: static; flex-direction: row; flex-wrap: wrap; }
  .contact-form-section__info-card { flex: 1; min-width: 200px; }

  .contact-gallery__grid { grid-template-columns: 1fr 1fr; height: auto; }
  .contact-gallery__item--large { grid-column: 1 / -1; height: 250px; }
  .contact-gallery__item { height: 180px; }

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

@media (max-width: 768px) {
  .global-nav__links { display: none; }
  .global-nav__hamburger { display: flex; }
  .global-nav__mobile { display: flex; }

  .home-hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--space-lg)); }
  .home-hero__heading { font-size: clamp(2rem, 8vw, 3rem); }
  .home-hero__image-wrap { display: none; }

  .home-features__grid { grid-template-columns: 1fr; }
  .home-courses__grid { grid-template-columns: 1fr; }
  .home-contact-cards__grid { grid-template-columns: 1fr; }
  .home-counters__grid { grid-template-columns: repeat(2, 1fr); }

  .team-members__grid { grid-template-columns: 1fr; }

  .services-formats__grid { grid-template-columns: 1fr; }
  .services-grid__list { grid-template-columns: 1fr; }

  .resources-articles__grid { grid-template-columns: 1fr; }
  .resources-exercises__grid { grid-template-columns: 1fr; }

  .contact-form-section__info { flex-direction: column; }

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

  .home-about-preview__img--secondary { display: none; }

  .home-journey__step { grid-template-columns: 56px 1fr; }
  .home-journey__step-num { width: 48px; height: 48px; font-size: 1.5rem; }
  .home-journey__connector { margin-left: 24px; }
}

@media (max-width: 480px) {
  :root { --space-xl: 2.5rem; --space-2xl: 4rem; --space-3xl: 5rem; }
  .global-container { padding: 0 var(--space-sm); }
  .home-hero__actions { flex-direction: column; align-items: center; }
  .global-btn { width: 100%; justify-content: center; }
  .home-hero__actions .global-btn { max-width: 280px; }
  .home-counters__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-section__nav { flex-direction: column; }
  .avlx-cookie { width: calc(100% - 24px); bottom: 12px; }
}