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

:root {
    --primary-blue: #0F4C75;
    --blue-dark: #0A3B5A;
    --blue-light: #3282B8;
    --orange: #D63031;
    --orange-dark: #C0392B;
    --orange-light: #E74C3C;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Navigation */
.nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--gray-100);
    color: var(--blue-dark);
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.btn-urgent {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    animation: pulse 2s infinite;
}

.btn-urgent:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
}

.btn-final {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.btn-clicked {
    transform: scale(0.95);
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D32F2F 0%, #4A148C 100%) !important;
    color: var(--white);
    padding: 5rem 0 0.85rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 1rem;
}

.badge-separator {
    opacity: 0.6;
    font-weight: 600;
}

.guarantee-text {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
}

.pulse-badge {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(255, 255, 255, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #FFD700;
    font-weight: 800;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
    text-align: center;
}

/* Ebook Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2rem;
}

.ebook-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.ebook-cover {
    max-width: 500px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

.ebook-showcase:hover .ebook-cover {
    transform: scale(1.05);
}

.ebook-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

/* Intro Video Section */
.intro-video {
    padding: 6rem 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile video controls fix */
@media (max-width: 768px) {
    .intro-video-player {
        object-fit: contain;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--white);
    transform: scale(1.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    margin-left: 4px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.results .section-title,
.results .section-description {
    color: var(--white);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-light);
    margin-bottom: 0.5rem;
}

.result-timeframe {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.result-location {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.result-quote {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.testimonial-video-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-video {
    aspect-ratio: 9/16;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    pointer-events: none;
}

.overlay-result {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.testimonial-result {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.placeholder-content {
    text-align: center;
}

.play-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.text-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--primary-blue);
}

.author-title {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Urgency Section */
.urgency {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.urgency-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    backdrop-filter: blur(10px);
}

.urgency-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.urgency-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing {
    margin-bottom: 2rem;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--gray-500);
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
}

.savings-badge {
    background: #dc2626;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.guarantee-icon {
    color: var(--success);
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.benefit {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.badge-text {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Risk Reversal Section */
.risk-reversal {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.risk-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.risk-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.risk-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
}

.risk-guarantee {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    text-align: left;
}

.guarantee-visual {
    display: flex;
    justify-content: center;
}

.guarantee-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.guarantee-days {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.guarantee-text h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.risk-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.risk-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.risk-vs {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

/* Objections Section */
.objections {
    padding: 6rem 0;
    background: var(--white);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.objection-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--orange);
}

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

.objection-concern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.concern-icon {
    font-size: 2rem;
    background: var(--orange);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objection-concern h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.125rem;
}

.objection-answer p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Scarcity Elements */
.scarcity-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc2626;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.scarcity-icon {
    font-size: 1.25rem;
}

/* Payment and Security */
.payment-security {
    margin: 2rem 0;
    text-align: center;
}

.payment-methods {
    margin-bottom: 1rem;
}

.payment-label {
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.9;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-logo {
    font-size: 0.875rem;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    font-size: 0.75rem;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

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

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}

.sticky-title {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Exit Intent Popup */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-intent-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.exit-intent-overlay.show .exit-popup {
    transform: scale(1);
}

.exit-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exit-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.exit-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.exit-subtitle {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.exit-offer {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.exit-urgency {
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.exit-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.exit-original {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 1.125rem;
}

.exit-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
}

.exit-savings {
    background: linear-gradient(45deg, var(--orange), var(--orange-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.exit-cta {
    margin-bottom: 1rem;
}

.exit-guarantee {
    margin-top: 1rem;
}

.exit-badge {
    font-size: 0.875rem;
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Cookie Consent Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-blue);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: var(--blue-dark);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
    background: var(--gray-50);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cookie-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.cookie-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--gray-900);
    font-size: 1rem;
}

.cookie-category p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--success);
}

input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-cookie-save {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-save:hover {
    background: var(--gray-50);
}

.btn-cookie-accept-all {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept-all:hover {
    background: var(--blue-dark);
}

/* Mobile Cookie Bar */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-settings {
        width: 100%;
    }
    
    .cookie-modal-footer {
        flex-direction: column-reverse;
    }
    
    .btn-cookie-save,
    .btn-cookie-accept-all {
        width: 100%;
    }
    
    .mobile-sticky-cta.show {
        bottom: 0;
        transition: bottom 0.3s ease;
    }
    
    .cookie-bar.show ~ .mobile-sticky-cta.show {
        bottom: 120px;
    }
}

/* Footer */
/* Modern Professional Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

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

/* Company Info Section */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-icon {
    margin-right: 0.75rem;
    font-size: 2rem;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-cta {
    background: linear-gradient(135deg, var(--orange) 0%, #E74C3C 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: fit-content;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.1rem;
    color: var(--orange);
    width: 20px;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.5;
}

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

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.disclaimer {
    font-size: 0.625rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Logo 25% smaller on mobile */
    .nav-logo .logo-icon {
        font-size: 1.125rem; /* 75% of 1.5rem */
    }
    
    .nav-logo .logo-text {
        font-size: 0.9rem; /* 75% of default */
    }
    
    /* Nav button 40% smaller on mobile */
    .nav-cta {
        font-size: 0.72rem !important; /* 60% of 1.2rem */
        padding: 0.42rem 0.9rem !important; /* 60% of 0.7rem 1.5rem */
    }
    
    /* Hero badges 40% smaller on mobile */
    .hero-badges {
        font-size: 0.51rem !important; /* 60% of 0.85rem */
    }
    
    .hero {
        padding: 4rem 0 2.55rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .ebook-cover {
        max-width: 360px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-video-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .risk-guarantee {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .risk-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .risk-vs {
        transform: none;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin: 0.5rem 0;
        display: inline-block;
        border-radius: 2rem;
    }

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

    .mobile-sticky-cta {
        display: block;
    }

    .exit-popup {
        padding: 2rem;
        margin: 1rem;
    }
    
    .exit-title {
        font-size: 1.5rem;
    }
    
    .exit-subtitle {
        font-size: 1rem;
    }
    
    .exit-current {
        font-size: 1.5rem;
    }

    .guarantee-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-company {
        grid-column: span 2;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .text-testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .ebook-cover {
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-large {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .payment-logos {
        gap: 0.5rem;
    }
    
    .payment-logo {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .security-badges {
        gap: 0.5rem;
    }
    
    .security-badge {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
    }
    
    .objection-card {
        padding: 1.5rem;
    }
    
    .concern-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .urgency-card {
        padding: 2rem;
    }
    
    .urgency-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Footer Styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-company {
        grid-column: span 1;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Education Section Styles */
.education-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.education-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    display: block;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Education Styles */
@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .education-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-top: 0.125rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

/* Footer Contact Link Styles */
.contact-link {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Hero Proof Snippet Styles */
.proof-snippet {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    position: relative;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.15);
}

.proof-snippet::before {
    content: "💬";
    position: absolute;
    top: -8px;
    left: 15px;
    background: #f59e0b;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.proof-quote {
    font-size: 0.9rem;
    font-weight: 500;
    color: #92400e;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.proof-attribution {
    font-size: 0.75rem;
    color: #b45309;
    font-weight: 500;
    text-align: right;
}

/* Mobile Proof Snippet */
@media (max-width: 768px) {
    .proof-snippet {
        padding: 0.5rem 0.75rem;
        margin: 0.75rem 0;
    }
    
    .proof-quote {
        font-size: 0.85rem;
    }
    
    .proof-attribution {
        font-size: 0.7rem;
    }
    
    .proof-snippet::before {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
        top: -6px;
        left: 12px;
    }
}

/* Hero CTA Enhancements */
.urgency-alert {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #ef4444;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #dc2626;
}

.urgency-icon {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

.social-proof-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
    font-size: 0.85rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text {
    color: #ffffff;
    font-weight: 400;
}

.instant-download {
    color: #f8fafc;
    font-weight: 600;
    margin-left: auto;
}

/* Mobile CTA Enhancements */
@media (max-width: 768px) {
    .urgency-alert {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .social-proof-rating {
        font-size: 0.8rem;
        margin: 0.4rem 0;
    }
    
    .stars {
        font-size: 0.85rem;
    }
}

/* Simple CTA styling - uses existing button classes */