* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --navy: #1B3A57;
            --orange: #D97D54;
            --cream: #FAF7F2;
            --light: #FFFFFF;
            --dark: #0F1419;
            --gray-100: #F8F9FA;
            --gray-200: #E9ECEF;
            --gray-400: #ADB5BD;
            --gray-600: #6C757D;
            
            
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(27, 58, 87, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 32px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        .logo-tera {
            color: var(--navy);
        }
        
        .logo-care {
            color: var(--orange);
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
        }
        
        .nav-phone:hover {
            color: var(--orange);
        }
        
        /* Live Response Badge */
        .live-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: #e8f5e9;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: #2e7d32;
            margin-right: 8px;
        }
        
        .live-badge.offline {
            background: #fff3e0;
            color: #e65100;
        }
        
        .live-badge.sunday {
            background: #f5f5f5;
            color: #666;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            background: #4caf50;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .live-badge.offline .status-dot {
            background: #ff9800;
            animation: none;
        }
        
        .live-badge.sunday .status-dot {
            background: #999;
            animation: none;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .nav-cta-wrapper {
            position: relative;
        }
        
        .nav-cta {
            padding: 12px 32px 12px 24px;
            background: var(--orange);
            color: white;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
        }
        
        .nav-cta:hover {
            background: #c66d44;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(217, 125, 84, 0.25);
        }
        
        .nav-cta-arrow {
            font-size: 12px;
            transition: transform 0.2s;
        }
        
        .nav-cta-wrapper.active .nav-cta-arrow {
            transform: rotate(180deg);
        }
        
        .nav-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 8px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s;
            z-index: 1001;
        }
        
        .nav-cta-wrapper.active .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .nav-dropdown a {
            display: block;
            padding: 14px 20px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .nav-dropdown a:last-child {
            border-bottom: none;
        }
        
        .nav-dropdown a:hover {
            background: var(--cream);
            color: var(--orange);
        }
        
        .nav-dropdown a:first-child {
            border-radius: 12px 12px 0 0;
        }
        
        .nav-dropdown a:last-child {
            border-radius: 0 0 12px 12px;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(217, 125, 84, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* Pattern Interrupt */
        .pattern-interrupt {
            display: inline-block;
            background: var(--orange);
            color: white;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }
        
        .pattern-interrupt-white {
            display: inline-block;
            background: white;
            color: var(--orange);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }
        
        /* Social Proof Above Fold */
        .hero-social-proof {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .hero-social-proof span {
            font-weight: 600;
            color: var(--dark);
            font-size: 15px;
        }
        
        .hero-social-proof .stat {
            color: var(--orange);
            font-weight: 700;
        }
        
        .hero-content h1 {
            font-size: clamp(48px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
            color: var(--navy);
        }
        
        .hero-content h1 .highlight {
            background: linear-gradient(135deg, var(--orange), #e89870);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subhead {
            font-size: 24px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        .hero-content p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 32px;
            max-width: 560px;
        }
        
        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        /* MASSIVE CTA BUTTONS */
        .btn-primary {
            padding: 24px 56px;
            background: var(--orange);
            color: white;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 800;
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(217, 125, 84, 0.3);
        }
        
        .btn-primary:hover {
            background: #c66d44;
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(217, 125, 84, 0.4);
        }
        
        .btn-secondary {
            padding: 16px 40px;
            background: transparent;
            color: var(--navy);
            text-decoration: none;
            border-radius: 100px;
            font-weight: 700;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid var(--navy);
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            background: var(--navy);
            color: white;
        }
        
        /* MID-PAGE CTA */
        .cta-inline {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--orange) 0%, #e89870 100%);
            color: white;
            margin: 80px 0;
            border-radius: 24px;
        }
        
        .cta-inline h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }
        
        .cta-inline p {
            font-size: 18px;
            margin-bottom: 32px;
            opacity: 0.95;
        }
        
        .btn-inline {
            padding: 20px 48px;
            background: white;
            color: var(--orange);
            text-decoration: none;
            border-radius: 100px;
            font-weight: 800;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        
        .btn-inline:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
        }
        
        /* Floating Form Card - PROGRESSIVE */
        .form-card {
            background: white;
            border-radius: 24px;
            padding: 48px;
            margin: 40px 0;
            box-shadow: 0 20px 60px rgba(27, 58, 87, 0.12);
            position: sticky;
            top: 120px;
        }
        
        .form-card h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        
        .form-card p {
            color: var(--gray-600);
            font-size: 16px;
            margin-bottom: 32px;
        }
        
        /* Progressive form steps */
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 24px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 15px;
            color: var(--dark);
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.2s;
            background: var(--gray-100);
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--orange);
            background: white;
            box-shadow: 0 0 0 4px rgba(217, 125, 84, 0.08);
        }
        
        .submit-btn {
            width: 100%;
            padding: 22px;
            background: var(--orange);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: inherit;
        }
        
        .submit-btn:hover {
            background: #c66d44;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(217, 125, 84, 0.3);
        }
        
        .form-trust {
            margin-top: 24px;
            padding: 20px;
            background: var(--cream);
            border-radius: 12px;
            font-size: 14px;
            line-height: 1.8;
        }
        
        .form-trust div {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .form-trust div:last-child {
            margin-bottom: 0;
        }
        
        /* Risk Reversal Box */
        .risk-reversal {
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
            border-radius: 12px;
            border-left: 4px solid #4caf50;
        }
        
        .risk-reversal strong {
            display: block;
            color: #2e7d32;
            font-size: 15px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .risk-reversal p {
            font-size: 14px;
            color: var(--dark);
            margin: 0;
        }
        
        /* Social Proof Badges */
        .social-proof-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 24px;
        }
        
        .badge {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            padding: 16px;
            text-align: center;
        }
        
        .badge strong {
            display: block;
            color: var(--orange);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        
        .badge span {
            display: block;
            font-size: 12px;
            color: var(--gray-600);
            line-height: 1.4;
        }
        
        /* Question Hook Section */
        .question-section {
            padding: 140px 0;
            background: white;
        }
        
        .big-question {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
        }
        
        .big-question h2 {
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1.5px;
            color: var(--navy);
            margin-bottom: 24px;
        }
        
        .big-question p {
            font-size: 20px;
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* Pain Points with Sensory Detail */
        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .pain-card {
            background: var(--cream);
            border-radius: 20px;
            padding: 48px 40px;
            border-left: 4px solid var(--orange);
            transition: all 0.3s;
        }
        
        .pain-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(27, 58, 87, 0.08);
        }
        
        .pain-number {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .pain-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        
        .pain-card p {
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
        }
        
        .pain-quote {
            font-style: italic;
            color: var(--gray-600);
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(27, 58, 87, 0.1);
        }
        
        /* Shocking Statement */
        .shock-section {
            padding: 80px 0;
            background: var(--navy);
            color: white;
        }
        
        .shock-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .shock-item {
            text-align: center;
            padding: 32px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .shock-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }
        
        .shock-icon {
            font-size: 64px;
            margin-bottom: 24px;
        }
        
        .shock-text {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        .shock-subtext {
            font-size: 18px;
            opacity: 0.8;
            max-width: 640px;
            margin: 0 auto;
        }
        
/* =========================================
   PACKAGES SECTION & CALCULATOR STYLES
   ========================================= */

.packages-section {
    padding: 100px 0;
    background: var(--white);
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.packages-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* --- 4-Column Grid Layout --- */
.packages-grid.four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
    align-items: end; /* Aligns bottoms of cards */
}

/* --- Package Card Styling --- */
/* =========================================
   PACKAGES SECTION (NAVY & ORANGE THEME)
   ========================================= */

.packages-section {
    padding: 100px 0;
    background: var(--cream); /* Using your Cream background */
}

.packages-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy); /* Brand Navy */
    margin-bottom: 16px;
}

.packages-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* --- 4-Column Grid Layout --- */
.packages-grid.four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
    align-items: end;
}

/* --- Standard Card Styling --- */
.package-card {
    background: var(--light); /* White */
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 58, 87, 0.15); /* Navy shadow */
    border-color: var(--orange);
}

/* --- FEATURED CARD (The Navy Pop) --- */
.package-card.featured {
    background: var(--navy); /* Brand Navy Background */
    border: none;
    box-shadow: 0 25px 50px -12px rgba(27, 58, 87, 0.4);
    transform: scale(1.05);
    z-index: 10;
    padding-top: 50px;
    padding-bottom: 40px;
    color: var(--light);
}

/* Typography */
.package-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

/* Force white text on Navy card */
.package-card.featured .package-title { 
    color: var(--gray-400); 
}

.package-sessions {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 5px;
}

.package-card.featured .package-sessions { 
    color: var(--light); 
}

.package-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.package-card.featured .package-label { 
    color: var(--gray-200); 
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange); /* Brand Orange Price */
}

.package-card.featured .package-price { 
    color: var(--orange); 
}

.package-per-session {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.package-card.featured .package-per-session { 
    color: var(--gray-400); 
}

.package-savings {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.package-savings.highlight {
    background: rgba(217, 125, 84, 0.15); /* Soft Orange */
    color: var(--orange);
}

.package-card.featured .package-savings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

/* Badges */
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.package-badge-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 11px;
    font-weight: 700;
    padding: 8px;
    border-radius: 15px 15px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features List */
.package-features {
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.package-features li {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.package-card.featured .package-features li { 
    color: var(--light); 
}

/* Buttons */
.package-cta {
    margin-top: auto;
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    
    /* Standard Button: Outline Navy */
    border: 1px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.package-cta:hover {
    background: var(--navy);
    color: var(--light);
}

/* Featured Button: Solid Orange on Navy Background */
.package-cta.primary {
    background: var(--orange);
    color: var(--light);
    border: 1px solid var(--orange);
    box-shadow: 0 4px 12px rgba(217, 125, 84, 0.3);
}

.package-cta.primary:hover {
    background: #c06035; /* Slightly darker orange */
    transform: translateY(-2px);
}

/* --- Bottom Layout Alignment --- */
.bottom-box {
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 12px;
    padding: 25px 30px;
}

/* --- Single Session Row --- */
.single-session-row {
    background: var(--light);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.single-session-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--navy);
}

.btn-text {
    background: none;
    border: none;
    color: var(--orange);
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-text:hover { 
    color: var(--navy); 
}

/* --- REDESIGNED PROMISE CARD --- */
.promise-card {
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.promise-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.promise-content strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.promise-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Guarantee Box Styling (if needed) */
.packages-guarantee {
    background: rgba(220, 252, 231, 0.4); /* Very faint green */
    border: 1px solid #86efac;
    text-align: center;
}

.packages-guarantee strong {
    display: block;
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.packages-guarantee p {
    font-size: 0.95rem;
    color: #14532d;
    margin: 0;
    line-height: 1.6;
}

/* --- NEW COMPACT CALCULATOR --- */
.roi-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--cream); /* Keep theme consistency */
    border: 2px solid var(--orange);
    border-radius: 16px;
    padding: 40px; /* Increased padding */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.roi-header { 
    text-align: center; 
    margin-bottom: 25px; 
}

.roi-header h3 { 
    font-size: 1.25rem; 
    color: var(--navy); 
    margin-bottom: 5px; 
}

.roi-header p { 
    font-size: 0.9rem; 
    color: var(--gray-600); 
    margin: 0; 
}

/* Package Selector (Top) */
.roi-package-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.roi-radio { 
    cursor: pointer; 
}

.roi-radio input { 
    display: none; 
}

.roi-radio span {
    display: block;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all 0.2s;
}

.roi-radio input:checked + span {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(27, 58, 87, 0.2);
}

/* Grid Layout */
.roi-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr; /* Give Left column more space for labels */
    gap: 50px; /* Increased from 40px to give more room */
    align-items: start;
}

.roi-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Input Groups */
.roi-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px; /* More space between rows */
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
}

.roi-input-group:last-child { 
    border-bottom: none; 
}

.roi-input-group label {
    width: 140px; /* Fixed width for alignment */
    font-weight: 600;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.3;
}

/* First input box (session/trip count) - make it narrower */
.roi-input-group > input[type="number"] {
    width: 50px;
    padding: 6px 8px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    background: #f8fafc;
}

.x { 
    color: var(--gray-400); 
    padding: 0 5px; 
}

.labeled-input {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 8px; /* Add spacing from multiply sign */
    gap: 6px; /* Space between input and label */
}

.labeled-input span { 
    position: absolute; 
    left: 8px; 
    color: var(--gray-600); 
}

.labeled-input input {
    width: 75px; /* Reduced width */
    padding: 6px 6px 6px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 13px;
}

.labeled-input small {
    /* Changed from absolute to relative positioning */
    color: var(--gray-400);
    font-size: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Totals & Savings */
.roi-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-600);
}

.roi-total strong { 
    font-size: 1.2rem; 
    color: var(--alert); 
}

/* Right Column Spacing */
.roi-col.teracare-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.teracare-display {
    text-align: center;
    margin-bottom: 30px; /* Push savings box down */
}

.teracare-display span { 
    display: block; 
    font-size: 2rem; 
    font-weight: 800; 
    color: var(--navy); 
    line-height: 1; 
}

.teracare-display small { 
    color: var(--secondary); 
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 11px; 
}

.savings-box {
    background: var(--navy);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(27, 58, 87, 0.2);
}

.savings-label { 
    font-size: 12px; 
    opacity: 0.8; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.savings-box strong { 
    display: block; 
    font-size: 1.8rem; 
    margin: 5px 0; 
    color: var(--accent); 
}

.savings-box p {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.9;
    line-height: 1.4;
    font-style: italic;
}

/* TeraCare Side Specifics */
.teracare-pricing .package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.teracare-pricing label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.teracare-pricing label:hover {
    background: #e2e8f0;
}

.calc-total.teracare {
    flex-direction: column;
    align-items: flex-start;
}

.teracare-benefits {
    font-size: 12px;
    color: var(--secondary);
    margin-top: 5px;
}

/* Savings Result Box */
.calc-result {
    grid-column: 1 / -1; /* Spans full width below columns */
    margin-top: 20px;
}

.savings {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #86efac;
}

.savings-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #14532d;
    margin-bottom: 5px;
}

.savings-per-session {
    font-size: 14px;
    color: #166534;
    font-weight: 500;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .packages-grid.four-col {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Layout on Tablet */
        gap: 30px;
    }
    
    .package-card.featured {
        transform: none; /* Remove scaling on tablet */
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .packages-grid.four-col {
        grid-template-columns: 1fr; /* 1 Column Stack on Mobile */
    }
    
    .single-session-row {
        flex-direction: column; 
        text-align: center;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promise-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .roi-input-group {
        flex-wrap: nowrap; /* Keep items in one line */
        gap: 5px;
    }
    
    .roi-input-group label {
        width: 100px; /* Reduce label width on mobile */
        font-size: 12px;
    }
    
    .roi-input-group > input[type="number"] {
        width: 40px; /* Even narrower on mobile */
    }
    
    .labeled-input input {
        width: 60px; /* Narrower on mobile */
    }
    
    .labeled-input small {
        font-size: 9px;
    }
}

@media (max-width: 600px) {
    .roi-wrapper {
        padding: 25px;
    }
    
    .packages-header h2 {
        font-size: 2rem;
    }
    
    .package-sessions {
        font-size: 3rem;
    }
}
        
        /* TeraCare Protocol Section */
        .protocol-section {
            padding: 140px 0;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
        }
        
        .protocol-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .protocol-badge {
            display: inline-block;
            background: var(--orange);
            color: white;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
        }
        
        .protocol-header h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .protocol-header p {
            font-size: 20px;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .protocol-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .protocol-pillar {
            background: white;
            border-radius: 20px;
            padding: 48px 40px;
            box-shadow: 0 8px 24px rgba(27, 58, 87, 0.06);
            border-top: 4px solid var(--orange);
        }
        
        .pillar-icon {
            font-size: 56px;
            margin-bottom: 24px;
        }
        
        .protocol-pillar h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        
        .protocol-pillar p {
            color: var(--gray-600);
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* Science Section */
        .science-section {
            padding: 140px 0;
            background: white;
        }
        
        .science-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .science-header h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .science-reasons {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .science-reason {
            background: var(--cream);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border-left: 4px solid var(--orange);
        }
        
        .science-reason h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }
        
        .science-reason p {
            color: var(--dark);
            line-height: 1.8;
            font-size: 17px;
        }
        
        .science-citation {
            text-align: center;
            margin-top: 60px;
            padding: 24px;
            background: var(--gray-100);
            border-radius: 12px;
            font-size: 15px;
            color: var(--gray-600);
            font-style: italic;
        }
        
        /* Loss Aversion Section */
        .loss-section {
            padding: 140px 0;
            background: linear-gradient(135deg, #2d5a7b 0%, var(--navy) 100%);
            color: white;
        }
        
        .loss-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .loss-content h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            margin-bottom: 32px;
            letter-spacing: -1.5px;
        }
        
        .loss-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 60px;
            text-align: left;
        }
        
        .loss-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .loss-item h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .loss-item p {
            opacity: 0.9;
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* Testimonial Card */
        .testimonial-single {
            background: white;
            border-radius: 20px;
            padding: 48px;
            box-shadow: 0 8px 24px rgba(27, 58, 87, 0.06);
            max-width: 800px;
            margin: 80px auto;
            position: relative;
        }
        
        .testimonial-single::before {
            content: '"';
            position: absolute;
            top: 24px;
            left: 32px;
            font-size: 80px;
            color: var(--orange);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-text {
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 28px;
            font-size: 18px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
            font-size: 17px;
        }
        
        .testimonial-meta {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 16px;
        }
        
        .testimonial-result {
            background: var(--cream);
            padding: 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            color: var(--orange);
            display: inline-block;
        }
        
        .verified-badge {
            display: inline-block;
            background: #e8f5e9;
            color: #2e7d32;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            margin-left: 8px;
        }
        
        /* Comparison Table Section */
        .comparison-section {
            padding: 140px 0;
            background: var(--gray-100);
        }
        
        .comparison-section h2 {
            text-align: center;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 60px;
            letter-spacing: -1.5px;
        }
        
        .comparison-table {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(27, 58, 87, 0.06);
        }
        
        .comparison-table thead {
            background: var(--navy);
            color: white;
        }
        
        .comparison-table th {
            padding: 24px 20px;
            text-align: left;
            font-weight: 700;
            font-size: 16px;
        }
        
        .comparison-table th.highlight-col {
            background: var(--orange);
        }
        
        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid var(--gray-200);
            font-size: 15px;
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tbody tr:hover {
            background: var(--cream);
        }
        
        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--navy);
        }
        
        .comparison-table td.highlight-col {
            background: rgba(217, 125, 84, 0.05);
            font-weight: 600;
        }
        
        /* Future Pacing Section */
        .future-section {
            padding: 140px 0;
            background: white;
        }
        
        .future-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .future-header span {
            display: inline-block;
            background: var(--cream);
            color: var(--orange);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }
        
        .future-header h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .future-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .future-scenario {
            background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
            border-radius: 24px;
            padding: 48px;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .future-scenario.good {
            border-color: var(--orange);
        }
        
        .future-scenario h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--navy);
        }
        
        .future-detail {
            margin-bottom: 20px;
            padding-left: 32px;
            position: relative;
        }
        
        .future-detail::before {
            content: '\23F0';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-weight: 800;
            font-size: 20px;
        }
        
        .future-detail strong {
            display: block;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .future-detail p {
            color: var(--gray-600);
            line-height: 1.6;
        }
        
        /* Doctor Section */
        .doctor-section {
            padding: 140px 0;
            background: var(--navy);
            color: white;
        }
        
        .doctor-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 80px;
            align-items: center;
        }
        
        .doctor-image {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, rgba(217, 125, 84, 0.2), rgba(217, 125, 84, 0.05));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
        }
        
        .doctor-content h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        
        .doctor-quote {
            font-size: 20px;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 32px;
            padding-left: 24px;
            border-left: 3px solid var(--orange);
        }
        
        .credentials {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        
        .credential-badge {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .doctor-content p {
            font-size: 17px;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 24px;
        }
        
        /* Micro-Commitment Section */
        .micro-section {
            padding: 100px 0;
            background: var(--gray-100);
            text-align: center;
        }
        
        .micro-section h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 48px;
        }
        
        .micro-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .micro-step {
            position: relative;
        }
        
        .step-number {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--orange), #e89870);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            color: white;
            margin: 0 auto 24px;
        }
        
        .micro-step h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }
        
        .micro-step p {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* Social Proof Wall */
        .proof-section {
            padding: 140px 0;
            background: linear-gradient(180deg, var(--cream) 0%, var(--light) 100%);
        }
        
        .proof-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .proof-header h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonial {
            background: white;
            border-radius: 20px;
            padding: 48px 40px;
            box-shadow: 0 8px 24px rgba(27, 58, 87, 0.06);
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 24px;
            left: 32px;
            font-size: 80px;
            color: var(--orange);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        /* FAQ Section - OBJECTION BASED */
        .faq-section {
            padding: 140px 0;
            background: white;
        }
        
        .faq-section h2 {
            text-align: center;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 80px;
            letter-spacing: -1.5px;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--cream);
            border-radius: 16px;
            padding: 32px;
            border-left: 4px solid var(--orange);
        }
        
        .faq-item h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 16px;
            line-height: 1.3;
        }
        
        .faq-item p {
            color: var(--dark);
            line-height: 1.7;
            font-size: 16px;
        }
        
        /* Final CTA - The Closer */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, #2d5a7b 100%);
            color: white;
            text-align: center;
            padding: 140px 0;
        }
        
        .cta-section h2 {
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
        }
        
        .cta-section > .container > p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 60px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .closer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto 60px;
            align-items: start;
        }
        
        .closer-benefits {
            text-align: left;
        }
        
        .closer-benefits h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 28px;
        }
        
        .benefit-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 24px;
            border-radius: 12px;
            margin-bottom: 16px;
            font-size: 16px;
            line-height: 1.6;
            border-left: 3px solid var(--orange);
        }
        
        .urgency-box {
            background: var(--orange);
            padding: 24px;
            border-radius: 16px;
            margin-top: 32px;
        }
        
        .urgency-box strong {
            display: block;
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .urgency-box p {
            font-size: 15px;
            margin: 0;
            opacity: 0.95;
        }
        
        .closer-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        .closer-form h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }
        
        .closer-form > p {
            color: var(--gray-600);
            font-size: 15px;
            margin-bottom: 28px;
        }
        
        .final-trust {
            max-width: 700px;
            margin: 0 auto;
            padding: 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            font-size: 16px;
        }
        
        /* Footer - MINIMAL */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 32px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-brand h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        
        .footer-brand .logo-tera {
            color: white;
        }
        
        .footer-brand .logo-care {
            color: var(--orange);
        }
        
        .footer-brand p {
            opacity: 0.7;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        
        .footer-contact-label {
            display: inline-block;
            background: var(--orange);
            color: white;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        
        .footer-contact-info p {
            margin-bottom: 12px;
            opacity: 0.9;
        }
        
        .footer-contact-info a {
            color: white;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-contact-info a:hover {
            color: var(--orange);
        }
        
        .footer-column h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            text-align: center;
            opacity: 0.6;
            font-size: 14px;
        }
        
        /* Modal Styles */
        .exit-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .exit-modal.active {
            display: flex;
        }
        
        .exit-content {
            background: white;
            border-radius: 24px;
            padding: 48px;
            max-width: 600px;
            width: 100%;
            position: relative;
            text-align: center;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .roi-calculator .exit-content {
            max-width: 800px;
        }
        
        .quiz-content {
            max-width: 700px;
        }
        
        .exit-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 32px;
            cursor: pointer;
            color: var(--gray-400);
            line-height: 1;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
        }
        
        .exit-close:hover {
            background: var(--gray-100);
            color: var(--dark);
        }
        
        .exit-content h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        
        .exit-subhead {
            font-size: 20px;
            font-weight: 600;
            color: var(--orange);
            margin-bottom: 16px;
        }
        
        .exit-content p {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 24px;
        }
        
        .exit-benefits {
            list-style: none;
            text-align: left;
            margin: 24px 0;
            padding: 24px;
            background: var(--cream);
            border-radius: 12px;
        }
        
        .exit-benefits li {
            font-size: 16px;
            margin-bottom: 12px;
            color: var(--dark);
        }
        
        .exit-benefits li:last-child {
            margin-bottom: 0;
        }
        
        .exit-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
        }
        
        .exit-form input {
            padding: 16px 20px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
        }
        
        .exit-form input:focus {
            outline: none;
            border-color: var(--orange);
        }
        
        .exit-privacy {
            font-size: 13px;
            color: var(--gray-600);
            margin-top: 12px;
        }
        
        /* ROI Calculator Styles */
        .calculator-form {
            text-align: left;
        }
        
        .calc-section {
            background: var(--cream);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
        }
        
        .calc-section h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 24px;
        }
        
        .calc-row {
            display: grid;
            grid-template-columns: 2fr 80px 30px 80px 30px 100px;
            gap: 12px;
            align-items: center;
            margin-bottom: 16px;
            font-size: 15px;
        }
        
        .calc-row label {
            color: var(--dark);
            font-weight: 600;
        }
        
        .calc-row input {
            padding: 10px 12px;
            border: 2px solid var(--gray-200);
            border-radius: 8px;
            font-size: 15px;
            text-align: center;
        }
        
        .calc-row span {
            color: var(--gray-600);
        }
        
        .calc-total {
            margin-top: 24px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            text-align: center;
        }
        
        .calc-total strong {
            font-size: 24px;
            color: var(--navy);
        }
        
        .teracare-pricing {
            background: linear-gradient(135deg, rgba(217, 125, 84, 0.1), rgba(217, 125, 84, 0.05));
        }
        
        .package-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .package-options label {
            padding: 16px;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .package-options label:hover {
            background: var(--cream);
        }
        
        .package-options input[type="radio"] {
            width: 20px;
            height: 20px;
        }
        
        .calc-total.teracare {
            background: var(--orange);
            color: white;
        }
        
        .calc-total.teracare strong {
            color: white;
        }
        
        .teracare-benefits {
            margin-top: 12px;
            font-size: 14px;
            opacity: 0.9;
        }
        
        .calc-result {
            margin-bottom: 32px;
        }
        
        .savings {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }
        
        .savings-amount {
            font-size: 32px;
            font-weight: 800;
            color: #2e7d32;
            margin-bottom: 8px;
        }
        
        .savings-per-session {
            font-size: 16px;
            color: var(--dark);
        }
        
        /* Quiz Styles */
        .quiz-step {
            display: none;
        }
        
        .quiz-step.active {
            display: block;
        }
        
        .quiz-content h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
            margin: 32px 0 24px;
        }
        
        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .quiz-option {
            padding: 24px;
            background: var(--cream);
            border: 2px solid transparent;
            border-radius: 12px;
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
            font-family: inherit;
            font-size: 16px;
        }
        
        .quiz-option:hover {
            border-color: var(--orange);
            background: white;
            transform: translateX(8px);
        }
        
        .quiz-option strong {
            display: block;
            color: var(--navy);
            font-size: 18px;
            margin-bottom: 4px;
        }
        
        .quiz-option span {
            display: block;
            color: var(--gray-600);
            font-size: 14px;
        }
        
        #quizResult {
            background: var(--cream);
            border-radius: 16px;
            padding: 32px;
            text-align: left;
            margin-bottom: 32px;
        }
        
        #quizResult h4 {
            color: var(--orange);
            font-size: 20px;
            margin-bottom: 16px;
        }
        
        #quizResult p {
            color: var(--dark);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid,
            .doctor-grid,
            .closer-grid,
            .footer-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .form-card {
                position: relative;
                top: 0;
            }
            
            .pain-grid,
            .testimonial-grid,
            .faq-grid,
            .shock-grid,
            .protocol-grid {
                grid-template-columns: 1fr;
            }
            
            .future-grid,
            .loss-grid {
                grid-template-columns: 1fr;
            }
            
            .micro-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .comparison-table {
                font-size: 14px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 16px 12px;
            }
            
            .social-proof-badges {
                grid-template-columns: 1fr;
            }
            
            .calc-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .calc-row label {
                grid-column: 1 / -1;
            }
        }
        
        @media (max-width: 640px) {
            .container {
                padding: 0 20px;
            }
            
            nav {
                flex-direction: column;
                gap: 12px;
                padding: 12px 20px;
            }
            
            .nav-right {
                width: 100%;
                justify-content: space-between;
                gap: 12px;
            }
            
            .live-badge {
                font-size: 11px;
                padding: 4px 10px;
            }
            
            .nav-phone {
                font-size: 13px;
            }
            
            .nav-cta {
                padding: 10px 16px;
                font-size: 13px;
            }
            
            .hero {
                min-height: auto;
                padding: 100px 0 60px;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .pattern-interrupt {
                margin-top: 24px;
                font-size: 12px;
                padding: 6px 16px;
            }
            
            .hero-social-proof {
                gap: 8px;
                font-size: 12px;
            }
            
            .hero-content h1 {
                font-size: 36px;
                margin-bottom: 16px;
            }
            
            .hero-subhead {
                font-size: 18px;
                margin-bottom: 12px;
            }
            
            .hero-content p {
                font-size: 15px;
                margin-bottom: 24px;
            }
            
            .btn-primary {
                padding: 18px 36px;
                font-size: 16px;
            }
            
            .form-card {
                margin-bottom: 24px;
                padding: 32px 24px;
            }
            
            .form-card h3 {
                font-size: 20px;
            }
            
            .form-card p {
                font-size: 14px;
                margin-bottom: 24px;
            }
            
            .form-group {
                margin-bottom: 16px;
            }
            
            .form-trust {
                font-size: 12px;
                padding: 16px;
            }
            
            .social-proof-badges {
                display: none;
            }
            
            .micro-grid {
                grid-template-columns: 1fr;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .testimonial-single {
                padding: 32px 24px;
            }
            
            .exit-content {
                padding: 32px 24px;
            }
            
            .exit-content h3 {
                font-size: 24px;
            }
        }