/* ========================================
   MOBILE-FIRST CSS - GOLOVE.AI PRE-LANDER
   Optimized for conversions and performance
   ======================================== */

/* Base Styles */
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --success: #10b981;
    --warning: #fbbf24;
    --danger: #ef4444;

    --bg-dark: #0a0a0f;
    --bg-card: #1a1a24;
    --bg-card-hover: #24243a;

    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b85;

    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);

    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    background: var(--gradient-primary);
    overflow: hidden;
    transform: none !important; /* Disable parallax effect */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(240, 147, 251, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Discount Box */
.discount-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.discount-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.discount-code {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discount-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 16px;
}

.copy-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-success {
    display: none;
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied .copy-success {
    display: inline;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.cta-button.huge {
    padding: 24px 48px;
    font-size: 20px;
}

.cta-button svg {
    transition: var(--transition);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Scroll indicator removed - cleaner design */

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 80px 20px;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 32px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-card);
    border: 2px solid transparent;
    transition: var(--transition);
}

.comparison-card.negative {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, transparent 100%);
}

.comparison-card.positive {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
}

.comparison-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.comparison-card.negative .comparison-list li::before {
    content: '✗';
    color: var(--danger);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.comparison-card.positive .comparison-list li::before {
    content: '✓';
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

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

.feature-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.steps {
    max-width: 700px;
    margin: 0 auto 48px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
}

.cta-center {
    text-align: center;
}

.cta-subtext {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 15px;
}

.cta-subtext strong {
    color: var(--warning);
    font-weight: 700;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

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

.testimonial-card {
    padding: 28px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-avatar {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-platform {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-rating {
    color: var(--warning);
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   URGENCY SECTION
   ======================================== */

.urgency {
    background: var(--gradient-accent);
    position: relative;
    overflow: hidden;
}

.urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.urgency-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.urgency-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.urgency-stat {
    text-align: center;
}

.urgency-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.urgency-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   FAQ SECTION
   ======================================== */

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

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--warning);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.discount-reminder {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.discount-reminder-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.discount-reminder-code {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.discount-reminder-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--warning);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--bg-dark);
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-disclaimer {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--warning);
}

.footer-legal {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .discount-code {
        font-size: 40px;
    }

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

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

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

    .section-title {
        font-size: 42px;
    }

    .final-cta-title {
        font-size: 48px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (Simplified)
   ======================================== */

@media (min-width: 1024px) {
    /* Typography - Clean sizing */
    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 42px;
    }

    /* Grid Layouts */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Simplified Background - Hide orbs on desktop */
    .hero-bg-animation {
        display: none;
    }

    /* Cleaner hero background - just gradient */
    .hero::before {
        display: none;
    }

    /* Simplified glassmorphism - less blur */
    .discount-box {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.12);
    }

    .badge {
        backdrop-filter: blur(5px);
    }

    /* Remove glow animations on desktop */
    .urgency-box {
        animation: none;
    }

    /* Cleaner cards - subtle effects only */
    .feature-card,
    .testimonial-card,
    .comparison-card {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Simplified hover effects */
    .feature-card:hover,
    .testimonial-card:hover {
        transform: translateY(-2px);
    }

    .feature-card::before,
    .testimonial-card::before {
        display: none;
    }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .copy-btn,
    .faq-question {
        -webkit-tap-highlight-color: transparent;
    }
}

/* ========================================
   MILLION-DOLLAR PREMIUM ENHANCEMENTS
   ======================================== */

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    padding: 16px 20px;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sticky-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sticky-cta-code {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 800;
    color: var(--warning);
    background: rgba(251, 191, 36, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
}

.sticky-cta-offer {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
}

/* Removed fake notifications - Reddit-friendly optimization */

/* Animated Background Orbs */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f093fb, #f5576c);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #667eea, #764ba2);
    bottom: -250px;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #10b981, #059669);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.gradient-text-alt {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Countdown Timer */
.countdown-timer {
    margin: 32px 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.countdown-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    min-width: 80px;
    text-align: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.countdown-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 4px;
}

.animated-counter {
    transition: all 0.3s ease;
}

.urgency-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* Enhanced Glassmorphism Cards */
.feature-card,
.testimonial-card,
.comparison-card {
    background: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before,
.testimonial-card:hover::before {
    opacity: 1;
}

.feature-card,
.testimonial-card {
    position: relative;
}

/* Micro-interactions */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.copy-btn:active {
    animation: shake 0.3s ease;
}

/* Enhanced CTA Buttons */
.cta-button.primary {
    position: relative;
    overflow: hidden;
}

.cta-button.primary::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;
}

.cta-button.primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button.primary span {
    position: relative;
    z-index: 1;
}

/* Pulse Animation for Urgency */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.8);
    }
}

.urgency-box {
    animation: pulse-glow 3s infinite;
}

/* ========================================
   MOBILE-FIRST OPTIMIZATIONS (Reddit Focus)
   ======================================== */

@media (max-width: 768px) {
    /* Hero Section - Better mobile layout */
    .hero {
        padding: 80px 16px 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 20px 0;
    }

    /* Hero Typography - Larger, more impactful on mobile */
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    /* Bigger touch targets for mobile */
    .cta-button {
        padding: 18px 36px;
        font-size: 17px;
        min-height: 56px; /* Apple recommended touch target */
    }

    .cta-button.large,
    .cta-button.huge {
        padding: 20px 40px;
        font-size: 18px;
    }

    .copy-btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 52px;
    }

    /* Discount Code - Bigger on mobile */
    .discount-code {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .discount-box {
        padding: 28px 20px;
    }

    /* Countdown Timer - Mobile optimized */
    .countdown-number {
        font-size: 32px;
        padding: 10px 14px;
        min-width: 65px;
    }

    .countdown-text {
        font-size: 11px;
    }

    .countdown-separator {
        font-size: 24px;
        margin: 0 2px;
    }

    .countdown-timer {
        padding: 20px 16px;
    }

    /* Sticky CTA - Full width on mobile */
    .sticky-cta {
        padding: 14px 16px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .sticky-cta-code {
        font-size: 16px;
    }

    /* Section Spacing - More breathing room on mobile */
    .section {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Feature Cards - Better mobile spacing */
    .feature-card,
    .testimonial-card,
    .comparison-card {
        padding: 24px 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    /* Stats - Larger on mobile */
    .hero-stats {
        margin-top: 40px;
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Background Orbs - Smaller for mobile performance */
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 180px;
        height: 180px;
        filter: blur(60px); /* Less blur for performance */
    }

    /* Disable parallax on mobile for performance */
    .hero {
        transform: none !important;
    }

    /* FAQ - Better mobile UX */
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    /* Urgency Stats - Stack on mobile */
    .urgency-stats {
        flex-direction: column;
        gap: 24px;
    }

    .urgency-stat {
        width: 100%;
    }

    .urgency-number {
        font-size: 36px;
    }

    /* Badge - Smaller on mobile */
    .badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    /* Steps - Better mobile layout */
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    /* Reduce animations on mobile for performance */
    @media (prefers-reduced-motion: no-preference) {
        .bg-orb {
            animation-duration: 30s; /* Slower, less CPU */
        }

        .pulse {
            animation: none; /* Remove pulse on mobile */
        }
    }
}

/* Small mobile devices (< 375px) */
@media (max-width: 374px) {
    .hero {
        padding: 60px 16px 40px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .discount-code {
        font-size: 28px;
    }

    .discount-box {
        padding: 24px 16px;
    }

    .countdown-number {
        font-size: 28px;
        padding: 8px 12px;
        min-width: 55px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Stats */
.hero-stats {
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-stats .stat {
    transition: var(--transition);
    cursor: pointer;
}

.hero-stats .stat:hover {
    transform: scale(1.1);
}

.hero-stats .stat:hover .stat-number {
    color: var(--warning);
}

/* Premium Loading State */
.loading-shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Enhanced Discount Box with Glassmorphism */
.discount-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Smooth Page Transitions */
body {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
