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

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

:root {
  --background: hsl(220, 20%, 97%);
  --foreground: hsl(222, 47%, 11%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 11%);
  --primary: hsl(217, 91%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(222, 47%, 11%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(220, 20%, 94%);
  --muted-foreground: hsl(215, 20%, 40%);
  --border: hsl(220, 20%, 88%);
  --success: hsl(142, 71%, 45%);
  --destructive: hsl(0, 84%, 60%);
  --electric-blue: hsl(217, 91%, 60%);
  --navy: hsl(222, 47%, 11%);
  --navy-light: hsl(222, 30%, 20%);
  --radius: 0.75rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-extrabold { font-weight: 800; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-white { color: white; }

.bg-card { background-color: var(--card); }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }

.rounded { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border); }

.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }

.grid { display: grid; }

.hidden { display: none; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Components */
.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: relative;
  z-index: 50;
}

.disclosure-bar {
  background: rgba(var(--muted), 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}

.disclosure-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
}

.main-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(70, 135, 255, 0.3);
  position: relative;
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--foreground);
}

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

/* Navigation */
.nav-btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  color: var(--foreground);
  background: var(--muted);
}

/* Hero */
.hero {
  padding: 2rem 1rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

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

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--muted);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.badge-trust svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* VPN List */
.vpn-list {
  padding: 3rem 0.25rem;
  background: rgba(var(--muted), 0.4);
}

.vpn-list .container {
  max-width: 72rem;
}

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

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* VPN Card */
.vpn-card {
  background: var(--card);
  border-radius: 1rem;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.25rem;
}

.vpn-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: rgba(70, 135, 255, 0.3);
}

.ribbon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ribbon-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #eab308 100%);
  color: #78350f;
}

.ribbon-blue {
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  color: white;
}

.vpn-card-desktop {
  display: none;
}

.vpn-card-mobile {
  display: block;
}

.rank-column {
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.rank-column .rank-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.rank-column .score {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.rank-column .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.rank-column .stars {
  display: flex;
  gap: 2px;
  margin-top: 0.5rem;
}

.rank-column .stars svg {
  width: 0.75rem;
  height: 0.75rem;
}

.star-filled {
  fill: #facc15;
  color: #facc15;
}

.star-empty {
  color: rgba(255,255,255,0.4);
}

.vpn-logo-container {
  width: 10rem;
  height: 6rem;
  background: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0 auto 0.75rem;
  border: 1px solid var(--border);
}

.vpn-logo-container img {
  max-height: 3.5rem;
  max-width: 100%;
  object-fit: contain;
}

.vpn-card-content {
  padding: 1.25rem;
  text-align: center;
}

.vpn-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pros-list {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
}

.pros-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pros-list .check-icon {
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pros-list .check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--success);
}

.platform-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.platform-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

.platform-icons .ios-badge {
  padding: 0.125rem 0.375rem;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
}

.pricing {
  margin: 1rem 0;
}

.pricing .from {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing .period {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted-foreground);
}

.cta-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(70, 135, 255, 0.4);
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 0.75rem;
}

.cta-primary:hover {
  box-shadow: 0 6px 20px rgba(70, 135, 255, 0.5);
  transform: scale(1.02);
}

.review-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.review-link:hover {
  text-decoration: underline;
}

.vpn-card-summary {
  padding: 0.75rem 1.5rem;
  background: rgba(var(--muted), 0.7);
  border-top: 1px solid var(--border);
}

.vpn-card-summary p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  text-align: center;
}

/* SEO Content */
.seo-content {
  padding: 4rem 1rem;
  background: var(--background);
}

.seo-content .container {
  max-width: 56rem;
}

.decorative-line {
  width: 5rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(70, 135, 255, 0.5) 100%);
  margin: 0 auto 2.5rem;
  border-radius: 9999px;
}

.content-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.content-card {
  background: var(--card);
  border-radius: 1rem;
  border: 2px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.content-card:hover {
  border-color: rgba(70, 135, 255, 0.3);
}

.content-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-card .icon-box {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

.content-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.tip-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(var(--muted), 0.7);
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.tip-box h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tip-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  white-space: pre-line;
}

/* FAQ */
.faq {
  padding: 4rem 1rem;
  background: var(--background);
}

.faq .container {
  max-width: 56rem;
}

.faq-list {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--foreground);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

/* Mini Reviews */
.mini-reviews {
  padding: 3rem 0.25rem;
  background: rgba(var(--muted), 0.4);
}

.mini-reviews .container {
  max-width: 72rem;
}

.mini-review-card {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}

.mini-review-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.mini-review-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mini-review-logo {
  display: flex;
  justify-content: center;
}

.mini-review-logo > div {
  width: 10rem;
  height: 4rem;
  background: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
}

.mini-review-logo img {
  max-height: 3rem;
  max-width: 100%;
  object-fit: contain;
}

.mini-review-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.info-item .value {
  font-size: 0.875rem;
  font-weight: 600;
}

.mini-review-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mini-review-cta .price {
  font-size: 1.125rem;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
}

.footer .container {
  max-width: 64rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.back-to-top:hover {
  color: var(--foreground);
  background: var(--muted);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  max-width: 48rem;
  margin: 0 auto;
  text-align: left;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(var(--muted-foreground), 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Review Page Styles */
.review-hero {
  color: white;
  padding: 4rem 0;
}

.review-hero .container {
  max-width: 72rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.breadcrumb a {
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.review-hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.review-logo-box {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem;
  display: inline-block;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.review-logo-box img {
  height: 4rem;
  max-width: 180px;
  object-fit: contain;
}

.review-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-hero .tagline {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.score-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  color: #facc15;
}

.score-badge .score {
  font-size: 1.5rem;
  font-weight: 700;
}

.score-badge .max {
  opacity: 0.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-white {
  background: white;
  color: black;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
}

.pricing-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.pricing-badge .old-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-badge .new-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-badge .deal {
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Review Content Sections */
.review-section {
  padding: 3rem 1rem;
  border-bottom: 1px solid var(--border);
}

.review-section:nth-child(even) {
  background: rgba(var(--muted), 0.3);
}

.review-section .container {
  max-width: 64rem;
}

.review-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.review-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.review-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.review-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.verdict-box {
  background: rgba(70, 135, 255, 0.1);
  border: 1px solid rgba(70, 135, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.verdict-box h3 {
  margin-top: 0;
}

.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
}

.pros-box, .cons-box {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.pros-box h3 {
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons-box h3 {
  color: var(--destructive);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.pros-box li, .cons-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.pros-box li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.cons-box li svg {
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Privacy Cards */
.privacy-grid {
  display: grid;
  gap: 1rem;
}

.privacy-card {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.privacy-card .header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.privacy-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-card h3 {
  font-weight: 600;
  margin: 0;
}

.privacy-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.feature-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Specs Table */
.specs-table {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background: var(--muted);
}

.spec-row .label {
  font-weight: 500;
}

.spec-row .value {
  color: var(--muted-foreground);
}

/* Streaming Section */
.streaming-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.streaming-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.streaming-header svg {
  width: 1.5rem;
  height: 1.5rem;
}

.streaming-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.platform-tag {
  padding: 0.375rem 0.75rem;
  background: var(--muted);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.consistency-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(var(--muted), 0.5);
  border-radius: 0.5rem;
}

.consistency-box svg {
  color: var(--muted-foreground);
  flex-shrink: 0;
  margin-top: 2px;
}

.consistency-box .label {
  font-weight: 500;
}

.consistency-box .value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Legal Pages */
.legal-page {
  padding: 6rem 1rem 4rem;
}

.legal-page .container {
  max-width: 56rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-page .last-updated {
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.legal-page p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-page li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.legal-page strong {
  color: var(--foreground);
}

/* Contact Page */
.contact-hero {
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

.contact-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(70, 135, 255, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}

.contact-features {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 2.5rem auto 0;
}

.contact-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.contact-feature .icon-box {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.contact-feature h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-form-section {
  padding: 2rem 1rem 4rem;
}

.contact-form-card {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-header .icon-box {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.form-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--background);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--electric-blue) 0%, hsl(217, 91%, 70%) 100%);
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.contact-email {
  text-align: center;
  margin-top: 3rem;
}

.contact-email p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

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

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .vpn-card-desktop {
    display: flex;
  }
  
  .vpn-card-mobile {
    display: none;
  }
  
  .rank-column {
    width: 8rem;
    border-radius: 1rem 0 0 1rem;
    padding: 1.5rem;
  }
  
  .vpn-card-content {
    flex: 1;
    padding: 1.5rem;
    text-align: left;
  }
  
  .vpn-card-content-inner {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  
  .vpn-logo-container {
    margin: 0;
    width: 9rem;
    height: 5rem;
    flex-shrink: 0;
  }
  
  .vpn-info {
    flex: 1;
  }
  
  .vpn-info h3 {
    margin-bottom: 0.75rem;
  }
  
  .platform-icons {
    justify-content: flex-start;
    margin: 1rem 0;
  }
  
  .vpn-cta {
    min-width: 10rem;
    text-align: right;
  }
  
  .cta-primary {
    width: auto;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mini-review-content {
    flex-direction: row;
    align-items: center;
  }
  
  .mini-review-logo {
    width: 11rem;
    flex-shrink: 0;
  }
  
  .mini-review-info {
    flex: 1;
    grid-template-columns: repeat(4, 1fr);
  }
  
  .mini-review-cta {
    min-width: 8.75rem;
    align-items: flex-end;
  }
  
  .footer-top {
    flex-direction: row;
  }
  
  .review-hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .review-hero h1 {
    font-size: 3rem;
  }
  
  .pros-cons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  
  .privacy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
