/* =====================================================
   DATA MOMENTUM - STYLE SYSTEM
   Maximalist Color · Plus Jakarta Sans
   ===================================================== */


:root {
  
  --color-ink: #1a1035;          
  --color-coral: #ff5c4d;        
  --color-violet: #6c3fc5;       
  --color-lime: #c8f04d;         
  --color-sand: #f5f0e8;         

  
  --text-light: #f8f5ff;
  --text-dark: #1a1035;
  --text-muted-light: rgba(248,245,255,0.75);
  --text-muted-dark: rgba(26,16,53,0.65);

  
  --accent-coral: #ff5c4d;
  --accent-lime: #c8f04d;
  --accent-violet: #6c3fc5;

  
  --white: #ffffff;
  --off-white: #f8f5ff;
  --border-light: rgba(255,255,255,0.15);
  --border-dark: rgba(26,16,53,0.12);

  
  --shadow-sm: 0 2px 8px rgba(26,16,53,0.08), 0 1px 3px rgba(26,16,53,0.05);
  --shadow-md: 0 8px 24px rgba(26,16,53,0.12), 0 2px 8px rgba(26,16,53,0.06);
  --shadow-lg: 0 20px 48px rgba(26,16,53,0.15), 0 6px 16px rgba(26,16,53,0.08);
  --shadow-xl: 0 32px 64px rgba(26,16,53,0.18), 0 12px 24px rgba(26,16,53,0.10);
  --shadow-coral: 0 8px 24px rgba(255,92,77,0.30), 0 2px 8px rgba(255,92,77,0.15);
  --shadow-lime: 0 8px 24px rgba(200,240,77,0.35), 0 2px 8px rgba(200,240,77,0.18);

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

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

  
  --font-main: 'Plus Jakarta Sans', sans-serif;

  
  --nav-h: 72px;

  
  --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; overflow-x: hidden; }

body.canvas {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition-base); }
ul { list-style: none; }
button { font-family: var(--font-main); cursor: pointer; border: none; background: none; }


.nav-rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 16, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.nav-rail.nav-visible,
.nav-rail.nav-rail-visible {
  transform: translateY(0);
}

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

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248,245,255,0.75);
  padding: 0.375rem 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent-coral);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover { color: var(--text-light); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--text-light); }
.nav-link.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

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

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-light);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-hamburger:hover { background: rgba(255,255,255,0.1); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: var(--accent-coral);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-coral);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
  background: #e54535;
  border-color: #e54535;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,92,77,0.40);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: transparent;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 2px solid rgba(248,245,255,0.3);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(248,245,255,0.7);
  background: rgba(248,245,255,0.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--text-dark);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: var(--color-ink);
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-ink);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: #2d1f5e;
  border-color: #2d1f5e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: transparent;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-ink);
  transition: all var(--transition-base);
}

.btn-dark-outline:hover {
  background: var(--color-ink);
  color: var(--text-light);
}

.btn-light-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: transparent;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid rgba(248,245,255,0.5);
  transition: all var(--transition-base);
}

.btn-light-outline:hover {
  background: rgba(248,245,255,0.12);
  border-color: var(--text-light);
}

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


.drawer {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(26,16,53,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0 env(safe-area-inset-bottom, 0.5rem);
  justify-content: space-around;
  align-items: center;
}

.drawer-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.75rem;
  color: rgba(248,245,255,0.55);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.drawer-tab i {
  font-size: 1.125rem;
  transition: transform var(--transition-base);
}

.drawer-tab.active {
  color: var(--accent-coral);
}

.drawer-tab.active i {
  transform: translateY(-1px);
}

.drawer-tab:hover { color: var(--text-light); }


.stage {
  min-height: 100vh;
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.stage-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: var(--radius-full);
}

.shape-circle-lg {
  width: clamp(300px, 40vw, 600px);
  height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(108,63,197,0.25) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.shape-circle-sm {
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  background: radial-gradient(circle, rgba(255,92,77,0.20) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
}

.shape-rect {
  width: clamp(100px, 15vw, 200px);
  height: clamp(100px, 15vw, 200px);
  background: rgba(200,240,77,0.08);
  border-radius: var(--radius-lg);
  top: 20%;
  left: 15%;
  transform: rotate(25deg);
}

.shape-dot-grid {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(rgba(248,245,255,0.12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  bottom: 10%;
  right: 10%;
  border-radius: 0;
}

.stage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.stage-left {
  position: relative;
  overflow: hidden;
}

.stage-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

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

.stage-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,53,0.6) 0%, rgba(108,63,197,0.3) 100%);
}

.stage-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(26,16,53,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,240,77,0.3);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.stage-right {
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.stage-content {
  max-width: 560px;
}

.stage-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-coral);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.stage-heading {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.heading-accent {
  color: var(--accent-coral);
  font-style: italic;
}

.stage-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted-light);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.stage-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.stage-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

.meta-item i {
  color: var(--accent-lime);
  font-size: 0.875rem;
  flex-shrink: 0;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-ink {
  background: var(--color-ink);
  padding: var(--space-3xl) 0;
}

.section-coral {
  background: var(--color-coral);
  padding: var(--space-3xl) 0;
}

.section-violet {
  background: var(--color-violet);
  padding: var(--space-3xl) 0;
}

.section-lime {
  background: var(--color-lime);
  padding: var(--space-3xl) 0;
}

.section-sand {
  background: var(--color-sand);
  padding: var(--space-3xl) 0;
}

.section-map {
  padding: 0;
  background: var(--color-sand);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-light {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.section-heading-dark {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.section-subheading-light {
  font-size: 1.0625rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

.section-subheading-dark {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

.section-body-light {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
}

.section-body-dark {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-md);
}


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

.intro-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

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


.gallery {
  display: grid;
  gap: var(--space-md);
}

.gallery-values {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-faq {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.gallery-formats {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shelf-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.shelf-card-light {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.shelf-card-white {
  background: var(--white);
  border: 1px solid rgba(255,92,77,0.12);
  box-shadow: var(--shadow-md);
}

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

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.card-icon-coral {
  background: rgba(255,92,77,0.15);
  color: var(--accent-coral);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.card-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted-light);
}


.format-icon {
  font-size: 2rem;
  color: var(--accent-violet);
  margin-bottom: var(--space-md);
}

.shelf-card-white h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
}

.shelf-card-white p {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.format-detail {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-violet);
  padding: 0.375rem 0.875rem;
  background: rgba(108,63,197,0.08);
  border-radius: var(--radius-full);
  display: inline-block;
}


.faq-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background var(--transition-base);
}

.faq-question:hover { background: rgba(255,255,255,0.05); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--accent-lime);
  transition: transform var(--transition-base);
}

.faq-card.faq-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted-light);
}

.faq-card.faq-open .faq-answer { max-height: 300px; }


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

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

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-violet);
  background: rgba(108,63,197,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(108,63,197,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-violet);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-text span {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}


.spotlight {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.spotlight-heading {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.spotlight-body {
  font-size: 1.125rem;
  color: rgba(26,16,53,0.7);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

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


.footer-stage {
  background: var(--color-ink);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer-logo { height: 40px; width: auto; margin: 0 auto; }

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(248,245,255,0.65);
  font-weight: 500;
  transition: color var(--transition-base);
}

.footer-nav a:hover { color: var(--text-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(248,245,255,0.6);
}

.footer-contact i { color: var(--accent-coral); font-size: 0.8125rem; }
.footer-contact a { color: rgba(248,245,255,0.6); transition: color var(--transition-base); }
.footer-contact a:hover { color: var(--text-light); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(248,245,255,0.45);
  transition: color var(--transition-base);
}

.footer-legal a:hover { color: var(--text-light); }

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(248,245,255,0.3);
}


.page-stage {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-stage-coral { background: var(--color-coral); }
.page-stage-violet { background: var(--color-violet); }
.page-stage-lime { background: var(--color-lime); }
.page-stage-ink { background: var(--color-ink); }

.page-stage-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

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

.page-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
}

.page-eyebrow-dark {
  color: rgba(26,16,53,0.6);
}

.page-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.page-heading-dark { color: var(--text-dark); }

.page-subheading {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(248,245,255,0.8);
  max-width: 560px;
}

.page-subheading-dark { color: rgba(26,16,53,0.7); }


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

.diff-item {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-dark);
}

.diff-item:nth-child(odd):last-child,
.diff-item:nth-child(even):last-child {
  border-bottom: none;
}

.diff-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(108,63,197,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -0.04em;
}

.diff-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.diff-content p {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}


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

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

.contrast-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.contrast-list li i {
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contrast-list li i.fa-xmark { color: rgba(255,92,77,0.7); }
.contrast-list-positive li i.fa-check { color: var(--accent-lime); }


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

.module-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.module-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.module-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-violet);
  background: rgba(108,63,197,0.1);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  height: fit-content;
}

.module-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.module-body p {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.module-topics span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-coral);
  background: rgba(255,92,77,0.08);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}


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

.offer-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

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

.offer-item > i {
  font-size: 1.25rem;
  color: var(--accent-lime);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.offer-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.offer-item p {
  font-size: 0.875rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  margin: 0;
}


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

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

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

.step-number {
  width: 52px;
  height: 52px;
  background: var(--accent-lime);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-lime);
}

.step-content {
  padding-bottom: var(--space-lg);
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.method-connector {
  width: 2px;
  height: 2rem;
  background: rgba(200,240,77,0.3);
  margin-left: 25px;
}

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

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

.change-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.change-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base);
}

.change-card:hover { transform: translateY(-4px); }

.change-phase {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-lime);
  margin-bottom: var(--space-sm);
}

.change-card p {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}


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

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(26,16,53,0.08);
  color: rgba(26,16,53,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.step-dot-active {
  background: var(--accent-coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}

.step-dot-done {
  background: var(--accent-violet);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(26,16,53,0.1);
  border-radius: var(--radius-full);
}

.step-line-done { background: var(--accent-violet); }

.form-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(26,16,53,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-violet);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group-check { margin-top: var(--space-sm); }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(26,16,53,0.2);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  margin-top: 1px;
}

.check-label input:checked + .check-custom {
  background: var(--accent-violet);
  border-color: var(--accent-violet);
}

.check-label input:checked + .check-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-top: -2px;
}

.check-label a { color: var(--accent-violet); text-decoration: underline; }

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

.form-step-hidden { display: none; }

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

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
}

.contact-info-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent-coral);
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,92,77,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin: 0;
}

.contact-detail a { color: var(--accent-violet); }
.contact-detail a:hover { opacity: 0.8; }

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

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

.direction-item > i {
  font-size: 1rem;
  color: var(--accent-violet);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 20px;
}

.direction-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.direction-item p {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin: 0;
}

.map-wrap { overflow: hidden; }
.map-wrap iframe { display: block; }


.thanks-stage {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-violet) 50%, var(--accent-coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 2rem 5rem;
}

.thanks-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--accent-lime);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 4px 16px rgba(200,240,77,0.4));
}

.thanks-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.thanks-subheading {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.thanks-next {
  max-width: 900px;
  margin: 0 auto;
}

.thanks-next h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.next-step-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.next-step-card:hover { transform: translateY(-4px); }

.next-step-card > i {
  font-size: 2rem;
  color: var(--accent-coral);
  margin-bottom: var(--space-sm);
}

.next-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.next-step-card p {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}


.legal-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.legal-sidebar {
  background: var(--color-ink);
  padding: var(--space-2xl) var(--space-lg);
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.legal-sidebar-inner h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-light);
  margin-bottom: var(--space-md);
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-nav a {
  font-size: 0.8125rem;
  color: rgba(248,245,255,0.55);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  line-height: 1.4;
}

.legal-nav a:hover {
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
}

.legal-content {
  padding: var(--space-2xl) clamp(1.5rem, 4vw, 3rem);
  max-width: 800px;
}

.legal-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid var(--border-dark);
}

.legal-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
}

.legal-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: rgba(108,63,197,0.06);
  border-left: 3px solid var(--accent-violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content section {
  margin-bottom: var(--space-xl);
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  margin-top: var(--space-md);
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted-dark);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  margin: var(--space-sm) 0;
  padding-left: var(--space-md);
}

.legal-content ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 0.375rem;
  list-style: disc;
}

.legal-content a { color: var(--accent-violet); text-decoration: underline; }
.legal-content a:hover { opacity: 0.8; }


.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--color-ink);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted-dark);
  vertical-align: top;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(26,16,53,0.03); }
.cookie-table code {
  font-family: 'Courier New', monospace;
  background: rgba(108,63,197,0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.8125rem;
}


.cookie-bell-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
}

.cookie-bell-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--color-ink);
  color: var(--text-light);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid rgba(255,255,255,0.1);
}

.cookie-bell-btn:hover {
  background: var(--accent-violet);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(108,63,197,0.4);
}

.cookie-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: var(--accent-coral);
  border-radius: var(--radius-full);
  border: 2px solid var(--off-white);
  display: none;
}

.cookie-badge.badge-visible { display: block; }

.cookie-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-dark);
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  transform-origin: bottom right;
}

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

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-dark);
}

.cookie-panel-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cookie-panel-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  transition: all var(--transition-base);
}

.cookie-panel-close:hover {
  background: rgba(26,16,53,0.06);
  color: var(--text-dark);
}

.cookie-panel-intro {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.cookie-toggles {
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(26,16,53,0.06);
}

.cookie-toggle-row:last-child { border-bottom: none; }

.cookie-toggle-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.cookie-toggle-info strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.cookie-toggle-info span {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

.disabled-toggle { font-size: 0.75rem; color: var(--text-muted-dark); }
.toggle-on { color: var(--accent-violet); font-weight: 600; }

.toggle-label {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(26,16,53,0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-input:checked + .toggle-slider { background: var(--accent-violet); }
.toggle-input:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-panel-actions {
  display: flex;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-md);
}

.btn-cookie-accept {
  flex: 1;
  padding: 0.625rem;
  background: var(--accent-coral);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all var(--transition-base);
}

.btn-cookie-accept:hover { background: #e54535; }

.btn-cookie-save {
  flex: 1;
  padding: 0.625rem;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all var(--transition-base);
}

.btn-cookie-save:hover { border-color: var(--text-dark); background: rgba(26,16,53,0.04); }

.cookie-panel-more {
  text-align: center;
  padding: 0.5rem var(--space-md) var(--space-sm);
  font-size: 0.75rem;
}

.cookie-panel-more a { color: var(--accent-violet); text-decoration: underline; }


.share-widget {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 500;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
  transition: all var(--transition-base);
}

.share-btn:hover {
  background: var(--accent-violet);
  color: var(--white);
  border-color: var(--accent-violet);
  transform: scale(1.1);
}

.share-toast {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-ink);
  color: var(--text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.share-toast.toast-visible { opacity: 1; }


@media (max-width: 1024px) {
  .stage-split { grid-template-columns: 1fr; }
  .stage-left { display: none; }
  .stage-right { padding: clamp(6rem, 12vw, 8rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 6vw, 4rem); }
  .stage { min-height: auto; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { height: 300px; }

  .program-split { grid-template-columns: 1fr; }
  .program-img { height: 300px; }

  .diff-grid { grid-template-columns: 1fr; }
  .visual-break-grid { grid-template-columns: 1fr; }

  .offer-split { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .context-split { grid-template-columns: 1fr; }

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

  .legal-page { grid-template-columns: 1fr; }
  .legal-sidebar {
    position: static;
    height: auto;
    padding: var(--space-md) var(--space-lg);
  }
  .legal-sidebar-inner { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .drawer { display: flex; }

  body.canvas { padding-bottom: 72px; }

  .section-ink,
  .section-coral,
  .section-violet,
  .section-lime,
  .section-sand {
    padding: var(--space-2xl) 0;
  }

  .gallery-values { grid-template-columns: 1fr; }
  .gallery-faq { grid-template-columns: 1fr; }
  .gallery-formats { grid-template-columns: 1fr; }
  .change-grid { grid-template-columns: 1fr; }
  .next-steps-grid { grid-template-columns: 1fr; }

  .module-card { flex-direction: column; }
  .module-tag { align-self: flex-start; }

  .spotlight-actions { flex-direction: column; align-items: center; }

  .diff-item { flex-direction: column; gap: var(--space-sm); }
  .diff-number { font-size: 2.5rem; width: auto; }

  .share-widget { display: none; }

  .cookie-bell-wrap { bottom: calc(72px + 1rem); }

  .cookie-panel { width: 280px; }

  .form-actions { flex-direction: column; }
  .form-actions .btn-outline { order: 2; }
  .form-actions .btn-primary { order: 1; }

  .step-indicator { margin-bottom: var(--space-md); }
}

@media (max-width: 480px) {
  .stage-heading { font-size: 2rem; }

  .page-heading { font-size: 1.75rem; }

  .nav-inner { padding: 0 var(--space-sm); }

  .stage-right { padding: 5rem 1.25rem 2.5rem; }

  .stage-ctas { flex-direction: column; }
  .stage-ctas .btn-primary,
  .stage-ctas .btn-outline { width: 100%; justify-content: center; }

  .contact-form-wrap { padding: var(--space-md); }
  .contact-info-block { padding: var(--space-md); }

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

  .footer-nav { gap: var(--space-sm); }
  .footer-legal { gap: var(--space-sm); }
}