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

:root {
  --color-bg: #0d0f1a;
  --color-surface: #141627;
  --color-surface-alt: #1a1e35;
  --color-surface-light: #f5f4f0;
  --color-surface-light-alt: #eeecea;
  --color-primary: #7c6af7;
  --color-primary-glow: rgba(124, 106, 247, 0.35);
  --color-secondary: #3ecfcf;
  --color-secondary-glow: rgba(62, 207, 207, 0.3);
  --color-accent-gold: #f0c060;
  --color-accent-gold-glow: rgba(240, 192, 96, 0.3);
  --color-accent-rose: #f06090;
  --color-accent-rose-glow: rgba(240, 96, 144, 0.3);
  --color-text-dark: #1a1c2e;
  --color-text-body: #3a3d52;
  --color-text-light: #e8e6f8;
  --color-text-muted-light: #a8a5c8;
  --color-text-muted-dark: #6b6882;
  --color-border-dark: rgba(124, 106, 247, 0.2);
  --color-border-light: rgba(26, 28, 46, 0.12);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
  --shadow-glow-primary: 0 4px 24px var(--color-primary-glow), 0 0 60px rgba(124,106,247,0.12);
  --shadow-glow-secondary: 0 4px 24px var(--color-secondary-glow), 0 0 60px rgba(62,207,207,0.1);
  --shadow-glow-gold: 0 4px 24px var(--color-accent-gold-glow);
  --shadow-glow-rose: 0 4px 24px var(--color-accent-rose-glow);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --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: 88px;
  --nav-height-scrolled: 64px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--color-text-dark);
  background-color: var(--color-surface-light);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.section-heading.light { color: var(--color-text-light); }

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}
.section-label.light { color: var(--color-secondary); }

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-intro.light { color: var(--color-text-muted-light); }

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

.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.text-link:hover { gap: 10px; color: var(--color-secondary); }

.intro-large-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-body);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}

/* =====================
   BUTTONS
   ===================== */
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--color-primary), #5d4de8);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: var(--shadow-glow-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-primary-glow), 0 0 80px rgba(124,106,247,0.2);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--color-text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--color-border-light);
  transition: all var(--transition-fast);
}
.secondary-action:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow-primary);
}

/* =====================
   NAVIGATION
   ===================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 2rem;
  transition: padding var(--transition-base), background var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base);
}
.site-nav.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(124,106,247,0.15), 0 4px 24px rgba(0,0,0,0.3);
}

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

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  height: 36px;
  width: auto;
  transition: height var(--transition-base);
}
.site-nav.scrolled .brand-logo { height: 28px; }
.brand-name {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}
.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.nav-item:hover, .nav-item.active { color: var(--color-text-light); }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

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

.search-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-light);
  transition: all var(--transition-fast);
  background: rgba(255,255,255,0.05);
}
.search-trigger:hover {
  color: var(--color-text-light);
  background: rgba(255,255,255,0.1);
}

.nav-cta { font-size: 0.85rem; padding: 0.6rem 1.4rem; }

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  transition: background var(--transition-fast);
}
.mobile-menu-trigger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.mobile-menu-trigger:hover { background: rgba(255,255,255,0.1); }

/* =====================
   SEARCH OVERLAY
   ===================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,15,26,0.95);
  backdrop-filter: blur(24px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.search-overlay-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-bottom: 2px solid var(--color-primary);
}
.search-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--color-text-light);
  padding: var(--space-sm) 0;
}
.search-field::placeholder { color: var(--color-text-muted-light); }
.search-close {
  color: var(--color-text-muted-light);
  font-size: 1.2rem;
  padding: 8px;
  transition: color var(--transition-fast);
}
.search-close:hover { color: var(--color-text-light); }

/* =====================
   MOBILE BOTTOM SHEET
   ===================== */
.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.mobile-sheet-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1600;
  background: var(--color-surface);
  border-radius: 24px 24px 0 0;
  padding: 0.75rem var(--space-md) 2rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.4), 0 -1px 0 rgba(124,106,247,0.2);
}
.mobile-sheet.active { transform: translateY(0); }

.sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 0 auto var(--space-md);
}

.sheet-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sheet-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem var(--space-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.sheet-nav-item i { width: 20px; color: var(--color-primary); }
.sheet-nav-item:hover {
  background: rgba(124,106,247,0.1);
  color: var(--color-text-light);
}
.sheet-cta {
  margin-top: var(--space-sm);
  text-align: center;
  justify-content: center;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,15,26,0.3) 0%,
    rgba(13,15,26,0.5) 40%,
    rgba(13,15,26,0.85) 75%,
    rgba(13,15,26,0.97) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-cutout {
  margin-bottom: var(--space-lg);
}
.hero-display-text {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background-image: url('../images/hero-financial-routine.jpg');
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: brightness(1.8) contrast(1.2);
  text-shadow: none;
}

.hero-sub-content {
  max-width: 580px;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--color-text-muted-light);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-primary-btn { font-size: 1rem; padding: 0.9rem 2rem; }
.hero-secondary-btn {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  color: var(--color-text-light);
  border-color: rgba(255,255,255,0.2);
}
.hero-secondary-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =====================
   LAYOUT UTILITIES
   ===================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.content-block {
  padding: var(--space-2xl) 0;
}

.dark-section {
  background: var(--color-bg);
}

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

/* =====================
   LUMINOUS CARDS
   ===================== */
.luminous-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-glow-primary), var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.luminous-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124,106,247,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.luminous-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 48px var(--color-primary-glow), 0 0 80px rgba(124,106,247,0.15), var(--shadow-lg);
  border-color: rgba(124,106,247,0.4);
}
.luminous-card.accent-glow {
  box-shadow: var(--shadow-glow-secondary), var(--shadow-md);
  border-color: rgba(62,207,207,0.25);
}
.luminous-card.accent-glow:hover {
  box-shadow: 0 8px 48px var(--color-secondary-glow), 0 0 80px rgba(62,207,207,0.15), var(--shadow-lg);
  border-color: rgba(62,207,207,0.5);
}


.intro-section .luminous-card,
.process-section .luminous-card,
.routine-teaser-section .luminous-card,
.cta-section .luminous-card,
.tools-section .luminous-card,
.approach-section .luminous-card {
  background: #fff;
  border-color: rgba(124,106,247,0.15);
  box-shadow: 0 4px 20px rgba(124,106,247,0.1), var(--shadow-sm);
}
.intro-section .luminous-card:hover,
.process-section .luminous-card:hover,
.tools-section .luminous-card:hover {
  box-shadow: 0 8px 40px rgba(124,106,247,0.2), var(--shadow-md);
  border-color: rgba(124,106,247,0.3);
}

/* =====================
   CARD STACK EFFECT
   ===================== */
.card-stack-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.card-stack-wrapper.centered {
  display: flex;
  justify-content: center;
}

.stacked-card {
  border-radius: var(--radius-lg);
  position: absolute;
}
.card-back-2 {
  inset: 0;
  background: rgba(124,106,247,0.08);
  border: 1px solid rgba(124,106,247,0.12);
  transform: rotate(3deg) translateY(8px) scale(0.96);
  border-radius: var(--radius-lg);
}
.card-back-1 {
  inset: 0;
  background: rgba(62,207,207,0.06);
  border: 1px solid rgba(62,207,207,0.1);
  transform: rotate(-1.5deg) translateY(4px) scale(0.98);
  border-radius: var(--radius-lg);
}
.card-front {
  position: relative;
  z-index: 2;
}

.card-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.card-image.tall { height: 420px; }

/* =====================
   INTRO SECTION
   ===================== */
.intro-section { background: var(--color-surface-light); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.intro-text-side { padding-right: var(--space-lg); }

/* =====================
   FEATURES GRID
   ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  padding: var(--space-lg);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), #5d4de8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-glow-primary);
}
.feature-icon-wrap.accent-2 { background: linear-gradient(135deg, var(--color-secondary), #2ab5b5); box-shadow: var(--shadow-glow-secondary); }
.feature-icon-wrap.accent-3 { background: linear-gradient(135deg, var(--color-accent-gold), #d4a030); box-shadow: var(--shadow-glow-gold); }
.feature-icon-wrap.accent-4 { background: linear-gradient(135deg, var(--color-accent-rose), #d04070); box-shadow: var(--shadow-glow-rose); }

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}
.feature-text {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process-section { background: var(--color-surface-light-alt); }

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

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

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.step-number {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* =====================
   MODULE PREVIEW
   ===================== */
.modules-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.module-preview-card { overflow: hidden; }
.module-preview-img { overflow: hidden; }
.module-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.module-preview-card:hover .module-img { transform: scale(1.04); }

.module-preview-body {
  padding: var(--space-md);
}
.module-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(62,207,207,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-xs);
}
.module-preview-body h3 {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.module-preview-body p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

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

/* =====================
   ROUTINE TEASER
   ===================== */
.routine-teaser-section { background: var(--color-surface-light); }

.routine-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.routine-teaser-text .section-heading { margin-bottom: var(--space-md); }
.routine-teaser-text .body-text { margin-bottom: var(--space-sm); }
.routine-teaser-text .primary-action { margin-top: var(--space-md); }

.routine-time-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.time-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: #fff;
}
.time-card i {
  font-size: 1.3rem;
  color: var(--color-primary);
  width: 28px;
}
.time-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
  display: block;
}
.time-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item { overflow: hidden; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-trigger:hover { color: var(--color-secondary); }
.faq-trigger[aria-expanded="true"] { color: var(--color-secondary); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition-base);
  padding: 0 var(--space-lg);
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 var(--space-lg) var(--space-md);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted-light);
  line-height: 1.7;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section { background: var(--color-surface-light); }

.cta-inner {
  background: linear-gradient(135deg, var(--color-surface) 0%, #1e1650 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-glow-primary), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(124,106,247,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.cta-text {
  font-size: 1.05rem;
  color: var(--color-text-muted-light);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .secondary-action {
  color: var(--color-text-light);
  border-color: rgba(255,255,255,0.2);
}
.cta-section .secondary-action:hover {
  border-color: var(--color-primary);
  color: var(--color-text-light);
}

/* =====================
   ACCENT CIRCLES (rellax)
   ===================== */
.accent-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.accent-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,106,247,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.accent-circle-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62,207,207,0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
}
.accent-circle-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240,192,96,0.1) 0%, transparent 70%);
  top: 50%;
  right: -80px;
}
.intro-section, .routine-teaser-section { position: relative; overflow: hidden; }

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}
.page-hero.short-hero { min-height: 40vh; }

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0f1a 0%, #1a1035 50%, #0d1a2a 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 3rem) 0;
  width: 100%;
}
.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}
.page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted-light);
  max-width: 600px;
  line-height: 1.7;
}

/* =====================
   WER WIR SIND PAGE
   ===================== */
.philosophy-section { background: var(--color-surface-light); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.philosophy-text .body-text { margin-bottom: var(--space-sm); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}
.value-card {
  padding: var(--space-lg);
  text-align: center;
}
.value-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: block;
}
.value-icon.accent-2 { color: var(--color-secondary); }
.value-icon.accent-3 { color: var(--color-accent-gold); }
.value-icon.accent-4 { color: var(--color-accent-rose); }
.value-card h3 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}

.approach-section { background: var(--color-surface-light-alt); }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.approach-text .body-text { margin-bottom: var(--space-sm); }

.phase-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
}
.phase-cards::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}
.phase-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: #fff;
  position: relative;
}
.phase-num {
  font-family: 'Merriweather', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(124,106,247,0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(124,106,247,0.3);
}
.phase-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}
.phase-card p {
  font-size: 0.85rem;
  color: var(--color-text-body);
}

/* =====================
   MODULE PAGE
   ===================== */
.modules-intro {
  text-align: center;
  padding: var(--space-md) 0;
}
.module-block-header {
  margin-bottom: var(--space-xl);
}
.module-area-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-primary), #5d4de8);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}
.module-area-badge.accent-2 { background: linear-gradient(135deg, var(--color-secondary), #2ab5b5); }
.module-area-badge.accent-3 { background: linear-gradient(135deg, var(--color-accent-gold), #d4a030); }
.module-area-badge.accent-4 { background: linear-gradient(135deg, var(--color-accent-rose), #d04070); }

.module-block-header .section-heading { margin-bottom: var(--space-xs); }

.module-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.module-cards-grid.two-col { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.module-detail-card { padding: var(--space-lg); }
.module-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.module-number {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.6;
}
.module-card-header i {
  font-size: 1.3rem;
  color: var(--color-secondary);
}
.module-detail-card h3 {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}
.module-detail-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.module-topics li {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  padding-left: 1.2rem;
  position: relative;
}
.module-topics li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
}

/* =====================
   TAGESROUTINE PAGE
   ===================== */
.routine-intro { text-align: center; padding: var(--space-md) 0; }

.routine-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.routine-time-grid.reverse { direction: rtl; }
.routine-time-grid.reverse > * { direction: ltr; }

.routine-time-header {
  position: sticky;
  top: calc(var(--nav-height-scrolled) + 2rem);
}
.time-icon-big {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), #5d4de8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-glow-primary);
}
.time-icon-big.accent-2 { background: linear-gradient(135deg, var(--color-secondary), #2ab5b5); box-shadow: var(--shadow-glow-secondary); }
.time-icon-big.accent-3 { background: linear-gradient(135deg, var(--color-accent-gold), #d4a030); box-shadow: var(--shadow-glow-gold); }

.routine-questions-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.routine-question-card { padding: var(--space-md) var(--space-lg); }
.q-number {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 6px;
}
.routine-question-card h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.routine-question-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}

.weekly-routine-wrap { max-width: 900px; margin: 0 auto; }
.weekly-header {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
}
.weekly-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.weekly-step { padding: var(--space-md) var(--space-lg); }
.step-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  display: block;
  margin-bottom: 6px;
}
.weekly-step h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.weekly-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}

.tools-section { background: var(--color-surface-light-alt); }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.tool-card { padding: var(--space-lg); background: #fff; }
.tool-icon {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  display: block;
}
.tool-icon.accent-2 { color: var(--color-secondary); }
.tool-icon.accent-3 { color: var(--color-accent-gold); }
.tool-card h3 {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.tool-card p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

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

/* =====================
   CONTACT PAGE
   ===================== */
.contact-main-section { background: var(--color-surface-light); }

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

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: #fff;
}
.contact-detail-item i {
  font-size: 1rem;
  color: var(--color-primary);
  width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
  margin-bottom: 2px;
}
.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin: 0;
}
.contact-detail-item a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}
.contact-detail-item a:hover { color: var(--color-secondary); }

.contact-form-wrap { padding: var(--space-xl); }
.contact-form-wrap .section-heading { margin-bottom: var(--space-lg); }

.form-row-horizontal {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted-light);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124,106,247,0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--color-text-muted-light); opacity: 0.5; }

.form-bottom-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}
.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  margin-top: 2px;
  cursor: pointer;
}
.privacy-check span {
  font-size: 0.82rem;
  color: var(--color-text-muted-light);
  line-height: 1.5;
}
.privacy-check a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}
.privacy-check a:hover { color: var(--color-secondary); }

.form-submit-btn { white-space: nowrap; }


.timeline-section { background: var(--color-bg); }
.timeline-wrap {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-accent-gold));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding-bottom: var(--space-md);
  position: relative;
}
.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--color-bg), var(--shadow-glow-primary);
}
.timeline-content {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  margin-top: 8px;
}
.timeline-step {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}
.timeline-content h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted-light);
  line-height: 1.65;
}


.map-section { background: var(--color-surface-light); }
.map-wrap .section-heading { margin-bottom: var(--space-md); }
.map-frame {
  overflow: hidden;
  padding: 0;
}
.map-frame iframe { display: block; border-radius: var(--radius-lg); }

/* =====================
   THANKS PAGE
   ===================== */
.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  background: linear-gradient(135deg, var(--color-surface-light) 0%, var(--color-surface-light-alt) 100%);
}
.thanks-container {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}
.thanks-quote-card {
  padding: var(--space-xl);
  text-align: center;
  background: var(--color-surface);
  width: 100%;
}
.quote-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  opacity: 0.6;
}
.thanks-quote {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.quote-attribution {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--color-text-muted-light);
}
.thanks-message {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.thanks-icon {
  font-size: 3rem;
  color: var(--color-secondary);
}
.thanks-heading {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-text-dark);
}
.thanks-text {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-sm);
}

/* =====================
   LEGAL PAGES
   ===================== */
.legal-main {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: var(--space-3xl);
  min-height: 100vh;
  background: var(--color-surface-light);
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.legal-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border-light);
}
.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}
.legal-date {
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
}
.legal-body h2 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border-light);
}
.legal-body p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
.legal-body a:hover { color: var(--color-secondary); }

.impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-sm);
}
.impressum-table td {
  padding: 8px 12px;
  font-size: 0.9rem;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}
.impressum-table td:first-child {
  width: 40%;
  color: var(--color-text-muted-dark);
  white-space: nowrap;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.88rem;
}
.cookie-table th {
  background: var(--color-surface-light-alt);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text-dark);
  border-bottom: 2px solid var(--color-border-light);
}
.cookie-table td {
  padding: 10px 14px;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(124,106,247,0.15);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo { height: 32px; width: auto; }
.footer-brand-name {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-light);
}
.footer-nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--color-text-light); }

.footer-contact {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact span {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact i { color: var(--color-primary); font-size: 0.8rem; }
.footer-contact a {
  color: var(--color-text-muted-light);
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--color-text-light); }

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-text-muted-dark);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--color-text-muted-light); }

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

/* =====================
   SCROLL REVEAL
   ===================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .intro-grid,
  .process-grid,
  .routine-teaser-inner,
  .philosophy-grid,
  .approach-inner,
  .routine-image-wrap,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .intro-text-side { padding-right: 0; }
  .routine-time-grid { grid-template-columns: 1fr; }
  .routine-time-grid.reverse { direction: ltr; }
  .routine-time-header { position: static; }
  .weekly-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .weekly-header { flex-direction: column; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-links, .nav-cta { display: none; }
  .mobile-menu-trigger { display: flex; }

  .hero-display-text { font-size: clamp(3rem, 15vw, 5rem); }

  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .modules-preview-grid { grid-template-columns: 1fr; }
  .module-cards-grid { grid-template-columns: 1fr; }
  .module-cards-grid.two-col { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }

  .cta-inner { padding: var(--space-xl) var(--space-md); }
  .cta-buttons { flex-direction: column; align-items: center; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-bottom-row { flex-direction: column; align-items: flex-start; }

  .timeline-wrap::before { left: 24px; }
  .timeline-marker { width: 48px; height: 48px; font-size: 0.9rem; }

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

  .search-trigger { display: none; }
  .card-stack-wrapper { max-width: 100%; }
  .card-back-1, .card-back-2 { display: none; }
}

@media (max-width: 480px) {
  .content-block { padding: var(--space-xl) 0; }
  .hero-actions { flex-direction: column; }
  .hero-primary-btn, .hero-secondary-btn { text-align: center; justify-content: center; }
  .phase-cards::before { display: none; }
}