


:root {
  --color-pink: #f472b6;
  --color-pink-light: #fce7f3;
  --color-purple: #a855f7;
  --color-purple-light: #f3e8ff;
  --color-blue: #60a5fa;
  --color-blue-light: #eff6ff;
  --color-teal: #2dd4bf;
  --color-teal-light: #f0fdfa;

  --gradient-candy: linear-gradient(135deg, #f472b6 0%, #a855f7 35%, #60a5fa 70%, #2dd4bf 100%);
  --gradient-candy-soft: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 40%, #eff6ff 70%, #f0fdfa 100%);
  --gradient-candy-text: linear-gradient(90deg, #f472b6, #a855f7, #60a5fa);
  --gradient-hero-bg: linear-gradient(160deg, #fdf2f8 0%, #f5f3ff 40%, #eff6ff 70%, #f0fdfa 100%);

  --color-text-primary: #1e1b2e;
  --color-text-secondary: #4b4569;
  --color-text-muted: #7c7a94;
  --color-bg-page: #faf9fd;
  --color-bg-card: #ffffff;
  --color-bg-section-alt: #f7f5fc;
  --color-border: #e8e4f3;

  --shadow-xs: 0 1px 2px rgba(168,85,247,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(168,85,247,0.08), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(168,85,247,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(168,85,247,0.12), 0 4px 12px rgba(0,0,0,0.07);
  --shadow-xl: 0 16px 48px rgba(168,85,247,0.14), 0 8px 24px rgba(0,0,0,0.08);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

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

  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body: 'Wix Madefor Text', sans-serif;

  --nav-height: 72px;
  --transition-fast: 150ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms ease;
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-page);
  color: var(--color-text-primary);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: var(--color-purple); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-pink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text-primary);
  font-weight: 700;
}

p { color: var(--color-text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

address { font-style: normal; line-height: 1.8; color: var(--color-text-muted); }
address a { color: var(--color-text-muted); }
address a:hover { color: var(--color-purple); }


.home-hero__heading-gradient,
.about-hero__heading-gradient,
.schedule-hero__heading-gradient,
.books-hero__heading-gradient,
.contact-hero__heading-gradient {
  background: var(--gradient-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.global-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 249, 253, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition-base);
}

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

.global-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.global-header__logo img { height: 38px; width: auto; }

.global-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.global-header__tab {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.global-header__tab:hover {
  color: var(--color-purple);
  background: var(--color-purple-light);
  border-color: rgba(168,85,247,0.2);
}

.global-header__tab--active {
  color: var(--color-purple);
  background: var(--color-purple-light);
  border-color: rgba(168,85,247,0.3);
}

.global-header__border-line {
  height: 2px;
  background: var(--gradient-candy);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.global-header.is-scrolled .global-header__border-line {
  transform: scaleX(1);
}

.global-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition-fast);
}

.global-header__hamburger:hover { background: var(--color-purple-light); }

.global-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-purple);
  border-radius: 2px;
  transition: all var(--transition-base);
}


.global-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--gradient-candy);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.global-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.global-mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.global-mobile-menu__logo { filter: brightness(10); }

.global-mobile-menu__close {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.global-mobile-menu__close:hover { background: rgba(255,255,255,0.3); }

.global-mobile-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  flex: 1;
  align-content: center;
}

.global-mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background var(--transition-base);
  backdrop-filter: blur(8px);
}

.global-mobile-menu__item i { font-size: 1.5rem; }
.global-mobile-menu__item:hover { background: rgba(255,255,255,0.25); color: white; }


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.925rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 50px;
}

.global-cta--primary {
  background: var(--gradient-candy);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(168,85,247,0);
}

.global-cta--primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(168,85,247,0.3);
}

.global-cta--ghost {
  background: transparent;
  color: var(--color-purple);
  border-color: var(--color-purple);
}

.global-cta--ghost:hover {
  background: var(--color-purple-light);
  color: var(--color-purple);
  transform: translateY(-2px);
}


.home-hero {
  background: var(--gradient-hero-bg);
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: 0;
  overflow: hidden;
}

.home-hero__content-top {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
  padding-bottom: var(--space-xl);
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--color-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.home-hero__heading {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.home-hero__image-strip {
  width: 100%;
  height: clamp(220px, 35vw, 480px);
  position: relative;
  overflow: hidden;
}

.home-hero__strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244,114,182,0.15), rgba(168,85,247,0.15), rgba(96,165,250,0.15));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
}


.home-hero__animated-accent {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__orbit {
  position: absolute;
  inset: 0;
  animation: orbitSpin 10s linear infinite;
}

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

.home-hero__orbit-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  animation: orbitSpin 10s linear infinite reverse;
}

.home-hero__orbit-dot--1 { top: 0; left: 50%; transform: translateX(-50%); color: var(--color-pink); }
.home-hero__orbit-dot--2 { right: 0; top: 50%; transform: translateY(-50%); color: var(--color-purple); }
.home-hero__orbit-dot--3 { bottom: 0; left: 50%; transform: translateX(-50%); color: var(--color-blue); }
.home-hero__orbit-dot--4 { left: 0; top: 50%; transform: translateY(-50%); color: var(--color-teal); }

.home-hero__orbit-center {
  width: 60px;
  height: 60px;
  background: var(--gradient-candy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  position: relative;
}

.home-hero__content-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
  text-align: center;
}

.home-hero__description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

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


.home-intro {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.home-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-intro__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: var(--space-md);
}

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

.home-intro__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.home-intro__lead {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}


.home-models {
  background: var(--gradient-candy-soft);
  padding: var(--space-2xl) 0;
}

.home-models__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.home-models__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.home-models__sub { color: var(--color-text-muted); font-size: 1.05rem; }

.home-models__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-sm);
  align-items: stretch;
}

.home-models__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-models__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-candy);
}

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

.home-models__card--featured {
  background: linear-gradient(160deg, #fdf2f8, #f5f3ff);
  border-color: rgba(168,85,247,0.2);
}

.home-models__card-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-candy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.home-models__card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.home-models__card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.home-models__card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}


.home-how-it-works {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.home-how-it-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.home-how-it-works__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.home-how-it-works__sub { color: var(--color-text-muted); }

.home-how-it-works__steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.home-how-it-works__step {
  flex: 1;
  background: var(--gradient-candy-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-how-it-works__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.home-how-it-works__step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.home-how-it-works__step-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-purple);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.home-how-it-works__step h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.home-how-it-works__step p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.home-how-it-works__step-connector {
  color: var(--color-purple);
  font-size: 1.5rem;
  opacity: 0.4;
  padding-top: 80px;
  flex-shrink: 0;
}


.home-topics {
  background: var(--color-bg-section-alt);
  padding: var(--space-2xl) 0;
}

.home-topics__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-topics__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.home-topics__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.home-topics__left p { margin-bottom: var(--space-lg); }

.home-topics__item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.home-topics__item:last-child { border-bottom: none; }

.home-topics__item-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-candy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.home-topics__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-text-primary);
}

.home-topics__item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}


.home-swiper-section {
  background: var(--color-text-primary);
  padding: var(--space-2xl) 0;
}

.home-swiper-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-swiper-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.home-swiper-section__header h2 {
  color: white;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-xs);
}

.home-swiper-section__header p { color: rgba(255,255,255,0.65); }

.home-swiper { position: relative; }

.home-swiper__slide {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.home-swiper__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.home-swiper__slide-content {
  padding: var(--space-md);
  color: white;
}

.home-swiper__slide-content i {
  font-size: 1.5rem;
  background: var(--gradient-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-xs);
}

.home-swiper__slide-content h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.home-swiper__slide-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

.home-swiper__pagination { margin-top: var(--space-md) !important; }

.swiper-pagination-bullet { background: rgba(255,255,255,0.4) !important; }
.swiper-pagination-bullet-active { background: var(--color-pink) !important; }

.home-swiper__prev,
.home-swiper__next {
  color: white !important;
}

.home-swiper__prev::after,
.home-swiper__next::after {
  font-size: 1.1rem !important;
}


.home-disclaimer {
  background: linear-gradient(135deg, rgba(244,114,182,0.08), rgba(168,85,247,0.08));
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(168,85,247,0.15);
  border-bottom: 1px solid rgba(168,85,247,0.15);
}

.home-disclaimer__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.home-disclaimer__icon {
  font-size: 1.5rem;
  color: var(--color-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.home-disclaimer__text h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-purple);
}

.home-disclaimer__text p { font-size: 0.9rem; margin: 0; }


.home-service-areas {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.home-service-areas__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.home-service-areas__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.home-service-areas__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.home-service-areas__sub { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

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

.home-service-areas__area {
  background: var(--gradient-candy-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-service-areas__area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.home-service-areas__area-icon {
  font-size: 1.5rem;
  color: var(--color-pink);
  margin-bottom: var(--space-sm);
}

.home-service-areas__area h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.home-service-areas__area p { font-size: 0.875rem; color: var(--color-text-muted); }


.about-hero {
  background: var(--gradient-hero-bg);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--color-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.about-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.about-hero__sub { font-size: 1.1rem; color: var(--color-text-secondary); line-height: 1.7; }

.about-story {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.about-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.about-story__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink);
  margin-bottom: var(--space-sm);
}

.about-story__text-col h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.about-story__text-col p { font-size: 0.975rem; line-height: 1.75; margin-bottom: var(--space-sm); }

.about-timeline {
  background: var(--gradient-candy-soft);
  padding: var(--space-2xl) 0;
}

.about-timeline__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-timeline__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.about-timeline__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.about-timeline__list { display: flex; flex-direction: column; gap: 0; }

.about-timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-left: 2px solid var(--color-border);
  margin-left: 40px;
  padding-left: var(--space-md);
  position: relative;
}

.about-timeline__item--right {
  border-left-color: transparent;
  border-right: 2px solid var(--color-border);
  margin-left: 0;
  padding-left: 0;
  margin-right: 40px;
  padding-right: var(--space-md);
  direction: rtl;
}

.about-timeline__item--right .about-timeline__content { direction: ltr; }

.about-timeline__marker {
  width: 56px;
  height: 56px;
  background: var(--gradient-candy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.about-timeline__year {
  font-family: var(--font-display);
  font-weight: 800;
  color: white;
  font-size: 1.1rem;
}

.about-timeline__content h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  padding-top: 14px;
}

.about-timeline__content p { font-size: 0.9rem; color: var(--color-text-secondary); }

.about-values {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.about-values__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-values__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.about-values__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

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

.about-values__card {
  background: var(--gradient-candy-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-values__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-values__card-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-candy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.about-values__card h3 { font-size: 1.05rem; margin-bottom: var(--space-xs); }
.about-values__card p { font-size: 0.875rem; color: var(--color-text-secondary); }

.about-team-photo {
  background: var(--color-text-primary);
  padding: var(--space-xl) 0;
}

.about-team-photo__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-team-photo__image-wrap { position: relative; }

.about-team-photo__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-team-photo__caption {
  margin-top: var(--space-md);
  text-align: center;
}

.about-team-photo__caption p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

.about-cta-section {
  background: var(--gradient-candy-soft);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.about-cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.about-cta-section__inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-sm);
}

.about-cta-section__inner p { margin-bottom: var(--space-lg); }

.about-cta-section__btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.schedule-hero {
  background: var(--gradient-hero-bg);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
}

.schedule-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.schedule-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--color-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.schedule-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.schedule-hero__sub { font-size: 1.05rem; color: var(--color-text-secondary); }

.schedule-overview {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.schedule-overview__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.schedule-overview__intro {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.schedule-overview__intro h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: var(--space-sm);
}

.schedule-overview__intro p { font-size: 0.975rem; line-height: 1.75; }

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

.schedule-block {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.schedule-block:hover { box-shadow: var(--shadow-md); }

.schedule-block--foundation { border-left: 4px solid var(--color-pink); }
.schedule-block:nth-child(2) { border-left: 4px solid var(--color-purple); }
.schedule-block:nth-child(3) { border-left: 4px solid var(--color-blue); }
.schedule-block:nth-child(4) { border-left: 4px solid var(--color-teal); }
.schedule-block:nth-child(5) { border-left: 4px solid var(--color-pink); }

.schedule-block__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--gradient-candy-soft);
  border-bottom: 1px solid var(--color-border);
}

.schedule-block__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 60px;
}

.schedule-block__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-sm);
}

.schedule-block__title-wrap h3 {
  font-size: 1.1rem;
}

.schedule-block__duration {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

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

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

.schedule-block__module-icon {
  color: var(--color-purple);
  font-size: 0.6rem;
  margin-top: 8px;
  flex-shrink: 0;
}

.schedule-block__module strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

.schedule-block__module p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.schedule-image-section {
  background: var(--gradient-candy-soft);
  padding: var(--space-2xl) 0;
}

.schedule-image-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.schedule-image-section__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.schedule-image-section__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-md);
}

.schedule-image-section__text p { font-size: 0.975rem; line-height: 1.75; }

.schedule-cta {
  background: var(--color-text-primary);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.schedule-cta__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.schedule-cta__inner h2 {
  color: white;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-sm);
}

.schedule-cta__inner p { color: rgba(255,255,255,0.65); margin-bottom: var(--space-lg); }


.books-hero {
  background: var(--gradient-hero-bg);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: 0;
  overflow: hidden;
}

.books-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  text-align: center;
}

.books-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--color-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.books-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.books-hero__sub { font-size: 1.05rem; color: var(--color-text-secondary); }

.books-hero__image-strip {
  width: 100%;
  height: clamp(180px, 25vw, 360px);
  overflow: hidden;
}

.books-hero__strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.books-intro {
  background: var(--color-bg-card);
  padding: var(--space-xl) 0;
}

.books-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.books-intro__note {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(96,165,250,0.1), rgba(45,212,191,0.1));
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.books-intro__note i { color: var(--color-blue); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.books-intro__note p { font-size: 0.9rem; color: var(--color-text-secondary); margin: 0; }

.books-grid-section {
  background: var(--color-bg-section-alt);
  padding: var(--space-2xl) 0;
}

.books-grid-section--alt { background: var(--color-bg-card); }

.books-grid-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.books-grid-section__header {
  margin-bottom: var(--space-xl);
}

.books-grid-section__header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-xs);
}

.books-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-sm);
}

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

.books-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.books-card:hover::after { transform: scaleX(1); }

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

.books-card--featured {
  background: linear-gradient(160deg, #fdf2f8, #f5f3ff);
  border-color: rgba(168,85,247,0.2);
}

.books-card__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-purple);
  background: var(--color-purple-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.books-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.35;
}

.books-card__author {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: var(--space-sm);
}

.books-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.books-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }

.books-card__tags span {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.books-reading-note {
  background: var(--gradient-candy-soft);
  padding: var(--space-2xl) 0;
}

.books-reading-note__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.books-reading-note__icon {
  font-size: 2.5rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.books-reading-note__content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.books-reading-note__content p { font-size: 0.975rem; line-height: 1.75; }


.contact-hero {
  background: var(--gradient-hero-bg);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  text-align: center;
}

.contact-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--color-purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.contact-hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.contact-hero__sub { font-size: 1.05rem; color: var(--color-text-secondary); }

.contact-form-section {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.contact-form-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
}

.contact-form-section__form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

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

.contact-form-section__step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.contact-form-section__step-dot--active {
  background: var(--gradient-candy);
  color: white;
  box-shadow: var(--shadow-sm);
}

.contact-form-section__step-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.contact-form-section__step h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.contact-form-section__step > p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}

.contact-form-section__step--hidden { display: none; }

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

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

.contact-form-section__field input[type="text"],
.contact-form-section__field input[type="email"],
.contact-form-section__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-text-primary);
  background: var(--color-bg-page);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 48px;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  outline: none;
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
  background: white;
}

.contact-form-section__field:has(:focus) label { color: var(--color-purple); }

.contact-form-section__field textarea { resize: vertical; }

.contact-form-section__field--checkbox { margin-top: var(--space-sm); }

.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-form-section__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-purple);
  cursor: pointer;
}

.contact-form-section__next-btn { margin-top: var(--space-md); }

.contact-form-section__form-btns {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.contact-form-section__info-card {
  background: var(--gradient-candy-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  height: fit-content;
}

.contact-form-section__info-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}

.contact-form-section__info-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

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

.contact-form-section__info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-candy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-form-section__info-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.contact-form-section__info-item p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.contact-form-section__info-item a {
  color: var(--color-purple);
  font-weight: 600;
}

.contact-consultation {
  background: var(--color-bg-section-alt);
  padding: var(--space-2xl) 0;
}

.contact-consultation__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.contact-consultation__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-sm);
}

.contact-consultation__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-md);
}

.contact-consultation__text p { font-size: 0.975rem; line-height: 1.75; }

.contact-consultation__step {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

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

.contact-consultation__step-num {
  width: 40px;
  height: 40px;
  background: var(--gradient-candy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-consultation__step strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--color-text-primary);
}

.contact-consultation__step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-map-section {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.contact-map-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-map-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact-map-section__header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: var(--space-xs);
}

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


.thanks-main { min-height: 60vh; display: flex; align-items: center; }

.thanks-section {
  background: var(--gradient-hero-bg);
  padding: var(--space-2xl) 0;
  width: 100%;
}

.thanks-section__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.thanks-section__quote-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.thanks-section__quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-candy);
}

.thanks-section__quote-icon {
  font-size: 2rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.thanks-section__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.thanks-section__quote-source {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}

.thanks-section__message { text-align: center; }

.thanks-section__icon {
  font-size: 3rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.thanks-section__message h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.thanks-section__message p { margin-bottom: var(--space-lg); }


.legal-hero {
  background: var(--gradient-candy-soft);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-hero__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.legal-hero__meta { color: var(--color-text-muted); font-size: 0.9rem; }

.legal-two-col {
  background: var(--color-bg-card);
  padding: var(--space-2xl) 0;
}

.legal-two-col__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.legal-two-col__sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  background: var(--gradient-candy-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.legal-two-col__sidebar h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.legal-two-col__sidebar ol,
.legal-two-col__sidebar ul {
  padding-left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-two-col__sidebar-list--plain { padding-left: 0; list-style: none; }

.legal-two-col__sidebar li { font-size: 0.85rem; }

.legal-two-col__sidebar a {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.legal-two-col__sidebar a:hover { color: var(--color-purple); }

.legal-two-col__content section {
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.legal-two-col__content section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-two-col__content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-top: 4px;
  color: var(--color-text-primary);
}

.legal-two-col__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-two-col__content strong { color: var(--color-text-primary); }


.global-footer { background: var(--color-text-primary); }

.global-footer__quote-section {
  background: linear-gradient(135deg, rgba(244,114,182,0.15), rgba(168,85,247,0.15), rgba(96,165,250,0.15));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-2xl) 0;
}

.global-footer__quote-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.global-footer__quote-icon {
  font-size: 2rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.global-footer__quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.global-footer__quote-attr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.global-footer__main {
  padding: var(--space-2xl) 0 0;
}

.global-footer__main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
}

.global-footer__brand img { margin-bottom: var(--space-md); filter: brightness(10); }

.global-footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.global-footer__brand address {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 2;
}

.global-footer__brand address i { margin-right: 8px; color: var(--color-pink); }
.global-footer__brand address a { color: rgba(255,255,255,0.5); }
.global-footer__brand address a:hover { color: white; }

.global-footer__links h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.global-footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.global-footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.global-footer__links a:hover { color: white; }

.global-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) var(--space-md);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.global-footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin: 0;
}


.pd-cookie-card {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(168,85,247,0.15);
  padding: var(--space-md) var(--space-lg);
  max-width: 480px;
  width: calc(100% - 32px);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid transparent;
  border-image: var(--gradient-candy) 1;
}

.pd-cookie-card__compact {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.pd-cookie-card__icon {
  font-size: 1.4rem;
  background: var(--gradient-candy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.pd-cookie-card__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  min-width: 200px;
}

.pd-cookie-card__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pd-cookie-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  min-height: 36px;
}

.pd-cookie-btn--accept {
  background: var(--gradient-candy);
  color: white;
  box-shadow: var(--shadow-sm);
}

.pd-cookie-btn--accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.pd-cookie-btn--settings {
  background: var(--color-purple-light);
  color: var(--color-purple);
}

.pd-cookie-btn--settings:hover { background: rgba(168,85,247,0.15); }

.pd-cookie-card__expanded { display: none; }

.pd-cookie-card.is-expanded .pd-cookie-card__compact { display: none; }
.pd-cookie-card.is-expanded .pd-cookie-card__expanded { display: block; }

.pd-cookie-expanded__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pd-cookie-expanded__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.pd-cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.pd-cookie-category:last-of-type { border-bottom: none; }

.pd-cookie-category__info { flex: 1; }

.pd-cookie-category__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.pd-cookie-category__desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.pd-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.pd-cookie-toggle input { opacity: 0; width: 0; height: 0; }

.pd-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-base);
}

.pd-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.pd-cookie-toggle input:checked + .pd-cookie-toggle-slider { background: var(--gradient-candy); }
.pd-cookie-toggle input:checked + .pd-cookie-toggle-slider::before { transform: translateX(20px); }
.pd-cookie-toggle input:disabled + .pd-cookie-toggle-slider { cursor: not-allowed; opacity: 0.7; }

.pd-cookie-expanded__actions {
  display: flex;
  gap: 8px;
  margin-top: var(--space-md);
  flex-wrap: wrap;
}


@media (max-width: 1100px) {
  .home-models__grid { grid-template-columns: 1fr 1fr; }
  .home-service-areas__grid { grid-template-columns: 1fr 1fr; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
  .books-grid { grid-template-columns: 1fr 1fr; }
  .books-grid--three { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .global-header__nav { display: none; }
  .global-header__hamburger { display: flex; }

  .home-intro__columns { grid-template-columns: 1fr; gap: var(--space-md); }
  .home-how-it-works__steps { flex-direction: column; }
  .home-how-it-works__step-connector { display: none; }
  .home-topics__inner { grid-template-columns: 1fr; }
  .about-story__inner { grid-template-columns: 1fr; }
  .about-story__img { height: 280px; }
  .schedule-image-section__inner { grid-template-columns: 1fr; }
  .contact-form-section__inner { grid-template-columns: 1fr; }
  .contact-consultation__inner { grid-template-columns: 1fr; }
  .legal-two-col__inner { grid-template-columns: 1fr; }
  .legal-two-col__sidebar { position: static; }
  .global-footer__main-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
  }

  .home-models__grid { grid-template-columns: 1fr; }
  .home-service-areas__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .books-grid--three { grid-template-columns: 1fr; }
  .about-timeline__item { grid-template-columns: 60px 1fr; margin-left: 0; }
  .about-timeline__item--right { border-right: none; border-left: 2px solid var(--color-border); margin-right: 0; padding-right: 0; padding-left: var(--space-md); direction: ltr; }
  .global-footer__main-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contact-form-section__form-btns { flex-direction: column; }
  .home-hero__animated-accent { display: none; }
}

@media (max-width: 480px) {
  .global-header__inner { padding: 0 var(--space-sm); }
  .home-hero__ctas { flex-direction: column; align-items: center; }
  .about-cta-section__btns { flex-direction: column; align-items: center; }
  .home-hero__content-top,
  .home-hero__content-bottom { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .pd-cookie-card__compact { flex-direction: column; text-align: center; }
}


.contact-form-section__field:has(input:invalid:not(:placeholder-shown)) label { color: #e11d48; }
.contact-form-section__field:has(input:valid) label { color: var(--color-teal); }

.home-models__card:has(.home-models__card--featured) { background: linear-gradient(160deg, #fdf2f8, #f5f3ff); }

.global-footer__main:has(.global-footer__brand) { background: var(--color-text-primary); }

.schedule-block:has(.schedule-block__module:hover) { box-shadow: var(--shadow-md); }

.books-card:has(.books-card--featured) { border-color: rgba(168,85,247,0.2); }


:focus-visible {
  outline: 3px solid var(--color-purple);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

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