/* Inter Font Import */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
    font-size: 16px;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.9) 0%, rgba(52, 168, 83, 0.9) 50%, rgba(251, 191, 36, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-cta {
    display: flex;
    align-items: center;
}


.nav-logo .logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.nav-logo .logo-link:hover {
    transform: scale(1.05);
}

.nav-logo .logo-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: contain;
}

/* CSS Logo Fallback */
.nav-logo .css-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



.nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.2s ease-in-out;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-chrome-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #4285f4;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.nav-chrome-button:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.nav-chrome-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-button-text {
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Hero Section with White Background */
.hero-section {
    padding: 120px 0 60px;
    background: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-20px) translateY(-10px); }
    66% { transform: translateX(20px) translateY(10px); }
}

@keyframes floatParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-heading-full {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-heading-full h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content-parallel {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    padding-right: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-intro {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-intro p {
    margin-bottom: 20px;
}

.hero-cta {
    margin-top: 35px;
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image img {
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Enhanced CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(66, 133, 244, 0.5);
    animation: pulse 0.6s ease-in-out;
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.3rem;
}

/* Chrome Web Store Button Style */
.chrome-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #4285f4;
    text-decoration: none;
    padding: 24px 48px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.2);
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

.chrome-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chrome-button:hover::before {
    left: 100%;
}

.chrome-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(66, 133, 244, 0.3);
    background: #4285f4;
    color: white;
}

.chrome-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.button-text {
    font-weight: 700;
    letter-spacing: 0.025em;
}

/* Featured Section with Enhanced Styling */
.featured-section {
    margin-top: 40px;
    margin-bottom: 100px;
    padding: 0 40px;
}

.featured-card {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    grid-column: 1 / -1;
    margin-bottom: 40px;
    text-align: center;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbf24);
    border-radius: 40px;
    z-index: -1;
    opacity: 0.8;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 40px;
    pointer-events: none;
}


.featured-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.featured-header .ranking-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.featured-header .ranking-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}

.featured-header .ranking-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.featured-card:hover .ranking-icon {
    transform: scale(1.1) rotate(5deg);
}

.featured-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: contain;
}

.featured-card h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.featured-description {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.features-list {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.features-list h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    transform: translateY(-2px);
}

.why-featured {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.why-featured p {
    margin: 0;
    font-size: 1.2rem;
}


/* Extensions Heading Section */
.extensions-heading-section {
    padding: 0 0 30px;
    background: white;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.extensions-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}


/* Enhanced Extensions Grid */
.extensions-grid {
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-bottom: 100px;
}

/* Enhanced Extension Cards */
.extension-card {
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.6s ease-out both;
}

.extension-card:nth-child(1) { animation-delay: 0.1s; }
.extension-card:nth-child(2) { animation-delay: 0.2s; }
.extension-card:nth-child(3) { animation-delay: 0.3s; }
.extension-card:nth-child(4) { animation-delay: 0.4s; }
.extension-card:nth-child(5) { animation-delay: 0.5s; }
.extension-card:nth-child(6) { animation-delay: 0.6s; }
.extension-card:nth-child(7) { animation-delay: 0.7s; }
.extension-card:nth-child(8) { animation-delay: 0.8s; }
.extension-card:nth-child(9) { animation-delay: 0.9s; }

.extension-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 32px 32px 0 0;
}


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

.extension-card:hover::before {
    opacity: 1;
}


.card-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.ranking-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}

.ranking-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.ranking-icon.gold,
.ranking-icon.silver,
.ranking-icon.bronze,
.ranking-icon.purple,
.ranking-icon.blue,
.ranking-icon.orange,
.ranking-icon.green,
.ranking-icon.teal,
.ranking-icon.red,
.ranking-icon.gray {
    background: transparent;
}

.extension-card:hover .ranking-icon {
    transform: scale(1.1) rotate(5deg);
}

.extension-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    object-fit: contain;
}

.extension-card:hover .extension-logo {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Specific styling for Sider logo to make it more prominent */
.extension-logo[src*="sider-logo"] {
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

.extension-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #1f2937;
    flex: 1;
    line-height: 1.3;
}

.extension-card p {
    color: #6b7280;
    margin-bottom: auto;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

.card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    margin-top: 25px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-cta:hover::before {
    left: 100%;
}

.card-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.4);
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4285f4 20%, #34a853 50%, #fbbf24 80%, transparent 100%);
    margin: 80px 0;
    border-radius: 1px;
}

/* Our Methodology Heading Section */
.methodology-heading-section {
    padding: 0 0 30px;
    background: white;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.methodology-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    margin-bottom: 0;
}

/* Our Methodology Section */
.methodology-section {
    margin-bottom: 60px;
    padding: 40px 50px 50px 50px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.methodology-content {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-content p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.methodology-criteria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.criteria-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}

.criteria-item:nth-child(1) { animation-delay: 0.1s; }
.criteria-item:nth-child(2) { animation-delay: 0.2s; }
.criteria-item:nth-child(3) { animation-delay: 0.3s; }
.criteria-item:nth-child(4) { animation-delay: 0.4s; }

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

.criteria-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.criteria-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.methodology-conclusion {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #4285f4;
}

/* Benefits Heading Section */
.benefits-heading-section {
    padding: 0 0 60px;
    background: white;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.benefits-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    margin-bottom: 50px;
}

.benefits-intro {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 0;
}

.benefits-intro p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    text-indent: 0;
    text-align: left;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
}

.benefits-intro p:last-child {
    margin-bottom: 0;
}

.benefits-cta-section {
    padding: 20px 0;
    background: white;
    text-align: center;
}

.benefits-cta {
    text-align: center;
    margin: 0;
}

.chrome-button.secondary {
    background: white;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chrome-button.secondary:hover {
    background: #f8fafc;
    color: #1f2937;
    border-color: #4285f4;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* Enhanced Benefits Section */
.benefits-section {
    margin-bottom: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 40px;
    animation: fadeInUp 0.8s ease-out 1s both;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(229, 231, 235, 0.5);
    animation: fadeInUp 0.6s ease-out both;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
    line-height: 1.3;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Choose Heading Section */
.choose-heading-section {
    padding: 0 0 60px;
    background: white;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.choose-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    margin-bottom: 50px;
}

.choose-intro {
    max-width: 900px;
    margin: 0 auto 15px auto;
    text-align: center;
}

.choose-intro p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: left;
}



/* Enhanced Choose Section */
.choose-section {
    margin-bottom: 60px;
    padding: 20px 50px 50px 50px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

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

.choose-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
    animation: fadeInUp 0.6s ease-out both;
}

.choose-item:nth-child(1) { animation-delay: 0.1s; }
.choose-item:nth-child(2) { animation-delay: 0.2s; }
.choose-item:nth-child(3) { animation-delay: 0.3s; }
.choose-item:nth-child(4) { animation-delay: 0.4s; }

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

.choose-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.choose-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* When Should You Use Heading Section */
.when-to-use-heading-section {
    padding: 0 0 30px;
    background: white;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.when-to-use-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

/* When Should You Use Section */
.when-to-use-section {
    margin-bottom: 60px;
    padding: 40px 50px 50px 50px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.when-to-use-content {
    max-width: 1000px;
    margin: 0 auto;
}

.when-to-use-content p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: center;
}

.use-cases-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    list-style: none;
    padding: 0;
}

.use-case-item {
    margin-bottom: 20px;
    padding-left: 30px;
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    text-align: left;
}

.use-case-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #4285f4;
    font-weight: bold;
    font-size: 1.4rem;
}

.use-case-title {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.use-case-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-left: 0;
}

.use-case-item:nth-child(1) { animation-delay: 0.1s; }
.use-case-item:nth-child(2) { animation-delay: 0.2s; }
.use-case-item:nth-child(3) { animation-delay: 0.3s; }
.use-case-item:nth-child(4) { animation-delay: 0.4s; }
.use-case-item:nth-child(5) { animation-delay: 0.5s; }
.use-case-item:nth-child(6) { animation-delay: 0.6s; }
.use-case-item:nth-child(7) { animation-delay: 0.7s; }


/* Data Privacy and Security Heading Section */
.privacy-heading-section {
    padding: 0 0 30px;
    background: white;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.privacy-heading-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

/* Data Privacy and Security Section */
.privacy-section {
    margin-bottom: 60px;
    padding: 40px 50px 50px 50px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.privacy-checklist {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border-left: 4px solid #4285f4;
}

.privacy-checklist h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: left;
}

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

.privacy-checklist li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.privacy-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4285f4;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-conclusion {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid #4285f4;
    margin: 0;
}

/* Enhanced FAQ Section */
.faq-section {
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.faq-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1f2937;
    line-height: 1.2;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease-in-out;
    animation: fadeInUp 0.6s ease-out both;
    overflow: hidden;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: rgba(66, 133, 244, 0.05);
}

.faq-question h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4285f4;
    transition: transform 0.3s ease;
    user-select: none;
}

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

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 0 30px 25px 30px;
}

/* Active state */
.faq-item.active .faq-question {
    background: rgba(66, 133, 244, 0.05);
    border-bottom-color: rgba(66, 133, 244, 0.2);
}

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

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


/* Enhanced Verdict Section */
.verdict-section {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 32px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 1.3s both;
}

.verdict-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.verdict-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.verdict-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.verdict-myneutron-highlight {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-right: 8px;
    vertical-align: baseline;
}

.verdict-ranking-icon {
    width: 32px;
    height: 32px;
    vertical-align: baseline;
    margin-bottom: -2px;
}

.final-cta {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbf24 100%);
    color: white;
    padding: 50px 40px 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-heading-full h1 {
        font-size: 3rem;
    }
    
    .hero-content-parallel {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .methodology-criteria {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .when-to-use-heading-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo {
        margin-bottom: 0;
    }
    
    .nav-right {
        flex-direction: row;
        gap: 0;
        width: auto;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-chrome-button {
        padding: 10px 16px;
        font-size: 0.8rem;
        align-self: center;
    }
    
    .nav-chrome-icon {
        width: 18px;
        height: 18px;
    }
    
    .nav-logo .logo-image {
        width: 60px;
        height: 60px;
    }
    
    
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-heading-full h1 {
        font-size: 2.5rem;
    }
    
    .hero-intro {
        font-size: 1.1rem;
    }
    
    .featured-card {
        padding: 40px 25px;
    }
    
    .featured-card h2 {
        font-size: 2rem;
    }
    
    .featured-header {
        gap: 20px;
    }
    
    .featured-logo {
        width: 70px;
        height: 70px;
        padding: 5px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefits-section {
        padding: 40px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methodology-criteria {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methodology-heading-section h2 {
        font-size: 2.5rem;
    }
    
    .methodology-section {
        padding: 30px 25px 40px 25px;
        margin-bottom: 40px;
    }
    
    .criteria-item {
        padding: 30px 20px;
    }
    
    .when-to-use-heading-section h2 {
        font-size: 2.5rem;
    }
    
    .when-to-use-section {
        padding: 30px 25px 40px 25px;
        margin-bottom: 40px;
    }
    
    .use-case-item {
        margin-bottom: 18px;
        padding-left: 25px;
    }
    
    .use-case-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .use-case-description {
        font-size: 0.95rem;
    }
    
    .privacy-heading-section h2 {
        font-size: 2.5rem;
    }
    
    .privacy-section {
        padding: 30px 25px 40px 25px;
        margin-bottom: 40px;
    }
    
    .privacy-content p {
        font-size: 1.1rem;
    }
    
    .privacy-checklist {
        padding: 30px 20px;
    }
    
    .privacy-checklist h3 {
        font-size: 1.3rem;
    }
    
    .privacy-checklist li {
        font-size: 1rem;
    }
    
    .privacy-conclusion {
        font-size: 1.1rem;
        padding: 25px 20px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .choose-section {
        padding: 15px 25px 40px 25px;
        margin-bottom: 40px;
    }
    
    .choose-section h2 {
        font-size: 2.5rem;
    }
    
    .choose-intro p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .benefits-intro p {
        font-size: 1.1rem;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    
    .verdict-section {
        padding: 60px 25px;
    }
    
    .verdict-section h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        height: 50px;
    }
    
    .nav-logo .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .nav-chrome-button {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .nav-chrome-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-heading-full h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .featured-card {
        padding: 30px 20px;
    }
    
    .featured-card h2 {
        font-size: 1.8rem;
    }
    
    .featured-header {
        gap: 15px;
    }
    
    .featured-logo {
        width: 60px;
        height: 60px;
        padding: 4px;
    }
    
    .extensions-grid h2,
    .benefits-section h2,
    .choose-section h2,
    .faq-section h2,
    .verdict-section h2 {
        font-size: 2rem;
    }
    
    .extension-card {
        padding: 25px;
    }
    
    .card-header {
        gap: 20px;
    }
    
    .extension-logo {
        width: 60px;
        height: 60px;
        padding: 4px;
    }
    
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 15px 20px 15px;
    }
    
    .verdict-section {
        padding: 50px 20px;
    }
    
    .verdict-section h2 {
        font-size: 2rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
}

/* Enhanced mobile styles for 425px and below */
@media (max-width: 425px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .hero-section {
        padding: 70px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-heading-full h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .hero-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-intro p {
        margin-bottom: 15px;
    }
    
    /* Featured card improvements for mobile */
    .featured-section {
        padding: 0 10px;
        margin-top: 30px;
        margin-bottom: 60px;
    }
    
    .featured-card {
        padding: 25px 15px;
        border-radius: 24px;
        margin-bottom: 40px;
    }
    
    .featured-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .featured-header .ranking-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .featured-logo {
        width: 50px;
        height: 50px;
        padding: 3px;
        flex-shrink: 0;
    }
    
    .featured-card h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        flex: 1;
        min-width: 200px;
    }
    
    .featured-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .features-list {
        margin-bottom: 25px;
    }
    
    .features-list h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .features-list li {
        font-size: 1rem;
        padding: 8px 0;
        padding-left: 25px;
        line-height: 1.4;
        text-align: left;
    }
    
    .why-featured {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .why-featured p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .chrome-button {
        padding: 18px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        gap: 12px;
        white-space: nowrap;
        min-width: 280px;
    }
    
    .chrome-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Extensions grid improvements */
    .extensions-heading-section {
        padding: 0 0 20px;
    }
    
    .extensions-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .extensions-grid {
        margin-bottom: 60px;
    }
    
    .grid {
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .extension-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    
    .card-header {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .ranking-icon {
        width: 35px;
        height: 35px;
    }
    
    .extension-logo {
        width: 50px;
        height: 50px;
        padding: 3px;
    }
    
    .extension-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .extension-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .card-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    
    /* Benefits section improvements */
    .benefits-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .benefits-section {
        padding: 40px 15px;
        margin-bottom: 60px;
        border-radius: 24px;
    }
    
    .benefits-grid {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .benefit-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Choose section improvements */
    .choose-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .choose-intro {
        max-width: 100%;
    }
    
    .choose-intro p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .benefits-intro {
        max-width: 100%;
    }
    
    .benefits-intro p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .privacy-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .privacy-section {
        padding: 20px 15px 30px 15px;
        margin-bottom: 40px;
        border-radius: 24px;
    }
    
    .privacy-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .privacy-checklist {
        padding: 25px 15px;
        margin: 30px 0;
    }
    
    .privacy-checklist h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .privacy-checklist li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 25px;
    }
    
    .privacy-conclusion {
        font-size: 1rem;
        padding: 20px 15px;
    }
    
    .choose-section {
        padding: 10px 15px 30px 15px;
        margin-bottom: 40px;
        border-radius: 24px;
    }
    
    .choose-grid {
        gap: 15px;
    }
    
    .methodology-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .methodology-section {
        padding: 20px 15px 30px 15px;
        margin-bottom: 40px;
        border-radius: 24px;
    }
    
    .methodology-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .methodology-criteria {
        gap: 15px;
        margin: 30px 0;
    }
    
    .criteria-item {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .criteria-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .criteria-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .methodology-conclusion {
        font-size: 1.1rem;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .when-to-use-section {
        padding: 20px 15px 30px 15px;
        margin-bottom: 40px;
        border-radius: 24px;
    }
    
    .when-to-use-heading-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .when-to-use-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .use-case-item {
        margin-bottom: 16px;
        padding-left: 20px;
    }
    
    .use-case-title {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .use-case-description {
        font-size: 0.9rem;
    }
    
    .choose-item {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .choose-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .choose-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* FAQ section improvements */
    .faq-section {
        margin-bottom: 60px;
    }
    
    .faq-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 18px 12px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-icon {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 12px 18px 12px;
    }
    
    
    /* Verdict section improvements */
    .verdict-section {
        padding: 40px 15px;
        margin-bottom: 60px;
        border-radius: 24px;
    }
    
    .verdict-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .verdict-section p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .verdict-ranking-icon {
        width: 28px;
        height: 28px;
        margin-bottom: -1px;
    }
    
    .final-cta {
        margin-top: 30px;
    }
    
    /* Footer improvements */
    .footer {
        padding: 30px 15px 20px;
        margin-top: 60px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    /* Section dividers */
    .section-divider {
        margin: 50px 0;
    }
}

/* Focus states for accessibility */
.cta-button:focus,
.card-cta:focus,
.nav-link:focus,
.footer-link:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.extension-card,
.benefit-item,
.faq-item {
    opacity: 0;
    animation-fill-mode: forwards;
}