/* ==========================================================================
   Yoyira Jexabu — Style Sheet
   Candy Gradient Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  
  --c-pink:        #f472b6;
  --c-pink-light:  #fce7f3;
  --c-pink-mid:    #ec4899;
  --c-purple:      #c084fc;
  --c-purple-deep: #9333ea;
  --c-blue:        #60a5fa;
  --c-blue-light:  #dbeafe;
  --c-teal:        #34d399;
  --c-teal-light:  #d1fae5;

  
  --g-candy:       linear-gradient(135deg, #f472b6 0%, #c084fc 35%, #60a5fa 70%, #34d399 100%);
  --g-candy-soft:  linear-gradient(135deg, #fce7f3 0%, #f3e8ff 40%, #dbeafe 75%, #d1fae5 100%);
  --g-candy-hero:  linear-gradient(135deg, #fdf2f8 0%, #faf5ff 40%, #eff6ff 75%, #f0fdf4 100%);
  --g-text:        linear-gradient(90deg, #ec4899, #9333ea, #3b82f6);
  --g-btn:         linear-gradient(135deg, #ec4899 0%, #9333ea 50%, #3b82f6 100%);

  
  --c-bg:          #fdfbff;
  --c-surface:     #ffffff;
  --c-surface-2:   #faf7ff;
  --c-text:        #1e1030;
  --c-text-mid:    #4a3f6b;
  --c-text-soft:   #7c6fa0;
  --c-border:      #e8e0f5;
  --c-accent:      #9333ea;

  
  --shadow-sm:     0 1px 3px rgba(147, 51, 234, 0.08), 0 1px 2px rgba(147, 51, 234, 0.04);
  --shadow-md:     0 4px 16px rgba(147, 51, 234, 0.10), 0 2px 6px rgba(236, 72, 153, 0.06);
  --shadow-lg:     0 12px 40px rgba(147, 51, 234, 0.14), 0 4px 12px rgba(236, 72, 153, 0.08);
  --shadow-xl:     0 20px 60px rgba(147, 51, 234, 0.18), 0 8px 24px rgba(236, 72, 153, 0.10);
  --shadow-glow:   0 0 30px rgba(192, 132, 252, 0.30);

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

  
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  
  --container-max: 1200px;
  --header-h:      72px;

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

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

main {
  flex: 1;
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--t-base), opacity var(--t-base);
}

a:hover { opacity: 0.8; }

ul, ol { list-style: none; }

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

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
}

.SectionHeading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  color: var(--c-text);
}

.SectionHeading--center { text-align: center; }

.SectionSub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-text-soft);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--sp-10);
}

.SectionSub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


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

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.Container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 1.625rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base), opacity var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.Btn--primary {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.30);
}

.Btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147, 51, 234, 0.45);
  opacity: 1;
  color: #fff;
}

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

.Btn--outline:hover {
  background: var(--c-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

.Btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--c-text);
  border-color: var(--c-border);
  backdrop-filter: blur(8px);
}

.Btn--ghost:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  opacity: 1;
}

.Btn--large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  min-height: 56px;
}

/* --------------------------------------------------------------------------
   6. Site Header
   -------------------------------------------------------------------------- */
.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(253, 251, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}

.SiteHeader.is-scrolled {
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.12), 0 1px 4px rgba(147, 51, 234, 0.06);
}

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

.SiteHeader-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 1;
}

.SiteHeader-logo:hover { opacity: 0.85; }

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.SiteHeader-navLink {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-mid);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--t-base), background var(--t-base);
  white-space: nowrap;
}

.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: var(--c-accent);
  background: rgba(147, 51, 234, 0.06);
  opacity: 1;
}

.SiteHeader-navLink--cta {
  background: var(--g-btn);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  box-shadow: 0 3px 12px rgba(147, 51, 234, 0.25);
}

.SiteHeader-navLink--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.40);
  opacity: 1;
  color: #fff !important;
}

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

.SiteHeader-hamburger:hover { background: var(--c-surface-2); }

.SiteHeader-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* --------------------------------------------------------------------------
   7. Mobile Tab Bar
   -------------------------------------------------------------------------- */
.MobileTabBar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: rgba(253, 251, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(147, 51, 234, 0.10);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.MobileTabBar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: var(--sp-2) var(--sp-1);
  color: var(--c-text-soft);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-height: 56px;
  transition: color var(--t-base), background var(--t-base);
  text-decoration: none;
}

.MobileTabBar-item i {
  font-size: 1.125rem;
  transition: transform var(--t-base);
}

.MobileTabBar-item:hover,
.MobileTabBar-item.is-active {
  color: var(--c-accent);
  opacity: 1;
  background: rgba(147, 51, 234, 0.05);
}

.MobileTabBar-item.is-active i {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   8. Hero Section
   -------------------------------------------------------------------------- */
.PageHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--sp-12));
  padding-bottom: var(--sp-20);
  overflow: hidden;
}

.PageHero-bg {
  position: absolute;
  inset: 0;
  background: var(--g-candy-hero);
  z-index: 0;
}

.PageHero-floatShape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.PageHero-floatShape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #f9a8d4 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite alternate;
}

.PageHero-floatShape--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #c084fc 0%, transparent 70%);
  bottom: 50px;
  left: -80px;
  animation: floatShape 10s ease-in-out infinite alternate-reverse;
}

.PageHero-floatShape--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #93c5fd 0%, transparent 70%);
  top: 40%;
  right: 15%;
  animation: floatShape 12s ease-in-out infinite alternate;
}

@keyframes floatShape {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, 30px) scale(1.08); }
}

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

.PageHero-content { }

.PageHero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(147, 51, 234, 0.08);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(147, 51, 234, 0.15);
}

.PageHero-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  background: linear-gradient(135deg, #1e1030 0%, #9333ea 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.PageHero-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.PageHero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

.PageHero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.PageHero-visual {
  position: relative;
}

.PageHero-imgWrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: visible;
}

.PageHero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 8px rgba(192, 132, 252, 0.12);
  position: relative;
  z-index: 1;
  transition: transform var(--t-slow);
}

.PageHero-imgWrap:hover .PageHero-img {
  transform: scale(1.02);
}

.PageHero-imgAccent {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--r-2xl) + 12px);
  background: var(--g-candy);
  z-index: 0;
  opacity: 0.25;
  filter: blur(20px);
}

.PageHero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-text-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}

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

/* --------------------------------------------------------------------------
   9. Inner Hero (sub-pages)
   -------------------------------------------------------------------------- */
.InnerHero {
  position: relative;
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-16);
  overflow: hidden;
}

.InnerHero-bg {
  position: absolute;
  inset: 0;
  background: var(--g-candy-soft);
  z-index: 0;
}

.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.InnerHero-heading {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  background: linear-gradient(135deg, #1e1030 0%, #9333ea 60%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.InnerHero-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.InnerHero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--c-text-mid);
  line-height: 1.7;
  max-width: 580px;
}

/* --------------------------------------------------------------------------
   10. Intro Strip
   -------------------------------------------------------------------------- */
.IntroStrip {
  padding: var(--sp-8) 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.IntroStrip-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  justify-content: center;
  flex-wrap: wrap;
}

.IntroStrip-text {
  font-size: 1rem;
  color: var(--c-text-mid);
  text-align: center;
  max-width: 400px;
}

.IntroStrip-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-accent);
  background: rgba(147, 51, 234, 0.07);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  border: 1px solid rgba(147, 51, 234, 0.15);
}

/* --------------------------------------------------------------------------
   11. Bento Grid
   -------------------------------------------------------------------------- */
.BentoSection {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.BentoSection-header {
  margin-bottom: var(--sp-12);
}

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

.BentoCard {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
  position: relative;
}

.BentoCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 132, 252, 0.30);
}

.BentoCard--large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.BentoCard--medium {
  grid-column: span 1;
}

.BentoCard--small {
  grid-column: span 1;
}

.BentoCard--accent {
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
  border-color: rgba(192, 132, 252, 0.25);
}

.BentoCard-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--g-candy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--c-accent);
  margin-bottom: var(--sp-5);
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.12);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.BentoCard:hover .BentoCard-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.22);
}

.BentoCard-title {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.BentoCard-body {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

.BentoCard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-top: var(--sp-5);
}

.BentoCard-img--bottom {
  margin-top: auto;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. How Section
   -------------------------------------------------------------------------- */
.HowSection {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}

.HowGrid {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.HowStep {
  flex: 1;
  min-width: 180px;
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--c-border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

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

.HowStep-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.HowStep-title {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.HowStep-body {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

.HowStep-connector {
  display: flex;
  align-items: center;
  padding-top: var(--sp-12);
  color: var(--c-purple);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. Gallery Section
   -------------------------------------------------------------------------- */
.GallerySection {
  padding: var(--sp-24) 0;
  background: var(--g-candy-soft);
}

.GalleryGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: var(--sp-4);
}

.GalleryItem {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.GalleryItem--featured {
  grid-row: span 2;
}

.GalleryItem-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.GalleryItem:hover .GalleryItem-img {
  transform: scale(1.05);
}

.GalleryItem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 16, 48, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
  opacity: 0;
  transition: opacity var(--t-base);
}

.GalleryItem:hover .GalleryItem-overlay { opacity: 1; }

.GalleryItem-overlay span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   14. Dual CTA
   -------------------------------------------------------------------------- */
.DualCTA {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.DualCTA-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-12);
  align-items: center;
  background: var(--c-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-12);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.DualCTA-primary {
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.DualCTA-secondary {
  padding: var(--sp-8);
}

.DualCTA-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}

.DualCTA-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-family: var(--font-heading);
  margin-bottom: var(--sp-4);
  color: var(--c-text);
}

.DualCTA-body {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.DualCTA-divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--c-border), transparent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. Story Section
   -------------------------------------------------------------------------- */
.StorySection {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}

.StorySection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.StorySection-text p {
  color: var(--c-text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  font-size: 1.0625rem;
}

.StorySection-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-slow);
}

.StorySection-img:hover { transform: scale(1.02); }

/* --------------------------------------------------------------------------
   16. Values Section
   -------------------------------------------------------------------------- */
.ValuesSection {
  padding: var(--sp-24) 0;
  background: var(--g-candy-soft);
}

.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.ValueCard {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}

.ValueCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-candy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.ValueCard:hover::before { transform: scaleX(1); }

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

.ValueCard-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-3);
}

.ValueCard-title {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.ValueCard-body {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   17. Approach Section
   -------------------------------------------------------------------------- */
.ApproachSection {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}

.ApproachSection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.ApproachSection-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-slow);
}

.ApproachSection-img:hover { transform: scale(1.02); }

.ApproachSection-text p {
  color: var(--c-text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  font-size: 1.0625rem;
}

/* --------------------------------------------------------------------------
   18. Programs Section
   -------------------------------------------------------------------------- */
.ProgramsSection {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.ProgramsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.ProgramCard {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

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

.ProgramCard--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 50%, #eff6ff 100%);
  border-color: rgba(192, 132, 252, 0.25);
  box-shadow: var(--shadow-md);
}

.ProgramCard-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--g-btn);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px rgba(147, 51, 234, 0.25);
}

.ProgramCard-header { }

.ProgramCard-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--g-candy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
  box-shadow: 0 2px 10px rgba(147, 51, 234, 0.12);
  transition: transform var(--t-base);
}

.ProgramCard:hover .ProgramCard-icon { transform: scale(1.08); }

.ProgramCard-title {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.ProgramCard-duration {
  font-size: 0.875rem;
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.ProgramCard-desc {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

.ProgramCard-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.ProgramCard-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--c-text-mid);
}

.ProgramCard-features li i {
  color: var(--c-teal);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.ProgramCard .Btn { align-self: flex-start; margin-top: auto; }

/* --------------------------------------------------------------------------
   19. Compare Section
   -------------------------------------------------------------------------- */
.CompareSection {
  padding: var(--sp-24) 0;
  background: var(--c-surface);
}

.CompareGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.CompareCard {
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 2px solid;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

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

.CompareCard--no {
  background: #fff8f8;
  border-color: #fecdd3;
}

.CompareCard--yes {
  background: linear-gradient(135deg, #f0fdf4, #faf5ff);
  border-color: rgba(52, 211, 153, 0.30);
}

.CompareCard-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
}

.CompareCard--no .CompareCard-icon {
  background: #fee2e2;
  color: #ef4444;
}

.CompareCard--yes .CompareCard-icon {
  background: #d1fae5;
  color: #059669;
}

.CompareCard h3 {
  font-size: 1.05rem;
  margin-bottom: var(--sp-3);
  color: var(--c-text);
}

.CompareCard p {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   20. Problem Section
   -------------------------------------------------------------------------- */
.ProblemSection {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
}

.ProblemGrid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.ProblemCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  background: var(--c-surface);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}

.ProblemCard:hover { box-shadow: var(--shadow-lg); }

.ProblemCard--reverse {
  direction: rtl;
}

.ProblemCard--reverse .ProblemCard-content {
  direction: ltr;
}

.ProblemCard--reverse .ProblemCard-visual {
  direction: ltr;
}

.ProblemCard-visual {
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}

.ProblemCard-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.ProblemCard:hover .ProblemCard-img { transform: scale(1.04); }

.ProblemCard-content {
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.ProblemCard-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  background: rgba(147, 51, 234, 0.07);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  border: 1px solid rgba(147, 51, 234, 0.15);
}

.ProblemCard-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-text);
}

.ProblemCard-content p {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   21. CTA Banner
   -------------------------------------------------------------------------- */
.CtaBanner {
  padding: var(--sp-20) 0;
  background: var(--g-candy-soft);
}

.CtaBanner-inner {
  text-align: center;
  background: var(--c-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-12);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.CtaBanner-heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-family: var(--font-heading);
  margin-bottom: var(--sp-5);
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.CtaBanner-body {
  font-size: 1.0625rem;
  color: var(--c-text-mid);
  max-width: 500px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

.CtaBanner-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   22. Contact Section
   -------------------------------------------------------------------------- */
.ContactSection {
  padding: var(--sp-16) 0 var(--sp-24);
}

.ContactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-10);
}

.ContactForm-wrap { }

.ContactForm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.ContactForm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.ContactForm-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.ContactForm-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
}

.ContactForm-label span {
  color: var(--c-pink-mid);
}

.ContactForm-input {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
  min-height: 48px;
  outline: none;
}

.ContactForm-input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.12);
}

.ContactForm-input::placeholder { color: var(--c-text-soft); }

.ContactForm-textarea {
  resize: vertical;
  min-height: 140px;
}

.ContactForm-privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.ContactForm-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--c-text-mid);
  cursor: pointer;
  line-height: 1.5;
}

.ContactForm-checkLabel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-accent);
  cursor: pointer;
}

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

.ContactInfo {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.ContactInfo-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.ContactInfo-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.ContactInfo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--g-candy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.ContactInfo-item h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.ContactInfo-item p, .ContactInfo-item a {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.6;
}

.ContactInfo-item a:hover { color: var(--c-accent); }

.DirectionsBox {
  background: var(--c-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--c-border);
}

.DirectionsBox-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.DirectionsBox-title i { color: var(--c-accent); }

.DirectionsBox-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-4);
}

.DirectionsBox-item:last-child { margin-bottom: 0; }

.DirectionsBox-item i {
  color: var(--c-purple);
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.DirectionsBox-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.DirectionsBox-item p {
  font-size: 0.875rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.MapWrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

/* --------------------------------------------------------------------------
   23. Thanks Page
   -------------------------------------------------------------------------- */
.ThanksPage {
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-24);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.ThanksPage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-16);
  width: 100%;
}

.ThanksPage-top {
  text-align: center;
}

.ThanksPage-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: var(--font-heading);
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-4);
}

.ThanksPage-sub {
  font-size: 1.0625rem;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-8);
}

.ThanksTimeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  width: 100%;
}

.ThanksTimeline-item {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.ThanksTimeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ThanksTimeline-item--done .ThanksTimeline-dot {
  background: var(--g-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.30);
}

.ThanksTimeline-item--current .ThanksTimeline-dot {
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.15), 0 4px 16px rgba(147, 51, 234, 0.30);
}

.ThanksTimeline-item--upcoming .ThanksTimeline-dot {
  background: var(--c-border);
  color: var(--c-text-soft);
}

.ThanksTimeline-content {
  padding-bottom: var(--sp-8);
}

.ThanksTimeline-content h3 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.ThanksTimeline-item--upcoming .ThanksTimeline-content h3 {
  color: var(--c-text-soft);
}

.ThanksTimeline-content p {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

.ThanksTimeline-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-blue));
  margin-left: 23px;
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   24. Legal Pages
   -------------------------------------------------------------------------- */
.LegalPage {
  padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-24);
}

.LegalPage-header {
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border);
}

.LegalPage-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-3);
}

.LegalPage-meta {
  font-size: 0.875rem;
  color: var(--c-text-soft);
}

.LegalPage-body {
  max-width: 780px;
}

.LegalPage-body p {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}

.LegalPage-body h2 {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-text);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.LegalPage-body strong {
  color: var(--c-text);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   25. Site Footer
   -------------------------------------------------------------------------- */
.SiteFooter {
  background: var(--c-text);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-16) 0 0;
  margin-top: auto;
}

.SiteFooter-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.SiteFooter-brand img { filter: brightness(0) invert(1) opacity(0.9); }

.SiteFooter-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-3);
  line-height: 1.6;
  max-width: 220px;
}

.SiteFooter-navTitle {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-4);
}

.SiteFooter-navLink {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-2);
  transition: color var(--t-base);
  text-decoration: none;
}

.SiteFooter-navLink:hover {
  color: #fff;
  opacity: 1;
}

.SiteFooter-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-3);
}

.SiteFooter-contact i {
  color: var(--c-purple);
  margin-top: 3px;
  flex-shrink: 0;
}

.SiteFooter-contact a {
  color: rgba(255,255,255,0.7);
}

.SiteFooter-contact a:hover {
  color: #fff;
  opacity: 1;
}

.SiteFooter-bottom {
  padding: var(--sp-5) 0;
  text-align: center;
}

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

/* --------------------------------------------------------------------------
   26. Cookie Consent Modal
   -------------------------------------------------------------------------- */
.CookieBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 16, 48, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.CookieBackdrop.is-visible { opacity: 1; }

.CookieModal {
  background: var(--c-surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--c-border);
  transform: scale(0.96) translateY(10px);
  transition: transform var(--t-slow);
  position: relative;
  z-index: 9999;
}

.CookieBackdrop.is-visible .CookieModal {
  transform: scale(1) translateY(0);
}

.CookieModal-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--g-candy);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}

.CookieModal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--sp-4);
}

.CookieModal-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-text);
}

.CookieModal-desc {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.CookieModal-cats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.CookieModal-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4);
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}

.CookieModal-catInfo { flex: 1; }

.CookieModal-catName {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.CookieModal-catDesc {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  line-height: 1.5;
}


.CookieToggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  margin-left: var(--sp-4);
}

.CookieToggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.CookieToggle-slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--t-base);
}

.CookieToggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.CookieToggle input:checked + .CookieToggle-slider {
  background: var(--g-btn);
}

.CookieToggle input:checked + .CookieToggle-slider::before {
  transform: translateX(20px);
}

.CookieToggle input:disabled + .CookieToggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.CookieModal-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.CookieModal-actions .Btn {
  flex: 1;
  min-width: 120px;
}

.CookieModal-links {
  margin-top: var(--sp-4);
  text-align: center;
}

.CookieModal-links a {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  text-decoration: underline;
  margin: 0 var(--sp-2);
}

/* --------------------------------------------------------------------------
   27. Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   28. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .PageHero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .PageHero-sub { margin-left: auto; margin-right: auto; }
  .PageHero-actions { justify-content: center; }
  .PageHero-visual { display: none; }

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

  .BentoCard--large {
    grid-column: span 2;
  }

  .BentoCard--tall {
    grid-row: span 1;
  }

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

  .HowGrid { gap: var(--sp-3); }
  .HowStep-connector { display: none; }
  .HowGrid { flex-wrap: wrap; }
  .HowStep { min-width: calc(50% - var(--sp-3)); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .SiteHeader-nav { display: none; }
  .SiteHeader-hamburger { display: flex; }
  .MobileTabBar { display: flex; }

  body { padding-bottom: 56px; }

  .PageHero {
    min-height: auto;
    padding-top: calc(var(--header-h) + var(--sp-10));
    padding-bottom: var(--sp-16);
  }

  .PageHero-heading { font-size: clamp(2rem, 8vw, 3rem); }

  .BentoGrid { grid-template-columns: 1fr; }
  .BentoCard--large, .BentoCard--tall { grid-column: span 1; grid-row: span 1; }

  .HowStep { min-width: 100%; }

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

  .GalleryItem--featured { grid-row: span 1; }

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

  .DualCTA-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--c-border), transparent);
  }

  .StorySection-grid,
  .ApproachSection-inner,
  .ValuesGrid,
  .ProgramsGrid,
  .CompareGrid,
  .ContactGrid {
    grid-template-columns: 1fr;
  }

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

  .ProblemCard--reverse { direction: ltr; }

  .ProblemCard-visual { min-height: 240px; }
  .ProblemCard-img { min-height: 240px; }

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

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

  .GalleryItem { height: 220px; }

  .CtaBanner-inner { padding: var(--sp-10) var(--sp-6); }

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

  .ThanksTimeline { max-width: 100%; }

  .InnerHero { padding: calc(var(--header-h) + var(--sp-10)) 0 var(--sp-10); }

  .BentoSection, .HowSection, .GallerySection, .DualCTA,
  .StorySection, .ValuesSection, .ApproachSection,
  .ProgramsSection, .CompareSection, .ProblemSection,
  .CtaBanner { padding: var(--sp-16) 0; }

  .IntroStrip-inner { flex-direction: column; gap: var(--sp-4); }
}

@media (max-width: 480px) {
  .Container { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .PageHero-actions { flex-direction: column; align-items: center; }
  .CtaBanner-actions { flex-direction: column; align-items: center; }
  .CookieModal { padding: var(--sp-6); border-radius: var(--r-xl); }
  .CookieModal-actions { flex-direction: column; }
  .BentoCard { padding: var(--sp-6); }
  .ProgramCard { padding: var(--sp-6); }
  .DualCTA-inner { padding: var(--sp-8) var(--sp-5); }
}