@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&family=Mukta:wght@400;500;600;700&display=swap');

:root {
    /* Brand Tokens (Fixed) */
    --primary: #1B5EA8;          /* Primary blue */
    --primary-dark: #134280;     /* Primary dark (hover/active states) */
    --primary-light: #2E7DD4;    /* Primary light */
    --primary-tint: #EBF5FF;     /* Primary tint (light fills, card backgrounds) */
    --primary-tint-2: #DBEEFF;   /* Primary tint 2 */
    --accent: #0EA5E9;           /* Accent sky blue (highlights, links) */
    --navy: #0F2044;             /* Navy (headings, dark sections, footer) */
    --text-main: #1E3A5F;        /* Text */
    --text-muted: #4A6FA5;       /* Text muted */
    --text-light: #7B9BC4;       /* Text light */
    --border: #DDEAF7;           /* Border */
    --surface: #F8FAFD;          /* Surface */
    --success: #16A34A;          /* Success */
    --warning: #D97706;          /* Warning */
    --error: #DC2626;            /* Error */
    
    /* Layout & Component Aliases */
    --bg-primary: #F8FAFD;
    --bg-secondary: #EBF5FF;
    --bg-card: #FFFFFF;
    --primary-hover: #134280;
    
    /* Typography Tokens */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-marathi: 'Mukta', sans-serif;
    
    /* Shape Language Tokens */
    --radius-sm: 10px;          /* Inputs / small elements: 10px */
    --radius-md: 9999px;        /* Buttons: fully rounded pill 9999px always */
    --radius-lg: 24px;          /* Cards: 24px radius */
    --radius-full: 9999px;
    
    /* Blue-tinted Shadows */
    --shadow-sm: 0 4px 12px rgba(27, 94, 168, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(27, 94, 168, 0.08), 0 8px 10px -6px rgba(15, 32, 68, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(27, 94, 168, 0.12), 0 10px 15px -8px rgba(15, 32, 68, 0.06);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.25);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--navy);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    font-weight: 400; /* Intentionally regular weight to match omnifit.in */
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

strong {
    color: var(--navy);
    font-weight: 600;
}

.font-marathi, [lang="mr"], .mr-text {
    font-family: var(--font-marathi);
}

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

.section-padding {
    padding: 5rem 0;
}

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

/* Dynamic Scroll reveal */
.reveal {
    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);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.95rem 2.25rem;
    border-radius: 9999px !important; /* Always fully rounded pill */
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(27, 94, 168, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 66, 128, 0.35);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background-color: var(--primary-dark);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(19, 66, 128, 0.25);
}

.btn-secondary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 168, 0.35);
}

.btn-secondary:active {
    transform: translateY(1px);
}

.btn-accent {
    background-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.25);
}

.btn-accent:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 168, 0.35);
}

/* Top bar (No nav links, no icons - strict attention ratio) */
.top-bar {
    background: rgba(250, 251, 253, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.top-badge {
    background-color: var(--primary);
    color: #FFFFFF !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 2px 8px rgba(27, 94, 168, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--secondary-light);
    color: var(--secondary-hover);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero h1 span.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(10, 92, 150, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-cta-container {
    margin-bottom: 2rem;
}

.hero-trust-bullets {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.trust-bullet svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
}

/* Social Proof Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #074775 100%);
    color: #FFFFFF;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* 3-Step Program Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 92, 150, 0.2);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(10, 92, 150, 0.05);
    line-height: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* Weight Loss Calculator Section */
.calc-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 3rem auto 0 auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.calc-form-pane {
    padding: 3rem;
}

.calc-form-pane h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
}

.calc-input-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.calc-input-wrapper input:focus {
    border-color: var(--primary);
}

.calc-unit {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: none;
    padding: 0.85rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    color: var(--text-muted);
}

.calc-results-pane {
    background-color: var(--primary-light);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid var(--border);
}

.bmi-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 6px solid var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.bmi-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.bmi-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.calc-status {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.calc-suggestion {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Testimonials / Before & After Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ba-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--bg-secondary);
}

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

.ba-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.test-quote {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.test-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(16, 185, 129, 0.1);
    position: absolute;
    top: -2.5rem;
    left: -1rem;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Call-to-Action Lead Form Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-box {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
}

.cta-image-pane {
    position: relative;
    background-color: var(--primary-light);
    min-height: 350px;
}

.cta-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 92, 150, 0.4), transparent);
}

.cta-form-pane {
    padding: 3.5rem;
    position: relative;
}

.cta-form-pane h2 {
    text-align: left;
    margin-bottom: 0.75rem;
}

.cta-form-pane p.subtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 92, 150, 0.1);
}

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

/* Success Overlay (Form state transitions) */
.form-success-overlay {
    position: absolute;
    inset: 0;
    background-color: #FFFFFF;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 750px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(10, 92, 150, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    outline: none;
}

.faq-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 1.75rem 1.5rem 1.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    border-top: 1px solid transparent;
}

/* Active State for FAQ */
.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    /* Height will be set via javascript dynamically */
}

/* Final CTA Section Styles */
.final-cta-section {
    background-color: var(--bg-card);
    text-align: center;
}

.final-headline {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    max-width: 700px;
    margin-inline: auto;
}

.final-btn-wrapper {
    margin-bottom: 2.5rem;
}

.trust-badges-wrapper {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.trust-badge-item svg {
    color: var(--secondary);
}

/* Minimalist Footer Styles */
.footer {
    background-color: #0B131F;
    color: rgba(255, 255, 255, 0.5);
    padding: 3.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-center {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-logo-center span {
    color: var(--secondary);
}

.footer-disclaimer-box {
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-bottom-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Enforce mobile-first button designs: stretch edge-to-edge */
    .btn {
        width: 100%;
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-badge {
        margin-inline: auto;
    }

    .hero-trust-bullets {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calc-card {
        grid-template-columns: 1fr;
    }

    .calc-results-pane {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 2.5rem 1.5rem;
    }

    .calc-form-pane {
        padding: 2rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .cta-image-pane {
        min-height: 250px;
    }

    .cta-form-pane {
        padding: 2.5rem 1.5rem;
    }

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

    .footer-links {
        justify-content: center;
        width: 100%;
    }
    
    .section-padding {
        padding: 3.5rem 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .test-before-after {
        gap: 0.5rem;
    }
}

/* Custom Hero Additions */
.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 1px solid #FCA5A5;
    color: #DC2626;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.05);
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-md);
}

.pulse-btn {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@media (max-width: 768px) {
    .urgency-banner {
        margin-inline: auto;
    }
}

/* Benefits Section Styles */
.benefits-section {
    background-color: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.benefit-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--secondary);
    color: #FFFFFF;
    transform: scale(1.05);
}

.benefit-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
}

/* Timeline Section Styles */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--border);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 3.5rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3.5rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3.5rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 4px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    z-index: 3;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: 0;
    transform: translate(50%, 0);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    transform: translate(-50%, 0);
}

.timeline-content {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    display: inline-block;
    max-width: 100%;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.timeline-item:nth-child(odd) .timeline-card-header {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-card-header {
    flex-direction: row;
}

.timeline-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-item.reveal.active .timeline-card-icon {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hover & Active States */
.timeline-item.reveal.active .timeline-dot {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 0 0 6px rgba(10, 92, 150, 0.15);
}

.timeline-item.reveal.active .timeline-content {
    border-color: rgba(10, 92, 150, 0.25);
    box-shadow: var(--shadow-lg);
}

.timeline-item .timeline-content:hover {
    transform: translateY(-3px);
}

/* Timeline Mobile Layout */
@media (max-width: 768px) {
    .timeline-line {
        left: 24px;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 4.5rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 24px;
        top: 1.5rem;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 24px;
        right: auto;
        transform: translate(-50%, 0);
    }
    
    .timeline-content {
        display: block;
    }

    .timeline-item:nth-child(odd) .timeline-card-header,
    .timeline-item:nth-child(even) .timeline-card-header {
        flex-direction: row;
    }
}

/* Comparison Battle Card Styles */
.comparison-section {
    background-color: var(--bg-secondary);
}

.battle-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1140px;
    width: 100%;
    margin: 3rem auto 0 auto;
    align-items: stretch;
}

.battle-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.opponent-card {
    border-color: var(--border);
    opacity: 0.85;
}

.winner-card {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.winner-card:hover {
    box-shadow: 0 25px 50px -12px rgba(10, 92, 150, 0.15);
    border-color: var(--secondary);
}

.winner-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: #FFFFFF !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.winner-card .card-header h3 {
    color: var(--primary);
}

.card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-features li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
}

.icon-cross {
    color: var(--error);
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-check {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.opponent-card .card-features li {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .battle-cards-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .battle-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Credibility and Social Proof Styles */
.credibility-section {
    background-color: var(--bg-secondary);
}

/* Experts Single Integrated Card Box */
.experts-integrated-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    padding: 3rem 2.5rem;
    max-width: 1140px;
    width: 100%;
    margin: 3rem auto;
    align-items: start;
    transition: var(--transition-smooth);
}

.experts-integrated-card:hover {
    transform: translateY(-4px);
    border-color: rgba(10, 92, 150, 0.25);
}

.expert-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.expert-header-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.expert-avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid #FFFFFF;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    background-color: var(--bg-secondary);
}

.expert-avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.expert-badge-role {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 0.3rem;
    width: fit-content;
    color: #FFFFFF !important;
}

.role-doctor {
    background-color: var(--primary);
    color: #FFFFFF !important;
}

.role-coach {
    background-color: var(--primary-dark);
    color: #FFFFFF !important;
}

.expert-yrs {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.expert-quote-desc {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    padding-left: 1rem;
    margin: 0;
}

.expert-column:first-child .expert-quote-desc {
    border-left-color: var(--primary);
}

.experts-divider {
    background-color: var(--border);
    width: 1px;
    height: 100%;
    align-self: stretch;
}

/* Testimonials Grid & Slider Styles */
.testimonials-header-block {
    text-align: center;
    margin-top: 4.5rem;
    margin-bottom: 3rem;
}

.testimonials-quote-mark {
    font-size: 5.5rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.15);
    display: block;
    line-height: 0.3;
    margin-bottom: 1.25rem;
}

.testimonials-cards-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1140px;
    margin: 2.5rem auto 0 auto;
}

.testimonial-card-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto; /* Remove hard height to eliminate whitespace! */
    transition: var(--transition-smooth);
}

.testimonial-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 92, 150, 0.25);
}

.test-card-top {
    background-color: #F8FAFC;
    padding: 1.75rem 1.75rem 2.25rem 1.75rem; /* Snug vertical padding */
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.test-card-top h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.test-user-loc {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.test-user-quote {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-main);
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.test-card-bottom {
    background-color: #F1F5F9;
    padding: 0; /* Remove padding to let photos touch edges! */
    flex-shrink: 0;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #FFFFFF;
    overflow: hidden;
}

.ba-photo-side {
    position: relative;
    display: block;
    height: 220px; /* Make photos very large! */
    width: 100%;
}

.ba-photo-side.border-right {
    border-right: 1px solid var(--border);
}

.ba-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Large crop stretching */
    display: block;
    transition: var(--transition-smooth);
}

.testimonial-card-item:hover .ba-photo-side img {
    transform: scale(1.05);
}

.ba-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: inline-block;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.badge-before {
    background-color: #FEF2F2;
    color: #EF4444;
}

.badge-after {
    background-color: var(--primary-tint);
    color: var(--primary);
}

/* Testimonial slider layouts on mobile */
@media (max-width: 1024px) {
    .testimonials-cards-deck {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 1rem 0.5rem 2rem 0.5rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    
    .testimonial-card-item {
        flex: 0 0 290px;
        scroll-snap-align: start;
        height: auto; /* Natural height on mobile too! */
        min-height: 470px;
    }
    
    /* Sleek scrollbar indicator for mobile swiping */
    .testimonials-cards-deck::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-cards-deck::-webkit-scrollbar-thumb {
        background-color: var(--primary);
        border-radius: var(--radius-full);
    }
    .testimonials-cards-deck::-webkit-scrollbar-track {
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    .experts-integrated-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    
    .experts-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
}

/* Inspired Outcomes Section Styles */
.outcomes-section {
    background-color: var(--bg-primary);
}

.outcomes-scroll-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.outcome-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 440px;
    transition: var(--transition-smooth);
}

.outcome-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 92, 150, 0.25);
    box-shadow: var(--shadow-lg);
}

.card-text-header {
    padding: 1.5rem;
    text-align: left;
}

.card-text-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-text-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-image-bottom {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--border);
    background-color: var(--bg-secondary);
}

.card-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.outcome-card:hover .card-image-bottom img {
    transform: scale(1.05);
}

/* Mobile outcomes responsive layout */
@media (max-width: 1024px) {
    .outcomes-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 1rem 0.5rem 2rem 0.5rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    
    .outcome-card {
        flex: 0 0 290px;
        scroll-snap-align: start;
        height: 440px;
    }
    
    /* Sleek scrollbar indicator for outcomes list on mobile */
    .outcomes-scroll-wrapper::-webkit-scrollbar {
        height: 6px;
    }
    .outcomes-scroll-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--primary);
        border-radius: var(--radius-full);
    }
    .outcomes-scroll-wrapper::-webkit-scrollbar-track {
        background-color: transparent;
    }
}

/* GLP-1 Clinical Benefits Styles */

/* --- GLP-1 BENEFITS SECTION (LEFT TEXT, RIGHT FULL-HEIGHT IMAGE) --- */
.glp1-benefits-section {
    padding: 4.5rem 0;
    background-color: var(--bg-main, #FFFFFF);
}

.glp1-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.glp1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glp1-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--navy, #0F2044);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.glp1-content .section-desc {
    font-size: 0.95rem;
    color: var(--text-muted, #4A6FA5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.glp1-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 2rem;
}

.glp1-badge-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.glp1-badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: var(--primary-tint, #EBF5FF);
    color: var(--primary, #1B5EA8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glp1-badge-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy, #0F2044);
    margin-bottom: 0.25rem;
}

.glp1-badge-content p {
    font-size: 0.85rem;
    color: var(--text-muted, #4A6FA5);
    line-height: 1.45;
}

/* RIGHT COLUMN: GRAPHIC WRAPPER */
.glp1-graphic-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 94, 168, 0.12);
    border: 1px solid var(--border, #DDEAF7);
}

.glp1-graphic-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    display: block;
}

.graphic-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary, #1B5EA8);
    color: #FFFFFF !important;
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(27, 94, 168, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.badge-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF !important;
    line-height: 1;
}

.badge-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
}

@media (max-width: 992px) {
    .glp1-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .glp1-graphic-wrapper {
        min-height: 320px;
    }
}


/* Responsiveness for GLP1 Section */
@media (max-width: 1024px) {
    .glp1-benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .section-subtext {
        margin-inline: auto;
    }
    
    .glp1-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
    
    .glp1-graphic-pane {
        margin-top: 1rem;
    }
    
    .graphic-badge {
        left: 20px;
    }
}

@media (max-width: 600px) {
    .glp1-badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .glp1-badge-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.test-user-result {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin: 0.35rem 0 0.65rem 0;
}



/* --- OUTCOMES SECTION (5 CARDS IN 1 SINGLE ROW) --- */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.15rem;
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
}

.outcome-card {
    background-color: var(--bg-card, #FFFFFF);
    border-radius: 20px;
    border: 1px solid var(--border, #DDEAF7);
    box-shadow: 0 4px 16px rgba(27, 94, 168, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 410px;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(27, 94, 168, 0.15);
    border-color: var(--primary-light, #2E7DD4);
}

.outcome-card-top {
    padding: 1.25rem 1rem 0.75rem 1rem;
    flex-grow: 1;
}

.outcome-card-top h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy, #0F2044);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.outcome-card-top p {
    font-size: 0.82rem;
    color: var(--text-muted, #4A6FA5);
    line-height: 1.45;
}

.outcome-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    background-color: var(--primary-tint, #EBF5FF);
}

.outcome-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.outcome-card:hover .outcome-card-img img {
    transform: scale(1.06);
}

/* Responsive Grid for Tablets & Mobile */
@media (max-width: 1100px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .outcomes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        gap: 1rem;
    }
    .outcome-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}

}



/* --- TIMELINE CAPSULE CARD CENTER ALIGNMENT --- */
.timeline-item:nth-child(odd),
.timeline-item:nth-child(even) {
    text-align: center !important;
}

.timeline-content {
    background-color: var(--bg-card, #FFFFFF);
    border-radius: 40px;
    padding: 1.75rem 2.25rem;
    box-shadow: 0 6px 24px rgba(27, 94, 168, 0.08);
    border: 1px solid var(--border, #DDEAF7);
    transition: var(--transition-smooth);
    display: inline-block;
    width: 100%;
    text-align: center !important;
}

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: center !important;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    flex-direction: row !important;
    flex-wrap: wrap;
}

.timeline-card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary, #1B5EA8);
    margin: 0;
    text-align: center !important;
}

.timeline-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--primary-tint, #EBF5FF);
    color: var(--primary, #1B5EA8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted, #4A6FA5);
    line-height: 1.5;
    text-align: center !important;
    margin: 0 auto;
}

.timeline-item:nth-child(odd) .timeline-card-header,
.timeline-item:nth-child(even) .timeline-card-header {
    flex-direction: row !important;
}



/* Subtitle Center Aligned & Bolder */
.outcomes-header {
    text-align: center !important;
    margin-bottom: 2.5rem;
}

.outcomes-header h2 {
    text-align: center !important;
}

.outcomes-header .subtitle {
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 1.05rem;
    color: var(--text-muted, #4A6FA5);
    margin: 0.5rem auto 0 auto;
    display: block;
    max-width: 800px;
}



/* --- SUCCESS MODAL OVERLAY STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 32, 68, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.success-icon {
    width: 64px;
    height: 64px;
    background-color: #DCFCE7;
    color: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy, #0F2044);
    margin-bottom: 0.75rem;
}

.success-message {
    font-size: 0.95rem;
    color: var(--text-muted, #4A6FA5);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}



/* --- CONSISTENT SECTION SPACING FIX --- */
.credibility-section {
    padding: 4rem 0 1.5rem 0;
}

.experts-integrated-card {
    margin: 2.5rem auto 0 auto !important;
}

.testimonials-section {
    padding: 2rem 0 4rem 0;
}

.testimonials-header-block {
    margin-top: 0;
}



/* --- MOBILE RESPONSIVE OPTIMIZATION FOR OUTCOMES GRID --- */
@media (max-width: 1100px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .outcomes-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.75rem 0.75rem 1.5rem 0.75rem;
        gap: 1.25rem;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) transparent;
    }
    .outcome-card {
        flex: 0 0 270px;
        scroll-snap-align: center;
        height: 390px;
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(27, 94, 168, 0.12);
    }
    .outcome-card-top {
        padding: 1.25rem 1rem 0.75rem 1rem;
    }
    .outcome-card-top h3 {
        font-size: 1.05rem;
    }
    .outcome-card-top p {
        font-size: 0.82rem;
    }
    .outcome-card-img {
        height: 170px;
    }
}




/* Single Transformation Image inside Testimonial Card */
.transformation-single-img {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--primary-tint, #EBF5FF);
    box-shadow: 0 4px 12px rgba(27, 94, 168, 0.08);
}

.transformation-single-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center !important;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s ease;
}

.testimonial-card-item:hover .transformation-single-img img {
    transform: scale(1.04);
}




/* --- FAQ ACCORDION STYLES (FAILSAFE) --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 9999px;
    border: 1px solid var(--border, #DDEAF7);
    box-shadow: 0 4px 16px rgba(27, 94, 168, 0.06);
    overflow: hidden;
    transition: border-radius 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-radius: 20px !important;
    border-color: var(--primary-light, #2E7DD4) !important;
    box-shadow: 0 8px 24px rgba(27, 94, 168, 0.12) !important;
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy, #0F2044);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    font-family: inherit;
    outline: none;
}

.faq-trigger * {
    pointer-events: none;
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-tint, #EBF5FF);
    color: var(--primary, #1B5EA8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
    background-color: var(--primary, #1B5EA8) !important;
    color: #FFFFFF !important;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-content {
    max-height: 500px !important;
    padding: 0 2rem 1.5rem 2rem !important;
}

.faq-content-inner {
    font-size: 0.95rem;
    color: var(--text-muted, #4A6FA5);
    line-height: 1.6;
    border-top: 1px solid var(--border, #DDEAF7);
    padding-top: 1rem;
}



/* --- ALWAYS VISIBLE CONTENT FIX (NO BLANK AREAS) --- */
.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}



/* --- OUTCOME CARDS REFINED (NO EMPTY GAP) --- */
.outcome-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(27, 94, 168, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 94, 168, 0.16);
}

.outcome-card-top {
    padding: 1.5rem 1.25rem 0.75rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.outcome-card-top h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.outcome-card-top p {
    font-size: 0.92rem;
    font-weight: 500;
    color: #2E4A73;
    line-height: 1.55;
}

.outcome-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.outcome-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

