/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.3);
}

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

/* Comparison Table */
.comparison-table {
    padding: 3rem 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vpn-comparison {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vpn-comparison th {
    background: var(--bg-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.vpn-comparison td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.vpn-row {
    transition: background 0.2s;
}

.vpn-row:hover {
    background: #f8fafc;
}

.vpn-row.hidden {
    display: none;
}

.vpn-name {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.vpn-logo {
    font-size: 2rem;
}

.badge-best {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 4px;
}

.badge-streaming {
    background: #f59e0b;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 4px;
}

.badge-value {
    background: #3b82f6;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 4px;
}

.badge-privacy {
    background: #8b5cf6;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 4px;
}

.badge-speed {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 4px;
}

.highlight {
    color: var(--success-color);
    font-weight: 700;
}

.speed-bar {
    width: 100px;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}

.speed-fill {
    height: 100%;
    background: var(--success-color);
    transition: width 0.5s ease;
}

.rating {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-get {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-get:hover {
    background: var(--secondary-color);
}

/* Detailed Reviews */
.detailed-reviews {
    padding: 3rem 0;
    background: var(--bg-light);
}

.detailed-reviews h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.review-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.review-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.review-content {
    padding: 2rem;
}

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

.pros h4, .cons h4 {
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.5rem 0;
}

.review-details {
    margin-bottom: 2rem;
}

.review-details h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    padding: 0.5rem 0;
}

.review-cta {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.guarantee {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .vpn-comparison {
        font-size: 0.875rem;
    }
    
    .vpn-comparison th,
    .vpn-comparison td {
        padding: 0.75rem 0.5rem;
    }
    
    .filter-bar {
        padding: 0 1rem;
    }
}