/* ============================================
   BESTVPNINDIA.COM - MODERN DESIGN 2026
   Light theme, Professional, India-focused
   ============================================ */

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Design Tokens */
:root {
    /* Colors - Light Theme */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Brand - Blue & Green */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;

    --success: #10b981;
    --success-dark: #059669;
    --success-50: #ecfdf5;
    --warning: #f59e0b;
    --warning-50: #fffbeb;
    --danger: #ef4444;

    /* VPN Brand Colors */
    --nord-color: #4687ff;
    --nord-bg: rgba(70, 135, 255, 0.1);
    --surf-color: #1dcdad;
    --surf-bg: rgba(29, 205, 173, 0.1);
    --express-color: #da3940;
    --express-bg: rgba(218, 57, 64, 0.1);
    --cyber-color: #ffcb00;
    --cyber-bg: rgba(255, 203, 0, 0.15);
    --proton-color: #6d4aff;
    --proton-bg: rgba(109, 74, 255, 0.1);

    /* Shadows - Softer */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 10px 40px rgba(37,99,235,0.12), 0 4px 12px rgba(0,0,0,0.08);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Spacing */
    --header-height: 72px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Base */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    padding-top: var(--header-height);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* ============================================
   LAYOUT - Wider containers
   ============================================ */

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

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
}

/* ============================================
   HEADER - Clean & Professional
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-best { color: var(--gray-900); }
.logo-vpn { color: var(--primary); }
.logo-india {
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
    margin-left: 3px;
    background: var(--success-50);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-link svg { width: 16px; height: 16px; }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-link {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-600);
    border-radius: var(--radius-md);
}

.dropdown-link:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 8px 0;
}

.dropdown-link-all {
    color: var(--primary);
    font-weight: 500;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg { width: 24px; height: 24px; color: var(--gray-700); }

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active { display: block; }

.mobile-nav-section { margin-bottom: 28px; }

.mobile-nav-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
}

/* ============================================
   BUTTONS - Modern & Clean
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
    color: white;
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--gray-900);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ============================================
   HERO - Clean gradient
   ============================================ */

.hero {
    padding: 80px 24px 60px;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.hero h1, .hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

/* Stats Bar */
.stats-bar {
    background: var(--gray-900);
    padding: 24px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-400);
}

@media (max-width: 600px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 24px; }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 24px;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   VPN CARDS - Modern & Clean
   ============================================ */

.vpn-rankings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.vpn-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.vpn-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.vpn-card-featured {
    border: 2px solid var(--success);
    background: linear-gradient(135deg, var(--success-50) 0%, var(--white) 100%);
}

.vpn-rank {
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.vpn-card-featured .vpn-rank {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

.vpn-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--gray-900);
    box-shadow: var(--shadow-sm);
}

.vpn-badge.budget {
    background: linear-gradient(135deg, var(--surf-color) 0%, #16a085 100%);
    color: white;
}

.vpn-badge.speed {
    background: linear-gradient(135deg, var(--express-color) 0%, #c0392b 100%);
    color: white;
}

.vpn-badge.privacy {
    background: linear-gradient(135deg, var(--proton-color) 0%, #5b3dc8 100%);
    color: white;
}

.vpn-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.vpn-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vpn-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: white;
    box-shadow: var(--shadow-md);
}

.vpn-logo-icon.nord { background: linear-gradient(135deg, #4687ff, #2563eb); }
.vpn-logo-icon.surf { background: linear-gradient(135deg, #1ecbcb, #10b981); }
.vpn-logo-icon.express { background: linear-gradient(135deg, #ef4444, #dc2626); }
.vpn-logo-icon.cyber { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: var(--gray-900); }
.vpn-logo-icon.proton { background: linear-gradient(135deg, #8b5cf6, #6d4aff); }

.vpn-logo-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.vpn-tagline {
    font-size: 14px;
    color: var(--gray-500);
}

.vpn-rating {
    text-align: right;
}

.rating-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
}

.rating-label {
    font-size: 16px;
    color: var(--gray-400);
}

.vpn-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.feature-item.highlight {
    color: var(--primary);
    font-weight: 500;
}

/* Speed Test Bar */
.vpn-speed-test {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.speed-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.speed-bar {
    height: 10px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.speed-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.speed-value {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

/* Pricing Box */
.vpn-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 1px solid var(--primary-100);
}

.price-main {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
}

.price-period {
    font-size: 16px;
    color: var(--gray-500);
}

.price-savings {
    text-align: right;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
}

.savings-badge.free {
    background: linear-gradient(135deg, var(--proton-color) 0%, #5b3dc8 100%);
}

.savings-text {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* VPN Actions */
.vpn-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .vpn-features { grid-template-columns: 1fr; }
    .vpn-actions { grid-template-columns: 1fr; }
    .vpn-pricing { flex-direction: column; gap: 16px; text-align: center; }
    .price-savings { text-align: center; }
    .vpn-header { flex-direction: column; text-align: center; }
    .vpn-logo { flex-direction: column; }
    .vpn-rating { text-align: center; }
}

/* ============================================
   COMPARISON TABLE - Better styling
   ============================================ */

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    background: var(--white);
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--gray-900);
    color: white;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-lg); }
.comparison-table tr:last-child td:last-child { border-radius: 0 0 var(--radius-lg) 0; }

.comparison-table tbody tr {
    transition: background 0.2s;
}

.comparison-table tbody tr:hover {
    background: var(--primary-50);
}

.comparison-table tr.featured {
    background: var(--success-50);
}

.rating-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
}

/* ============================================
   USE CASES GRID
   ============================================ */

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .use-cases-grid { grid-template-columns: 1fr; }
}

.use-case-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}

.use-case-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.use-case-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.use-case-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.use-case-winner {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
    background: var(--success-50);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

/* ============================================
   COMPARISONS PAGE - Better cards
   ============================================ */

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

@media (max-width: 700px) {
    .comparisons-grid { grid-template-columns: 1fr; }
}

.comparison-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-card);
}

.comparison-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vs-item {
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    color: white;
}

.vs-item.nord { background: var(--nord-color); }
.vs-item.surf { background: var(--surf-color); }
.vs-item.express { background: var(--express-color); }
.vs-item.cyber { background: var(--cyber-color); color: var(--gray-900); }
.vs-item.proton { background: var(--proton-color); }

.vs-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
}

.comparison-card p {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
}

/* ============================================
   TRUST / WHY US SECTION
   ============================================ */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

@media (max-width: 900px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .trust-grid { grid-template-columns: 1fr; }
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Author Highlight Box */
.author-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--proton-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
    overflow: hidden;
}

.author-avatar-large svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.author-info-large h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-credentials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray-500);
}

@media (max-width: 600px) {
    .author-highlight { flex-direction: column; text-align: center; }
    .author-credentials { justify-content: center; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

/* Article FAQ (simple h3/p structure without buttons) */
main#main-content > article .faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all 0.2s;
}

main#main-content > article .faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

main#main-content > article .faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    padding: 20px 50px 20px 24px;
    margin: 0;
    position: relative;
    cursor: default;
    line-height: 1.4;
}

/* Arrow icon via CSS pseudo-element */
main#main-content > article .faq-item h3::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9,18 15,12 9,6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

main#main-content > article .faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    margin-top: -4px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1f35 100%);
}

.final-cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.final-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.final-cta-box > p {
    color: var(--gray-400);
    margin-bottom: 24px;
    font-size: 17px;
}

.cta-offer {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.offer-price {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--success);
}

.offer-savings {
    display: block;
    color: var(--gray-300);
    margin-top: 4px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 17px;
}

.cta-guarantee {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-400);
}

/* ============================================
   AFFILIATE NOTICE
   ============================================ */

.affiliate-notice {
    background: var(--warning-50);
    border-top: 1px solid var(--gray-200);
    padding: 16px;
}

.affiliate-notice p {
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.affiliate-notice a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 64px 24px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-link {
    color: var(--gray-400);
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

/* ============================================
   ARTICLE PAGES
   ============================================ */

main#main-content > article,
.article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

@media (min-width: 1200px) {
    main#main-content > article,
    .article-container {
        max-width: 820px;
    }
}

@media (min-width: 1600px) {
    main#main-content > article,
    .article-container {
        max-width: 860px;
    }
}

main#main-content > article h1,
.article-header h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow-xs);
}

.article-meta .author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--proton-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.2);
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.article-meta .author-avatar svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.article-meta .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.article-meta .author-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
}
.article-meta .article-date {
    font-size: 13px;
    color: var(--gray-500);
}

/* Affiliate Disclosure Box */
.affiliate-disclosure {
    background: var(--warning-50);
    border-left: 4px solid var(--warning);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--gray-700);
}

.affiliate-disclosure p { margin: 0; }
.affiliate-disclosure strong { color: var(--warning); }

/* Article Content */
main#main-content > article h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 48px;
    margin-bottom: 16px;
}

main#main-content > article h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 32px;
    margin-bottom: 12px;
}

main#main-content > article p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

main#main-content > article ul,
main#main-content > article ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

main#main-content > article li {
    margin-bottom: 8px;
    line-height: 1.7;
}

main#main-content > article a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Intro Box */
.intro {
    font-size: 17px;
    color: var(--gray-600);
    padding: 24px;
    background: var(--primary-50);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    line-height: 1.7;
}

.intro p { margin: 0; }

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-50) 0%, #f3e8ff 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin: 48px 0;
}

.cta-box h3, .cta-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cta-box p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 16px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.legal-page h1, .legal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.legal-page .last-updated, .legal-date {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.legal-page h2, .legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-page p, .legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.legal-page ul, .legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: var(--gray-700);
}

.legal-page li, .legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a, .legal-content a {
    color: var(--primary);
}

.legal-content strong {
    color: var(--gray-900);
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.legal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
    padding: 64px 24px;
    text-align: center;
}

.about-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--proton-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(37,99,235,0.25);
    overflow: hidden;
}

.about-avatar svg {
    width: 70px;
    height: 70px;
    fill: white;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.about-hero .subtitle {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE - Extended Styles
   ============================================ */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.author-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-name-hindi {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.author-role {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.author-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-50);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--gray-600);
    border: 1px solid var(--primary-100);
}

.about-section {
    padding: 3rem 1.5rem;
}

.about-section:nth-child(even) {
    background: var(--gray-50);
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.testing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.testing-card svg {
    width: 36px;
    height: 36px;
    fill: var(--primary);
    margin-bottom: 0.75rem;
}

.testing-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.testing-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--success-50) 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

.contact-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-subtitle {
    color: var(--gray-500);
    font-size: 17px;
}

.email-card {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--success-50) 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.email-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.email-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.email-link {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.email-note {
    color: var(--gray-500);
    font-size: 14px;
}

/* Help Section */
.help-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

.help-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.help-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Author Section on Contact */
.author-section {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid var(--gray-200);
}

.author-section .author-avatar {
    width: 80px;
    height: 80px;
}

.author-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.author-info a {
    color: var(--primary);
    text-decoration: none;
}

.author-info a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .author-section {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
    text-align: center;
    padding: 80px 24px;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.error-content > p {
    color: var(--gray-500);
    margin-bottom: 32px;
    font-size: 16px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky-cta { display: none; }

/* ============================================
   COMPARISONS PAGE SPECIFIC
   ============================================ */

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 24px;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.page-subtitle {
    color: var(--gray-500);
    font-size: 17px;
}

/* Featured Comparison */
.featured-comparison {
    position: relative;
    margin-bottom: 48px;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.featured-card {
    display: block;
    background: var(--white);
    border: 2px solid var(--success);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.featured-vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
}

.featured-vpn {
    text-align: center;
}

.vpn-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
    color: white;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-md);
}

.vpn-icon.nord { background: linear-gradient(135deg, #4687ff, #2563eb); }
.vpn-icon.surf { background: linear-gradient(135deg, #1ecbcb, #10b981); }
.vpn-icon.express { background: linear-gradient(135deg, #ef4444, #dc2626); }
.vpn-icon.cyber { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: var(--gray-900); }
.vpn-icon.proton { background: linear-gradient(135deg, #8b5cf6, #6d4aff); }

.featured-vpn h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.featured-vpn .vpn-tagline {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 16px;
}

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

.vpn-highlights li {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

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

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.featured-winner {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
}

.read-comparison {
    color: var(--primary);
    font-weight: 600;
}

/* Comparison List */
.comparisons-section {
    margin-bottom: 48px;
}

.section-title-left {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 20px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xs);
}

.comparison-row:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.comparison-vpns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vpn-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vpn-icon-sm {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.vpn-icon-sm.nord { background: var(--nord-color); }
.vpn-icon-sm.surf { background: var(--surf-color); }
.vpn-icon-sm.express { background: var(--express-color); }
.vpn-icon-sm.cyber { background: var(--cyber-color); color: var(--gray-900); }
.vpn-icon-sm.proton { background: var(--proton-color); }
.vpn-icon-sm.ipv { background: #56c85c; }

.vpn-mini span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px;
}

.vs-sm {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 700;
    padding: 4px 8px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.comparison-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.comparison-details p {
    font-size: 14px;
    color: var(--gray-500);
}

.comparison-verdict {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winner-tag {
    background: var(--success-50);
    color: var(--success);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.arrow {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

/* Quick Chart */
.quick-chart-section {
    margin-bottom: 48px;
}

.chart-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.quick-chart {
    width: 100%;
    min-width: 600px;
    background: var(--white);
    border-collapse: collapse;
}

.quick-chart th {
    background: var(--gray-900);
    color: white;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quick-chart th:first-child {
    text-align: left;
    border-radius: var(--radius-lg) 0 0 0;
}
.quick-chart th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.quick-chart td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-700);
}

.quick-chart td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
}

.quick-chart tr:last-child td { border-bottom: none; }
.quick-chart tr:last-child td:first-child { border-radius: 0 0 0 var(--radius-lg); }
.quick-chart tr:last-child td:last-child { border-radius: 0 0 var(--radius-lg) 0; }

.quick-chart tbody tr:hover {
    background: var(--primary-50);
}

/* Bottom CTA */
.bottom-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--success-50) 100%);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
}

.bottom-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.bottom-cta p {
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

@media (max-width: 768px) {
    .featured-vs {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vs-center { margin: 16px 0; }
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    .comparison-vpns { justify-content: center; }
    .comparison-verdict { justify-content: center; }
    .featured-footer { flex-direction: column; gap: 12px; }

    /* VPN Card mobile */
    .vpn-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .vpn-logo {
        flex-direction: column;
        text-align: center;
    }
    .vpn-rating { text-align: center; }
    .vpn-features { grid-template-columns: 1fr; }
    .vpn-pricing {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .price-savings { text-align: center; }
    .vpn-actions { grid-template-columns: 1fr; }

    /* Author section */
    .author-highlight {
        flex-direction: column;
        text-align: center;
    }
    .author-credentials { justify-content: center; }

    /* Hero */
    .hero { padding: 48px 16px; }
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }

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

    /* Trust grid */
    .trust-grid { grid-template-columns: 1fr; }

    /* Bottom CTA */
    .bottom-cta { padding: 32px 20px; }
    .bottom-cta h2 { font-size: 24px; }

    /* Contact page */
    .contact-title { font-size: 28px; }
    .email-link { font-size: 20px; }

    /* About page */
    .about-hero { padding: 48px 16px; }
    .about-avatar { width: 100px; height: 100px; }
    .about-avatar svg { width: 50px; height: 50px; }
    .author-name { font-size: 1.5rem; }
    .testing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .section { padding: 48px 12px; }
    .page-container { padding: 32px 12px; }
    .page-title { font-size: 24px; }

    /* VPN cards */
    .vpn-card { padding: 20px 16px; }
    .vpn-rank { left: 16px; }
    .vpn-badge { top: 8px; right: 8px; font-size: 11px; }

    /* Featured comparison */
    .featured-card { padding: 20px; }
    .vpn-icon { width: 56px; height: 56px; font-size: 22px; }

    /* Quick chart */
    .quick-chart td, .quick-chart th { padding: 12px 10px; font-size: 12px; }

    /* Footer */
    .footer-top { gap: 16px; }
    .footer-link { font-size: 13px; }
}

/* ============================================
   HIDE AFFILIATE CTAs (TEMPORARY)
   ============================================ */

.btn-primary[href*="nordvpn"],
.btn-primary[href*="surfshark"],
.btn-primary[href*="expressvpn"],
.btn-primary[href*="cyberghost"],
.btn-primary[href*="protonvpn"],
.btn[href*="go.nordvpn.net"],
.btn[href*="get.surfshark"],
a[rel*="sponsored"],
.vpn-actions,
.hero-cta,
.section-cta .btn-primary,
.bottom-cta .btn-primary,
.cta-box,
.mobile-sticky-cta {
    display: none !important;
}

.vpn-card .vpn-actions,
.comparison-cta,
.article-cta {
    display: none !important;
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
