/* Global Reset & Fonts */
:root {
    --primary: #00ff9d;
    /* Neon Green */
    --primary-glow: rgba(0, 255, 157, 0.4);
    --secondary: #7000ff;
    /* Electric Purple */
    --dark: #050505;
    /* Deep Black */
    --surface: #121212;
    /* Off Black */
    --surface-light: #1e1e1e;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --border: #333;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    background: var(--dark);
    color: var(--text);
    margin: 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    /* top: 42px; */
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding: 200px 0 100px;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.hero-sub strong {
    color: var(--primary);
}

.hero-guarantee {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 35px;
}

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

.cta-sub {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 600;
}

.btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.hero-content {
    width: 100%;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-val {
    display: block;
    font-size: 2.5rem;
    font-family: 'Teko', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Crypto Banner */
.crypto-banner {
    padding: 40px 0;
}

.crypto-card {
    background: linear-gradient(90deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #333;
}

.crypto-icon {
    font-size: 3rem;
    margin-right: 20px;
}

.crypto-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.crypto-text p {
    margin: 0;
    color: var(--text-muted);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 1px solid var(--primary);
    background: var(--surface-light);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Reviews */
.review-card {
    background: var(--surface);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

/* Mobile Bottom Bar - Hidden on desktop */
.mobile-bottom-bar {
    display: none;
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 20px;
    border-top: 1px solid #333;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* NEW STYLES FOR HIGH CONVERSION */

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--danger) 0%, #ff3366 100%);
    color: white;
    text-align: center;
    padding: 12px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar p {
    margin: 0;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}

/* Hero Enhancements */
.hero-badge {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid #ffd700;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.trust-badges {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
}

.trust-img {
    height: 25px;
    filter: grayscale(1);
    transition: 0.3s;
}

.trust-img:hover {
    filter: grayscale(0);
}

.trust-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem/Solution */
.problem-solution {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.highlight-red {
    color: var(--danger);
}

.pain-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-vs-card {
    background: #151515;
    border: 1px solid #333;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.vs-divider {
    background: var(--dark);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 50%;
    font-weight: 900;
    border: 1px solid #333;
}

.big-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 10px 0;
    font-family: 'Teko';
    color: white;
}

.big-price span {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

.highlight-box {
    color: var(--primary);
}

.highlight-box .big-price {
    color: var(--primary);
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: #080808;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.compare-table th,
.compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #222;
    font-size: 1.1rem;
}

.compare-table th {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-size: 0.9rem;
}

.compare-table .us {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
}

.highlight-cell {
    color: var(--primary);
    font-weight: 700;
    background: rgba(0, 255, 157, 0.03);
}

/* Sports Logos */
.sports-showcase {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.league-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.league-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 15px;
}

.faq-item {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #1a1a1a;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.faq-item.active .toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Money Back */
.money-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #111;
    border: 1px dashed #444;
    padding: 30px;
    margin-top: 60px;
    border-radius: 8px;
    text-align: left;
}

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

.money-back h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: white;
}

.money-back p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 15%; left: 5%; animation-delay: 0s; }
.float-2 { top: 25%; right: 8%; animation-delay: 1.5s; }
.float-3 { bottom: 30%; left: 10%; animation-delay: 3s; }
.float-4 { bottom: 20%; right: 5%; animation-delay: 4.5s; }

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

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, #0a0a0a 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,255,157,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0 auto 20px;
    font-family: 'Teko', sans-serif;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.step-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Device Compatibility */
.devices-section {
    padding: 80px 0;
    background: #080808;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.device-item {
    text-align: center;
    padding: 30px 15px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.device-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.device-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.device-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Sports CTA */
.sports-cta {
    margin-top: 40px;
    text-align: center;
}

.sports-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--dark) 100%);
}

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

.testimonial-card {
    background: var(--surface);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,255,157,0.3);
}

.testimonial-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(0,255,157,0.05) 0%, var(--surface) 100%);
    transform: scale(1.02);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: white;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0,255,157,0.1) 0%, rgba(112,0,255,0.1) 100%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: var(--surface);
    border-radius: 24px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(0,255,157,0.2);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-box > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-guarantee {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-badge {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.payment-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-icons span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-bottom a {
    color: var(--primary);
}

/* Icon Circle Enhancement */
.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,255,157,0.2) 0%, rgba(112,0,255,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0,255,157,0.3);
}

/* Button XL */
.btn-xl {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Section padding */
.section {
    padding: 80px 0;
}

/* Dark BG Enhancement */
.dark-bg {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

/* Center text */
.center {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    /* Minimal navbar - logo only */
    .navbar {
        top: 0;
        padding: 12px 0;
        background: rgba(5, 5, 5, 0.95);
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links,
    .nav-cta,
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-content {
        justify-content: center;
    }
    
    /* Sticky bottom CTA bar */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,0.95) 20%);
        padding: 20px 15px 25px;
        z-index: 1000;
        gap: 10px;
        justify-content: center;
    }
    
    .mobile-bottom-bar .btn {
        flex: 1;
        max-width: 160px;
        padding: 14px 20px;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .mobile-bottom-bar .btn-primary {
        background: var(--primary);
        color: var(--dark);
    }
    
    .mobile-bottom-bar .btn-outline {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.3);
        color: white;
    }
    
    /* HERO MOBILE - MAKE IT CONVERT */
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-bg {
        background: 
            radial-gradient(circle at 50% 30%, rgba(0, 255, 157, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 50% 70%, rgba(112, 0, 255, 0.1) 0%, transparent 50%);
    }
    
    .floating-elements {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 0.95;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }
    
    .hero-sub {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .hero-guarantee {
        font-size: 0.8rem;
        padding: 0 10px;
        margin-bottom: 25px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .hero-actions {
        margin-bottom: 30px;
    }
    
    .btn-xl {
        padding: 16px 30px;
        font-size: 1rem;
        width: 90%;
        max-width: 320px;
    }
    
    .cta-sub {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    /* Stats Mobile - 2x2 Grid */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 25px 15px 0;
        margin-top: 25px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .stat-item {
        padding: 18px 12px;
        background: rgba(0,255,157,0.03);
        border: 1px solid rgba(0,255,157,0.1);
    }
    
    .stat-val {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
        padding: 0 10px;
    }
    
    .trust-img {
        height: 20px;
    }
    
    .trust-text {
        width: 100%;
        font-size: 0.75rem;
        margin-top: 5px;
    }
    
    /* Problem/Solution Mobile */
    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-vs-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .vs-divider {
        order: 0;
    }
    
    /* Features Mobile */
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Steps Mobile */
    .steps-grid {
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Sports Mobile */
    .league-logos {
        gap: 10px;
    }
    
    .league-item {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .sports-cta {
        margin-top: 30px;
    }
    
    .sports-cta p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Devices Mobile */
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .device-item {
        padding: 20px 10px;
    }
    
    .device-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .device-item span {
        font-size: 0.75rem;
    }
    
    /* Table Mobile */
    .compare-table th:nth-child(2),
    .compare-table td:nth-child(2) {
        display: none;
    }
    
    .compare-table th,
    .compare-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin: 10px 0;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 18px 15px;
        font-size: 0.95rem;
    }
    
    /* Final CTA Mobile */
    .cta-box {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box > p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .payment-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Money Back Mobile */
    .money-back {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .badge-icon {
        font-size: 2.5rem;
    }
    
    /* Footer padding for bottom bar */
    .footer {
        padding-bottom: 100px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    .stat-val {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .btn-xl {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .league-item {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}