/* ============================================
   ENRICH Global Design System
   © 2026 ENRICH Global. All Rights Reserved.
   The ENRICH Method™
   ============================================ */

/* === CSS VARIABLES === */
:root {
  --bg-primary: #0a0a0f;
  --bg-card: #12121a;
  --bg-elevated: #1a1a2e;
  --bg-subtle: #0d1921;
  --teal: #3ce1e6;
  --teal-dim: rgba(60,225,230,0.15);
  --teal-glow: rgba(60,225,230,0.08);
  --purple: #5e17eb;
  --purple-dim: rgba(94,23,235,0.15);
  --orange: #ff6127;
  --orange-dim: rgba(255,97,39,0.15);
  --red-heart: #e53e3e;
  --green-whatsapp: #25D366;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #64748b;
  --border-subtle: rgba(60,225,230,0.1);
  --border-hover: rgba(60,225,230,0.3);
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: #5ff0f5; }
img { max-width: 100%; height: auto; display: block; }
h1 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 40px;
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: 16px; }
.nav-logo-house {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-house img {
  width: 56px; height: 56px;
  object-fit: contain;
}
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-brand-enrich {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: 0.06em;
}
.nav-brand-global {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .nav-brand-text { display: none; }
}
.nav-logo-house svg { width: 56px; height: 56px; }
.nav-wordmark {
  font-size: 24px; font-weight: 800; letter-spacing: 3px;
  background: linear-gradient(135deg, #ff6127, #e53e3e, #5e17eb, #22c55e, #3ce1e6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 24px; flex-wrap: wrap; }
.nav-links a {
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  transition: var(--transition); position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); -webkit-text-fill-color: initial; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--teal); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); font-weight: 600; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; background: var(--teal); color: var(--bg-primary) !important;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 14px;
  -webkit-text-fill-color: var(--bg-primary) !important;
}
.nav-cta:hover { background: #5ff0f5; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(60,225,230,0.3); }
.nav-cta::after { display: none; }

.nav-mobile-toggle {
  display: none; background: none; border: none; color: var(--teal);
  font-size: 28px; cursor: pointer;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  z-index: 999;
}
.nav-mobile-menu.active { display: flex; }
.nav-mobile-menu a {
  color: var(--text-primary); font-size: 20px; font-weight: 500;
}
.nav-mobile-menu a.active {
  color: var(--teal); font-weight: 700;
  border-left: 3px solid var(--teal); padding-left: 12px;
}

/* === BANNER CAROUSEL === */
.banner-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.banner-carousel img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.banner-carousel img.carousel-active {
  opacity: 1; position: relative;
}
/* Carousel dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 16px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(60,225,230,0.2); border: 1px solid rgba(60,225,230,0.3);
  cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.carousel-dot.active {
  background: var(--teal); transform: scale(1.2);
  box-shadow: 0 0 12px rgba(60,225,230,0.4);
}
.carousel-dot:hover { background: rgba(60,225,230,0.5); }
/* Progress bar under carousel */
.carousel-progress {
  height: 2px; background: rgba(60,225,230,0.1);
  margin-top: 8px; border-radius: 2px; overflow: hidden;
}
.carousel-progress-bar {
  height: 100%; background: var(--teal); width: 0%;
  border-radius: 2px;
  animation: carouselProgress 6s linear infinite;
}
@keyframes carouselProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Page header carousel variant */
.page-header .banner-carousel {
  border-radius: 0; box-shadow: none;
}
.page-header .banner-carousel img {
  object-fit: contain;
  padding: 8px 40px 0;
}
.page-header .carousel-dots {
  margin-top: 12px;
}
.page-header .carousel-progress { display: none; }

/* === BANNER TEXT OVERLAYS === */
.banner-carousel .banner-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.banner-carousel .banner-slide.carousel-active {
  opacity: 1; position: relative;
}
.banner-slide img {
  position: relative !important;
  opacity: 1 !important;
}
.banner-overlay-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 60px 10px;
  background: linear-gradient(to top, rgba(10,10,15,0.88) 0%, rgba(10,10,15,0.6) 70%, transparent 100%);
  text-align: center;
  z-index: 2;
}
.banner-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.banner-tagline .teal { color: var(--teal); }
.page-header .banner-overlay-text {
  padding: 8px 40px 8px;
}
.page-header .banner-tagline {
  font-size: 1rem;
}
@media (max-width: 768px) {
  /* TEXT BELOW IMAGE on mobile — not overlapping */
  .banner-overlay-text {
    position: relative; bottom: auto;
    padding: 8px 16px 6px;
    background: rgba(10,10,15,0.85);
    height: 36px; overflow: hidden; /* FIXED 1-line height — matches homepage */
  }
  .banner-tagline { font-size: 0.9rem; }
  .page-header .banner-tagline { font-size: 0.9rem; } /* match homepage size */
  /* Images show at natural aspect ratio — no fixed height, no cropping, no dead space */
  .page-header .banner-carousel img,
  .banner-carousel .banner-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
  }
  .page-header-banner { padding: 0 !important; } /* override inner page padding */
}
@media (max-width: 480px) {
  .banner-tagline { font-size: 0.8rem; }
  .page-header .banner-tagline { font-size: 0.8rem; }
  .banner-overlay-text { padding: 6px 12px 4px; height: 30px; overflow: hidden; }
}

/* === SITE ARTWORK IMAGES === */
/* Images already have turquoise circular borders baked in — no CSS borders or clipping */
.site-artwork {
  width: 100%; max-width: 280px;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.site-artwork:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.site-artwork-sm { max-width: 200px; }
.site-artwork-lg { max-width: 360px; }

/* Content section with artwork alongside text */
.content-with-art {
  display: flex; gap: 48px; align-items: center;
}
.content-with-art .art-side {
  flex-shrink: 0;
}
.content-with-art .text-side {
  flex: 1;
}
.content-with-art.art-right { flex-direction: row; }
.content-with-art.art-left { flex-direction: row-reverse; }
@media (max-width: 768px) {
  .content-with-art,
  .content-with-art.art-right,
  .content-with-art.art-left {
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
  }
  .content-with-art .art-side {
    order: 2;
  }
  .content-with-art .text-side {
    order: 1;
  }
  .site-artwork { max-width: 200px; margin: 0 auto; }
}

/* Artwork gallery row */
.art-gallery {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; padding: 40px 0;
}
.art-gallery .site-artwork { max-width: 180px; }
@media (max-width: 580px) {
  .art-gallery .site-artwork { max-width: 140px; }
  .art-gallery { gap: 20px; }
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0d1f2d 40%, #0a1a1b 70%, var(--bg-primary) 100%);
}
.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, var(--teal-glow) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(94,23,235,0.04) 0%, transparent 50%);
  pointer-events: none; animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(2%, -2%); }
}
.hero-banner-wrapper {
  position: relative; z-index: 1; width: 100%;
  margin-bottom: 40px;
}
.hero-banner-img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(60, 225, 230, 0.12);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-tag {
  font-size: 13px; text-transform: uppercase; letter-spacing: 4px;
  color: var(--teal); margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-family: var(--font-accent); font-size: 1.2rem; color: var(--text-secondary); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7; font-style: italic;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  padding: 14px 32px; border-radius: var(--radius-sm); font-size: 16px;
  font-weight: 600; cursor: pointer; display: inline-flex; align-items: center;
  gap: 8px; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--teal); color: var(--bg-primary); }
.btn-primary:hover { background: #5ff0f5; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(60,225,230,0.3); color: var(--bg-primary); }
.btn-outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal-dim); transform: translateY(-2px); }
.btn-whatsapp { background: var(--green-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #2be672; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(37,211,102,0.3); color: #fff; }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: #7033f0; transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 14px; }
.btn-ghost { background: rgba(60,225,230,0.1); border: 1px solid var(--border-hover); color: var(--teal); }
.btn-ghost:hover { background: rgba(60,225,230,0.2); }

/* === SECTION STYLES === */
.section { padding: 100px 24px; }
.section-dark { background: var(--bg-primary); }
.section-elevated { background: var(--bg-subtle); }
.section-card-bg { background: var(--bg-card); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  font-size: 13px; text-transform: uppercase; letter-spacing: 4px;
  color: var(--teal); margin-bottom: 16px; display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* === ENRICH FRAMEWORK CARDS === */
.enrich-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.enrich-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px 16px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.enrich-card:hover {
  border-color: var(--teal); transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--teal-glow);
}
.enrich-letter {
  font-size: 40px; font-weight: 800; margin-bottom: 8px;
}
.enrich-letter-e { color: #ff6127; }
.enrich-letter-n { color: #5e17eb; }
.enrich-letter-r { color: #22c55e; }
.enrich-letter-i { color: #e53e3e; }
.enrich-letter-c { color: #c026d3; }
.enrich-letter-h { color: #9f1239; }
.enrich-word { font-family: var(--font-heading); font-size: 15px; font-weight: 600; margin-bottom: 8px; letter-spacing: 0.02em; }
.enrich-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.enrich-tap-hint {
  font-size: 11px; color: var(--teal); margin-top: 12px;
  opacity: 0.5; transition: opacity 0.3s ease;
}
.enrich-card:hover .enrich-tap-hint { opacity: 1; }

/* === DIMENSION MODAL === */
.dimension-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity 0.3s ease;
}
.dimension-modal-overlay.active {
  display: flex; opacity: 1;
}
.dimension-modal {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 48px 40px 32px;
  position: relative; transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.dimension-modal-overlay.active .dimension-modal {
  transform: translateY(0);
}
.dimension-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 20px; cursor: pointer; padding: 8px;
  transition: color 0.2s; z-index: 1;
}
.dimension-close:hover { color: var(--text-primary); }
.dimension-modal-letter {
  font-size: 64px; font-weight: 800; text-align: center;
  margin-bottom: 4px;
}
.dimension-modal-title {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; text-align: center;
  color: var(--text-primary); margin-bottom: 28px; letter-spacing: -0.01em;
}
.dimension-modal-body {
  color: var(--text-secondary); line-height: 1.8; font-size: 15px;
}
.dimension-modal-body p {
  margin-bottom: 16px;
}
.dimension-modal-body .dim-question {
  color: var(--teal); font-style: italic; font-size: 16px;
  font-weight: 500; margin: 24px 0 16px;
  padding-left: 16px; border-left: 3px solid var(--teal);
}
.dimension-modal-body .dim-examples {
  background: rgba(60,225,230,0.05); border: 1px solid rgba(60,225,230,0.1);
  border-radius: var(--radius-md); padding: 20px; margin: 20px 0;
}
.dimension-modal-body .dim-examples h4 {
  color: var(--teal); font-size: 13px; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 12px;
}
.dimension-modal-body .dim-examples ul {
  list-style: none; padding: 0; margin: 0;
}
.dimension-modal-body .dim-examples li {
  padding: 6px 0; color: var(--text-secondary); font-size: 14px;
}
.dimension-modal-body .dim-examples li::before {
  content: '\2022'; color: var(--teal); margin-right: 10px;
}
.dimension-modal-footer {
  text-align: center; margin-top: 28px;
  padding-top: 20px; border-top: 1px solid var(--border-subtle);
}

/* === APP CARDS === */
.app-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.app-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 0; overflow: hidden; transition: var(--transition);
}
.app-card:hover { border-color: var(--border-hover); box-shadow: 0 8px 30px var(--teal-glow); transform: translateY(-4px); }
.app-card-img-wrap {
  position: relative; width: 100%; padding-top: 56%; overflow: hidden; background: rgba(10,10,15,0.5);
}
.app-card-img-wrap img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.app-card-content { padding: 24px 32px 32px; }
.app-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--purple); margin-bottom: 14px; display: block;
}
.app-name { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.app-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.app-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.app-price { font-size: 1.4rem; font-weight: 700; color: var(--teal); }
.app-price-region { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* === PROFILE CARDS === */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.profile-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}
.profile-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.profile-card h3 { color: var(--teal); margin-bottom: 16px; font-size: 1.2rem; }
.profile-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* === SOCIAL PROOF === */
.proof-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
  padding: 100px 24px; text-align: center;
}
.stats-row { display: flex; justify-content: center; gap: 60px; margin-bottom: 50px; flex-wrap: wrap; }
.stat-item {}
.stat-num { font-size: 3rem; font-weight: 800; color: var(--teal); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.proof-quote {
  font-family: var(--font-accent); font-size: 1.3rem; font-style: italic;
  color: var(--text-secondary); max-width: 650px; margin: 0 auto; line-height: 1.7;
}
.proof-attr { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* === COMING HOME SECTION === */
.coming-home {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0f1a20 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.coming-home blockquote {
  font-family: var(--font-accent); font-size: 1.6rem; font-style: italic;
  color: var(--teal); max-width: 600px; margin: 0 auto 24px; line-height: 1.5;
}
.coming-home p { color: var(--text-secondary); max-width: 600px; margin: 0 auto 16px; font-size: 1.05rem; }

/* === NEWSLETTER === */
.newsletter {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 48px; max-width: 600px;
  margin: 0 auto; text-align: center;
}
.newsletter h3 { margin-bottom: 12px; }
.newsletter p { color: var(--text-secondary); margin-bottom: 24px; font-size: 15px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1; padding: 14px 20px; background: var(--bg-primary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 16px; font-family: var(--font-body);
}
.newsletter-input:focus { outline: none; border-color: var(--teal); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-fields {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.newsletter-benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; text-align: left;
}

/* === FOOTER === */
.footer {
  background: #080810; border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: var(--max-width); margin: 0 auto 50px;
}
.footer-brand-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 16px 0; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(60,225,230,0.1); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 18px; transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); color: var(--bg-primary); }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--text-secondary); font-size: 14px;
  margin-bottom: 12px; transition: var(--transition);
}
.footer-col a:hover { color: var(--teal); padding-left: 4px; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); line-height: 2; }
.footer-bottom a { color: var(--teal); }

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  background: var(--green-whatsapp); color: #fff; padding: 14px 24px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  box-shadow: 0 4px 25px rgba(37,211,102,0.4);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #2be672; color: #fff; transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.6); }
}
.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }

/* === PRICING REGION SELECTOR === */
.region-selector {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-top: 8px;
}
.region-selector select {
  background: var(--bg-primary); border: 1px solid var(--border-subtle);
  color: var(--teal); padding: 4px 8px; border-radius: 4px;
  font-size: 12px; cursor: pointer;
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding-top: 72px; /* clear fixed nav */
  text-align: center;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.page-header-banner {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 24px 40px 0;
}
.page-header-text {
  padding: 32px 24px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }
.page-subtitle, .page-tag { font-family: var(--font-accent); font-style: italic; letter-spacing: 0.02em; }

/* === CONTENT SECTIONS (inner pages) === */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { color: var(--teal); margin-bottom: 20px; margin-top: 48px; }
.content-block h3 { color: var(--text-primary); margin-bottom: 16px; margin-top: 32px; }
.content-block p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; }
.content-block ul { list-style: none; padding: 0; margin-bottom: 24px; }
.content-block ul li {
  padding: 8px 0 8px 24px; color: var(--text-secondary);
  position: relative; line-height: 1.6;
}
.content-block ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}

/* === FEATURE GRID === */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; transition: var(--transition);
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* === FORM STYLES === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 20px; background: var(--bg-primary);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 16px; font-family: var(--font-body);
  transition: var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--teal); }
.form-textarea { min-height: 120px; resize: vertical; }

/* === ACCORDION === */
.accordion-item { border-bottom: 1px solid var(--border-subtle); }
.accordion-trigger {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary); font-size: 1.05rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); text-align: left;
}
.accordion-trigger:hover { color: var(--teal); }
.accordion-arrow { color: var(--teal); transition: transform 0.3s ease; font-size: 1.2rem; }
.accordion-item.active .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-body { max-height: 500px; }
.accordion-body-inner { padding: 0 0 20px; color: var(--text-secondary); line-height: 1.7; }

/* === DKA REFERENCE === */
.dka-reference {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; margin-top: 40px;
  display: flex; align-items: center; gap: 24px;
}
.dka-reference p { color: var(--text-secondary); font-size: 14px; flex: 1; }
.dka-reference a { white-space: nowrap; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .enrich-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
}
@media (max-width: 900px) {
  .nav { padding: 8px 20px; }
  .nav-links { gap: 10px; margin-left: 12px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding: 6px 12px; font-size: 12px; }
  .page-header { padding-top: 100px; }
  .hero { padding-top: 100px; }
}
@media (max-width: 768px) {
  .nav-links { gap: 8px; margin-left: 8px; justify-content: center; }
  .nav-links a { font-size: 11px; }
  .nav-cta { padding: 6px 10px; font-size: 11px; }
  .page-header { padding-top: 120px; }
  .hero { padding: 120px 20px 60px; min-height: auto; }
  .hero-banner-wrapper { margin-top: 0; }
  .section { padding: 60px 16px; }
  .enrich-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .app-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
  .page-header-banner { max-height: none; padding: 0; }
  .page-header-text { padding: 24px 20px 36px; }
}
@media (max-width: 540px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav { padding: 0 16px; min-height: 72px; flex-wrap: nowrap; }
  .page-header { padding-top: 72px; }
}
@media (max-width: 480px) {
  .enrich-grid { grid-template-columns: repeat(2, 1fr); }
  .enrich-card { padding: 16px 10px; }
  .enrich-letter { font-size: 28px; }
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */

/* === PAGE HEADER ENHANCEMENTS === */
.page-tag {
  font-size: 13px; text-transform: uppercase; letter-spacing: 4px;
  color: var(--teal); margin-bottom: 16px; display: block;
}
.page-subtitle {
  color: var(--text-secondary); max-width: 600px; margin: 16px auto 0;
  font-size: 1.1rem; line-height: 1.6;
}
.page-header-content { max-width: 800px; margin: 0 auto; }

/* === SHARED SECTION TITLES === */
.section-title,
.origin-story h2,
.clinical-background h2,
.caribbean-roots h2,
.founder-section h2,
.method-section h2,
.mission-section h2,
.values-section h2,
.dka-about-section h2,
.partnerships-intro h2,
.partner-types h2,
.what-partnership h2,
.licensing-overview h2,
.inquiry-section h2,
.what-is-intensive .content-block h2,
.what-to-expect h2,
.who-intensives-for h2,
.faq-section h2,
.coming-soon h2,
.waitlist-section h2,
.quote-section h2,
.apps-cta h2,
.whatsapp-community h2,
.wellness-circle h2,
.insights-section h2,
.substack-section h2,
.social-hub h2 {
  font-family: var(--font-heading); font-size: clamp(1.7rem, 4.2vw, 2.6rem); font-weight: 600;
  text-align: center; margin-bottom: 48px; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--text-secondary); text-align: center;
  max-width: 600px; margin: -32px auto 48px; font-size: 1.05rem;
  font-family: var(--font-body);
}
.section-intro {
  color: var(--text-secondary); max-width: 700px; margin: 0 auto 32px;
  text-align: center; font-size: 1.05rem; line-height: 1.7;
}

/* === SHARED BUTTON VARIANTS === */
.btn-secondary {
  background: transparent; border: 2px solid var(--teal); color: var(--teal);
  padding: 14px 32px; border-radius: var(--radius-sm); font-size: 16px;
  font-weight: 600; cursor: pointer; display: inline-flex; align-items: center;
  gap: 8px; transition: var(--transition); text-decoration: none;
}
.btn-secondary:hover { background: var(--teal-dim); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 18px; }

/* =============================================
   METHOD PAGE
   ============================================= */

/* === ENRICH HEXAGON DIAGRAM === */
.hexagon-section {
  padding: 100px 24px 60px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
  text-align: center;
}
.hexagon-wrapper {
  position: relative;
  width: 480px; height: 480px;
  margin: 0 auto 40px;
}
.hex-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; z-index: 2;
}
.hex-center-label {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.hex-center-sub {
  font-size: 12px; color: var(--text-muted);
  margin-top: 4px;
}
/* SVG connecting lines */
.hex-lines {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hex-line {
  stroke: rgba(60,225,230,0.12);
  stroke-width: 1.5;
  transition: stroke 0.4s ease, stroke-width 0.4s ease;
}
/* Hex nodes */
.hex-node {
  position: absolute; z-index: 3;
  width: 100px; height: 100px;
  transform: translate(-50%, -50%);
  cursor: pointer; transition: transform 0.4s ease;
}
.hex-node:hover { transform: translate(-50%, -50%) scale(1.12); }
.hex-node-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.hex-node:hover .hex-node-circle,
.hex-node.active .hex-node-circle {
  border-color: var(--node-color, var(--teal));
  box-shadow: 0 0 30px rgba(var(--node-rgb, 60,225,230), 0.25);
  background: var(--bg-elevated);
}
.hex-node-letter {
  font-size: 36px; font-weight: 800;
  line-height: 1; color: var(--node-color, var(--teal));
}
.hex-node-word {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px; letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.hex-node:hover .hex-node-word,
.hex-node.active .hex-node-word {
  color: var(--text-primary);
}
/* Hex info panel (shows on click/hover) */
.hex-info {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; text-align: center;
  z-index: 5;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.hex-info.active {
  opacity: 1; pointer-events: auto;
}
.hex-info-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 8px;
}
.hex-info-desc {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.6;
}
.hex-hint {
  font-size: 13px; color: var(--text-muted);
  margin-top: 16px; opacity: 0.6;
  transition: opacity 0.3s ease;
}
/* Node positions (hexagonal layout) */
.hex-node-e  { top: 8%;  left: 50%; }
.hex-node-n  { top: 28%; left: 87%; }
.hex-node-r  { top: 72%; left: 87%; }
.hex-node-i  { top: 92%; left: 50%; }
.hex-node-c  { top: 72%; left: 13%; }
.hex-node-h  { top: 28%; left: 13%; }
/* Color overrides per node */
.hex-node-e { --node-color: #ff6127; --node-rgb: 255,97,39; }
.hex-node-n { --node-color: #5e17eb; --node-rgb: 94,23,235; }
.hex-node-r { --node-color: #22c55e; --node-rgb: 34,197,94; }
.hex-node-i { --node-color: #e53e3e; --node-rgb: 229,62,62; }
.hex-node-c { --node-color: #c026d3; --node-rgb: 192,38,211; }
.hex-node-h { --node-color: #9f1239; --node-rgb: 159,18,57; }

/* Pulse animation on load */
@keyframes hexPulse {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.hex-node { animation: hexPulse 0.6s ease-out backwards; }
.hex-node-e { animation-delay: 0.1s; }
.hex-node-n { animation-delay: 0.2s; }
.hex-node-r { animation-delay: 0.3s; }
.hex-node-i { animation-delay: 0.4s; }
.hex-node-c { animation-delay: 0.5s; }
.hex-node-h { animation-delay: 0.6s; }

/* Responsive hexagon */
@media (max-width: 580px) {
  .hexagon-wrapper { width: 320px; height: 320px; }
  .hex-node { width: 72px; height: 72px; }
  .hex-node-circle { width: 72px; height: 72px; }
  .hex-node-letter { font-size: 26px; }
  .hex-node-word { font-size: 9px; }
  .hex-info { width: 180px; }
  .hex-info-title { font-size: 1.1rem; }
  .hex-info-desc { font-size: 12px; }
  .hex-center-label { font-size: 0.9rem; }
}

/* Dimensions Section */
.dimensions-section {
  padding: 100px 24px; background: var(--bg-primary);
}
.dimensions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.dimension-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.dimension-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}
.dimension-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--teal-glow);
}
.dimension-letter {
  font-size: 48px; font-weight: 800; margin-bottom: 8px;
}
.dimension-card h3 {
  font-size: 1.3rem; margin-bottom: 16px; color: var(--teal);
}
.dimension-description {
  color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 16px;
}
.dimension-question {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
  padding: 12px 16px; background: var(--bg-elevated); border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.dimension-question strong { color: var(--teal); }
.dimension-examples {
  color: var(--text-muted); font-size: 13px; line-height: 1.6;
  font-style: italic;
}
.dimension-examples strong { color: var(--text-secondary); font-style: normal; }

/* Philosophy Section */
.philosophy-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.philosophy-content { max-width: 800px; margin: 0 auto; }
.philosophy-intro {
  font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 48px; text-align: center;
}
.validation-timeline {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.timeline-step {
  text-align: center; padding: 24px; flex: 1; min-width: 180px;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal-dim); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--teal);
  margin: 0 auto 16px;
}
.timeline-step h4 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 8px;
}
.timeline-step p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}
.timeline-connector {
  width: 40px; height: 2px; background: var(--border-hover);
  flex-shrink: 0;
}

/* Cultural Section */
.cultural-section {
  padding: 100px 24px; background: var(--bg-primary);
}
.cultural-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.cultural-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; transition: var(--transition);
}
.cultural-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.cultural-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(60,225,230,0.08); border: 1px solid rgba(60,225,230,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--teal); font-size: 1.3rem;
  transition: var(--transition);
}
.cultural-card:hover .cultural-icon {
  background: rgba(60,225,230,0.15);
  transform: scale(1.05);
}
.cultural-card h3 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 12px;
}
.cultural-card p {
  color: var(--text-secondary); font-size: 15px; line-height: 1.6;
}

/* Safety Section */
.safety-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.safety-intro {
  color: var(--text-secondary); text-align: center; font-size: 1.05rem;
  max-width: 600px; margin: -32px auto 48px;
}
.safety-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.safety-pillar {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 24px;
  transition: var(--transition);
}
.safety-pillar:hover { border-color: var(--border-hover); }
.safety-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(60,225,230,0.08); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--teal); font-size: 1.1rem;
  transition: var(--transition);
}
.safety-pillar:hover .safety-icon {
  background: rgba(60,225,230,0.15);
}
.safety-pillar h4 {
  color: var(--teal); font-size: 1rem; margin-bottom: 8px;
}
.safety-pillar p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 24px; text-align: center; background: var(--bg-primary);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.origin-story,
.clinical-background,
.caribbean-roots,
.founder-section,
.method-section,
.mission-section,
.values-section,
.dka-about-section {
  padding: 80px 24px;
}
.origin-story { background: var(--bg-primary); }
.clinical-background {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.caribbean-roots { background: var(--bg-primary); }
.founder-section { background: var(--bg-subtle); }
.method-section { padding: 80px 24px; text-align: center; background: var(--bg-primary); }
.mission-section { padding: 80px 24px; text-align: center; background: var(--bg-subtle); }
.values-section { background: var(--bg-primary); }
.dka-about-section { background: var(--bg-subtle); }

.story-content,
.background-content,
.roots-content,
.founder-card,
.licensing-content,
.dka-about-content,
.coming-home-content,
.intro-content {
  max-width: 800px; margin: 0 auto;
}

.story-content h2,
.background-content h2,
.founder-card h3 {
  color: var(--teal); margin-bottom: 20px;
}
.story-content p,
.background-content p,
.roots-content p,
.founder-card p,
.licensing-content p,
.dka-about-content p,
.coming-home-content p,
.intro-content p {
  color: var(--text-secondary); line-height: 1.7; font-size: 1.05rem;
  margin-bottom: 16px;
}
.founder-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 40px;
}
.founder-card h3 { font-size: 1.2rem; }
.founder-card-with-photo {
  display: flex; gap: 40px; align-items: flex-start;
}
.founder-photo-area { flex-shrink: 0; }
.founder-photo-placeholder {
  width: 200px; height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(60,225,230,0.06), rgba(94,23,235,0.06));
  border: 2px dashed rgba(60,225,230,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: 14px;
}
.founder-photo-placeholder i { font-size: 2rem; color: rgba(60,225,230,0.3); }
.founder-photo-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
}
.founder-bio { flex: 1; }

/* Founder credentials line */
.founder-credentials {
  color: var(--teal) !important;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .founder-credentials { font-size: 0.95rem; }
}

/* Expandable founder bio thought bubble */
.founder-bio-expanded {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}
.founder-bio-expanded.expanded {
  max-height: 3000px; opacity: 1; margin-top: 24px;
}
.founder-bio-bubble {
  background: linear-gradient(135deg, rgba(60,225,230,0.06), rgba(94,23,235,0.04));
  border: 1px solid rgba(60,225,230,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: left;
  position: relative;
}
.founder-bio-bubble::before {
  content: '';
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  background: linear-gradient(135deg, rgba(60,225,230,0.06), rgba(94,23,235,0.04));
  border-left: 1px solid rgba(60,225,230,0.15);
  border-top: 1px solid rgba(60,225,230,0.15);
  transform: translateX(-50%) rotate(45deg);
}
.founder-bio-bubble h4 {
  color: var(--teal); font-family: var(--font-subheading);
  font-size: 1.1rem; font-weight: 600; margin: 20px 0 8px;
}
.founder-bio-bubble h4:first-child { margin-top: 0; }
.founder-bio-bubble p {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 4px;
}
.founder-bio-toggle:hover {
  background: rgba(60,225,230,0.1) !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .founder-card-with-photo {
    flex-direction: column; align-items: center; text-align: center;
    max-width: 100%; padding: 20px 12px;
  }
  .founder-card { padding: 20px 12px; }
  .founder-bio { width: 100%; }
  .founder-photo-placeholder { width: 160px; height: 210px; }
  .founder-bio-bubble { padding: 24px 20px; }
}

.mission-statement {
  font-family: var(--font-accent); font-size: 1.4rem; font-style: italic;
  color: var(--teal); max-width: 700px; margin: 0 auto; line-height: 1.6;
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; transition: var(--transition);
}
.value-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.value-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(60,225,230,0.08); border: 1px solid rgba(60,225,230,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--teal); font-size: 1.2rem;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: rgba(60,225,230,0.15); transform: scale(1.05);
}
.value-card h3 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 12px;
}
.value-card p {
  color: var(--text-secondary); font-size: 15px; line-height: 1.6;
}

/* =============================================
   COMMUNITY PAGE
   ============================================= */

/* WhatsApp Community */
.whatsapp-community {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0a1f14 50%, var(--bg-primary) 100%);
}
.whatsapp-content { max-width: 600px; margin: 0 auto; }
.whatsapp-icon-large {
  color: var(--green-whatsapp); margin-bottom: 24px;
}
.whatsapp-description {
  color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 32px;
}
.whatsapp-note {
  color: var(--text-muted); font-size: 13px; margin-top: 16px;
}

/* Wellness Circle */
.wellness-circle {
  padding: 100px 24px; background: var(--bg-primary);
}
.wellness-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 48px; max-width: 700px;
  margin: 0 auto; text-align: center;
}
.wellness-icon { font-size: 2.5rem; margin-bottom: 16px; }
.wellness-card h3 {
  color: var(--teal); font-size: 1.3rem; margin-bottom: 20px;
}
.wellness-card p {
  color: var(--text-secondary); font-size: 15px; line-height: 1.7;
  margin-bottom: 16px;
}

/* Insights / Content Pillars */
.insights-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.content-pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px;
  transition: var(--transition); display: block; text-decoration: none;
}
.pillar-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--teal-glow);
}
.pillar-number {
  font-size: 2rem; font-weight: 800; color: var(--teal);
  opacity: 0.4; margin-bottom: 12px;
}
.pillar-card h3 {
  color: var(--text-primary); font-size: 1.1rem; margin-bottom: 10px;
}
.pillar-card p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

/* Substack */
.substack-section {
  padding: 100px 24px; background: var(--bg-primary);
}
.substack-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 48px; max-width: 700px;
  margin: 0 auto; text-align: center;
}
.substack-card h2 { margin-bottom: 20px; }
.substack-card p {
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 16px;
}

/* Social Hub */
.social-hub {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.social-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: var(--max-width); margin: 0 auto;
}
.social-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 28px; text-align: center;
  transition: var(--transition); display: block; text-decoration: none;
  color: var(--text-primary);
}
.social-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--teal-glow);
}
.social-card svg {
  color: var(--teal); margin-bottom: 16px;
}
.social-card h3 { font-size: 1rem; margin-bottom: 4px; }
.social-card p {
  color: var(--teal); font-size: 14px; margin-bottom: 8px;
}
.social-label {
  color: var(--text-muted); font-size: 12px;
}

/* =============================================
   PARTNERSHIPS PAGE
   ============================================= */
.partnerships-intro {
  padding: 80px 24px; background: var(--bg-primary);
}
.partner-types {
  padding: 80px 24px; background: var(--bg-subtle);
}
.partner-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.partner-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; text-align: center;
  transition: var(--transition);
}
.partner-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.partner-icon { font-size: 2.5rem; margin-bottom: 16px; }
.partner-card h3 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 12px;
}
.partner-card p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

.what-partnership {
  padding: 80px 24px; background: var(--bg-primary);
}
.partnership-options {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.option-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; transition: var(--transition);
}
.option-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.option-card h3 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 12px;
}
.option-card p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

.licensing-overview {
  padding: 80px 24px; background: var(--bg-subtle);
  text-align: center;
}
.licensing-content strong { color: var(--teal); }

/* DKA Reference (partnerships variant) */
.dka-reference .dka-content {
  max-width: 800px; margin: 0 auto;
}
.dka-reference .dka-content h2 { margin-bottom: 20px; }
.dka-reference .dka-content p {
  color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px;
}

/* Inquiry Section (partnerships + intensives) */
.inquiry-section {
  padding: 100px 24px; background: var(--bg-primary);
}
.inquiry-subtitle {
  color: var(--text-secondary); text-align: center;
  max-width: 600px; margin: -20px auto 40px; font-size: 1.05rem;
}
.inquiry-form {
  max-width: 600px; margin: 0 auto;
}
.inquiry-form .form-group { margin-bottom: 20px; }
.inquiry-form label {
  display: block; font-size: 14px; color: var(--text-secondary);
  margin-bottom: 6px;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%; padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 16px; font-family: var(--font-body);
  transition: var(--transition);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none; border-color: var(--teal);
}
.inquiry-form textarea { min-height: 120px; resize: vertical; }
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: var(--text-muted); }

/* =============================================
   COURSES PAGE
   ============================================= */
.coming-soon {
  padding: 100px 24px; background: var(--bg-primary);
}
.coming-soon-content {
  max-width: 900px; margin: 0 auto 60px; text-align: center;
}
.coming-soon-content .content-with-art { text-align: left; }
.coming-soon-content .content-with-art .text-side { text-align: left; }
@media (max-width: 768px) {
  .coming-soon-content .content-with-art,
  .coming-soon-content .content-with-art .text-side { text-align: center; }
}
.coming-soon-badge {
  display: inline-block; padding: 8px 24px;
  background: var(--teal-dim); border: 1px solid var(--teal);
  border-radius: 50px; color: var(--teal); font-size: 13px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 24px;
}
.coming-soon-text {
  color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7;
  margin-bottom: 16px;
}
.coming-soon-subtext {
  color: var(--text-muted); font-size: 1rem; line-height: 1.7;
}

.course-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.course-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 36px; text-align: center;
  transition: var(--transition);
}
.course-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--teal-glow);
}
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.course-card h3 {
  font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary);
}
.card-subtitle {
  color: var(--teal); font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px; display: block;
}
.card-description {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

/* Waitlist Section */
.waitlist-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.waitlist-subtitle {
  color: var(--text-secondary); text-align: center;
  max-width: 500px; margin: -20px auto 40px; font-size: 1rem;
}
.waitlist-form {
  max-width: 500px; margin: 0 auto;
}
.waitlist-form .form-group { margin-bottom: 20px; }
.waitlist-form label {
  display: block; font-size: 14px; color: var(--text-secondary);
  margin-bottom: 6px;
}
.waitlist-form input,
.waitlist-form select {
  width: 100%; padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 16px; font-family: var(--font-body);
  transition: var(--transition);
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none; border-color: var(--teal);
}

/* Quote Section */
.quote-section {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.featured-quote {
  max-width: 700px; margin: 0 auto;
}
.featured-quote p {
  font-family: var(--font-accent); font-size: 1.4rem; font-style: italic;
  color: var(--teal); line-height: 1.6; margin-bottom: 16px;
}
.quote-attribution {
  color: var(--text-muted); font-size: 14px;
}

/* Apps CTA */
.apps-cta {
  padding: 80px 24px; text-align: center; background: var(--bg-primary);
}
.apps-cta h2 { margin-bottom: 16px; }
.apps-cta p {
  color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* =============================================
   INTENSIVES PAGE
   ============================================= */
.what-is-intensive {
  padding: 100px 24px; background: var(--bg-primary);
}
.lead-text {
  font-size: 1.2rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 24px; font-weight: 500;
}

.what-to-expect {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.expect-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.expect-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px; transition: var(--transition);
}
.expect-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.expect-card h3 {
  color: var(--teal); font-size: 1.1rem; margin-bottom: 12px;
}
.expect-card p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

.who-intensives-for {
  padding: 100px 24px; background: var(--bg-primary);
}
.who-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.who-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition);
}
.who-item:hover {
  border-color: var(--border-hover); transform: translateY(-2px);
}
.who-icon { font-size: 2rem; flex-shrink: 0; }
.who-item h3 {
  font-size: 1.05rem; margin-bottom: 8px; color: var(--text-primary);
}
.who-item p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.faq-list {
  max-width: 700px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%; padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary); font-size: 1.05rem; font-weight: 600;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question:hover { color: var(--teal); }
.faq-toggle {
  color: var(--teal); font-size: 1.4rem; font-weight: 300;
  transition: transform 0.3s ease;
}
details[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  color: var(--text-secondary); line-height: 1.7;
}
.form-note {
  color: var(--text-muted); font-size: 13px; text-align: center;
  margin-top: 16px;
}

/* =============================================
   INTENSIVES PRICING CARDS
   ============================================= */
.intensive-pricing {
  padding: 80px 24px; background: var(--bg-primary);
}
.pricing-tier-label {
  font-size: 1.2rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 24px; margin-top: 40px;
  display: flex; align-items: center; gap: 12px;
}
.tier-badge {
  font-size: 12px; font-weight: 600; color: var(--teal);
  background: rgba(60,225,230,0.1); padding: 4px 12px;
  border-radius: 20px; border: 1px solid rgba(60,225,230,0.2);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 20px;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 0; overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.pricing-card-premium {
  border-color: rgba(60,225,230,0.3);
}
.pricing-card-premium .pricing-card-header {
  background: linear-gradient(135deg, rgba(60,225,230,0.08), rgba(94,23,235,0.06));
}
.pricing-card-couples {
  border-color: rgba(192,38,211,0.3);
}
.pricing-card-couples .pricing-card-header {
  background: linear-gradient(135deg, rgba(192,38,211,0.08), rgba(229,62,62,0.06));
}
.pricing-card-header {
  padding: 28px 24px 20px; text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-card-header h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px;
}
.pricing-amount {
  font-size: 2.2rem; font-weight: 800; color: var(--teal);
  margin-bottom: 4px;
}
.pricing-validity {
  font-size: 13px; color: var(--text-muted);
}
.pricing-features {
  list-style: none; padding: 24px; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.pricing-features li {
  color: var(--text-secondary); font-size: 14px; line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li i {
  color: var(--teal); font-size: 12px; margin-top: 4px; flex-shrink: 0;
}
.pricing-card .btn {
  margin: 0 24px 24px; text-align: center; justify-content: center;
}

.expect-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(60,225,230,0.1); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--teal); font-size: 1.2rem;
}

/* =============================================
   AI COMPANIONS EXPANDED GRID
   ============================================= */
.ai-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ai-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 0;
  transition: var(--transition); display: flex; flex-direction: column;
  overflow: hidden;
}
.ai-card-img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.ai-card-tag, .ai-card h3, .ai-card p, .ai-card-price, .ai-card-hint {
  padding-left: 20px; padding-right: 20px;
}
.ai-card-tag { padding-top: 16px; }
.ai-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
}
.ai-card-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); margin-bottom: 12px;
}
.ai-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px;
}
.ai-card p {
  color: var(--text-secondary); font-size: 13px; line-height: 1.6;
  flex: 1; margin-bottom: 16px;
}
.ai-card-price {
  font-size: 14px; color: var(--text-muted); margin-bottom: 16px;
}
.ai-card-price strong {
  color: var(--teal); font-weight: 700;
}
.ai-card[role="button"] { cursor: pointer; }
.ai-card-hint {
  font-size: 11px; color: var(--text-muted); text-align: center;
  margin-top: auto; padding-top: 8px; padding-bottom: 16px; opacity: 0.5;
  transition: opacity 0.3s ease;
}
.ai-card:hover .ai-card-hint { opacity: 1; color: var(--teal); }
.ai-card-hint i { margin-right: 4px; font-size: 10px; }

/* Companion Modal Inner Styles */
.companion-modal-tag {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); margin-bottom: 8px;
}
.companion-modal-price {
  font-size: 16px; color: var(--text-muted); margin: 24px 0 8px;
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
}
.companion-modal-price strong { color: var(--teal); font-weight: 700; font-size: 20px; }
.companion-for-you, .companion-features {
  margin: 20px 0; padding: 16px 20px; border-radius: 12px;
  background: rgba(60,225,230,0.04); border: 1px solid rgba(60,225,230,0.08);
}
.companion-for-you h4, .companion-features h4 {
  color: var(--teal); font-size: 14px; font-weight: 700;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.companion-for-you p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 0; }
.companion-for-you ul, .companion-features ul {
  list-style: none; padding: 0; margin: 0;
}
.companion-for-you li, .companion-features li {
  position: relative; padding-left: 20px; margin-bottom: 10px;
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}
.companion-for-you li::before, .companion-features li::before {
  content: '\2022'; position: absolute; left: 0; color: var(--teal); font-weight: 700;
}
.companion-features li strong { color: var(--text-primary); }

/* =============================================
   INNER PAGE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .dimensions-grid { grid-template-columns: 1fr; }
  .cultural-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .partner-cards { grid-template-columns: 1fr; }
  .partnership-options { grid-template-columns: 1fr; }
  .course-cards { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .content-pillars { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .validation-timeline { flex-direction: column; }
  .timeline-connector { width: 2px; height: 30px; }
  .who-item { flex-direction: column; }
  .dimensions-section,
  .philosophy-section,
  .cultural-section,
  .safety-section,
  .whatsapp-community,
  .wellness-circle,
  .insights-section,
  .substack-section,
  .social-hub,
  .what-is-intensive,
  .what-to-expect,
  .who-intensives-for,
  .faq-section,
  .coming-soon,
  .waitlist-section,
  .inquiry-section {
    padding: 60px 16px;
  }
  .origin-story,
  .clinical-background,
  .caribbean-roots,
  .founder-section,
  .method-section,
  .mission-section,
  .values-section,
  .dka-about-section,
  .partnerships-intro,
  .partner-types,
  .what-partnership,
  .licensing-overview {
    padding: 48px 16px;
  }
}
@media (max-width: 480px) {
  .social-cards { grid-template-columns: 1fr; }
}

/* =============================================
   APPS PAGE
   ============================================= */
.pricing-selector-section {
  padding: 40px 24px 0; background: var(--bg-primary);
  text-align: center;
}
.apps-section {
  padding: 60px 24px 100px; background: var(--bg-primary);
}
.apps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}
.app-pricing {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 20px;
}
.app-region { font-size: 11px; color: var(--text-muted); }
.price-period { font-size: 14px; font-weight: 400; color: var(--text-muted); }

.app-tag-flagship { color: var(--purple); }
.app-tag-reset { color: var(--orange); }
.app-tag-7session { color: var(--teal); }
.app-tag-standard { color: var(--green-whatsapp); }
.app-tag-ai { color: #f59e0b; }

.ai-section {
  padding: 60px 24px 80px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-subtle) 50%, var(--bg-primary) 100%);
}
.ai-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; max-width: var(--max-width); margin: 0 auto;
}

.coming-soon-section {
  padding: 80px 24px; text-align: center; background: var(--bg-primary);
}
.coming-soon-section .coming-soon-content {
  max-width: 600px; margin: 0 auto;
}
.coming-soon-section .coming-soon-content p {
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 32px;
}
.coming-soon-section .waitlist-form {
  display: flex; gap: 12px; max-width: 500px; margin: 0 auto;
}
.coming-soon-section .waitlist-form input {
  flex: 1; padding: 14px 20px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 16px; font-family: var(--font-body);
}
.coming-soon-section .waitlist-form input:focus {
  outline: none; border-color: var(--teal);
}
.coming-soon-section .waitlist-form input::placeholder { color: var(--text-muted); }

.safety-note-section {
  padding: 60px 24px; background: var(--bg-subtle);
}
.safety-note-box {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 32px;
  max-width: 700px; margin: 0 auto; text-align: center;
}
.safety-note-box h3 {
  color: var(--teal); margin-bottom: 12px; font-size: 1.1rem;
}
.safety-note-box p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}

@media (max-width: 768px) {
  .apps-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .coming-soon-section .waitlist-form { flex-direction: column; }
}

/* (Banner mobile fix consolidated into the main banner overlay section above) */

/* =============================================
   MOBILE FIX: Stay Connected / Newsletter Form
   ============================================= */
@media (max-width: 768px) {
  .newsletter {
    padding: 32px 20px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  /* Fix the inline flex row with name + email + subscribe */
  .newsletter-fields {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter .btn {
    width: 100%;
    justify-content: center;
  }
  /* Fix the "What You'll Get" grid */
  .newsletter-benefits-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =============================================
   MOBILE FIX: Section & Gallery Alignments
   ============================================= */
@media (max-width: 768px) {
  /* Center all gallery sections */
  .art-gallery {
    gap: 20px;
    padding: 24px 0;
  }
  .art-gallery .site-artwork {
    max-width: 160px;
  }
  /* Ensure section headings and intros centered */
  .enrich-movement-section .container,
  .clients-gallery-section .container,
  .individual-gallery-section .container {
    text-align: center;
  }
  /* Fix any content-with-art sections */
  .content-with-art .text-side {
    text-align: center;
  }
  .content-with-art .art-side {
    display: flex;
    justify-content: center;
  }
  /* DKA reference card stack */
  .dka-reference {
    flex-direction: column;
    text-align: center;
  }
}
