@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-primary: #0a0b0f;
  --bg-secondary: #111318;
  --bg-card: #161820;
  --bg-elevated: #1c1f27;
  --accent: #7c6af7;
  --accent-hover: #9585ff;
  --accent-glow: rgba(124, 106, 247, 0.25);
  --accent-secondary: #4ecdc4;
  --text-primary: #eef0f6;
  --text-secondary: #9499b0;
  --text-muted: #5a5f78;
  --border: #252836;
  --border-light: #2f3347;
  --nav-bg: #0a0b0fef;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(124, 106, 247, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(124, 106, 247, 0.35);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--accent);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* =====================
   NAVIGATION
   ===================== */

nav.orbital {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
  padding: 0 var(--space-md);
}

nav.orbital.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 8px rgba(0,0,0,0.4);
}

.orbital-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.orbital-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.orbital-logo img {
  height: 36px;
  width: auto;
}

.orbital-logo span {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.orbital-links {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.orbital-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.orbital-links a:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-color: var(--border);
}

.orbital-links a.active {
  color: var(--accent);
  background: rgba(124, 106, 247, 0.1);
  border-color: rgba(124, 106, 247, 0.3);
}

.orbital-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-primary) !important;
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(124, 106, 247, 0.3);
  border: none !important;
}

.orbital-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(124, 106, 247, 0.5);
  color: var(--bg-primary) !important;
}

.orbital-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  background: none;
  border: none;
}

.orbital-hamburger:hover {
  background: var(--bg-elevated);
}

.orbital-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =====================
   MOBILE DRAWER (CURTAIN)
   ===================== */

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
}

.drawer-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #13142080, #0a0b0f99);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.drawer-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #111318 0%, #0d0e13 100%);
  border-bottom: 1px solid var(--border);
  padding: 90px var(--space-lg) var(--space-lg);
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(0.32, 0, 0.08, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  box-shadow: var(--shadow-xl);
}

.drawer-link {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(-20px);
  border: 1px solid transparent;
}

.drawer-link:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-color: var(--border);
}

.drawer-link.active {
  color: var(--accent);
  background: rgba(124, 106, 247, 0.1);
  border-color: rgba(124, 106, 247, 0.3);
}

.drawer-link--cta {
  background: var(--accent);
  color: var(--bg-primary) !important;
  text-align: center;
  margin-top: var(--space-sm);
  font-weight: 600;
}

.drawer-link--cta:hover {
  background: var(--accent-hover);
  border-color: transparent;
}

.drawer-close {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  white-space: nowrap;
}

.drawer-close:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.drawer.is-open {
  pointer-events: all;
}

.drawer.is-open .drawer-veil {
  opacity: 1;
}

.drawer.is-open .drawer-nav {
  transform: translateY(0);
}

.drawer.is-open .drawer-close {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 0.3s ease 0.45s;
}

.drawer.is-open .drawer-link {
  opacity: 1;
  transform: translateY(0);
}

.drawer.is-open .drawer-link:nth-child(1) { transition: all 0.3s ease 0.15s; }
.drawer.is-open .drawer-link:nth-child(2) { transition: all 0.3s ease 0.2s; }
.drawer.is-open .drawer-link:nth-child(3) { transition: all 0.3s ease 0.25s; }
.drawer.is-open .drawer-link:nth-child(4) { transition: all 0.3s ease 0.3s; }
.drawer.is-open .drawer-link:nth-child(5) { transition: all 0.3s ease 0.35s; }

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 24px rgba(124, 106, 247, 0.3), 0 4px 12px rgba(0,0,0,0.3);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124, 106, 247, 0.5), 0 8px 20px rgba(0,0,0,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn--ghost:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn--large {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn--sm {
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
}

.btn--thanks {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.btn--thanks:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* =====================
   LABELS / PILLS
   ===================== */

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(124, 106, 247, 0.1);
  border: 1px solid rgba(124, 106, 247, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

/* =====================
   HERO / STAGE
   ===================== */

.stage {
  padding-top: 68px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 80% at 70% 40%, rgba(124,106,247,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(78,205,196,0.05) 0%, transparent 60%),
              var(--bg-primary);
}

.stage-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) clamp(1.5rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.stage-eyebrow {
  margin-bottom: var(--space-md);
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-secondary);
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.stage-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.stage-heading--accent {
  color: var(--accent);
  position: relative;
}

.stage-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-lg);
}

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

.stage-stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.stage-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stage-stat__value {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stage-stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg) var(--space-xl) 0;
  overflow: visible;
}

.stage-image-wrap {
  position: relative;
  width: 100%;
  max-width: 640px;
}

.stage-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.spotlight--float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(124,106,247,0.15);
  z-index: 3;
  min-width: 220px;
}

.spotlight-icon {
  color: var(--accent-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.spotlight--float strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.spotlight--float span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stage-curtain--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
  z-index: 1;
}

/* =====================
   SECTION HEADINGS
   ===================== */

.section-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* =====================
   SHELF SECTIONS
   ===================== */

.shelf {
  padding: var(--space-2xl) 0;
  position: relative;
}

.shelf-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.shelf-inner--reverse {
  direction: rtl;
}

.shelf-inner--reverse > * {
  direction: ltr;
}

.shelf-inner--full {
  display: block;
}

.shelf-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
}

.shelf--intro {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.shelf-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.shelf-text p:last-of-type {
  margin-bottom: var(--space-md);
}

.shelf-visual {
  position: relative;
}

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

.shelf-img--wide {
  height: 480px;
  width: 100%;
}

.shelf-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent), rgba(124,106,247,0.7));
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.shelf-accent-card i {
  font-size: 1.25rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-arrow:hover {
  gap: 0.75rem;
  color: var(--accent-hover);
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--accent-secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.shelf--photo-wide {
  background: var(--bg-secondary);
  overflow: hidden;
}

.shelf--photo-wide .shelf-inner {
  position: relative;
  max-width: 100%;
  padding: 0;
}

.shelf-overlay-text {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 640px;
  width: calc(100% - 3rem);
  box-shadow: var(--shadow-lg);
}

.shelf-overlay-text blockquote {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  text-align: center;
  border: none;
  padding: 0;
}

/* =====================
   GALLERY / SERVICES
   ===================== */

.gallery {
  padding: var(--space-2xl) 0;
  position: relative;
}

.gallery--services {
  background: var(--bg-secondary);
}

.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

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

.gallery-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.gallery-grid--faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery-grid--beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* =====================
   CARDS
   ===================== */

.card--service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card--service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card--service:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(124,106,247,0.1);
}

.card--service:hover::before {
  opacity: 1;
}

.card--service--accent {
  background: linear-gradient(135deg, rgba(124,106,247,0.12) 0%, var(--bg-card) 100%);
  border-color: rgba(124,106,247,0.25);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 106, 247, 0.1);
  border: 1px solid rgba(124,106,247,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  transition: all 0.3s ease;
}

.card--service:hover .card-icon {
  background: rgba(124, 106, 247, 0.2);
  box-shadow: 0 0 20px rgba(124,106,247,0.2);
}

.card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card--belief {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.card--belief:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(124,106,247,0.2);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* =====================
   FAQ CARDS
   ===================== */

.card--faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card--faq:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  transition: color 0.2s ease;
  min-height: 44px;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  border-top: 1px solid var(--border);
  display: none;
}

.card--faq.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  padding-top: var(--space-sm);
}

/* =====================
   CAROUSEL
   ===================== */

.gallery--carousel {
  background: var(--bg-primary);
}

.carousel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.carousel-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.carousel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.carousel-caption h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.carousel-caption p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.splide__arrow {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border) !important;
  opacity: 1 !important;
  width: 44px !important;
  height: 44px !important;
  transition: all 0.2s ease !important;
}

.splide__arrow:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

.splide__arrow svg {
  fill: var(--text-primary) !important;
}

.splide__arrow:hover svg {
  fill: var(--bg-primary) !important;
}

.splide__pagination__page {
  background: var(--border-light) !important;
  opacity: 1 !important;
  transition: background 0.2s ease !important;
}

.splide__pagination__page.is-active {
  background: var(--accent) !important;
  transform: scale(1.2) !important;
}

/* =====================
   CTA BLOCK
   ===================== */

.stage-curtain--cta {
  background: linear-gradient(135deg, rgba(124,106,247,0.12) 0%, rgba(78,205,196,0.06) 100%),
              var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.stage-curtain--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,106,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cta-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

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

.cta-inline {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* =====================
   PAGE HERO
   ===================== */

.page-main {
  padding-top: 68px;
  flex: 1;
}

.page-hero {
  padding: var(--space-2xl) 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,106,247,0.07) 0%, transparent 70%),
              var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.page-hero-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-sub {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.page-hero--split .page-hero-inner {
  text-align: left;
}

.page-hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  text-align: left;
}

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

.page-hero-content .page-hero-heading {
  margin: 0;
  text-align: left;
}

.page-hero-content .page-hero-sub {
  margin: 0;
  text-align: left;
}

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

/* =====================
   PROCESS STEPS
   ===================== */

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

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.process-step__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  min-width: 36px;
  line-height: 1;
}

.process-step__content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-step__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================
   TIMELINE
   ===================== */

.timeline {
  position: relative;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(124,106,247,0.1));
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  padding-left: 60px;
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 12px rgba(124,106,247,0.5);
  flex-shrink: 0;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.timeline-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================
   CONTACT PAGE
   ===================== */

.page-main--contact {
  padding-top: 100px;
  flex: 1;
}

.contact-layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) var(--space-2xl);
}

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

.contact-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.875rem 1.125rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,106,247,0.15);
}

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

.form-helper {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-field--privacy {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-sm);
}

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

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  transition: all 0.2s ease;
  position: relative;
  margin-top: 1px;
}

.form-checkbox:checked + .form-checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkbox:checked + .form-checkbox-custom::after {
  content: '\2714';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
}

.form-checkbox:focus + .form-checkbox-custom {
  box-shadow: 0 0 0 3px rgba(124,106,247,0.2);
}

.form-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}

.contact-urgent {
  background: linear-gradient(135deg, rgba(78,205,196,0.08), rgba(124,106,247,0.06));
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.contact-urgent-inner {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.contact-urgent-icon {
  font-size: 2rem;
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.contact-urgent-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-urgent-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color 0.2s ease;
}

.contact-info-card:hover {
  border-color: var(--border-light);
}

.contact-info-card i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-card span,
.contact-info-card a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-info-card a:hover {
  color: var(--accent);
}

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

.contact-map iframe {
  display: block;
}

/* =====================
   THANKS PAGE
   ===================== */

.thanks-main {
  flex: 1;
  display: flex;
  padding-top: 68px;
}

.thanks-stage {
  flex: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #5b47e0 50%, #3d2fa8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.thanks-stage::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.thanks-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

.thanks-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.thanks-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

/* =====================
   LEGAL PAGES
   ===================== */

.legal-page {
  background: var(--bg-primary);
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 4rem);
}

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

.legal-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.legal-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}

.accordion-set {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.accordion-item:hover {
  border-color: var(--border-light);
}

.accordion-item--open {
  border-color: rgba(124,106,247,0.3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  transition: color 0.2s ease;
  min-height: 56px;
}

.accordion-trigger:hover {
  color: var(--accent);
}

.accordion-chevron {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item--open .accordion-chevron,
.accordion-item.is-open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--border);
}

.accordion-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-top: var(--space-sm);
}

.accordion-body p:first-child {
  padding-top: var(--space-sm);
}

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

.accordion-body ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin: var(--space-sm) 0;
}

.accordion-body ul li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

/* =====================
   FOOTER
   ===================== */

.footer-base {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) clamp(1.5rem, 5vw, 4rem) var(--space-xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
}

.footer-nav h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

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

.footer-nav ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
  color: var(--text-primary);
}

.footer-contact h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.footer-contact address p i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact address a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact address a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* =====================
   BELIEFS PAGE
   ===================== */

.shelf--beliefs {
  background: var(--bg-secondary);
}

.shelf--final-belief .shelf-inner--centered {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.shelf--final-belief p {
  text-align: center;
}

.shelf-text--centered {
  text-align: center;
}

/* =====================
   TEXT UTILITIES
   ===================== */

.text-center {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

/* =====================
   COOKIE CONSENT BAR
   ===================== */

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5), 0 -2px 12px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0, 0.08, 1);
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-md) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-bar-text {
  flex: 1;
  min-width: 280px;
}

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

.cookie-bar-text a {
  color: var(--accent);
  text-decoration: underline;
  font-size: 0.875rem;
}

.cookie-bar-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-size: 0.825rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-btn--accept {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 16px rgba(124,106,247,0.3);
}

.cookie-btn--accept:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 24px rgba(124,106,247,0.5);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-light);
}

.cookie-btn--reject:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.cookie-btn--customize {
  background: transparent;
  color: var(--accent);
  border-color: rgba(124,106,247,0.3);
}

.cookie-btn--customize:hover {
  background: rgba(124,106,247,0.08);
  border-color: var(--accent);
}

.cookie-bar-customize {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) var(--space-md);
  border-top: 1px solid var(--border);
  display: none;
}

.cookie-bar-customize.is-expanded {
  display: block;
}

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

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

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

.cookie-category-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.cookie-category-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: rgba(124,106,247,0.2);
  border-color: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  background: var(--accent);
  transform: translate(20px, -50%);
}

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

/* =====================
   RESPONSIVE - TABLET
   ===================== */

@media (max-width: 1024px) {
  .stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stage-content {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    align-items: flex-start;
    order: 2;
  }

  .stage-visual {
    order: 1;
    padding: var(--space-lg);
    height: 360px;
  }

  .stage-img {
    height: 100%;
    border-radius: var(--radius-lg);
  }

  .spotlight--float {
    bottom: 10px;
    left: 10px;
  }

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

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

  .cta-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-img {
    height: 280px;
  }

  .page-hero-inner--split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-content .page-hero-heading,
  .page-hero-content .page-hero-sub {
    text-align: center;
  }

  .page-hero-img {
    height: 300px;
    order: -1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

/* =====================
   RESPONSIVE - MOBILE
   ===================== */

@media (max-width: 768px) {
  .orbital-links {
    display: none
; }

  .orbital-hamburger {
    display: flex;
  }

  .stage-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

  .shelf-inner--reverse {
    direction: ltr;
  }

  .shelf-img {
    height: 280px;
  }

  .shelf-accent-card {
    right: 0;
    bottom: -15px;
  }

  .gallery-grid--services {
    grid-template-columns: 1fr;
  }

  .gallery-grid--faq {
    grid-template-columns: 1fr;
  }

  .gallery-grid--beliefs {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

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

  .cta-block {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    flex-direction: column;
    align-items: center;
  }

  .cookie-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .cookie-bar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-urgent-inner {
    flex-direction: column;
    padding: var(--space-md);
    text-align: center;
  }

  .shelf-overlay-text {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .shelf--photo-wide .shelf-inner {
    display: block;
  }

  .stage-img {
    border-radius: var(--radius-lg);
  }

  .page-hero-inner--split {
    grid-template-columns: 1fr;
  }

  .page-hero-img {
    height: 240px;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 48px;
  }

  .timeline-marker {
    left: 8px;
    width: 16px;
    height: 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .shelf--final-belief .shelf-inner--centered {
    padding: 0 var(--space-md);
  }
}

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

  .section-heading {
    font-size: 1.5rem;
  }

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

  .btn--large {
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
  }

  .stage-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .legal-container {
    padding: var(--space-lg) var(--space-sm);
  }

  .accordion-trigger {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
  }

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

  .contact-layout {
    padding: 0 var(--space-sm) var(--space-xl);
  }

  .thanks-heading {
    font-size: 2rem;
  }
}