/* Premium Landing Page Styles - $10M Launch Ready */

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

:root {
    --primary: #0F0F1E;
    --secondary: #1a1a2e;
    --accent: #FF3366;
    --accent-hover: #E62958;
    --gold: #FFD700;
    --success: #00D46A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #6C757D;
    --gray-dark: #343A40;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Notification Bar */
.notification-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border-bottom: 2px solid var(--accent);
}

.notification-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 106, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 212, 106, 0); }
}

.separator {
    color: var(--gray-medium);
}

/* Hero Section */
.hero-premium {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0F0F1E 0%, #1a1a2e 100%);
    position: relative;
    margin-top: 44px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Live Counter */
.live-counter {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    color: var(--white);
}

.counter-item i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

.counter-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Left */
.hero-left {
    position: relative;
    z-index: 10;
}

.urgency-banner-premium {
    background: rgba(255, 51, 102, 0.1);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 51, 102, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 51, 102, 0.5); }
}

.urgency-icon {
    font-size: 32px;
}

.urgency-text {
    flex: 1;
    color: var(--white);
}

.urgency-text strong {
    display: block;
    font-size: 14px;
    color: var(--gold);
}

.urgency-timer {
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
}

.hero-headline-premium {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Social Proof Strip */
.social-proof-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
}

.proof-avatars {
    display: flex;
    position: relative;
}

.proof-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-left: -10px;
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.more-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    margin-left: -10px;
    border: 3px solid var(--primary);
}

.proof-text {
    color: var(--white);
}

.proof-text .stars {
    color: var(--gold);
    margin-bottom: 4px;
}

.proof-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* Instant Checkout Box */
.instant-checkout-box {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.instant-checkout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-premium);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-header h3 {
    font-size: 20px;
    color: var(--primary);
}

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    font-size: 18px;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.current-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
}

.savings-badge {
    background: var(--success);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Checkout Form */
.checkout-form .form-row {
    margin-bottom: 15px;
}

.checkout-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.card-element-premium {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
}

.card-element-premium:hover {
    border-color: var(--accent);
}

.error-message {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
}

.btn-checkout-premium {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-checkout-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-checkout-premium:hover::before {
    width: 600px;
    height: 600px;
}

.btn-checkout-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.btn-text {
    display: block;
}

.btn-secure {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 400;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

.spinner.hidden {
    display: none;
}

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

/* Payment Badges */
.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.payment-badges i {
    font-size: 28px;
    color: var(--gray-medium);
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray-light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.guarantee-box i {
    font-size: 32px;
    color: var(--success);
}

.guarantee-box strong {
    display: block;
    color: var(--primary);
}

.guarantee-box p {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.trust-item i {
    color: var(--gold);
}

/* Hero Right */
.hero-right {
    position: relative;
}

.book-showcase {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.book-cover-3d {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(255, 215, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.book-cover-3d:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 40px;
    left: 10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    color: var(--accent);
}

/* Quick Benefits */
.quick-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.quick-benefits h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.benefit-list-premium {
    list-style: none;
}

.benefit-list-premium li {
    color: var(--white);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list-premium i {
    color: var(--success);
    font-size: 14px;
}

/* Author Badge */
.author-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.author-badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.author-badge strong {
    color: var(--white);
    display: block;
}

.author-badge p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 2px 0;
}

.credential {
    color: var(--gold) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: var(--white);
    font-size: 24px;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Transformation Promise */
.transformation-promise {
    padding: 80px 0;
    background: var(--gray-light);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.promise-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.promise-card.success {
    background: linear-gradient(135deg, #00D46A 0%, #00B757 100%);
    color: var(--white);
}

.promise-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.promise-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.promise-card ul {
    list-style: none;
    text-align: left;
}

.promise-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.promise-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.promise-card.success li::before {
    content: '✓';
    color: var(--white);
}

.promise-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.promise-arrow i {
    font-size: 48px;
    color: var(--accent);
}

.promise-arrow span {
    font-weight: 700;
    color: var(--accent);
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 50px;
}

.testimonial-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.video-placeholder {
    position: relative;
    height: 200px;
    background: var(--gray-light);
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    background: var(--accent);
}

.video-card h4 {
    padding: 15px 20px 5px;
    font-size: 16px;
}

.video-card .stars {
    padding: 0 20px;
    color: var(--gold);
}

.video-card p {
    padding: 10px 20px;
    color: var(--gray-medium);
    font-style: italic;
}

.result-badge {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 6px 12px;
    background: var(--success);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Media Logos */
.media-logos {
    text-align: center;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 12px;
}

.media-logos p {
    margin-bottom: 20px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-medium);
    opacity: 0.6;
}

/* Scientific Backing */
.scientific-backing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.scientific-backing h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.research-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.research-item i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.research-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.research-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Chapter Preview */
.chapter-preview {
    padding: 80px 0;
    background: var(--gray-light);
}

.chapter-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.chapter-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.chapter-card.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
}

.chapter-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}

.chapter-card.highlight .chapter-number {
    background: var(--white);
    color: var(--accent);
}

.chapter-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.chapter-card p {
    color: var(--gray-medium);
    margin-bottom: 15px;
    font-style: italic;
}

.chapter-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.chapter-card ul {
    list-style: none;
}

.chapter-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.chapter-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.chapter-card.highlight li::before {
    color: var(--white);
}

.most-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Bonus Content */
.bonus-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.bonus-content h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-item {
    text-align: center;
}

.bonus-item i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
}

.bonus-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: var(--white);
}

.comparison h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead {
    background: var(--primary);
    color: var(--white);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--accent);
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 20px;
}

.comparison-table td.highlight {
    background: rgba(255, 51, 102, 0.05);
    font-weight: 600;
    color: var(--accent);
}

/* FAQ Section */
.faq-premium {
    padding: 80px 0;
    background: var(--gray-light);
}

.faq-premium h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--gray-medium);
}

/* Final CTA */
.final-cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.cta-box-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-premium h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.final-urgency {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.urgency-item i {
    font-size: 24px;
    color: var(--gold);
}

.final-price-box {
    margin-bottom: 40px;
}

.price-comparison-final {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.therapy-cost, .book-cost {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.therapy-cost .label, .book-cost .label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.therapy-cost .amount {
    font-size: 36px;
    font-weight: 900;
    text-decoration: line-through;
    opacity: 0.6;
}

.book-cost .amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
}

.btn-final-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--primary);
    padding: 25px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.btn-main-text {
    display: block;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.btn-sub-text {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.final-testimonial {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin: 40px auto 0;
    max-width: 600px;
    text-align: left;
}

.final-testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

/* Floating Buy Button */
.floating-buy-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-buy-button.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-buy-button button {
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.floating-buy-button button:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

/* Exit Popup */
.exit-popup-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.exit-popup-premium.show {
    display: flex;
}

.exit-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.exit-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--gray-medium);
}

.exit-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

.exit-offer {
    padding: 30px;
    background: var(--gray-light);
    border-radius: 12px;
}

.exit-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.exit-price .was {
    font-size: 36px;
    text-decoration: line-through;
    color: var(--gray-medium);
}

.exit-price .now {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
}

.extra-save {
    background: var(--success);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.btn-exit-offer {
    background: var(--accent);
    color: var(--white);
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-exit-offer:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.exit-decline {
    display: inline-block;
    margin-top: 15px;
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 14px;
}

/* Cart Popup */
.cart-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 20px;
    max-width: 350px;
    display: none;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.cart-popup.show {
    display: block;
}

.cart-content p {
    margin-bottom: 15px;
}

.cart-content button {
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-content button:hover {
    background: var(--accent-hover);
}

/* Footer */
.footer-premium {
    background: var(--primary);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-left p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.copyright {
    font-size: 13px;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-secure p {
    margin-bottom: 5px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chapters-grid,
    .testimonial-videos {
        grid-template-columns: repeat(2, 1fr);
    }

    .research-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .notification-content {
        font-size: 12px;
    }

    .hero-headline-premium {
        font-size: 32px;
    }

    .live-counter {
        gap: 20px;
    }

    .counter-number {
        font-size: 20px;
    }

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

    .promise-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .chapters-grid,
    .testimonial-videos,
    .research-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

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

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }

    .final-urgency {
        flex-direction: column;
        gap: 20px;
    }

    .price-comparison-final {
        flex-direction: column;
        gap: 20px;
    }

    .floating-buy-button {
        bottom: 20px;
        right: 20px;
    }

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

    .footer-links {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 100px 20px;
}

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

.faq-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FF3366, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section .section-header p {
    font-size: 1.25rem;
    color: #6c757d;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF3366;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #FF3366;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section .section-header h2 {
        font-size: 2rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}