:root {
    --bg-color: #050505;
    --secondary-color: #0A0A0F;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --accent-primary: #28F36A;
    /* Neon Green */
    --accent-secondary: #1BBE55;
    /* Darker Green */
    --accent-gradient: linear-gradient(135deg, #28F36A 0%, #1BBE55 100%);
    --success-color: #28F36A;
    /* Keep green ONLY for money stats */
    --card-bg: #0A0A0F;
    --glass-border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

/* Dynamic Background Animation */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(40, 243, 106, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(27, 190, 85, 0.02) 0%, transparent 40%);
    z-index: -1;
    animation: backgroundMove 20s ease-in-out infinite alternate;
}

/* Custom Scrollbar Redesign */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border: 2px solid var(--bg-color);
    /* Creates a padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-primary);
    color: #000000;
    font-weight: 700;
    border-radius: 50px;
    /* Modern pill shape */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(40, 243, 106, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #000;
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-white {
    color: #fff;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.text-center {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(40, 243, 106, 0.1);
    border: 1px solid rgba(40, 243, 106, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px;
    transition: all 0.3s ease;
    pointer-events: none;
    /* Allow clicks through the empty space */
}

.nav-wrapper {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 12px 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1005;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-primary);
    opacity: 1;
}

.nav-links a::after {
    display: none;
}


.whatsapp-icon {
    color: #25D366;
    font-size: 1.5rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999;
    position: relative;
    padding: 5px;
    pointer-events: auto;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
    z-index: 9999;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background-color: var(--accent-primary);
}

.hamburger-menu.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    background-color: var(--accent-primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav-links a {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-primary);
    -webkit-text-stroke: 1px var(--accent-primary);
}

.mobile-menu-overlay.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) a {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) a {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) a {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) a {
    transition-delay: 0.4s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}


/* Hero Spotlight Effect - Dynamic Orb */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(40, 243, 106, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 20px;
    opacity: 0;
    /* For GSAP */
    transform: translateY(30px);
    text-shadow: 0 0 40px rgba(40, 243, 106, 0.1);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Background Grid Animation */
.hero .bg-grid {
    opacity: 0.4;
    animation: gridPulse 8s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 24px;
        opacity: 0;
    }
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Spotlight Effect */
.auth-card::before,
.comparison-card::before,
.process-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.auth-card:hover,
.comparison-card:hover,
.process-card:hover,
.pricing-card:hover {
    transform: translateY(-5px);
    /* Subtle lift */
    border-color: rgba(255, 255, 255, 0.2);
}

.auth-card:hover::before,
.comparison-card:hover::before,
.process-card:hover::before,
.pricing-card:hover::before {
    opacity: 1;
}



/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border-color: var(--text-primary);
}

/* Placeholder styling for better visibility on dark bg */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Timeline & Counters */
.timeline-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
}

.faq-answer p {
    padding-top: 10px;
}

/* --- NEW SECTIONS DESIGN --- */

/* Comparison Section Redesign */
.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    position: relative;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-secondary);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    align-self: center;
}

.comparison-card {
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    position: relative;
    height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.comparison-bad {
    background: rgba(20, 10, 10, 0.4);
    border-color: rgba(255, 59, 48, 0.1);
}

.comparison-good {
    background: linear-gradient(145deg, rgba(40, 243, 106, 0.05) 0%, rgba(10, 10, 15, 0.8) 100%);
    border-color: rgba(40, 243, 106, 0.3);
    box-shadow: 0 0 50px rgba(40, 243, 106, 0.05);
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.comparison-bad .comparison-list li i {
    color: #ff3b30;
    font-size: 1.2rem;
    margin-top: 2px;
}

.comparison-good .comparison-list li i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.comparison-good .comparison-list li {
    color: #fff;
}

/* Niche Cards Redesign */
.niche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.niche-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.niche-icon {
    font-size: 3.5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.niche-card:hover .niche-icon {
    transform: scale(1.1) translateY(-10px);
}

.niche-card:hover {
    border-color: var(--accent-primary);
    background: rgba(40, 243, 106, 0.02);
}

.niche-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    transition: transform 0.5s ease;
}

.niche-card:hover .niche-bg-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Protocol Redesign */
.process-wrapper {
    position: relative;
    padding: 20px 0;
}

.protocol-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.protocol-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    min-width: 120px;
}

.protocol-content {
    background: #0A0A0F;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    flex: 1;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.protocol-content:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.protocol-line {
    position: absolute;
    left: 60px;
    top: 80px;
    bottom: -80px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    z-index: -1;
}

.protocol-step:last-child .protocol-line {
    display: none;
}

/* CTA Section */
.cta-section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-color), #08080a);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 243, 106, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* --- FOOTER --- */
.site-footer {
    background: #08080a;
    padding: 90px 0 40px;
    position: relative;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(40, 243, 106, 0.12) 0%, transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    display: block;
    max-width: 100%;
}

.footer-brand p {
    max-width: 320px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 22px;
}

.footer-badge {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-note {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    flex: 1;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    border-color: var(--accent-primary);
    outline: none;
}

.newsletter-btn {
    background: var(--accent-primary);
    color: #000;
    border: none;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    background-color: var(--accent-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-divider {
    color: var(--text-secondary);
    opacity: 0.7;
}

.footer-credit {
    color: var(--text-secondary);
}

.footer-credit a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet & Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

/* Mobile & Tablet Portrait (max-width: 992px) */
@media (max-width: 992px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vs-badge {
        margin: 0 auto;
        transform: rotate(90deg);
        /* Vertical flow */
    }

    .protocol-step {
        flex-direction: column;
        gap: 20px;
    }

    .protocol-line {
        left: 20px;
        top: 60px;
        bottom: -40px;
    }

    .niche-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile Landscape (max-width: 768px) */
@media only screen and (max-width: 768px) {
    body {
        padding: 0;
    }

    .desktop-nav {
        display: none;
    }

    /* Hide desktop menu links on mobile */
    .hamburger-menu {
        display: flex;
    }

    .nav-wrapper {
        padding: 10px 20px;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    h2 {
        font-size: 2.2rem;
    }

    /* Comparison Section */
    .comparison-wrapper {
        gap: 24px;
    }

    .vs-badge {
        transform: none;
        margin: 10px auto;
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }

    .comparison-card {
        padding: 26px 20px;
    }

    .comparison-card h3 {
        font-size: 1.2rem;
    }

    .comparison-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .container {
        padding: 0 16px;
    }

    /* Cards */
    .niche-card,
    .comparison-card,
    .protocol-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        margin-left: 0 !important;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-meta {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-btn {
        padding: 12px;
    }

    /* Protocol */
    .protocol-number {
        font-size: 3.5rem;
    }

}

/* Hide custom cursor below 768px */
@media only screen and (max-width: 767px) {
    body {
        cursor: default !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .hero-btns .btn {
        width: 100%;
        margin-left: 0 !important;
        /* Override inline style */
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .niche-icon {
        font-size: 2.5rem;
    }

    .niche-bg-icon {
        font-size: 6rem;
    }

    /* Comparison Section */
    .comparison-wrapper {
        gap: 20px;
    }

    .vs-badge {
        width: 42px;
        height: 42px;
        font-size: 0.8rem;
    }

    .comparison-card {
        padding: 22px 16px;
    }

    .comparison-card h3 {
        font-size: 1.1rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
    }

}

/* Back to Top Progress Button */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
    fill: none;
    stroke: var(--accent-primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap i {
    position: absolute;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.progress-wrap:hover {
    box-shadow: inset 0 0 0 2px var(--accent-primary);
    transform: translateY(-5px);
}

.progress-wrap:hover i {
    color: var(--accent-primary);
}

/* Lenis Smooth Scroll */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}