/* 🔥 DEAL SOLDIER - Premium Bitcoin-Inspired Brand */

:root {
    /* Primary Brand Colors */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8941F;
    --bronze-primary: #CD7F32;
    --bronze-light: #E6B366;
    
    /* Premium Neutrals */
    --black-primary: #0D0D0D;
    --black-soft: #1a1a1a;
    --gray-dark: #2D2D2D;
    --gray-medium: #666666;
    --gray-light: #F8F9FA;
    
    /* Fire Accents */
    --fire-orange: #FF6B35;
    --fire-red: #E63946;
    --fire-yellow: #FFD60A;
    
    /* Trust Colors */
    --white-pure: #FFFFFF;
    --success-green: #28A745;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--bronze-primary) 100%);
    --gradient-fire: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-red) 100%);
    --gradient-premium: linear-gradient(135deg, var(--black-primary) 0%, var(--gray-dark) 100%);
    
    /* Shadows & Effects */
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-fire: 0 4px 20px rgba(255, 107, 53, 0.3);
    --shadow-premium: 0 8px 32px rgba(13, 13, 13, 0.2);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black-soft);
    background-color: var(--white-pure);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header */
.header {
    background: var(--gradient-premium);
    box-shadow: var(--shadow-premium);
    border-bottom: 2px solid var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.logo h2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    margin: 0;
}

.header-cta .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
}

/* Premium Button Styles */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--black-primary);
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-dark);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Fire CTA Buttons (for urgency) */
/* Retain fire style for urgency variants if needed, but default to gold primary for trust */

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); }
}

/* Premium Hero Section */
.hero {
    background: var(--gradient-premium);
    color: white;
    padding: 96px 0 64px;
    text-align: center;
    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"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(212,175,55,0.08)"/><circle cx="60" cy="30" r="0.8" fill="rgba(212,175,55,0.12)"/><circle cx="40" cy="70" r="0.6" fill="rgba(255,107,53,0.06)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.hero-subtitle {
    font-size: clamp(14px, 2.3vw, 20px);
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.trial-offer {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 24px;
    margin: 40px auto;
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-badge {
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.big-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.35));
    position: relative;
}

/* Removed decorative emoji effects for a more professional tone */

.small-text {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-buttons {
    margin: 40px 0;
}

.guarantee {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
    color: var(--gray-medium);
}

.trust-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-light);
    color: var(--white-pure);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.proof-item {
    text-align: center;
}

.proof-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.proof-item .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Tool Explanation Section */
.tool-explanation {
    background: var(--gray-light);
    padding: 60px 0;
    text-align: center;
}

.tool-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-content h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-primary);
}

.tool-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.tool-content p strong {
    color: var(--gold-primary);
    font-weight: 700;
}

.tool-cta {
    margin-top: 30px;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* TikTok Videos Section */
.tiktok-videos {
    padding: 80px 0;
    background: var(--white-pure);
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tiktok-video {
    background: var(--white-pure);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
}

.tiktok-video:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    background: var(--gradient-premium);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 14px;
    opacity: 0.9;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black-primary);
}

.video-info p {
    font-size: 14px;
    color: var(--gray-medium);
    line-height: 1.5;
}

.tiktok-cta {
    text-align: center;
    margin-top: 40px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials .section-header {
    margin-bottom: 60px;
}

.rating {
    margin-top: 16px;
}

.stars {
    font-size: 1.5rem;
    margin-right: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #ff6b35;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.author-time {
    font-size: 12px;
    color: #666;
}

.rating-stars {
    font-size: 14px;
    color: var(--gold-primary);
}

.testimonial-card p {
    color: #333;
    font-style: italic;
    line-height: 1.6;
}

/* Pricing CTA Section */
.pricing-cta {
    padding: 100px 0;
    background: var(--gradient-premium);
    color: white;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-badge {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.pricing-offer {
    margin: 30px 0;
}

.trial-highlight {
    background: rgba(255, 235, 59, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.trial-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trial-subtext {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 4px;
}

.pricing-details {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-features {
    margin: 40px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-check {
    padding: 8px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.urgency-text {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #ffeb3b;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-urgency {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
}

.final-guarantee {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.footer-logo h3 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    opacity: 0.5;
}

/* Footer Affiliate Disclosure */
.affiliate-disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
    text-align: center;
}

/* Enhanced Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .trial-offer {
        margin: 30px auto;
        padding: 20px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .social-proof .proof-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.1);
        padding: 12px 20px;
        border-radius: 12px;
        min-width: 200px;
        justify-content: center;
    }
    
    .proof-item .number,
    .proof-item .label {
        display: inline;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Enhanced button touch targets for mobile */
    .btn-primary {
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-primary.large {
        min-height: 56px;
        font-size: 17px;
        padding: 18px 30px;
    }
}

@media (max-width: 768px) {
    .logo h2 {
        font-size: 20px;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo-image {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .hero {
        padding: 64px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-primary.large {
        padding: 18px 20px;
        font-size: 16px;
        width: 100%;
        max-width: 350px;
    }
    
    .trial-text {
        font-size: 1.8rem;
    }
    
    .big-text {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .header .container {
        padding: 12px 15px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .header-cta .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .trial-offer {
        margin: 25px auto;
        padding: 18px;
    }
    
    .pricing-card {
        margin: 0 5px;
        padding: 25px 15px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .final-cta {
        padding: 60px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .btn-primary.pulse { animation: none; }
    .feature-card:hover { transform: none; }
    .slide-up, .slide-in { animation: none; }
}

/* Mobile Touch Optimizations */
.btn-primary:active {
    transform: scale(0.98);
}

.feature-card:active,
.testimonial-card:active {
    transform: scale(0.99);
}

/* Improve mobile scrolling */
body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Mobile-specific improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .btn-primary:active {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
    }
}

/* Ensure readability on small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .btn-primary.large {
        font-size: 15px;
        padding: 16px 18px;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Mobile-Specific Conversion Elements */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0D0D0D 0%, #2D2D2D 100%);
    color: white;
    padding: 12px 15px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.mobile-sticky-cta.slide-up {
    transform: translateY(0);
}

.mobile-sticky-cta.hidden {
    transform: translateY(100%);
}

.mobile-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-cta-main {
    font-size: 16px;
    font-weight: 800;
    color: #ffeb3b;
}

.mobile-cta-sub {
    font-size: 12px;
    opacity: 0.9;
}

.mobile-cta-btn {
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid var(--gold-dark);
}

/* Floating Member Counter */
.member-counter {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
    transition: all 0.5s ease-out;
    border: 2px solid #ff6b35;
}

.member-counter.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.counter-content {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
}

.counter-label {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Social Proof Popup */
.social-proof-popup {
    position: fixed;
    bottom: 80px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--black-primary);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    z-index: 998;
    max-width: 280px;
    transform: translateX(-100%);
    transition: transform 0.5s ease-out;
}

.social-proof-popup.slide-in {
    transform: translateX(0);
}

.social-proof-popup.hidden {
    transform: translateX(-100%);
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.popup-name {
    font-weight: 700;
    font-size: 14px;
}

.popup-action {
    font-size: 12px;
    opacity: 0.9;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-sticky-cta { display: block; }
    /* Hide desktop-only elements on mobile */
    .member-counter {
        display: none;
    }
    
    /* Enhanced button touch targets */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 16px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-primary.large {
        min-height: 56px;
        font-size: 17px;
        width: 100%;
        max-width: 350px;
    }
    
    /* Improved form elements for mobile */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Better spacing for mobile */
    .hero {
        padding: 72px 0 48px;
    }
    
    .features,
    .testimonials,
    .pricing-cta,
    .faq,
    .final-cta {
        padding: 60px 0;
    }
    
    /* Mobile-optimized social proof */
    .social-proof {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .social-proof .proof-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 16px 24px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .mobile-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .mobile-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-proof-popup {
        bottom: 70px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

/* Scroll Optimization */
.scrolling {
    scroll-behavior: auto; /* Disable smooth scroll during fast scrolling */
}

/* Touch Feedback */
@media (hover: none) and (pointer: coarse) {
    .btn-primary:active,
    .btn-secondary:active,
    .mobile-cta-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    .feature-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Viewport Height Fix for Mobile */
:root {
    --vh: 1vh;
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(var(--vh, 1vh) * 100);
        padding: calc(var(--vh, 1vh) * 15) 0 calc(var(--vh, 1vh) * 10);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .btn-primary {
        background: #ff6b35;
        border: 2px solid #fff;
    }
    
    .mobile-sticky-cta {
        background: #000;
        border-top: 2px solid #fff;
    }
}