/* ============================================
   Funded Trader Framework - Premium Design System
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Color Palette - Black Background with Green Primary */
    --color-primary: #13b500; /* Main green color */
    --color-primary-dark: #0d8a00; /* Darker green for hover states */
    --color-secondary: #1a1a1a; /* Dark gray for secondary elements */
    --color-accent: #13b500; /* Green accent */
    --color-accent-alt: #6b7280; /* Steel gray */
    --color-text: #ffffff; /* White text for black background */
    --color-text-light: #b0b0b0; /* Light gray for secondary text */
    --color-bg-light: #1a1a1a; /* Dark gray for light sections */
    --color-bg-dark: #000000; /* Pure black */
    --color-white: #ffffff;
    --color-border: #333333; /* Dark border for black background */
    
    /* Typography */
    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* ===== Navigation ===== */
.navbar {
    background-color: transparent !important;
    padding: 1rem 0;
    box-shadow: none;
    transition: var(--transition-base);
    backdrop-filter: blur(0px);
}

/* Navbar with background on scroll */
.navbar-scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: var(--transition-base);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-logo {
        height: 42px;
        max-width: 195px;
    }
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link:hover {
    color: var(--color-accent) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* When navbar has background, reduce text shadow */
.navbar-scrolled .nav-link {
    text-shadow: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 80px;
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    align-items: center;
    /* 3D depth effect - background moves slower */
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Background Image Layer */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/background_black.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Parallax effect - moves slower */
    transform: translateZ(0);
    will-change: transform;
    /* Smooth fade-in on load */
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    /* Performance optimization */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Dark Radial Gradient Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

/* Green Ambient Glow Effect */
.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(19, 181, 0, 0.12), transparent 60%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

/* Hero Content - Moves faster than background (depth illusion) */
.hero-content {
    position: relative;
    z-index: 3;
    transform: translateZ(20px);
}

.hero-title {
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.trust-line {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.trust-line small {
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
}

/* Special Offer Styles */
.special-offer-banner {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(19, 181, 0, 0.15) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.offer-badge {
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.offer-percent {
    color: #ff6b6b;
    display: block;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.offer-text {
    color: var(--color-text);
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.offer-subtitle {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.offer-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

.countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    padding: 1rem;
    background: rgba(19, 181, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--color-primary);
}

.countdown-timer-small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    padding: 0.75rem;
    background: rgba(19, 181, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--color-primary);
}

.special-offer-box {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(19, 181, 0, 0.1) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.offer-content {
    position: relative;
}

.offer-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.offer-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-percent-large {
    color: #ff6b6b;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.offer-deadline {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.offer-description strong {
    color: var(--color-primary);
    font-weight: 700;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
}

/* Hero CTA Button with Green Glow */
.btn-hero-cta {
    background-color: rgba(19, 181, 0, 0.15);
    border: 2px solid rgba(19, 181, 0, 0.6);
    color: var(--color-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(19, 181, 0, 0.3);
    transition: all var(--transition-base);
}

.btn-hero-cta:hover {
    background-color: rgba(19, 181, 0, 0.25);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(19, 181, 0, 0.5);
    transform: translateY(-2px);
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Minimum height utility */
.min-vh-90 {
    min-height: 90vh;
}

/* Trust Indicators */
.trust-indicators {
    margin: 3rem 0;
}

.trust-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.trust-item i {
    color: var(--color-accent);
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Wrapper */
.cta-wrapper {
    margin-top: 2rem;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 1rem;
}

/* ===== Buttons ===== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: var(--transition-base);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000000;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(19, 181, 0, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== Section Styles ===== */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Problem Cards */
.problem-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.problem-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.problem-icon {
    color: var(--color-accent);
}

/* Framework Steps */
.framework-steps {
    margin-top: 3rem;
}

.step-item {
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-base);
    color: var(--color-text);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(19, 181, 0, 0.4);
}

.step-number-small {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #000000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(19, 181, 0, 0.4);
}

/* Comparison Cards */
.comparison-card,
.audience-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    background: var(--color-bg-light);
    color: var(--color-text);
}

.comparison-card:hover,
.audience-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.comparison-card .card-body,
.audience-card .card-body {
    padding: 2rem;
}

.comparison-card ul li,
.audience-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.comparison-card ul li:last-child,
.audience-card ul li:last-child {
    border-bottom: none;
}

/* Product Cards */
.product-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    text-align: center;
    color: var(--color-text);
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.product-card ul {
    text-align: left;
    margin-top: 1.5rem;
}

.product-card ul li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

/* Private Invitation Section */
.invitation-badge {
    margin-bottom: 1.5rem;
}

.invitation-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

.limited-time-badge {
    animation: pulse 2s infinite;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.limited-time-badge .badge {
    font-size: 0.85rem;
    font-weight: 600;
    animation: glow 2s ease-in-out infinite;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    box-sizing: border-box;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(220, 53, 69, 0.5); }
    50% { box-shadow: 0 0 15px rgba(220, 53, 69, 0.8); }
}

.viewing-counter {
    font-size: 0.95rem;
}

.viewing-counter .text-primary {
    color: var(--color-primary) !important;
}

/* Pre-filled Notice */
#prefilled-notice {
    background-color: rgba(19, 181, 0, 0.15);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 1.25rem;
    animation: slideInDown 0.5s ease-out;
}

#prefilled-notice i {
    color: var(--color-primary);
}

.form-help-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Highlight form when pre-filled */
.invitation-form-card.prefilled {
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(19, 181, 0, 0.3);
    animation: formPulse 2s ease-in-out infinite;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes formPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(19, 181, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(19, 181, 0, 0.5);
    }
}

.invitation-form-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    max-width: 700px;
    margin: 0 auto;
}

.invitation-form-card .form-label {
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.invitation-form-card .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.invitation-form-card .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(19, 181, 0, 0.1);
    outline: none;
}

.invitation-form-card .form-control::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.invitation-form-card .form-text {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

#form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

#form-message.success {
    background-color: rgba(19, 181, 0, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

#form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Invitation Page */
.invitation-page-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    margin-top: 2rem;
}

#confirm-message.success {
    background-color: rgba(19, 181, 0, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

#confirm-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

/* Sample Plan */
.sample-plan-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.plan-section {
    padding: 1.5rem;
    background: rgba(19, 181, 0, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    color: var(--color-text);
}

.plan-section h3 {
    color: var(--color-text);
}

/* CTA Section */
#cta-section {
    background: linear-gradient(135deg, rgba(19, 181, 0, 0.15) 0%, rgba(13, 138, 0, 0.25) 100%);
    color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

#cta-section .section-title {
    color: var(--color-white);
}

#cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.extended-disclaimer {
    text-align: left;
    margin-top: 3rem;
}

.extended-disclaimer h3 {
    color: var(--color-white);
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-logo-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.footer h5 {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--color-primary);
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ===== Sticky CTA Button (Mobile) ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background: var(--color-bg-dark);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    display: none;
    border-top: 1px solid var(--color-border);
}

.sticky-cta .btn {
    border-radius: 8px;
}

/* ===== Utility Classes ===== */
.text-accent {
    color: var(--color-accent) !important;
}

.bg-light {
    background-color: var(--color-bg-light) !important;
}

.bg-dark {
    background-color: var(--color-bg-dark) !important;
}

/* Global text-muted for black background */
.text-muted {
    color: var(--color-text-light) !important;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    /* Mobile Hero Adjustments */
    .hero-section {
        padding-top: 100px;
        min-height: 85vh;
    }
    
    /* Increase overlay darkness on mobile for better text contrast */
    .hero-overlay {
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95));
    }
    
    /* Reduce glow on mobile */
    .hero-glow {
        opacity: 0.5;
    }
    
    /* Reduce parallax movement on mobile */
    .hero-background {
        transform: translateZ(0) !important;
    }
    
    .hero-title {
        font-size: 2rem;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }
    
    .trust-line {
        font-size: 0.9rem;
    }
    
    .sticky-cta {
        display: block;
    }
    
    .trust-item {
        margin-bottom: 1rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .comparison-card .card-body,
    .audience-card .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Fix limited time badge on mobile */
    .limited-time-badge {
        padding: 0 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .limited-time-badge .badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.75rem;
        display: inline-block;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.3;
    }
}

/* ===== Accessibility ===== */
:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===== Smooth Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .sticky-cta,
    .btn,
    footer {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

