:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* Header & Nav */
header {
    background: var(--dark-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo span {
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

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

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 2.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    height: auto;
    line-height: 1.4;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    background-color: #059669;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

/* Compatibility Checker */
.compatibility-container {
    max-width: 900px;
    margin: 0 auto;
}

    .device-selector {
        background-color: var(--card-bg);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 768px) {
        .device-selector {
            padding: 1.5rem;
        }
    }

.selector-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    color: var(--text-light);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

#device-input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#device-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-wrapper label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.select-wrapper select {
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-wrapper select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.check-button {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.check-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.check-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.check-button.loading {
    pointer-events: none;
}

.check-button.loading span::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Result Container */
.result-container {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.result-container.show {
    opacity: 1;
    transform: translateY(0);
}

.result-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.result-card.incompatible {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-color: #ef4444;
}

.result-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: scaleIn 0.5s ease;
}

.result-card.compatible .result-icon {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.result-card.incompatible .result-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.result-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.result-device {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.result-message {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-btn {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.result-btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.result-btn.secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.result-btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.provider-recommendations {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.provider-recommendations h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.provider-mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.provider-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.provider-mini-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.provider-mini-card .name {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.provider-mini-card .score {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Popular Devices */
.popular-devices {
    margin-top: 3rem;
    text-align: center;
}

.popular-devices h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.device-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.device-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.device-chip:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .device-selector {
        padding: 1.5rem;
    }

    .manual-selectors {
        grid-template-columns: 1fr;
    }

    .selector-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .result-card {
        padding: 1.5rem;
    }

    .result-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .result-title {
        font-size: 1.5rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-btn {
        width: 100%;
    }
}

.compatible {
    color: var(--secondary-color);
}

.incompatible {
    color: #ef4444;
}

/* Provider List */
.provider-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.provider-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 2fr 1.5fr 2fr auto auto;
    gap: 2rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.1);
}

.rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    width: 40px;
    text-align: center;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.provider-logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: #334155;
    border-radius: 50%;
}

.provider-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.provider-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.stat-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

.stat-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.features ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.coupon-area {
    text-align: center;
}

.coupon-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.coupon-code {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--secondary-color);
    font-family: monospace;
    font-weight: 700;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
}

.review-btn {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

.review-btn:hover {
    color: var(--text-light);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

    .comparison-card {
        background-color: var(--card-bg);
        padding: 2rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    @media (max-width: 768px) {
        .comparison-card {
            padding: 1.5rem;
        }
    }

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.comparison-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .country-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

.country-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.country-card:hover {
    transform: translateY(-5px);
    background-color: #273548;
}

.flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.25rem;
}

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

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

    .blog-post {
        background-color: var(--card-bg);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .post-image {
        height: 200px;
        background-color: #334155;
        /* Placeholder for image */
    }

    .post-content {
        padding: 1.5rem;
    }

    @media (max-width: 768px) {
        .post-content {
            padding: 1.25rem;
        }
    }

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.post-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.post-content a {
    color: var(--primary-color);
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

/* Footer */
footer {
    background-color: #020617;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .footer-links li {
        width: 100%;
    }
}

.footer-links a {
    color: var(--text-muted);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

.copyright {
    text-align: center;
    color: #475569;
    font-size: 0.9rem;
}

/* Review Page Styles */
.review-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 3rem;
}

.review-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-light);
}

.review-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.review-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.pros h4, .cons h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.pros h4 { color: var(--secondary-color); }
.cons h4 { color: #ef4444; }

.pros ul li, .cons ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

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

.cons ul li::before {
    content: "×";
    color: #ef4444;
    position: absolute;
    left: 0;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    height: fit-content;
}

/* Logo and score side by side - improved layout */
.sticky-sidebar > img:first-of-type {
    width: 80px !important;
    height: 80px !important;
    border-radius: 16px !important;
    object-fit: contain !important;
    background: #fff !important;
    padding: 8px !important;
    margin: 0 1rem 1.5rem 0 !important;
    display: block !important;
    float: left !important;
}

.sidebar-score {
    text-align: left;
    margin-bottom: 1.5rem;
    overflow: hidden;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-sidebar > img:first-of-type + .sidebar-score {
    margin-top: 0;
}

.score-circle {
    width: 45px;
    height: 45px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.sidebar-score .score-circle {
    margin-left: 0;
    margin-right: auto;
}

.sidebar-score h3 {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.3 !important;
    color: var(--text-light) !important;
}

.sidebar-score .rating {
    font-size: 0.75rem !important;
    margin-top: 0.2rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    min-width: 600px;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    white-space: nowrap;
}

.pricing-table th {
    background-color: rgba(255,255,255,0.05);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .pricing-table th, .pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Author Box Styles */
.author-box {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.75rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.author-info a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a {
        display: flex;
        padding: 1rem 0;
        font-size: 1.1rem;
        min-height: 44px;
        align-items: center;
    }

    .cta-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .provider-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        padding: 1.25rem;
    }

    .rank {
        font-size: 1.25rem;
        width: auto;
        margin-bottom: 0.5rem;
    }

    .provider-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .provider-logo {
        width: 70px !important;
        height: 70px !important;
    }

    .provider-name {
        font-size: 1.15rem;
    }

    .provider-stats {
        gap: 2rem;
        margin: 0.5rem 0;
    }

    .stat-value {
        font-size: 1rem;
    }

    .features ul {
        justify-content: center;
        gap: 0.75rem;
    }

    .features li {
        font-size: 0.85rem;
        padding: 0.4rem 0.65rem;
    }

    .coupon-area {
        margin: 0.5rem 0;
    }

    .coupon-code {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
        display: inline-block;
    }

    .actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .visit-btn,
    .review-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .review-layout {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .sticky-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .provider-name {
        font-size: 1.1rem;
    }

    .comparison-card h3 {
        font-size: 1.25rem;
    }

    .blog-post h3 {
        font-size: 1.1rem;
    }

    .result-title {
        font-size: 1.25rem;
    }

    .review-content h1 {
        font-size: 2rem !important;
    }

    .review-content h2 {
        font-size: 1.5rem !important;
    }

    .review-content h3 {
        font-size: 1.25rem !important;
    }
}
