/* =============================================
   CIWOWI BELOXU — STYLE SYSTEM
   Candy Gradient · Onest · Custom CSS
   ============================================= */


:root {
  --color-candy-pink: #f472b6;
  --color-candy-purple: #a78bfa;
  --color-candy-blue: #60a5fa;
  --color-candy-teal: #2dd4bf;
  --color-candy-rose: #fb7185;

  --gradient-primary: linear-gradient(135deg, #f472b6 0%, #a78bfa 40%, #60a5fa 80%, #2dd4bf 100%);
  --gradient-soft: linear-gradient(135deg, #fce7f3 0%, #ede9fe 40%, #dbeafe 80%, #ccfbf1 100%);
  --gradient-hero: linear-gradient(145deg, #fdf2f8 0%, #f5f3ff 30%, #eff6ff 65%, #f0fdfa 100%);
  --gradient-feature: linear-gradient(135deg, #ec4899 0%, #8b5cf6 45%, #3b82f6 80%, #14b8a6 100%);
  --gradient-text: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
  --gradient-cta: linear-gradient(135deg, #f472b6, #a78bfa 50%, #60a5fa);

  --surface-base: #fafafa;
  --surface-raised-bg: #ffffff;
  --surface-inset-bg: #f4f0fc;
  --surface-dark: #1a1125;
  --surface-dark-mid: #231832;

  --text-primary: #1e1530;
  --text-secondary: #4a4060;
  --text-muted: #7c6f9a;
  --text-on-dark: #f0ecff;
  --text-on-dark-muted: #b8aed4;

  --border-light: rgba(167, 139, 250, 0.15);
  --border-mid: rgba(167, 139, 250, 0.25);

  --shadow-sm: 0 1px 3px rgba(100, 60, 160, 0.08), 0 1px 2px rgba(100, 60, 160, 0.04);
  --shadow-md: 0 4px 16px rgba(100, 60, 160, 0.10), 0 2px 6px rgba(100, 60, 160, 0.06);
  --shadow-lg: 0 12px 40px rgba(100, 60, 160, 0.14), 0 4px 12px rgba(100, 60, 160, 0.08);
  --shadow-xl: 0 24px 64px rgba(100, 60, 160, 0.18), 0 8px 24px rgba(100, 60, 160, 0.10);
  --shadow-glow: 0 0 32px rgba(167, 139, 250, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

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

  --nav-height: 72px;
  --narrow-col-width: 680px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

body {
  font-family: 'Onest', sans-serif;
  background-color: var(--surface-base);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition-base); }

ul { list-style: none; }


.surface { background: var(--surface-base); }
.surface-raised { background: var(--surface-raised-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }
.surface-inset { background: var(--surface-inset-bg); }


.space-section { padding: var(--space-2xl) var(--space-md); }
.space-card { padding: var(--space-lg); }


.text-display {
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.text-body {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.text-body:last-child { margin-bottom: 0; }

.text-caption {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--gradient-cta);
  color: #fff;
  font-family: 'Onest', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(167, 139, 250, 0);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.action-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(167, 139, 250, 0.3);
  color: #fff;
}

.action-primary:active { transform: translateY(0); }

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Onest', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-mid);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.action-ghost:hover {
  background: var(--gradient-soft);
  border-color: var(--color-candy-purple);
  color: var(--text-primary);
  transform: translateY(-2px);
}


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


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


.nav-full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.nav-full.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-logo { display: flex; align-items: center; margin-right: auto; width: 150px; }
.nav-logo img { transition: opacity var(--transition-base); }
.nav-logo:hover img { opacity: 0.8; }

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.5rem); }

.nav-cta { font-size: 0.875rem; padding: 0.625rem 1.375rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}


.nav-pill {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8) translateY(-8px);
  transition: all var(--transition-slow);
}

.nav-pill.visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.pill-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-cta);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: #fff;
  font-size: 1.125rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pill-hamburger:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-xl), 0 0 32px rgba(167, 139, 250, 0.4);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 21, 48, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 340px;
  background: var(--surface-dark);
  z-index: 1020;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  overflow-y: auto;
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.mobile-close:hover { background: rgba(255,255,255,0.2); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

.mobile-nav-links li { opacity: 0; transform: translateX(-16px); transition: all var(--transition-base); }
.mobile-nav-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu.active .mobile-nav-links li { opacity: 1; transform: translateX(0); }

.mobile-nav-links a {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--text-on-dark);
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-nav-links a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding-left: 1.5rem;
}

.mobile-cta {
  margin-top: var(--space-lg);
  text-align: center;
  justify-content: center;
}


.hero-section {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

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

.hero-bg-gradient::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.12) 0%, transparent 70%);
}

.hero-bg-gradient::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.10) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--narrow-col-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-eyebrow {
  margin-bottom: var(--space-sm);
  color: var(--color-candy-purple);
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xl);
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.breadcrumb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--surface-raised-bg);
  border: 2px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.breadcrumb-step.active .step-dot {
  background: var(--gradient-cta);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-md), 0 0 16px rgba(167, 139, 250, 0.4);
  transform: scale(1.1);
}

.breadcrumb-step:hover .step-dot {
  border-color: var(--color-candy-purple);
  color: var(--color-candy-purple);
  transform: scale(1.05);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.breadcrumb-step.active .step-label { color: var(--color-candy-purple); }

.breadcrumb-line {
  flex: 1;
  height: 2px;
  background: var(--border-mid);
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-top: 20px;
  min-width: 24px;
}

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

.hero-btn { font-size: 1rem; padding: 1rem 2rem; }
.hero-btn-ghost { font-size: 1rem; padding: 1rem 2rem; }

.hero-image-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--narrow-col-width);
  margin: var(--space-xl) auto 0;
  padding: 0 var(--space-md);
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 16/7;
}


.section-eyebrow {
  color: var(--color-candy-purple);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-heading {
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  margin-bottom: var(--space-md);
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.section-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16/8;
  margin: var(--space-lg) 0;
}


.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: var(--surface-raised-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.accordion-item:hover { box-shadow: var(--shadow-md); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 64px;
  transition: background var(--transition-base);
}

.accordion-trigger:hover { background: rgba(167, 139, 250, 0.04); }
.accordion-trigger[aria-expanded="true"] { background: rgba(167, 139, 250, 0.06); }

.accordion-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-candy-purple);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon-wrap {
  background: var(--gradient-cta);
  color: #fff;
}

.accordion-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.accordion-chevron {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  color: var(--color-candy-purple);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body.open { max-height: 600px; }

.accordion-body p {
  padding: 0 var(--space-md) var(--space-md);
  padding-left: calc(var(--space-md) + 40px + var(--space-sm));
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}


.gradient-feature-section {
  background: var(--gradient-feature);
  position: relative;
  overflow: hidden;
}

.gradient-feature-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.18);
}

.gradient-feature-section .narrow-col { position: relative; z-index: 1; }

.gradient-feature-section .section-eyebrow.light,
.gradient-feature-section .text-caption.light { color: rgba(255,255,255,0.7); }
.gradient-feature-section .section-heading.light { color: #fff; }
.gradient-feature-section .text-body.light { color: rgba(255,255,255,0.88); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-candy-purple);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

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

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}


.swiper-container-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) var(--space-xl);
}

.slide-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-height: 220px;
}

.slide-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-candy-purple);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.slide-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

.slide-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.swiper-pagination-bullet {
  background: var(--border-mid);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--gradient-cta);
  width: 24px;
  border-radius: var(--radius-pill);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-candy-purple);
  width: 44px;
  height: 44px;
  background: var(--surface-raised-bg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--shadow-lg);
}


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

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

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.calc-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'Onest', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--surface-base);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.calc-input:focus {
  border-color: var(--color-candy-purple);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

.calc-btn { align-self: flex-start; }

.calc-result {
  padding: var(--space-md);
  background: var(--gradient-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-mid);
  display: none;
}

.calc-result.visible { display: block; }

.result-label {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.result-value {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.result-note { color: var(--text-muted); display: block; }


.cta-banner-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
}

.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.cta-sub {
  margin-bottom: var(--space-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-main-btn { font-size: 1.0625rem; padding: 1.125rem 2.25rem; }


.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.page-hero .narrow-col { position: relative; z-index: 1; }

.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: var(--space-md);
}

.page-hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 540px;
}


.philosophy-principle {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.philosophy-principle:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.principle-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
}

.principle-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-inline {
  margin-top: var(--space-lg);
}


.enrollment-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.required-mark { color: var(--color-candy-pink); }

.form-input {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'Onest', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--surface-base);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  min-height: 44px;
}

.form-input:focus {
  border-color: var(--color-candy-purple);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c6f9a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

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

.form-privacy {
  padding-top: var(--space-xs);
}

.privacy-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.privacy-label a {
  color: var(--color-candy-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit-btn { width: 100%; justify-content: center; padding: 1rem; }


.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.gradient-check {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  margin-top: 3px;
}


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

.faq-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}


.blog-post-card {
  margin-bottom: var(--space-lg);
  overflow: hidden;
}

.blog-post-image {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: var(--space-md);
}

.blog-meta {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-sm);
}

.blog-category {
  background: var(--gradient-soft);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--color-candy-purple);
}

.blog-date { color: var(--text-muted); }

.blog-post-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

.blog-excerpt {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-left: 3px solid var(--color-candy-purple);
  padding-left: var(--space-sm);
  margin-bottom: var(--space-md);
}


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

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

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

.contact-info-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

a.contact-info-value:hover { color: var(--color-candy-purple); }


.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-lg);
}


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

.thanks-wrap {
  max-width: 520px;
  text-align: center;
  padding: var(--space-md);
}

.thanks-icon-wrap {
  margin-bottom: var(--space-lg);
}

.thanks-icon {
  font-size: 4rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.thanks-sub {
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
}

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

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


.site-footer {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  margin-top: auto;
}

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

.footer-cta-headline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.footer-cta-sub {
  font-size: 0.9375rem;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.footer-email-form { display: flex; flex-direction: column; gap: var(--space-xs); }

.footer-form-row {
  display: flex;
  gap: 0.5rem;
}

.footer-email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  font-family: 'Onest', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-on-dark);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.footer-email-input::placeholder { color: var(--text-on-dark-muted); }
.footer-email-input:focus {
  border-color: var(--color-candy-purple);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}

.footer-submit { padding: 0.75rem 1.25rem; font-size: 0.875rem; }

.footer-privacy-note { color: var(--text-on-dark-muted); }

.footer-right { display: flex; gap: var(--space-lg); }

.footer-col { flex: 1; }

.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-sm);
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a,
.footer-links li {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition-base);
  line-height: 1.5;
}

.footer-links a:hover { color: var(--text-on-dark); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom .text-caption {
  color: var(--text-on-dark-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.8125rem;
}


.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-xl) 0 var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.legal-content h2:first-of-type { margin-top: var(--space-lg); border-top: none; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.legal-table th {
  background: var(--gradient-soft);
  color: var(--text-primary);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-mid);
}

.legal-table td {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.55;
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: rgba(167, 139, 250, 0.03); }

.terms-definitions {
  margin: var(--space-md) 0;
}

.terms-definitions dt {
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
}

.terms-definitions dd {
  margin-left: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  padding-bottom: var(--space-xs);
  border-bottom: 1px dashed var(--border-light);
}

.legal-content a {
  color: var(--color-candy-purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content code {
  background: var(--gradient-soft);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-candy-purple);
}


.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 21, 48, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-backdrop.visible { opacity: 1; }

.cookie-modal {
  background: var(--surface-raised-bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(167, 139, 250, 0.15);
  max-width: 520px;
  max-height: 90%;
  overflow-y: auto;
  width: 100%;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.cookie-backdrop.visible .cookie-modal { transform: translateY(0) scale(1); }

.cookie-modal-header {
  padding: var(--space-md) var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-md);
}

.cookie-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

.cookie-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cookie-modal-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-modal-body { padding: var(--space-md); }

.cookie-categories { display: flex; flex-direction: column; gap: 0.75rem; }

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm);
  background: var(--surface-inset-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.cookie-category-info { flex: 1; }

.cookie-category-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cookie-category-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

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

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.cookie-toggle input:checked + .toggle-slider { background: var(--gradient-cta); }
.cookie-toggle input:checked + .toggle-slider::before { transform: translateX(22px); }
.cookie-toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-footer {
  padding: 0 var(--space-md) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-modal-footer .action-primary,
.cookie-modal-footer .action-ghost {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}


.philosophy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-candy-purple);
  font-weight: 600;
  font-size: 1rem;
  margin-top: var(--space-md);
  transition: gap var(--transition-base), color var(--transition-base);
}

.philosophy-link:hover {
  gap: 0.875rem;
  color: var(--color-candy-pink);
}


@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .nav-links,
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-breadcrumb { gap: 0; }
  .breadcrumb-line { min-width: 16px; }

  .hero-actions { flex-direction: column; }
  .hero-btn, .hero-btn-ghost { width: 100%; justify-content: center; }

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

  .calc-inputs { grid-template-columns: 1fr; }

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

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

  .footer-right { flex-direction: column; gap: var(--space-md); }

  .footer-form-row { flex-direction: column; }
  .footer-submit { width: 100%; justify-content: center; }

  .philosophy-principle { flex-direction: column; gap: var(--space-sm); }
  .principle-number { font-size: 2rem; }

  .accordion-body p { padding-left: var(--space-md); }

  .cookie-modal-footer { flex-direction: column; }
  .cookie-modal-footer .action-primary,
  .cookie-modal-footer .action-ghost { flex: none; }

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

@media (max-width: 480px) {
  .hero-heading { font-size: 1.875rem; }
  .section-heading { font-size: 1.5rem; }
  .space-section { padding: 3rem var(--space-sm); }
  .space-card { padding: var(--space-md); }
  .narrow-col { padding: 0 var(--space-sm); }
  .accordion-body p { padding-left: var(--space-sm); }
  .breadcrumb-line { min-width: 10px; }
  .step-dot { width: 32px; height: 32px; font-size: 0.75rem; }
}