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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button, .secondary-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button {
    background: #fff;
    color: #2563eb;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.secondary-button {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.secondary-button:hover {
    background: #e5e7eb;
}

/* Sections */
section {
    padding: 3rem 0;
}

.featured-review {
    background: #f9fafb;
}

/* Score Badges */
.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    min-width: 60px;
}

.score-high {
    background: #16a34a;
}

.score-good {
    background: #eab308;
}

.score-average {
    background: #ea580c;
}

/* Review Cards */
.review-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.review-card.featured {
    border: 2px solid #2563eb;
}

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

.review-summary, .review-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
}

.review-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
}

.highlight-value {
    font-weight: 600;
    color: #374151;
}

.review-link, .table-review-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.review-link:hover, .table-review-link:hover {
    color: #1d4ed8;
}

.review-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Comparison Table */
.comparison-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.vpn-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vpn-tagline {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-excellent {
    color: #16a34a;
    font-weight: 600;
}

.feature-good {
    color: #16a34a;
    font-weight: 600;
}

.feature-average {
    color: #eab308;
    font-weight: 600;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

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

/* Scalable Reviews Grid */
.reviews-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Scalable comparison table */
.comparison-wrapper {
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.comparison-table-scroll {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.comparison-table-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.vpn-comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* Force equal column distribution */
}

.feature-column {
  width: 25%;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  text-align: left;
}

.vpn-column {
  width: 25%;
  text-align: center;
  font-weight: 600;
  background: #f9fafb;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.feature-name {
  width: 25%;
  font-weight: 600;
  background: #f9fafb;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.feature-value {
  width: 25%;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: white;
  font-size: 0.9rem;
  word-wrap: break-word;
}

.feature-value.highlight {
  color: #16a34a;
  font-weight: 600;
}

.feature-value.warning {
  color: #ea580c;
  font-weight: 600;
}

.feature-value.danger {
  color: #dc2626;
  font-weight: 600;
}

/* This automatically handles 3, 4, 5, 6+ VPNs */

/* Professional Comparison Table */
.comparison-section {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin: 3rem auto;
  max-width: 1200px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.comparison-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  text-align: center;
  border-bottom: 2px solid #dee2e6;
}

.comparison-header h2 {
  margin: 0 0 0.5rem 0;
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
}

.comparison-header p {
  margin: 0;
  color: #6c757d;
  font-size: 1rem;
}

.comparison-table-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-table-container::-webkit-scrollbar {
  display: none;
}

.professional-comparison {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.professional-comparison th {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  color: white;
  padding: 1.2rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vpn-name-col {
  width: 180px;
  text-align: left !important;
}

.score-col, .review-col {
  width: 100px;
}

.vpn-row {
  border-bottom: 2px solid #e9ecef;
  transition: all 0.2s ease;
}

.vpn-row:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vpn-row.winner {
  background: linear-gradient(135deg, #fff3cd 0%, #fef7e0 100%);
  border-left: 5px solid #ffc107;
  box-shadow: 0 2px 8px rgba(255,193,7,0.2);
}

.vpn-row td {
  padding: 1.25rem 1rem;
  text-align: center;
  vertical-align: middle;
}

.vpn-name {
  text-align: left !important;
}

.vpn-brand strong {
  display: block;
  color: #2c3e50;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.best {
  background: #d4edda;
  color: #155724;
}

.badge.features {
  background: #cce5ff;
  color: #004085;
}

.badge.ease {
  background: #f8d7da;
  color: #721c24;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.4rem;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.score-badge.excellent {
  background: #28a745;
  color: white;
}

.score-badge.good {
  background: #007bff;
  color: white;
}

.score-badge.average {
  background: #fd7e14;
  color: white;
}

/* Data limit styling */
.unlimited {
  color: #28a745;
  font-weight: 600;
}

.limited {
  color: #ffc107;
  font-weight: 600;
}

.very-limited {
  color: #dc3545;
  font-weight: 600;
}

/* Rating text styling */
.excellent {
  color: #28a745;
  font-weight: 600;
}

.good {
  color: #17a2b8;
  font-weight: 600;
}

.average {
  color: #ffc107;
  font-weight: 600;
}

.review-btn {
  background: #667eea;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.review-btn:hover {
  background: #5a6fd8;
  text-decoration: none;
  color: white;
}

.comparison-footer {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
}

.detailed-comparison-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.detailed-comparison-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Enhanced Article Header */
.article-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.article-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Enhanced Article Subtitle - Prominent Design */
.article-subtitle-enhanced {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.5rem 2rem;
  margin: -1rem auto 2rem;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

/* Alternative: Card-style subtitle */
.article-subtitle-card {
  background: white;
  color: #495057;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 1.5rem 2rem;
  margin: -1rem auto 2rem;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #667eea;
  position: relative;
  z-index: 2;
}

/* Alternative: Gradient text with shadow */
.article-subtitle-gradient {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1rem 2rem;
  margin: 0 auto 2rem;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.article-meta-enhanced {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
}

.score-badge-large {
  background: #28a745;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Enhanced Quick Facts - COMPLETE IMPLEMENTATION */
.quick-facts-enhanced {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin: 2rem auto 3rem;
  max-width: 900px;
  border: 1px solid #e1e8ed;
  overflow: hidden;
}

.quick-facts-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #dee2e6;
}

.quick-facts-header h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-facts-header h2::before {
  content: "⚡";
  font-size: 1.6rem;
}

.facts-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}

.fact-item-enhanced {
  padding: 1.5rem;
  border-right: 1px solid #e1e8ed;
  border-bottom: 1px solid #e1e8ed;
  background: white;
  transition: background-color 0.2s ease;
}

.fact-item-enhanced:hover {
  background: #f8f9fa;
}

.fact-item-enhanced:nth-child(even) {
  background: #fdfdfe;
}

.fact-item-enhanced:nth-child(even):hover {
  background: #f1f3f4;
}

/* PERFECT CONTRAST TEXT */
.fact-label {
  font-weight: 700;
  color: #495057;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.fact-value {
  color: #212529;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.fact-value.highlight {
  color: #198754;
  font-weight: 700;
}

.fact-value.warning {
  color: #fd7e14;
  font-weight: 700;
}

.fact-value.danger {
  color: #dc3545;
  font-weight: 700;
}

/* VPN-Specific Hero Backgrounds */
.hero-protonvpn {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.hero-windscribe {
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.hero-tunnelbear {
  background: linear-gradient(135deg, #e17055 0%, #fdcb6e 100%);
}

/* Legacy Article Layout for backwards compatibility */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.quick-facts {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.quick-facts h3 {
    color: #0369a1;
    margin-bottom: 1rem;
}

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

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bae6fd;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-weight: 600;
    color: #0369a1;
}

.tldr {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.tldr h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.score-breakdown {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.score-item:last-child {
    border-bottom: none;
}

.score-bar {
    flex: 1;
    margin: 0 1rem;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}


.pros h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

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

.pros li, .cons li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Enhanced VPN Cards - Professional Review Cards */
.review-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gradient);
    z-index: 1;
}

.review-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--brand-primary);
}

/* VPN Brand Color Variables */
.review-card-enhanced.protonvpn {
    --brand-primary: #6c5ce7;
    --brand-secondary: #a29bfe;
    --brand-gradient: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
    --score-bg: #6c5ce7;
}

.review-card-enhanced.windscribe {
    --brand-primary: #00b894;
    --brand-secondary: #00cec9;
    --brand-gradient: linear-gradient(90deg, #00b894 0%, #00cec9 100%);
    --score-bg: #00b894;
}

.review-card-enhanced.tunnelbear {
    --brand-primary: #fd7e14;
    --brand-secondary: #fdcb6e;
    --brand-gradient: linear-gradient(90deg, #fd7e14 0%, #fdcb6e 100%);
    --score-bg: #fd7e14;
}

/* Enhanced Review Header */
.review-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.review-title-section {
    flex: 1;
}

.review-title-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* High-Contrast Score Badge */
.score-badge-enhanced {
    background: var(--score-bg);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    flex-shrink: 0;
}

.score-badge-enhanced::after {
    content: '/10';
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
    opacity: 0.9;
}

/* Enhanced Review Content */
.review-summary-enhanced {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Enhanced Highlights Grid */
.review-highlights-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-enhanced {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
}

.highlight-enhanced:hover {
    background: white;
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.highlight-label-enhanced {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.highlight-value-enhanced {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Review Actions */
.review-actions-enhanced {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.review-link-enhanced {
    background: var(--brand-gradient);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.review-link-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.review-meta-enhanced {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    align-items: center;
}

.review-meta-enhanced span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-card-enhanced {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .review-header-enhanced {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .score-badge-enhanced {
        align-self: flex-end;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .review-title-enhanced {
        font-size: 1.5rem;
    }

    .review-highlights-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .review-actions-enhanced {
        flex-direction: column;
        align-items: stretch;
    }

    .review-link-enhanced {
        text-align: center;
    }
}

/* Enhanced Featured Review Card */
.featured-review-enhanced {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 2rem 0;
}

.featured-review-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

/* Decorative background element */
.featured-review-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.featured-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: white;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.featured-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0.5rem 0 0 0;
  font-weight: 300;
}

/* High-contrast score badge */
.score-badge-featured {
  background: white;
  color: #667eea;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.featured-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  color: rgba(255,255,255,0.95);
}

.featured-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.spec-item {
  text-align: center;
}

.spec-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.spec-value.highlight {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.featured-cta {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.featured-cta:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .featured-content {
    padding: 2rem 1.5rem;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .score-badge-featured {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .featured-specs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* Mobile Responsive for Enhanced Headers */
@media (max-width: 768px) {
  .article-hero {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-subtitle {
    font-size: 1rem;
  }

  .article-meta-enhanced {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .facts-grid-enhanced {
    grid-template-columns: 1fr;
  }

  .fact-item-enhanced {
    border-right: none;
    padding: 1.25rem;
  }

  .quick-facts-header {
    padding: 1.25rem 1.5rem;
  }

  .quick-facts-header h2 {
    font-size: 1.2rem;
  }

  .quick-facts-enhanced {
    margin: -1rem auto 2rem;
  }

  .article-subtitle-enhanced,
  .article-subtitle-card,
  .article-subtitle-gradient {
    margin: -0.5rem auto 1.5rem;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

/* Remove any conflicting old styles */
.quick-facts,
.facts-grid {
  display: none !important;
}

/* Mobile responsive for professional comparison table */
@media (max-width: 768px) {
  .comparison-header {
    padding: 1.5rem;
  }

  .comparison-header h2 {
    font-size: 1.4rem;
  }

  .professional-comparison th,
  .professional-comparison td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .vpn-brand strong {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }

  .reviews-grid-dynamic {
    grid-template-columns: 1fr;
  }

  .vpn-comparison {
    font-size: 0.875rem;
  }

  .feature-column,
  .feature-name {
    width: 150px;
    min-width: 150px;
    padding: 0.75rem;
  }

  .vpn-column,
  .feature-value {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

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

    .review-highlights {
        grid-template-columns: 1fr;
    }

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

    .reviews-grid-dynamic {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-column,
    .feature-name {
        width: 120px;
        min-width: 120px;
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .vpn-column,
    .feature-value {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Additional ProtonVPN Review Styles */
.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}

.article-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.quick-facts {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid #667eea;
}

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

.fact-item {
  font-size: 0.9rem;
}

.tldr {
  background: #fff3cd;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin: 2rem 0;
}

.score-breakdown {
  margin: 2rem 0;
}

.score-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.score-item {
  display: grid;
  grid-template-columns: 1fr 150px 60px;
  align-items: center;
  gap: 1rem;
}

.score-bar {
  height: 20px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
  transition: width 0.3s ease;
}

.score-value {
  font-weight: bold;
  text-align: center;
  color: #000000 !important;
}

.pros-cons-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
  margin: 2rem 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.pros, .cons {
  padding: 1.5rem !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.pros {
  background: #d4edda;
  border-left: 4px solid #28a745;
}

.cons {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
}

.pros h3 {
  color: #155724;
  margin-bottom: 1rem;
}

.cons h3 {
  color: #721c24;
  margin-bottom: 1rem;
}

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

.pros li::before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
}

.cons li::before {
  content: "✗ ";
  color: #dc3545;
  font-weight: bold;
}

.bottom-line {
  background: #e7f3ff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  margin: 2rem 0;
}

.final-score {
  background: #28a745;
  color: white;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.related-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.related-btn {
  padding: 0.5rem 1rem;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.related-btn:hover {
  background: #5a6fd8;
}

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

  .pros-cons-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}