/* ==========================================================================
   26 HEALTHCARE - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Elite Dark Theme (Black & Metallic Rose Gold / Copper Combination)
   Inspired by Cult.fit Elite Landing Pages
   ========================================================================== */

/* 1. Global Setup & Design Tokens */
:root {
    /* Color Palette - Premium Dark Mode */
    --clr-bg-primary: #ffffff;       /* Pure Pitch Black */
    --clr-bg-secondary: #f9fafb;     /* Deep Midnight Charcoal */
    --clr-card-bg: #ffffff;          /* Slate Dark Grey Card Backdrop */
    --clr-text-main: #111827;        /* Crisp White */
    --clr-text-muted: #4b5563;       /* Cool Gray */
    
    /* Brand Accent Colors - Metallic Rose Gold / Copper System */
    --clr-saffron: #cfa27e;          /* Primary Gold - Bright Metallic Rose Gold / Copper */
    --clr-saffron-light: rgba(207, 162, 126, 0.08); /* Light Gold Tint / Glow */
    --clr-emerald: #b5835f;          /* Secondary Copper/Rose-Gold - Burnished Ochre */
    --clr-emerald-light: rgba(181, 131, 95, 0.08);
    --clr-gold: #a67c59;             /* Accent Copper-Gold */
    --clr-border: rgba(0, 0, 0, 0.1);           /* Very Subtle Dark Charcoal Border */
    
    /* Functional Status */
    --clr-success: #10b981;
    --clr-error: #ef4444;
    
    /* Layout Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --box-shadow-hover: 0 20px 40px rgba(207, 162, 126, 0.05), 0 1px 12px rgba(207, 162, 126, 0.02);
    
    /* Animation Speeds */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--clr-bg-primary);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--clr-text-main);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--clr-text-muted);
}

.italic { font-style: italic; }
.font-bold { font-weight: 700; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex { display: flex; }

/* Grid Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.container-large {
    max-width: 1400px;
}

.small-container {
    max-width: 650px;
    padding: 4rem 1.5rem;
}

.medium-container {
    max-width: 850px;
    padding: 4rem 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ==========================================================================
   2. Components & Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

/* Premium Gold Gradient for Primary CTAs */
.btn-primary {
    background: linear-gradient(135deg, #e2c2a9 0%, #cfa27e 50%, #a67c59 100%);
    color: var(--clr-text-main); /* Contrast black text on gold background */
    box-shadow: 0 4px 15px rgba(207, 162, 126, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 162, 126, 0.4);
    filter: brightness(1.05);
}

.btn-primary:disabled {
    background: #27272a;
    color: #71717a;
    box-shadow: none;
    cursor: not-allowed;
    filter: none;
}

.btn-primary-nav {
    background-color: var(--clr-saffron);
    color: var(--clr-text-main);
    padding: 0.5rem 1.25rem;
}

.btn-primary-nav:hover {
    background-color: #be9370;
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-main);
    border-color: var(--clr-border);
}

.btn-secondary:hover {
    background-color: var(--clr-card-bg);
    border-color: var(--clr-saffron);
}

.btn-secondary-nav {
    background-color: transparent;
    color: var(--clr-saffron);
    border: 1px solid var(--clr-saffron);
}

.btn-secondary-nav:hover {
    background-color: var(--clr-saffron-light);
}

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

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.full-width {
    width: 100%;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-saffron);
    background-color: var(--clr-saffron-light);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.card {
    background-color: var(--clr-card-bg);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    border: 1px solid var(--clr-border);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--clr-saffron);
}

.alert-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
}

/* ==========================================================================
   3. Navbar Layout
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 1000;
    transition: all var(--transition-fast);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.logo-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-text-main);
    background-color: var(--clr-saffron);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 0.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-text-main);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-saffron);
}

/* ==========================================================================
   4. Landing Page Sections
   ========================================================================== */

/* Hero banner */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-saffron);
    background-color: var(--clr-saffron-light);
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.t-badge svg {
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modern graphic elements */
.g-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(207, 162, 126, 0.08);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(181, 131, 95, 0.08);
    bottom: 10%;
    right: 10%;
}

/* Glassmorphic floating card */
.glass-preview-card {
    position: relative;
    z-index: 2;
    background: rgba(21, 21, 24, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-saffron);
}

.preview-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
}

.dosha-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.25rem;
    margin-bottom: 0.5rem;
}

.dosha-pill.Vata { background-color: rgba(37, 99, 235, 0.15); color: #60a5fa; }
.dosha-pill.Pitta { background-color: rgba(220, 38, 38, 0.15); color: #f87171; }
.dosha-pill.Kapha { background-color: rgba(22, 163, 74, 0.15); color: #34d399; }

.preview-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1rem 0;
}

.preview-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--clr-text-main);
    line-height: 1.4;
}

/* ==========================================================================
   Curative Condition Center Styling
   ========================================================================== */
.conditions-section {
    background-color: var(--clr-bg-primary);
}

.condition-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.cond-tab-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--clr-border);
    background-color: var(--clr-card-bg);
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cond-tab-btn:hover {
    background-color: #1c1c21;
    color: var(--clr-text-main);
}

.cond-tab-btn.active {
    background-color: var(--clr-saffron);
    color: var(--clr-text-main);
    border-color: var(--clr-saffron);
    box-shadow: 0 4px 12px rgba(207, 162, 126, 0.25);
}

.condition-panel {
    display: none;
}

.condition-panel.active {
    display: block;
    animation: slideUpFade 0.5s ease-out;
}

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

.cond-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.cond-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ch-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(207, 162, 126, 0.15);
}

/* Visual chart mockups */
.cond-graphic {
    background-color: var(--clr-bg-secondary);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
}

.mockup-chart-card {
    background-color: var(--clr-card-bg);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--clr-border);
    width: 100%;
    max-width: 380px;
}

.mockup-chart-hdr {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.mockup-chart-bar-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.m-chart-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.m-chart-row span {
    font-weight: 600;
    color: var(--clr-text-muted);
}

.m-chart-bar {
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.m-chart-bar.success-bar {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--clr-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.m-chart-bar.error-bar {
    background-color: rgba(239, 68, 110, 0.1);
    color: var(--clr-error);
    border: 1px solid rgba(239, 68, 110, 0.2);
}

/* Problem Cards */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-saffron);
    letter-spacing: 0.05em;
}

.section-desc {
    font-size: 1.15rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon.error-color {
    color: var(--clr-error);
}

.problem-card h3 {
    margin-bottom: 0.5rem;
}

/* Vision Section */
.vision-section {
    background-color: var(--clr-bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem !important;
    border: 1px solid var(--clr-border);
}

.vision-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vision-item h3 {
    margin-bottom: 0.25rem;
}

.vision-icon {
    width: 40px;
    height: 40px;
    background-color: var(--clr-card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-saffron);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--clr-border);
}

.vision-accent-card {
    background-color: var(--clr-card-bg);
    border-radius: var(--border-radius-md);
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-main);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.vision-accent-card::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -20%;
    width: 200px;
    height: 200px;
    background-color: rgba(207, 162, 126, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.accent-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.accent-card-content h3 {
    color: var(--clr-text-main);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.accent-card-content .author {
    color: var(--clr-saffron);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Pillars Cards */
.pillar-card {
    border-top: 4px solid var(--clr-border);
}

.pillar-card:hover {
    border-top-color: var(--clr-saffron);
}

.pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #27272a;
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
}

.pillar-card:hover .pillar-num {
    color: var(--clr-saffron-light);
}

/* Expert Board Styling */
.expert-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    border: 2px solid var(--clr-border);
}

.expert-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.expert-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.expert-badge {
    display: inline-block;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.expert-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Client Journey */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin-top: 4rem;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--clr-border);
    z-index: 1;
}

.journey-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.journey-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-bg-primary);
    border: 2px solid var(--clr-border);
    color: var(--clr-text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-fast);
}

.journey-step:hover .journey-badge {
    background-color: var(--clr-saffron);
    border-color: var(--clr-saffron);
    color: var(--clr-text-main);
    transform: scale(1.1);
}

.journey-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.journey-step p {
    font-size: 0.85rem;
}

/* Difference Table */
.table-container {
    overflow-x: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-border);
    background-color: var(--clr-card-bg);
    box-shadow: var(--box-shadow);
}

.difference-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.difference-table th, .difference-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--clr-border);
}

.difference-table th {
    background-color: #1c1c21;
    color: var(--clr-text-main);
    font-weight: 600;
    font-size: 1rem;
}

.difference-table tr:last-child td {
    border-bottom: none;
}

.difference-table td.highlight-col, .difference-table th.highlight-col {
    background-color: rgba(207, 162, 126, 0.02);
    border-left: 1.5px solid rgba(207, 162, 126, 0.15);
    border-right: 1.5px solid rgba(207, 162, 126, 0.15);
}

.difference-table th.highlight-col {
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
}

/* Case Studies & Clinical Metrics Styling */
.stat-card {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-saffron);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.case-study-quote {
    font-size: 0.85rem;
    border-top: 1px dashed var(--clr-border);
    padding-top: 1rem;
    color: var(--clr-text-muted);
}

/* Pricing Grid */
.pricing-grid {
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: var(--border-radius-md);
}

.pricing-card.popular {
    border: 2px solid var(--clr-saffron);
    box-shadow: 0 20px 40px rgba(207, 162, 126, 0.15);
}

.pricing-card .card-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background-color: var(--clr-saffron);
    color: var(--clr-text-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin: 1rem 0;
    font-family: 'Inter', sans-serif;
}

.price span {
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--clr-saffron);
    flex-shrink: 0;
}

/* Callback request section styling */
.callback-section {
    background-color: var(--clr-bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem !important;
    border: 1px solid var(--clr-border);
}

.callback-trust-notes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.ct-note {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-saffron);
}

.callback-card {
    padding: 2rem;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    min-height: 380px;
}

.callback-success-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-card-bg);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    animation: fadeIn 0.4s ease-out;
}

.alert-icon-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.callback-success-alert h4 {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   5. Interactive Wizard (Assessment - Dark Mode)
   ========================================================================== */
.assessment-card {
    border-top: 6px solid var(--clr-saffron);
    padding: 3rem 2.5rem;
}

.assessment-progress-container {
    margin-bottom: 2.5rem;
}

.progress-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background-color: #1c1c21;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--clr-saffron);
    transition: width var(--transition-normal);
}

.step-pane {
    display: none;
}

.step-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

.step-desc {
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
}

input[type="text"], input[type="number"], input[type="tel"], input[type="email"], select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--clr-border);
    background-color: #0b0b0d;
    border-radius: var(--border-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--clr-text-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--clr-saffron);
    box-shadow: 0 0 0 3px rgba(207, 162, 126, 0.15);
}

/* Radios and Checkboxes */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    background-color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    color: #1f2937;
    transition: all var(--transition-fast);
}

.radio-label:hover, .checkbox-label:hover {
    background-color: var(--clr-card-bg);
    color: var(--clr-text-main);
}

.radio-label input, .checkbox-label input {
    accent-color: var(--clr-saffron);
    width: 18px;
    height: 18px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-callout {
    background-color: var(--clr-saffron-light);
    border-left: 4px solid var(--clr-saffron);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin: 2rem 0;
    border: 1px solid rgba(207, 162, 126, 0.15);
    border-left: 4px solid var(--clr-saffron);
}

.payment-cost {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-saffron);
    margin-bottom: 0.25rem;
}

.payment-cost span {
    font-size: 1.4rem;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.step-actions .btn {
    min-width: 140px;
}

/* ==========================================================================
   6. Wellness Blueprint Generated View
   ========================================================================== */
.blueprint-card-layout {
    border: 1px solid var(--clr-border);
    padding: 4rem;
    background-color: var(--clr-card-bg);
    background-image: radial-gradient(rgba(207, 162, 126, 0.03) 0.5px, transparent 0.5px), radial-gradient(rgba(207, 162, 126, 0.03) 0.5px, var(--clr-card-bg) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.blueprint-header-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blueprint-stamp {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--clr-saffron);
    border: 2px solid var(--clr-saffron);
    padding: 0.4rem 1rem;
    transform: rotate(-3deg);
    border-radius: 4px;
}

.header-divider {
    border: none;
    border-top: 2px solid var(--clr-saffron);
    margin: 2rem 0;
}

.client-summary-grid {
    margin-bottom: 2rem;
}

.client-summary-grid h4 {
    margin-bottom: 0.75rem;
    color: var(--clr-saffron);
}

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

.dosha-bar {
    position: relative;
    height: 28px;
    background-color: #0b0b0d;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    border: 1px solid var(--clr-border);
}

.dosha-bar span {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
}

.dosha-bar.Vata span { color: #93c5fd; }
.dosha-bar.Pitta span { color: #fca5a5; }
.dosha-bar.Kapha span { color: #6ee7b7; }

.dosha-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    border-radius: 50px;
}

.dosha-bar.Vata .dosha-fill { background-color: rgba(37, 99, 235, 0.2); }
.dosha-bar.Pitta .dosha-fill { background-color: rgba(220, 38, 38, 0.2); }
.dosha-bar.Kapha .dosha-fill { background-color: rgba(22, 163, 74, 0.2); }

.clinical-narrative {
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-sm);
    background-color: #0b0b0d;
    margin-bottom: 3rem;
    border: 1px solid var(--clr-border);
}

.clinical-narrative p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--clr-text-main);
}

.blueprint-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--clr-saffron);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 0.5rem;
}

.bp-pillar-card {
    padding: 1.75rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--clr-border);
    background-color: rgba(11, 11, 13, 0.5);
}

.bp-pillar-card.Move { border-left: 4px solid var(--clr-saffron); }
.bp-pillar-card.Eat { border-left: 4px solid var(--clr-gold); }
.bp-pillar-card.Think { border-left: 4px solid #ccfbf1; } /* Light cyan/green accent */
.bp-pillar-card.Live { border-left: 4px solid #ffffff; }

.bp-pillar-icon {
    color: var(--clr-saffron);
    margin-bottom: 0.75rem;
}

.bp-pillar-card.Eat .bp-pillar-icon { color: var(--clr-gold); }
.bp-pillar-card.Think .bp-pillar-icon { color: #5eead4; }
.bp-pillar-card.Live .bp-pillar-icon { color: var(--clr-text-main); }

.bp-pillar-card h4 {
    margin-bottom: 0.5rem;
}

.roster-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
}

.roster-badge {
    padding: 0.4rem 1rem;
    background-color: #0b0b0d;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
}

.blueprint-footer-cta {
    margin-top: 3.5rem;
}

.onboarding-plan-recommendation {
    background-color: #0b0b0d;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    border: 1px solid var(--clr-saffron);
}

.onboarding-plan-recommendation .rec-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-saffron);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.onboarding-plan-recommendation h4 {
    color: var(--clr-text-main);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.rec-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    align-items: center;
}

.rec-price-column {
    text-align: right;
}

.rec-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   NEW: INTEGRATED SYSTEM PORTALS (CSS PARAMETERS)
   ========================================================================== */
.portal-header-pane {
    border-top: 4px solid var(--clr-saffron);
    margin-bottom: 2rem;
}

.portal-hdr-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.portal-role-selector-box {
    text-align: right;
}

.role-lbl {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-saffron);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.role-btn-group {
    display: inline-flex;
    background-color: #0b0b0d;
    border: 1px solid var(--clr-border);
    padding: 0.25rem;
    border-radius: 50px;
}

.role-select-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border-radius: 50px;
    background: transparent;
    box-shadow: none;
    border: none;
}

.role-select-btn:hover {
    color: var(--clr-text-main);
    transform: none;
    box-shadow: none;
}

.role-select-btn.active {
    background-color: var(--clr-saffron);
    color: var(--clr-text-main);
}

.portal-sub-view {
    display: none;
    animation: slideUpFade 0.4s ease-out;
}

.portal-sub-view.active {
    display: block;
}

/* CRM Pipeline columns */
.crm-pipeline-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    overflow-x: auto;
    min-height: 300px;
}

.crm-col {
    background-color: #0b0b0d;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--clr-border);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.crm-col-hdr {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-main);
    text-align: center;
    border-bottom: 1.5px solid var(--clr-border);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.crm-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    min-height: 200px;
}

.crm-client-card {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.crm-client-card:hover {
    border-color: var(--clr-saffron);
}

.crm-c-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.crm-c-detail {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.crm-c-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    border: 1px solid rgba(207, 162, 126, 0.2);
    text-align: center;
    transition: all var(--transition-fast);
}

.crm-c-btn:hover {
    background-color: var(--clr-saffron);
    color: #000;
}

.crm-simulation-adder {
    border-top: 1px dashed var(--clr-border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Small ledger table */
.small-table {
    max-height: 180px;
    overflow-y: auto;
}

.small-text {
    font-size: 0.85rem;
}

/* Workload list */
.workload-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.workload-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 0.5rem;
}

.wl-name {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.wl-role {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.wl-bar-outer {
    width: 120px;
    height: 6px;
    background-color: #0b0b0d;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.wl-bar-inner {
    height: 100%;
    background-color: var(--clr-saffron);
}

/* Doctor Case Sheet styling */
.doc-preview-box {
    background-color: #0b0b0d;
    border-left: 3px solid var(--clr-saffron);
}

.mockup-clinical-report {
    background-color: #0b0b0d;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    min-height: 150px;
    font-family: monospace;
    font-size: 0.85rem;
    white-space: pre-wrap;
    line-height: 1.4;
    max-height: 320px;
    overflow-y: auto;
    color: #a7f3d0; /* Soft clinical green report text color */
}

/* Instructor caseload sidebar list */
.instructor-caseload-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.ins-client-card {
    background-color: #0b0b0d;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.ins-client-card:hover {
    border-color: rgba(207, 162, 126, 0.4);
}

.ins-client-card.active {
    border-color: var(--clr-saffron);
    background-color: rgba(207, 162, 126, 0.03);
}

/* Client dashboard - Daily checkboxes grid */
.daily-pillar-checklists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.daily-pillar-check-box {
    background-color: #0b0b0d;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
}

.daily-pillar-check-box.Move { border-left: 3px solid var(--clr-saffron); }
.daily-pillar-check-box.Eat { border-left: 3px solid var(--clr-gold); }
.daily-pillar-check-box.Think { border-left: 3px solid #60a5fa; }
.daily-pillar-check-box.Live { border-left: 3px solid #ffffff; }

.dp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dp-icon {
    font-size: 1.2rem;
}

.dp-header h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.dp-check-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dp-check-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dp-check-items input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--clr-saffron);
}

.dp-check-items label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
}

.dp-check-items input[type="checkbox"]:checked + label {
    text-decoration: line-through;
    color: #4b5563;
}

/* Progress charts inside client dashboard */
.client-progress-tracker-bar {
    margin-bottom: 1rem;
}

.c-tracker-hdr {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.c-tracker-bg {
    width: 100%;
    height: 8px;
    background-color: #0b0b0d;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

.c-tracker-fill {
    height: 100%;
    background-color: var(--clr-saffron);
    transition: width var(--transition-normal);
}

.c-tracker-fill.error-fill {
    background-color: var(--clr-error);
}

/* Virtual session live overlay */
.mock-call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-call-window {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-saffron);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 50px rgba(207, 162, 126, 0.25);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.mock-call-video-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mock-video-panel {
    background-color: #050505;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mv-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.6);
    color: var(--clr-text-main);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.mock-instructor-feed {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--clr-saffron);
    text-align: center;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.mock-client-feed {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.mock-call-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--clr-border);
    padding-top: 1.5rem;
}

.mock-call-timer {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--clr-saffron);
    font-weight: bold;
}

.live-pulse-ring {
    width: 14px;
    height: 14px;
    background-color: var(--clr-error);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.live-pulse-ring::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--clr-error);
    animation: pulsing 1.5s ease-out infinite;
}

@keyframes pulsing {
    from { transform: scale(0.5); opacity: 1; }
    to { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   Page Sections Management
   ========================================================================== */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* ==========================================================================
   9. Footer Styles
   ========================================================================== */
.main-footer {
    background-color: var(--clr-bg-secondary);
    color: #eaeaea;
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
}

.footer-info .logo-num {
    background-color: var(--clr-saffron);
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-info .logo-text {
    color: var(--clr-text-main);
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.footer-links h4, .footer-contact h4 {
    color: var(--clr-text-main);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ea3a9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-saffron);
}

.footer-contact p {
    font-size: 0.9rem;
    color: #9ea3a9;
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem !important;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-image {
        height: auto;
    }
    
    .glass-preview-card {
        margin: 0 auto;
    }
    
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .journey-step {
        text-align: center;
    }
    
    .difference-table th, .difference-table td {
        padding: 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cond-graphic {
        padding: 1.5rem;
    }
    
    .callback-section {
        padding: 3rem 1.5rem !important;
    }
    
    .crm-pipeline-board {
        grid-template-columns: repeat(2, 1fr);
        min-height: auto;
    }
    
    .daily-pillar-checklists {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none; /* Hide standard links on very small mobile for simplicity */
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .rec-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rec-price-column {
        text-align: center;
        margin-top: 1rem;
    }
    
    .blueprint-card-layout {
        padding: 1.5rem;
    }
    
    .crm-pipeline-board {
        grid-template-columns: 1fr;
    }
    
    .mock-call-video-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   8. SUPER ADMIN DASHBOARD / PLATFORM CRM STYLING
   ========================================================================== */

/* Layout & Sidebar */
.admin-portal-workspace {
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.admin-sidebar {
    user-select: none;
}

.admin-menu-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

.admin-menu-btn:hover {
    color: var(--clr-text-main);
    background-color: rgba(255, 255, 255, 0.02);
}

.admin-menu-btn.active {
    color: var(--clr-saffron);
    background-color: rgba(207, 162, 126, 0.04);
    border-left-color: var(--clr-saffron);
    font-weight: 600;
}

.admin-menu-btn .icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.badge-num {
    background-color: var(--clr-saffron);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    margin-left: auto;
}

.admin-tab-pane {
    animation: slideUpFade 0.4s ease-out;
}

/* Kanban Board Stages */
.kanban-pipeline-container {
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

.kanban-col {
    flex: 0 0 280px;
    background-color: #070709;
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.kanban-col-hdr {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-main);
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--clr-border);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kanban-col-hdr .badge {
    background-color: #1a1a20;
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.kanban-card-list {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 0.15rem;
    min-height: 300px;
}

.kanban-card {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.kanban-card:hover {
    border-color: rgba(207, 162, 126, 0.3);
    transform: translateY(-2px);
}

.kanban-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.kanban-card-detail {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.3;
}

.kanban-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    display: inline-block;
    align-self: flex-start;
}

.kanban-card-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 0.5rem;
}

.kb-btn {
    background: transparent;
    border: none;
    color: var(--clr-saffron);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.kb-btn:hover {
    color: var(--clr-text-main);
}

/* Unified Inbox Chats */
.inbox-sidebar-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.inbox-sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.inbox-sidebar-item.active {
    background-color: rgba(207, 162, 126, 0.03);
    border-left: 3px solid var(--clr-saffron);
}

.inbox-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.inbox-item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.inbox-item-time {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
}

.inbox-item-snippet {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-bubble {
    max-width: 75%;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.chat-bubble.client {
    align-self: flex-start;
    background-color: #151518;
    color: #eaeaea;
    border: 1px solid var(--clr-border);
    border-bottom-left-radius: 2px;
}

.chat-bubble.admin {
    align-self: flex-end;
    background-color: var(--clr-saffron-light);
    color: var(--clr-text-main);
    border: 1px solid rgba(207, 162, 126, 0.2);
    border-bottom-right-radius: 2px;
}

.chat-bubble-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.35rem;
    text-align: right;
    display: block;
}

/* Calendar Month Day Boxes */
.calendar-day-box {
    border-right: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding: 0.5rem;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-day-num {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.calendar-day-box.current-month .calendar-day-num {
    color: var(--clr-text-main);
}

.calendar-day-box.today {
    background-color: rgba(207, 162, 126, 0.02);
    border: 1px solid rgba(207, 162, 126, 0.15);
}

.calendar-day-box.today .calendar-day-num {
    color: var(--clr-saffron);
    font-weight: 700;
}

.calendar-event-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.3rem;
    background-color: var(--clr-saffron-light);
    color: var(--clr-saffron);
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(207,162,126,0.1);
    cursor: pointer;
}

.calendar-event-badge:hover {
    background-color: var(--clr-saffron);
    color: #000;
}

/* CSS Metric Bars */
.metric-bar-wrapper {
    margin-bottom: 0.5rem;
}

.metric-bar-hdr {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.metric-bar-outer {
    height: 8px;
    background-color: #000;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    overflow: hidden;
}

.metric-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-saffron) 100%);
    border-radius: 4px;
    transition: width var(--transition-normal);
}

/* Time slots grid */
.time-slot-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    background-color: #0b0b0d;
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot-btn:hover {
    border-color: var(--clr-saffron);
}

.time-slot-btn.active {
    background-color: var(--clr-saffron);
    color: #000;
    border-color: var(--clr-saffron);
}

.time-slot-btn.disabled {
    background-color: #050505;
    color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.02);
    cursor: not-allowed;
}

/* Form Builder styling */
.builder-field-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--clr-text-main);
    border: 1px dashed var(--clr-border);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.builder-field-item span {
    font-size: 0.85rem;
}

.builder-field-remove {
    color: var(--clr-error);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}


/* ==========================================================================
   NEW PREMIUM AESTHETIC & ANIMATIONS (Tesla / Notion / Apple style)
   ========================================================================== */

/* Typography Overrides */
h1, h2 {
    letter-spacing: -0.03em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* Delay modifiers can be added if needed, but simple scroll trigger is fine */
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* Premium Card */
.premium-card {
    background: rgba(20, 5, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
}
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(207, 162, 126, 0.3);
}

.premium-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.premium-card p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Foundation Card */
.foundation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(207, 162, 126, 0.3);
    background: rgba(207, 162, 126, 0.02);
}

/* Difference Table Overrides */
.difference-table th, .difference-table td {
    transition: background 0.3s ease;
}
.difference-table tr:hover td {
    background: rgba(20, 5, 10, 0.4);
}

/* ==========================================================================
   MULTI-COLOR GRADIENT THEME (Safe, Calm, Attractive)
   ========================================================================== */



@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Interactive Scroll Animations Override */
.scroll-anim-prep {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: none !important; /* Disable initial CSS-only keyframes */
}

.scroll-anim-prep.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover animation enhancements */
.card, .premium-card, .foundation-card, .glass-preview-card, .stat-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover, .premium-card:hover, .foundation-card:hover, .stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(207, 162, 126, 0.1);
    border-color: rgba(207, 162, 126, 0.4);
}









/* ==========================================================================
   NEW SPLIT LAYOUT & MULTICOLOR OPTION THEMES
   ========================================================================== */
body {
    background-color: #ffffff;
    color: var(--clr-text-main);
}

/* Background Color Options */
.bg-opt1 { background-color: #FAF8F6; } /* Calm, earthy white */
.bg-opt2 { background-color: #FFFFEF; } /* Subtle warm yellow/cream */
.bg-opt4 { background-color: #FBFBFA; } /* Clean, luxury soft gray */
.bg-opt6 { 
    background: radial-gradient(circle at top right, #e0f2fe 0%, transparent 40%),
                radial-gradient(circle at bottom left, #dcfce7 0%, transparent 40%),
                radial-gradient(circle at center right, #ffedd5 0%, transparent 50%);
    background-color: #ffffff;
} /* Subtle Multi-Radial */

.split-section {
    padding: 6rem 0;
    width: 100%;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
}

.split-content h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.split-content p.lead {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-mask {
    border-radius: 40px 200px 40px 200px; /* Elegant leaf/drop shape */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background-color: rgba(0,0,0,0.02);
    width: 100%;
    height: 500px;
}

.split-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure buttons are visible on light mode */
.btn-primary { color: #ffffff !important; }


/* ==========================================================================
   MINDBLOWING ANIMATIONS & LOGO FX
   ========================================================================== */
   
/* Logo Animation */
.premium-logo-anim {
    width: 220px; 
    height: 220px; 
    border-radius: 50%;
    animation: premiumBreathe 4s ease-in-out infinite, premiumGlow 8s linear infinite;
    position: relative;
    z-index: 10;
}

@keyframes premiumBreathe {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.02) translateY(-10px); }
}

@keyframes premiumGlow {
    0%, 100% { filter: drop-shadow(0 20px 30px rgba(207, 162, 126, 0.2)) drop-shadow(0 0 50px rgba(207, 162, 126, 0.1)); }
    50% { filter: drop-shadow(0 30px 40px rgba(207, 162, 126, 0.4)) drop-shadow(0 0 80px rgba(207, 162, 126, 0.2)); }
}

/* Hologram Card Scanline Animation */
@keyframes scan {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; } /* Pause at bottom before looping */
}

.hologram-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) !important;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12), inset 0 0 0 2px rgba(207,162,126,0.3) !important;
}

.data-row:hover {
    transform: translateX(10px);
    background: #ffffff !important;
    border-color: rgba(207,162,126,0.3) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Timeline Animation - Simulate filling up on hover of the container */
.vertical-journey-timeline:hover .timeline-progress {
    height: 100% !important;
    transition: height 2s ease-in-out;
}

.vertical-journey-timeline:hover .node-dot {
    background: var(--clr-saffron) !important;
    box-shadow: 0 0 15px var(--clr-saffron);
    transition-delay: calc(var(--i) * 0.5s);
}

.vertical-journey-timeline:hover h3 {
    color: #111827 !important;
    font-weight: 600 !important;
}
.vertical-journey-timeline:hover p {
    color: #4b5563 !important;
}

/* We use nth-child for staggered delays if we could, but a simple hover effect works beautifully */
.v-timeline-node:nth-child(2) { --i: 0; }
.v-timeline-node:nth-child(3) { --i: 1; }
.v-timeline-node:nth-child(4) { --i: 2; }
.v-timeline-node:nth-child(5) { --i: 3; }

/* Pulse dot animation */
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.pulse-dot {
    animation: pulseDot 2s infinite;
}

/* Form Inputs Fix - White Background */
input, textarea, select {
    background-color: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #d1d5db !important;
}
input::placeholder, textarea::placeholder {
    color: #9ca3af !important;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--clr-saffron) !important;
    box-shadow: 0 0 0 3px rgba(207, 162, 126, 0.2) !important;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr !important;
    }
    .split-layout {
        flex-direction: column !important;
    }
    .brand-opening h1 {
        font-size: 3.5rem !important;
    }
    .vertical-journey-timeline {
        padding-left: 1.5rem !important;
    }
}


/* Priority 1 & 3: Hero Background & Global Polish */
.hero-animated-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #faf8f6 0%, #f3f4f6 100%);
    z-index: 1;
}
.wellness-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(207, 162, 126, 0.2);
    border-radius: 50%;
    animation: pulseRing 8s infinite alternate ease-in-out;
}
.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 450px; height: 450px; animation-delay: 2s; border-color: rgba(207, 162, 126, 0.1); }
.ring-3 { width: 600px; height: 600px; animation-delay: 4s; border-color: rgba(207, 162, 126, 0.05); }

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.floating-particle {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--clr-saffron);
    border-radius: 50%;
    filter: blur(2px);
    animation: floatParticle 10s infinite linear;
}
.p-1 { top: 20%; left: 30%; animation-duration: 12s; }
.p-2 { top: 70%; left: 60%; animation-duration: 15s; }
.p-3 { top: 40%; left: 80%; animation-duration: 18s; }

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

.premium-img-grade {
    filter: grayscale(10%) sepia(5%) contrast(105%);
}

/* Global 100px Section Spacing */
.split-section, .content-section, .brand-opening {
    padding: 100px 0 !important;
}


/* Priority 2: Hover Animations */
.foundation-card {
    transition: all 0.3s ease;
}
.foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--clr-saffron);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    border-color: var(--clr-saffron);
}

/* FAQ Details marker fix */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
details > summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}
details[open] > summary::after {
    transform: rotate(45deg);
}


/* ===== BUG FIXES ===== */

/* Fix: Ensure assessment form inputs have visible text */
.assessment-card input,
.assessment-card select,
.assessment-card textarea {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #d1d5db !important;
}

/* Fix: Login portal inputs */
#section-portal input,
#section-portal select {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

/* Fix: section-contact anchor scroll */
.section-contact {
    scroll-margin-top: 0;
}

/* Fix: Ensure all content-section transitions are smooth */
.content-section {
    display: none;
}
.content-section.active {
    display: block;
}


/* ===== PACKAGES SECTION ===== */
.pkg-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.pkg-highlighted:hover {
    transform: scale(1.03) translateY(-8px) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2) !important;
}

.comparison-table tr:hover td {
    background: rgba(207,162,126,0.04);
}

@media (max-width: 900px) {
    #section-packages > div > div:last-child {
        grid-template-columns: 1fr !important;
    }
    .pkg-highlighted {
        transform: scale(1) !important;
    }
    .pkg-highlighted:hover {
        transform: translateY(-8px) !important;
    }
}


/* ===== LIGHT THEME CONSISTENCY FIXES ===== */

/* Webinar form inputs */
#public-webinar input {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
}

#public-webinar label {
    color: #374151 !important;
}

/* Blueprint roster badges override */
.roster-badge {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
}

/* Membership recommendation override */
.onboarding-plan-recommendation {
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
}
.rec-title {
    color: var(--clr-saffron) !important;
}
.rec-price {
    color: #111827 !important;
}
.rec-grid h4 {
    color: #111827 !important;
}
.rec-grid p {
    color: #6b7280 !important;
}

/* Popup modal light inputs */
#lead-popup-modal input {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #d1d5db !important;
}


/* ===== BLUEPRINT LIGHT THEME & ANIMATION FIXES ===== */

/* Dosha Bars */
.dosha-bar {
    background-color: #f3f4f6 !important;
    border: 1px solid #e5e7eb !important;
}
.dosha-bar span {
    color: #374151 !important;
}

/* Clinical Narrative Summary */
.clinical-narrative {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-left: 4px solid var(--clr-saffron) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
}
.clinical-narrative p {
    color: #1e293b !important;
    font-weight: 500 !important;
}

/* Blueprint Subtitle */
.blueprint-subtitle {
    color: var(--clr-saffron) !important;
    border-bottom: 2px solid #f1f5f9 !important;
}

/* Intake Care Directives Cards */
.bp-pillar-card {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease !important;
    cursor: default;
}
.bp-pillar-card h4 {
    color: #0f172a !important;
}
.bp-pillar-card p {
    color: #64748b !important;
}

/* Floating interactive animation */
.bp-pillar-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: var(--clr-saffron) !important;
}

/* Care Team Roster Badges */
.roster-badge {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 600 !important;
}
