@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=DM+Sans:wght@400;500;600&display=swap');


:root {
  --color-bg: #f7f6f2;
  --color-bg-alt: #f0ede5;
  --color-surface: #ffffff;
  --color-surface-raised: #fdfcf9;
  --color-dark: #1a1a2e;
  --color-dark-mid: #2d2d4e;
  --color-text: #2c2c3e;
  --color-text-muted: #6b6b85;
  --color-text-light: #9898b0;
  --color-primary: #4a3fa0;
  --color-primary-dark: #362e7a;
  --color-primary-light: #6b5fc9;
  --color-accent: #e8703a;
  --color-accent-light: #f09060;
  --color-accent-warm: #f5c842;
  --color-neutral: #e8e6f0;
  --color-border: #e2e0ec;

  --shadow-xs: 0 1px 3px rgba(74,63,160,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(74,63,160,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(74,63,160,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(74,63,160,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(74,63,160,0.14), 0 8px 20px rgba(0,0,0,0.08);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --gap-bento: 14px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --nav-height: 64px;
  --max-width: 1200px;
  --content-width: 680px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding-top: var(--nav-height); }

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-light); }

h1, h2, h3, h4, h5 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
  color: var(--color-dark);
}

p { margin-bottom: 0; }

ul { list-style: none; }

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


.SectionHeading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}
.SectionHeading--light { color: #ffffff; }

.SectionSub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 560px;
}


.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.SiteHeader.is-scrolled {
  box-shadow: var(--shadow-md);
}

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

.SiteHeader-logo { display: flex; align-items: center; }
.SiteHeader-logo img { height: 32px; width: auto; }

.SiteHeader-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.SiteHeader-burger:hover { background: var(--color-neutral); }

.SiteHeader-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}


.MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 60%, var(--color-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.MobileMenu.is-open {
  opacity: 1;
  pointer-events: all;
}

.MobileMenu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
}

.MobileMenu-close:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.MobileMenu-link {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-base), transform var(--transition-base);
  display: block;
  padding: var(--space-xs) var(--space-md);
}

.MobileMenu-link:hover {
  color: #ffffff;
  transform: translateX(6px);
}


.Btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.Btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(74,63,160,0);
}

.Btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(74,63,160,0.12);
  transform: translateY(-1px);
}

.Btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.Btn--ghost:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.Btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.Btn--outline:hover {
  border-color: var(--color-primary);
  background: rgba(74,63,160,0.05);
  color: var(--color-primary);
}

.Btn--send { gap: 10px; }


.PageHero {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.PageHero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap-bento);
}

.PageHero-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.PageHero-cell--main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.PageHero-cell--image {
  grid-column: 2;
  grid-row: 1;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.PageHero-cell--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.PageHero-cell--stat {
  grid-column: 2;
  grid-row: 2;
  background: var(--color-dark);
  color: #ffffff;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--space-xs);
  box-shadow: var(--shadow-md);
}

.PageHero-cell--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.PageHero-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-xs);
}

.PageHero-statLabel {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.PageHero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(74,63,160,0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.PageHero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.PageHero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.PageHero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.BentoSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.BentoSection-header {
  margin-bottom: var(--space-lg);
}

.BentoGrid--features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap-bento);
}

.BentoCell {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.BentoCell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.BentoCell--wide {
  grid-column: span 2;
}

.BentoCell--tall {
  grid-row: span 2;
}

.BentoCell--square {
  grid-column: span 1;
}

.BentoCell--dark {
  background: var(--color-dark);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.BentoCell--dark .BentoCell-title { color: #ffffff; }
.BentoCell--dark .BentoCell-text { color: rgba(255,255,255,0.75); }
.BentoCell--dark .BentoCell-icon { color: var(--color-accent-light); }

.BentoCell--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.BentoCell--accent .BentoCell-title { color: #ffffff; }
.BentoCell--accent .BentoCell-text { color: rgba(255,255,255,0.8); }
.BentoCell--accent .BentoCell-icon { color: rgba(255,255,255,0.9); }

.BentoCell--warm {
  background: linear-gradient(135deg, #fff8ee 0%, #ffecd5 100%);
  border: 1px solid #f5d9b0;
  box-shadow: var(--shadow-sm);
}

.BentoCell--warm .BentoCell-icon { color: var(--color-accent); }

.BentoCell--neutral {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.BentoCell--neutral .BentoCell-icon { color: var(--color-primary); }

.BentoCell--light {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.BentoCell--light .BentoCell-overlay {
  padding: var(--space-md);
}

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

.BentoCell--tall .BentoCell-img {
  height: 55%;
}

.BentoCell-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.BentoCell-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.BentoCell-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.BentoCell-content {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.BentoCell-content .BentoCell-icon {
  flex-shrink: 0;
  margin-bottom: 0;
  margin-top: 4px;
}


.CoursesSection {
  background: var(--color-dark);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.CoursesSection-header {
  max-width: var(--max-width);
  margin: 0 auto var(--space-lg);
}

.CoursesSection-header .SectionHeading { color: #ffffff; }
.CoursesSection-header .SectionSub { color: rgba(255,255,255,0.65); }

.CoursesSwiper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 56px !important;
}

.CourseCard {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.CourseCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.CourseCard-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-primary);
  color: #ffffff;
  z-index: 2;
}

.CourseCard-badge--mid { background: var(--color-accent); }
.CourseCard-badge--pro { background: var(--color-dark); }
.CourseCard-badge--special { background: #2e7d52; }

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

.swiper-slide { position: relative; }

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

.CourseCard-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
}

.CourseCard-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.CourseCard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.CourseCard-list li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}

.CourseCard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--color-accent) !important;
  background: rgba(255,255,255,0.1);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: background var(--transition-base);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255,255,255,0.2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}


.ApproachSection {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-dark) 100%);
  padding: var(--space-2xl) var(--space-md);
}

.ApproachSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.ApproachSection-text .SectionHeading { color: #ffffff; }

.ApproachSection-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

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


.TemplatesSection {
  padding: var(--space-2xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.TemplatesSection-header {
  margin-bottom: var(--space-lg);
}

.TemplatesGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-bento);
  margin-bottom: var(--space-lg);
}

.TemplateCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.TemplateCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.TemplateCard--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(74,63,160,0.06) 0%, rgba(74,63,160,0.02) 100%);
  border-color: rgba(74,63,160,0.2);
}

.TemplateCard--featured:hover {
  border-color: var(--color-primary);
}

.TemplateCard-icon {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.TemplateCard--featured .TemplateCard-icon { font-size: 2rem; }

.TemplateCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.TemplateCard-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.TemplateCard-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(74,63,160,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-top: auto;
}

.TemplatesSection-cta { text-align: center; }


.ContactCards {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) var(--space-md);
}

.ContactCards-header {
  max-width: var(--max-width);
  margin: 0 auto var(--space-lg);
}

.ContactCards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-bento);
}

.ContactCard {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.ContactCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ContactCard-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  box-shadow: var(--shadow-sm);
}

.ContactCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.ContactCard-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

a.ContactCard-link:hover { color: var(--color-primary-light); }

.ContactCard-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


.InnerHero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.InnerHero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.InnerHero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: rgba(232,112,58,0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.InnerHero-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.InnerHero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
}


.ValuesSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.ValuesSection-inner { max-width: var(--max-width); margin: 0 auto; }

.ValuesBento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap-bento);
}

.ValueCell {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ValueCell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.ValueCell--hero {
  grid-column: span 2;
  position: relative;
  min-height: 340px;
  box-shadow: var(--shadow-md);
}

.ValueCell--hero .ValueCell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.ValueCell--hero .ValueCell-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.6) 60%, transparent 100%);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.ValueCell--hero .ValueCell-heading {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.ValueCell--hero .ValueCell-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

.ValueCell--compact {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.ValueCell--dark {
  background: var(--color-dark);
  box-shadow: var(--shadow-sm);
}

.ValueCell--dark .ValueCell-title { color: #ffffff; }
.ValueCell--dark .ValueCell-body { color: rgba(255,255,255,0.75); }
.ValueCell--dark .ValueCell-icon { color: var(--color-accent-light); }

.ValueCell--accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: var(--shadow-sm);
}

.ValueCell--accent .ValueCell-title { color: #ffffff; }
.ValueCell--accent .ValueCell-body { color: rgba(255,255,255,0.8); }
.ValueCell--accent .ValueCell-icon { color: rgba(255,255,255,0.9); }

.ValueCell--wide {
  grid-column: span 2;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.ValueCell--warm {
  background: linear-gradient(135deg, #fff8ee 0%, #ffecd5 100%);
  border: 1px solid #f5d9b0;
  box-shadow: var(--shadow-sm);
}

.ValueCell--warm .ValueCell-icon { color: var(--color-accent); }

.ValueCell--neutral {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.ValueCell--neutral .ValueCell-icon { color: var(--color-primary); }

.ValueCell--light {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.ValueCell--light .ValueCell-icon { color: var(--color-primary-light); }

.ValueCell-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 4px;
}

.ValueCell-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
}

.ValueCell-body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.PhilosophySection {
  background: var(--color-dark);
  padding: var(--space-2xl) var(--space-md);
}

.PhilosophySection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.PhilosophySection .SectionHeading { color: #ffffff; margin-bottom: var(--space-xl); }

.PhilosophyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl) var(--space-lg);
}

.PhilosophyItem {
  border-left: 3px solid var(--color-primary-light);
  padding-left: var(--space-md);
}

.PhilosophyItem-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.PhilosophyItem-title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.PhilosophyItem-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}


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

.ServicesToc {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

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

.ServicesToc-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ServicesToc-link {
  display: block;
  padding: 8px 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-radius: var(--radius-xs);
  transition: all var(--transition-base);
  border-left: 2px solid transparent;
}

.ServicesToc-link:hover {
  color: var(--color-primary);
  background: rgba(74,63,160,0.05);
}

.ServicesToc-link.is-active {
  color: var(--color-primary);
  background: rgba(74,63,160,0.08);
  border-left-color: var(--color-primary);
  font-weight: 600;
}

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

.ServiceBlock {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--nav-height) + var(--space-md));
}

.ServiceBlock-header {
  background: linear-gradient(135deg, rgba(74,63,160,0.05) 0%, rgba(74,63,160,0.02) 100%);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.ServiceBlock-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #ffffff;
  align-self: flex-start;
}

.ServiceBlock-badge--mid { background: var(--color-accent); }
.ServiceBlock-badge--pro { background: var(--color-dark); }
.ServiceBlock-badge--special { background: #2e7d52; }
.ServiceBlock-badge--info { background: var(--color-primary-light); }

.ServiceBlock-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-dark);
}

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

.ServiceBlock-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.ServiceBlock-modulesTitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

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

.ModuleItem {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.ModuleItem-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: var(--shadow-xs);
}

.ModuleItem strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

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

.FormatGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-bento);
  margin-top: var(--space-sm);
}

.FormatCard {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.FormatCard:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.FormatCard-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.FormatCard-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.FormatCard p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.InstructionsSection {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--content-width);
  margin: 0 auto;
}

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

.InstructionBlock {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.InstructionBlock-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(74,63,160,0.05) 0%, rgba(74,63,160,0.02) 100%);
  border-bottom: 1px solid var(--color-border);
}

.InstructionBlock-iconWrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.InstructionBlock-iconWrap--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c45a28 100%);
}

.InstructionBlock-iconWrap--warm {
  background: linear-gradient(135deg, var(--color-accent-warm) 0%, #d4a800 100%);
}

.InstructionBlock-iconWrap--dark {
  background: linear-gradient(135deg, var(--color-dark-mid) 0%, var(--color-dark) 100%);
}

.InstructionBlock-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-dark);
  margin-bottom: 4px;
}

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

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

.InstructionBlock-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.InstructionBlock-note {
  background: rgba(74,63,160,0.06);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 0.875rem !important;
  color: var(--color-text) !important;
}

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

.StepItem {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.StepItem-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: var(--shadow-xs);
}

.StepItem-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.StepItem-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.MatrixGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-bento);
}

.MatrixCell {
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  border: 1px solid;
}

.MatrixCell h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.MatrixCell p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.MatrixCell--q1 {
  background: rgba(232,112,58,0.08);
  border-color: rgba(232,112,58,0.25);
}

.MatrixCell--q1 h4 { color: #b84a1a; }
.MatrixCell--q1 p { color: var(--color-text-muted); }

.MatrixCell--q2 {
  background: rgba(74,63,160,0.08);
  border-color: rgba(74,63,160,0.2);
}

.MatrixCell--q2 h4 { color: var(--color-primary-dark); }
.MatrixCell--q2 p { color: var(--color-text-muted); }

.MatrixCell--q3 {
  background: rgba(245,200,66,0.12);
  border-color: rgba(212,168,0,0.25);
}

.MatrixCell--q3 h4 { color: #7a6200; }
.MatrixCell--q3 p { color: var(--color-text-muted); }

.MatrixCell--q4 {
  background: var(--color-bg-alt);
  border-color: var(--color-border);
}

.MatrixCell--q4 h4 { color: var(--color-text-muted); }
.MatrixCell--q4 p { color: var(--color-text-light); }

.TrackerTable {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.85rem;
}

.TrackerTable-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.8rem;
}

.TrackerTable-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.TrackerTable-row--alt {
  background: rgba(74,63,160,0.03);
}


.ContactPage {
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.ContactPage-formTitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.ContactPage-formSub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}


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

.ChatBubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.ChatBubble--company {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-bottom-left-radius: 4px;
  color: var(--color-text);
  align-self: flex-start;
}

.ChatBubble--user {
  background: rgba(74,63,160,0.06);
  border: 1px solid rgba(74,63,160,0.15);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  width: 85%;
  padding: 6px;
}

.ChatBubble--user:has(:focus) {
  border-color: var(--color-primary);
  background: rgba(74,63,160,0.08);
}

.ChatInput {
  width: 100%;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}

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

.ChatInput--textarea {
  resize: vertical;
  min-height: 90px;
}

.ChatPrivacy {
  align-self: flex-end;
  max-width: 85%;
}

.ChatPrivacy-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.ChatPrivacy-check {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.ChatPrivacy-label a { color: var(--color-primary); }

.ChatForm-actions {
  align-self: flex-end;
  margin-top: var(--space-xs);
}


.ContactPage-infoTitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.ContactInfoList {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.ContactInfoItem {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.ContactInfoItem-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  box-shadow: var(--shadow-xs);
}

.ContactInfoItem strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.ContactInfoItem a,
.ContactInfoItem span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.ContactInfoItem a {
  color: var(--color-primary);
  font-weight: 600;
}

.ContactInfoItem a:hover { color: var(--color-primary-light); }

.ContactMap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}


.NewsletterSection {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-xl) var(--space-md);
}

.NewsletterSection-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.NewsletterSection-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.NewsletterSection-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.NewsletterForm-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.NewsletterForm-input {
  flex: 1;
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  color: #ffffff;
  outline: none;
  transition: all var(--transition-base);
  min-height: 44px;
}

.NewsletterForm-input::placeholder { color: rgba(255,255,255,0.6); }

.NewsletterForm-input:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}

.NewsletterForm .Btn--primary {
  background: #ffffff;
  color: var(--color-primary);
  flex-shrink: 0;
}

.NewsletterForm .Btn--primary:hover {
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

.NewsletterForm-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.NewsletterForm-note a { color: rgba(255,255,255,0.85); }


.LegalPage {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.LegalPage-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.LegalPage-meta {
  margin-bottom: var(--space-md);
}

.LegalPage-updated {
  font-size: 0.8rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.LegalPage-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
}

.LegalPage-intro {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

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

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

.LegalSection-title {
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.LegalSection-num {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: var(--space-md);
}

.LegalSection p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

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

.LegalList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: var(--space-sm) 0;
}

.LegalList li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding-left: var(--space-md);
  position: relative;
}

.LegalList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.LegalSection a { color: var(--color-primary); font-weight: 600; }


.CookieTable {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.85rem;
  margin: var(--space-md) 0;
}

.CookieTable-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 2fr;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.8rem;
}

.CookieTable-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 2fr;
  gap: var(--space-sm);
  padding: 10px var(--space-md);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  align-items: center;
}

.CookieTable-row--alt { background: rgba(74,63,160,0.03); }

.CookieTable-row code {
  font-size: 0.8rem;
  background: var(--color-bg-alt);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-primary);
  font-family: monospace;
}


.ThanksPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 200px);
  padding: var(--space-xl) var(--space-md);
}

.ThanksPage-inner {
  width: 100%;
  max-width: 480px;
}

.ThanksCard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.ThanksCard-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.ThanksCard-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.ThanksCard-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.ThanksCard-countdown {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.ThanksCard-countdown span {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.ThanksCard-btn { margin: 0 auto; }


.SiteFooter {
  background: var(--color-dark);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-2xl);
  margin-top: auto;
}

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

.SiteFooter-brand img { margin-bottom: var(--space-sm); filter: brightness(0) invert(1); opacity: 0.85; }

.SiteFooter-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 300px;
}

.SiteFooter-navTitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.SiteFooter-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.SiteFooter-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-base);
}

.SiteFooter-nav a:hover { color: #ffffff; }

.SiteFooter-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.SiteFooter-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


.CookieConsent-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
}

.CookieConsent-trigger:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}

.CookieConsent-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  display: block;
  transition: opacity var(--transition-base);
}

.CookieConsent-badge.is-hidden { opacity: 0; pointer-events: none; }

.CookieConsent-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 800;
  width: 340px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.CookieConsent-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.CookieConsent-panelHeader {
  padding: var(--space-md) var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-sm);
}

.CookieConsent-panelTitle {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.CookieConsent-panelClose {
  font-size: 1rem;
  color: var(--color-text-light);
  padding: 4px;
  border-radius: var(--radius-xs);
  transition: color var(--transition-base), background var(--transition-base);
  line-height: 1;
}

.CookieConsent-panelClose:hover {
  color: var(--color-dark);
  background: var(--color-bg-alt);
}

.CookieConsent-panelBody {
  padding: var(--space-sm) var(--space-md);
}

.CookieConsent-panelBody p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.CookieConsent-panelBody a {
  color: var(--color-primary);
  font-size: 0.82rem;
}

.CookieConsent-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xs) 0;
  border-top: 1px solid var(--color-border);
}

.CookieConsent-toggleLabel {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.CookieConsent-toggleLabel span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.CookieConsent-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.CookieConsent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.CookieConsent-switchSlider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.CookieConsent-switchSlider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.CookieConsent-switch input:checked + .CookieConsent-switchSlider {
  background: var(--color-primary);
}

.CookieConsent-switch input:checked + .CookieConsent-switchSlider::before {
  transform: translateX(18px);
}

.CookieConsent-switch input:disabled + .CookieConsent-switchSlider {
  opacity: 0.6;
  cursor: not-allowed;
}

.CookieConsent-panelActions {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  gap: var(--space-xs);
}

.CookieConsent-panelActions .Btn {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  padding: 10px 16px;
}


.BentoCell:has(.BentoCell-img) { padding: 0; }

.BentoCell:has(.BentoCell-img) .BentoCell-overlay {
  padding: var(--space-md);
}

.TemplateCard:has(.TemplateCard-icon) .TemplateCard-title {
  font-size: 1rem;
}

.TemplateCard--featured:has(.TemplateCard-icon) .TemplateCard-icon {
  font-size: 2rem;
}

section:has(.SectionHeading--light) {
  background: var(--color-dark);
}

.ChatBubble--user:has(textarea:focus) {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74,63,160,0.1);
}

.NewsletterForm:has(.NewsletterForm-input:focus) .NewsletterForm-input {
  border-color: rgba(255,255,255,0.7);
}


@media (max-width: 1024px) {
  .PageHero-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .BentoCell--wide { grid-column: span 2; }
  .BentoCell--tall { grid-row: span 1; }

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

  .TemplateCard--featured {
    grid-column: span 3;
  }

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

  .ValueCell--hero { grid-column: span 2; }
  .ValueCell--wide { grid-column: span 2; }

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

  .ServicesLayout {
    grid-template-columns: 200px 1fr;
  }

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

  .SiteFooter-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root {
    --gap-bento: 10px;
  }

  .PageHero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .PageHero-cell--main {
    grid-column: 1;
    grid-row: 1;
    padding: var(--space-lg) var(--space-md);
  }

  .PageHero-cell--image {
    grid-column: 1;
    grid-row: 2;
    min-height: 220px;
  }

  .PageHero-cell--stat {
    grid-column: 1;
    grid-row: auto;
    padding: var(--space-md);
  }

  .BentoGrid--features {
    grid-template-columns: 1fr;
  }

  .BentoCell--wide { grid-column: span 1; }
  .BentoCell--tall { grid-row: span 1; }

  .BentoCell-content { flex-direction: column; gap: var(--space-sm); }

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

  .ApproachSection-img { height: 240px; }

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

  .TemplateCard--featured { grid-column: span 2; }

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

  .ValuesBento { grid-template-columns: 1fr; }
  .ValueCell--hero { grid-column: span 1; min-height: 280px; }
  .ValueCell--wide { grid-column: span 1; flex-direction: column; }

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

  .ServicesLayout {
    grid-template-columns: 1fr;
    padding: var(--space-md);
  }

  .ServicesToc {
    position: static;
    display: none;
  }

  .ContactPage-inner { grid-template-columns: 1fr; }

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

  .NewsletterForm-row { flex-direction: column; }

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

  .SiteFooter-brand { grid-column: span 1; }

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

  .CookieConsent-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 80px;
  }

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

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

  .TrackerTable-header,
  .TrackerTable-row {
    grid-template-columns: 1fr 1.5fr;
    font-size: 0.78rem;
  }

  .TrackerTable-header span:nth-child(3),
  .TrackerTable-header span:nth-child(4),
  .TrackerTable-row span:nth-child(3),
  .TrackerTable-row span:nth-child(4) { display: none; }

  .CookieTable-head,
  .CookieTable-row {
    grid-template-columns: 1.2fr 1fr;
    font-size: 0.78rem;
  }

  .CookieTable-head span:nth-child(3),
  .CookieTable-head span:nth-child(4),
  .CookieTable-row span:nth-child(3),
  .CookieTable-row span:nth-child(4) { display: none; }

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

@media (max-width: 480px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 64px;
  }

  .PageHero { padding: var(--space-lg) var(--space-sm); }
  .BentoSection { padding: var(--space-xl) var(--space-sm); }
  .CoursesSection { padding: var(--space-xl) var(--space-sm); }
  .TemplatesSection { padding: var(--space-xl) var(--space-sm); }
  .ContactCards { padding: var(--space-xl) var(--space-sm); }
  .ApproachSection { padding: var(--space-xl) var(--space-sm); }

  .TemplatesGrid { grid-template-columns: 1fr; }
  .TemplateCard--featured { grid-column: span 1; }

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

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

  .InnerHero { padding: var(--space-xl) var(--space-sm) var(--space-lg); }
}