/* ZenWorkspace Landing Page Styles */
/* /zenworkspace/assets/css/landing.css */

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

:root {
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --green: #10b981;
    --green-light: #34d399;
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --yellow: #fbbf24;
    --yellow-light: #fcd34d;
    --dark: #1f2937;
    --light: #f9fafb;
    --white: #ffffff;
}

/* Computed by your JS on load/resize */
:root{
  --nav-h: 72px;    /* default/fallback */
  --banner-h: 48px; /* default/fallback */
}

/* Space page content under fixed banner + nav */
body{ padding-top: calc(var(--banner-h) + var(--nav-h)); }

/* When jumping to #anchors (or on hard refresh with hash), don't hide content under header */
[id]{ scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 12px); }


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Animated Gradient Background */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Founding Banner */
.founding-banner {
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--green));
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.founding-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.founding-banner p {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.banner-cta {
    background: white;
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.spots-counter {
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
}

/* Navigation */
/* Fixed nav below the fixed founding banner */
nav{
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  z-index: 1100;
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  margin-top: 0; /* ensure no legacy margin offset */
}

/* Mobile hamburger button */
.mobile-menu-toggle{
  display: none; /* shown via media query */
  width: 42px; height: 36px;
  border: 0; background: transparent; cursor: pointer;
  position: relative;
}
.mobile-menu-toggle span{
  display: block; height: 3px; width: 100%;
  background: #111827; border-radius: 2px; margin: 6px 0;
  transition: transform .25s, opacity .25s;
}
/* Turn into an “X” when active */
.mobile-menu-toggle.active span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2){ opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Dark overlay behind slide-in menu */
.mobile-menu-overlay{
  display: none;
}


:root{
  --nav-h: 72px;       /* will be updated by JS */
  --banner-h: 48px;    /* your Founding banner height (approx) */
}

/* Founding banner stays fixed at the very top (you already have this) */
/* .founding-banner { position: fixed; top:0; ... } */

/* Sticky/fixed nav that sits just below the banner */
nav{
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 1100;                 /* above content, below modals */
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  margin-top: 0;                 /* remove old margin */
}

/* Make room for banner + nav so content doesn't hide under them */
body{
  padding-top: calc(var(--banner-h) + var(--nav-h));
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--purple);
}

/* Hero Section with Energy Orbs Background */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e8 50%, #fff9e6 100%);
    overflow: hidden;
}

/* Animated Energy Orbs */
.energy-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.3;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.orb1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--purple), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--green), transparent);
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--blue), transparent);
    bottom: -50px;
    left: 30%;
    animation-delay: 10s;
}

.orb4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--yellow), transparent);
    top: 30%;
    left: 60%;
    animation-delay: 15s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 600;
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--green));
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 15px;
}

.form-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-header p {
    color: #6b7280;
    font-size: 14px;
}

.form-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.form-divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #9ca3af;
    font-size: 14px;
}

/* Form Styles (moved from inline) */
.custom-form-container {
    margin-top: 20px;
}

.progress-bar {
    height: 4px;
    background: rgba(139, 92, 246, 0.2);
    position: relative;
    margin-bottom: 25px;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.package-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.package-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-option:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
}

.package-option.selected {
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-option-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 16px;
}

.package-option-price {
    color: var(--purple);
    font-weight: 600;
    font-size: 14px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.disclaimer {
    background: #f9fafb;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}

.spots-remaining {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
    color: #92400e;
    font-weight: 600;
    font-size: 14px;
}

.error-message {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

input.error {
    border-color: #dc2626 !important;
}

.loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-primary.loading .loading-spinner {
    display: inline-block;
}

.btn-primary.loading .btn-text {
    display: none;
}

/* Problem Section */
.problem-section {
    padding: 80px 0 12px;
    background: white;
}

/* Two‑column layout inside #problem */
.problem-layout{
  display: grid;
  grid-template-columns: 1fr 380px; /* main | sidebar */
  gap: 32px;
  align-items: start;
}

/* Ensure sticky works (no ancestor overflow hidden) */
.problem-section,
.problem-section .section-container,
.problem-layout,
.problem-aside{
  overflow: visible;
}

/* Sticky wrapper for calculator */
.problem-aside .qq-sticky{
  position: sticky;
  top: calc(var(--banner-h) + var(--nav-h) + 16px); /* sit under sticky nav */
}



.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cost Calculator */
.calculator-card {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background: linear-gradient(to right, var(--purple), var(--blue));
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

.slider-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple);
    margin-top: 8px;
}

.cost-display {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.cost-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cost-label {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
}

/* Packages Section */
.packages-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
}

.packages-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.founding-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.package-card.recommended {
    border: 2px solid var(--purple);
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--purple);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-header {
    margin-bottom: 30px;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-tagline {
    color: #6b7280;
    font-size: 14px;
}

.package-price {
    margin-bottom: 30px;
}

.price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
}

.price-current {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.cta-secondary {
    background: white;
    color: var(--purple);
    border: 2px solid var(--purple);
}

.cta-secondary:hover {
    background: var(--purple);
    color: white;
}

/* Energy Centers Section */
.energy-centers {
    padding: 60px 0 10px;
    background: white;
}

.centers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
}

.center-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    border-radius: 35px;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f3f4f6;
}

/* Chakra Colors for Energy Centers - Ring Effect */
.center-card:nth-child(1) { 
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(2) { 
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(3) { 
    box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(4) { 
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(5) { 
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(6) { 
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.center-card:nth-child(7) { 
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05); 
}

.center-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.center-card:hover::before {
    opacity: 0.05;
}

.center-card:hover {
    transform: translateY(-5px);
}

/* Enhanced hover effects with stronger colored shadows */
.center-card:nth-child(1):hover { 
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.4), 0 15px 35px rgba(220, 38, 38, 0.25); 
}
.center-card:nth-child(2):hover { 
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.4), 0 15px 35px rgba(234, 88, 12, 0.25); 
}
.center-card:nth-child(3):hover { 
    box-shadow: 0 0 0 4px rgba(202, 138, 4, 0.4), 0 15px 35px rgba(202, 138, 4, 0.25); 
}
.center-card:nth-child(4):hover { 
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.4), 0 15px 35px rgba(22, 163, 74, 0.25); 
}
.center-card:nth-child(5):hover { 
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.4), 0 15px 35px rgba(37, 99, 235, 0.25); 
}
.center-card:nth-child(6):hover { 
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.4), 0 15px 35px rgba(79, 70, 229, 0.25); 
}
.center-card:nth-child(7):hover { 
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.4), 0 15px 35px rgba(147, 51, 234, 0.25); 
}

.center-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Individual chakra icon colors */
.center-card:nth-child(1) .center-icon { color: #DC2626; } /* Root - Red */
.center-card:nth-child(2) .center-icon { color: #EA580C; } /* Sacral - Orange */
.center-card:nth-child(3) .center-icon { color: #CA8A04; } /* Solar Plexus - Yellow */
.center-card:nth-child(4) .center-icon { color: #16A34A; } /* Heart - Green */
.center-card:nth-child(5) .center-icon { color: #2563EB; } /* Throat - Blue */
.center-card:nth-child(6) .center-icon { color: #4F46E5; } /* Third Eye - Indigo */
.center-card:nth-child(7) .center-icon { color: #9333EA; } /* Crown - Violet */

.center-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.center-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 12px;
}

.center-impact {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.center-measures {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

/* Social Proof */
.social-proof {
    padding: 32px 0 40px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    font-size: 48px;
    color: var(--purple);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4b5563;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}

.testimonial-role {
    color: #9ca3af;
    font-size: 14px;
}

/* Team Photo Break */
.team-photo-break{
  padding: 24px 0 64px;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

/* Make the team photo display as a smaller centered card */
.team-photo-card{
  position: relative;
  margin: 0 auto;                          /* center the card */
  max-width: clamp(280px, 88vw, 780px);    /* cap the width */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Keep image responsive inside the smaller card */
.team-photo-card img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  transform: scale(1.01);                  /* gentle “breathing” */
  transition: transform .6s ease;
}
.team-photo-card:hover img{ transform: scale(1.04); }

/* Optional: slightly smaller caption so it feels tighter on a small card */
.team-photo-card figcaption{
  left: 12px; bottom: 12px;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Image: gentle scale for a “breathing” feel on hover */
.team-photo-card img{
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
  transition: transform .8s ease;
}
.team-photo-card:hover img{ transform: scale(1.05); }

/* Subtle overlay that matches your purple/blue/green vibe */
.team-photo-card::after{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(16,185,129,.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 100%);
  pointer-events: none;
}

/* Caption chip */
.team-photo-card figcaption{
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  color: #1f2937;
}

/* Final CTA */
.final-cta {
    padding: 10px 0;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: white;
    color: var(--purple);
}

.cta-button-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Footer */
footer {
    background: var(--dark);
    padding: 40px 0 20px;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: white;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Override ALL link colors in footer */
footer * {
    color: rgba(255,255,255,0.9) !important;
}

footer h3 {
    color: white !important;
}

/* Responsive Design */
/* Mobile / tablet slide-in nav */
@media (max-width: 992px){
  .mobile-menu-toggle{ display: inline-flex; align-items:center; justify-content:center; }

  /* Turn the links into a right-side drawer */
  .nav-links{
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,.08);
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1200;
  }
  .nav-links.active{ transform: translateX(0); }

  /* Overlay */
  .mobile-menu-overlay{
    position: fixed; inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    display: block;
    z-index: 1150;
  }
  .mobile-menu-overlay.active{
    opacity: 1; pointer-events: auto;
  }

  /* Prevent page scroll while drawer is open */
  body.menu-open{ overflow: hidden; }
}


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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .centers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founding-banner-content {
        font-size: 12px;
    }

    .cost-amount {
        font-size: 36px;
    }
}

/* Make the calculator sticky on desktop */
.problem-aside .qq-sticky{
  position: sticky;
  top: calc(var(--banner-h) + var(--nav-h) + 16px);
}

/* Ensure no ancestor blocks sticky */
.problem-section,
.problem-section .section-container,
.problem-layout,
.problem-aside{
  overflow: visible;
}

/* If you WANT sticky on tablets/phones too, keep this. 
   If you want it off on mobile, delete this block. */
@media (max-width: 1024px){
  .problem-layout{ grid-template-columns: 1fr; }
  .problem-aside .qq-sticky{
    position: sticky;     /* was 'static' before */
    top: 16px;            /* small offset on mobile */
  }
}

/* Base hamburger button (hidden on desktop) */
.mobile-menu-toggle{
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
}

/* The three bars */
.mobile-menu-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}



