:root {
    --primary: #2d5016;
    --primary-dark: #1a3009;
    --secondary: #4ade80;
    --accent: #65a30d;
    --dark: #1c2e05;
    --light: #f7fef0;
    --gray: #6b7c5a;
    --forest-light: #ecf7e0;
    --forest-medium: #d4e5c7;
    --danger: #dc2626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

.alt-section {
    background: linear-gradient(135deg, var(--forest-light) 0%, rgba(236, 247, 224, 0.8) 100%);
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background: var(--dark);
    box-shadow: 0 2px 4px rgba(28, 46, 5, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

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

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

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

/* Navbar specific button styles */
.navbar .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    background-color: transparent;
    border-radius: 2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.navbar .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.navbar .btn-primary {
    background-color: white;
    color: var(--primary);
    border: 1px solid white;
    border-radius: 2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.navbar .btn-primary:hover {
    background-color: #f0f9f0;
    border-color: #f0f9f0;
    color: var(--primary-dark);
}

.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest-medium) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(101, 163, 13, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 222, 128, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.world-map {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.world-map img {
    width: 100%;
    height: auto;
}

.server-location {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
      /*
 //   background-color: var(--primary);
 */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(45, 80, 22, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(45, 80, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 80, 22, 0);
    }
}

.profile-explanation {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    opacity: 0.8; /* Makes it slightly transparent */
}


.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.popular-badge {
    background-color: var(--primary);
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
}

.blocklist-demo {
    background: #f8fdf8;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blocklist-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.blocklist-category {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 0.25rem;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.blocklist-category.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.blocklist-toggle {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
    margin-left: auto;
}

.blocklist-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 1.5rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1rem;
    width: 1rem;
    left: 0.25rem;
    bottom: 0.25rem;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--secondary);
}

input:checked + .slider:before {
    transform: translateX(1.5rem);
}

.blocklist-example {
    background-color: white;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-top: 1.5rem;
    font-family: monospace;
    color: var(--dark);
}

.blocked-domain {
    color: var(--danger);
    text-decoration: line-through;
}

.cta {
    text-align: center;
    background: var(--dark);
    color: white;
    padding: 5rem 0;
    border-radius: 0.5rem;
    position: relative;
 /*   margin: 5rem 0;*/
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 2rem;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
    padding: 2rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    max-width: 300px;
    color: #d1d5db;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            align-items: start;
        }
        
        .content-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 2.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.5rem;
            background-color: var(--primary);
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .card-content {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .text-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }
        
        .text-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .text-content p {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 0.5rem;
            margin: 3rem 0;
            text-align: center;
        }
        
        .highlight-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .highlight-box p {
            font-size: 1.1rem;
            margin-bottom: 0;
            opacity: 0.95;
        }

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.popular {
        transform: none;
    }

		.content-grid {
			grid-template-columns: 1fr;
		}

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

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        
        .principles-list {
            list-style: none;
            margin: 2rem 0;
        }
        
        .principles-list li {
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 3rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .principles-list li::before {
            content: "🛡️";
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }

/* Style for active card */
.pricing-card.active {
    border: 2px solid var(--secondary);
    transform: scale(1.02);
}

/* Coming Soon styling */
.pricing-card.coming-soon {
    opacity: 0.85;
    position: relative;
}

.coming-soon-badge {
    background-color: var(--gray);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.notify-btn {
    border-color: var(--gray);
    color: var(--gray);
}

.notify-btn:hover {
    background-color: var(--gray);
    color: white;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.discount-badge {
    background-color: var(--secondary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* FAQ Navigation */
.faq-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faq-nav-button {
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-nav-button.active {
    background-color: var(--primary);
    color: white;
}

/* FAQ Items */
.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background-color: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}


/* Toggle switch styling */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.toggle-option {
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-option.active {
    color: var(--primary);
    font-weight: 600;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 3.5rem;
    height: 1.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.switch .slider.round {
    border-radius: 1.5rem;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 1.2rem;
    width: 1.2rem;
    left: 0.15rem;
    bottom: 0.15rem;
    background-color: white;
    transition: .4s;
}

.switch input:checked + .slider {
    background-color: var(--primary);
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--primary);
}

.switch input:checked + .slider:before {
    transform: translateX(2rem);
}

/* Annual savings badge */
.savings-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-left: 0.5rem;
}


/* stats */
.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

/* Add subtle pattern overlay for texture */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.comparison-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stats-grid.secondary {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blocker-type {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
}

.coverage-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.coverage-badge.limited {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.coverage-badge.complete {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number.red {
    color: #dc2626;
    text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.stat-number.green {
    color: #16a34a;
    text-shadow: 0 2px 4px rgba(22, 163, 74, 0.2);
}

.stat-number:not(.red):not(.green) {
    color: #0ea5e9;
    text-shadow: 0 2px 4px rgba(14, 165, 233, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #475569;
}

.stat-label small {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stats-cta {
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.stats-cta p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.stats-cta p:last-child {
    font-size: 1rem;
    color: #cbd5e1;
}

.stats-cta strong {
    color: #ffffff;
}

/* Split Hero Layout (Lemon Squeezy Style) */
.hero-split {
    padding: 8rem 0;
    background: #f0f9f0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.hero-screenshot:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Mobile responsiveness for split hero */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-screenshot {
        transform: none;
        max-width: 90%;
    }
    
    .hero-screenshot:hover {
        transform: scale(1.02);
    }
    
    .video-container {
        transform: none;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .video-container:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Lemon Squeezy Style Sections */
.ls-section {
    padding: 8rem 0;
    position: relative;
}

.ls-section.light {
    background: #ffffff;
}

.ls-section.alt {
    background: #f8fafc;
}

.ls-section.neutral {
    background: #f1f5f9;
}

.ls-section.forest-accent {
    background: #f0f9f0;
}

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

.ls-section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.ls-section-header p {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Lemon Squeezy Style Stats Cards */
.ls-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ls-stat-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ls-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.ls-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
}

.ls-stat-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ls-stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.ls-stat-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Lemon Squeezy Style Features */
.ls-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.ls-feature-block {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.ls-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.2);
}

.ls-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.ls-feature-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Text-Left Image-Right Layout */
.text-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-text {
    padding-right: 2rem;
}

.benefit-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--dark);
}

.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.benefit-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.demo-visual {
    background: #f8fdf8;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.1);
}

.demo-visual-clean {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mobile responsiveness for text-image split */
@media (max-width: 968px) {
    .text-image-split {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .benefit-text {
        padding-right: 0;
        order: 2;
    }
    
    .demo-visual, .demo-visual-clean {
        order: 1;
    }
    
    .benefit-text h2 {
        font-size: 2.8rem;
    }
    
    .benefit-item {
        justify-content: center;
        text-align: left;
    }
}

/* Alternative: Light background version */
.stats-section.light-theme {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    color: #1e293b;
}

.stats-section.light-theme::before {
    background-image: radial-gradient(circle at 25% 25%, rgba(59,130,246,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(168,85,247,0.05) 0%, transparent 50%);
}

.stats-section.light-theme h2 {
    color: #1e293b;
    text-shadow: none;
}

.stats-section.light-theme .comparison-intro {
    color: #475569;
}

.stats-section.light-theme .stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-section.light-theme .stats-cta p {
    color: #334155;
    text-shadow: none;
}

.stats-section.light-theme .stats-cta p:last-child {
    color: #64748b;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .comparison-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .blocker-type {
        font-size: 0.8rem;
    }
    
    .coverage-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .stats-cta {
        padding: 0 1rem;
    }
}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.learn-more-btn:hover:before {
    left: 100%;
}

.learn-more-btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover .learn-more-btn-icon {
    transform: translateX(3px);
}

/* Alternative button styles */
.learn-more-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.learn-more-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.learn-more-btn.subtle {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.learn-more-btn.subtle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Why DNS Block Page Specific Styles */
.comparison-table {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.check {
    color: var(--secondary);
    font-weight: bold;
}

.cross {
    color: var(--danger);
    font-weight: bold;
}

.partial {
    color: #f59e0b;
    font-weight: bold;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-arrow {
    color: var(--gray);
    font-size: 1.5rem;
}

.blocked-step {
    background-color: #fee2e2;
    border: 2px solid var(--danger);
}

.blocked-step .step-number {
    background-color: var(--danger);
}

.visual-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.demo-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.browser-demo {
    border: 2px solid #e5e7eb;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin: 1rem 0;
    font-family: monospace;
    font-size: 0.875rem;
}

.url-bar {
    background: #f3f4f6;
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.page-content {
    min-height: 8rem;
    border: 1px dashed #d1d5db;
    padding: 0.5rem;
    position: relative;
}

.ad-blocked {
    background: #fee2e2;
    color: var(--danger);
    padding: 0.25rem;
    border-radius: 0.25rem;
    text-align: center;
    margin: 0.25rem 0;
    text-decoration: line-through;
}

.content {
    background: #f0f9ff;
    padding: 0.25rem;
    border-radius: 0.25rem;
    margin: 0.25rem 0;
}

/* Modern Myth Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.myth-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.myth-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.myth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.myth-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.myth-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.myth-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
}

.myth-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.myth-false {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.myth-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.myth-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 1.5rem 0;
}

.truth-section {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
    position: relative;
}

.truth-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.truth-section p {
    color: #065f46;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid #bbf7d0;
    margin-top: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #059669;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #065f46;
    text-align: center;
    margin-top: 0.25rem;
    font-weight: 500;
}

.myth-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.myth-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.myth-cta-content {
    position: relative;
    z-index: 1;
}

.myth-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.myth-cta p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .myth-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .myth-card {
        padding: 1.5rem;
    }
    
    .myth-cta {
        padding: 2rem 1rem;
    }
    
    .myth-cta h3 {
        font-size: 1.5rem;
    }
}

/* Screenshot Comparison Styles */
.screenshot-comparison {
    margin: 2rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.screenshot-container {
    display: flex;
    flex-direction: column;
}

.screenshot-label {
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: 1px solid #e2e8f0;
    letter-spacing: 0.25px;
}

.screenshot-frame {
    position: relative;
    background: white;
    border-radius: 0 0 0.75rem 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    border-top: none;
    height: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-container {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the frame while maintaining aspect ratio */
    object-position: top; /* Shows the top portion of the image, cropping bottom if needed */
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.screenshot-container:hover .screenshot-image {
    transform: scale(1.01);
}

/* Comparison Notes */
.comparison-notes {
    margin: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid #cbd5e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.comparison-notes h3 {
    text-align: center;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.note-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.note-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.note-content h4 {
    color: #0f172a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.note-content p {
    color: #334155;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Highlights */
.comparison-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-content h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comparison CTA */
.comparison-cta {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.comparison-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.comparison-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.comparison-cta p {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Fix outline button contrast on dark backgrounds */
.comparison-cta .btn-outline,
.myth-cta .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.comparison-cta .btn-outline:hover,
.myth-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary);
    border-color: white;
}

/* Advanced Features Section */
.advanced-features-section {
    background: linear-gradient(135deg, var(--light), #ffffff);
    padding: 6rem 0;
    border-top: 1px solid var(--forest-medium);
}

.advanced-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(212, 229, 199, 0.3);
}

.advanced-feature:last-child {
    border-bottom: none;
}

.advanced-feature.reverse {
    direction: rtl;
}

.advanced-feature.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 0 2rem;
}

.feature-content h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-points {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.feature-points li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
}

.feature-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
    border: 1px solid var(--forest-medium);
    min-width: 120px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.feature-screenshot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--forest-medium);
}

/* Comparison Demo Styles */
.comparison-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
}

.demo-before, .demo-after {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.demo-label {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.demo-before img, .demo-after img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

/* Device Showcase Styles */
.device-showcase {
    position: relative;
    background: linear-gradient(135deg, var(--forest-light), var(--light));
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--forest-medium);
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
    font-size: 2rem;
}

.device-item span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.protection-shield {
    font-size: 4rem;
    color: var(--secondary);
    animation: pulse-shield 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advanced-features-section {
        padding: 4rem 0;
    }
    
    .advanced-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
        padding: 2rem 0;
    }
    
    .advanced-feature.reverse {
        direction: ltr;
    }
    
    .feature-content {
        padding: 0;
        order: 1;
    }
    
    .feature-screenshot {
        order: 2;
    }
    
    .feature-content h3 {
        font-size: 1.75rem;
    }
    
    .feature-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .comparison-demo {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .device-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .device-showcase {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .visual-demo {
        grid-template-columns: 1fr;
    }
    
    .screenshot-label {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .screenshot-frame {
        height: 400px; /* Responsive height on mobile */
    }
    
    .comparison-notes {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .note-item {
        padding: 1rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        font-size: 2.5rem;
    }
    
    .comparison-cta {
        padding: 2rem 1rem;
    }
    
    .comparison-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
        
    .comparison-table {
        overflow-x: auto;
    }
    
    .step-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}


