/* OpsVPN - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,900;1,900&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --accent: #ffffff;
  --accent-hover: #e0e0e0;
  --border: #222222;
  --gradient-start: #ffffff;
  --gradient-end: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
}

.logo span {
  position: relative;
}

.logo .tm {
  font-size: 4px;
  font-style: normal;
  font-weight: 400;
  vertical-align: top;
  margin-left: 2px;
  position: relative;
  top: 1px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--bg-card);
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
}



/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.01) 50px,
      rgba(255, 255, 255, 0.01) 51px
    );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  margin-bottom: 40px;
  font-size: 15px;
}

.hero-badge-icon {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.download-3d-img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title span {
  display: block;
}

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

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

.platforms {
  text-align: center;
}

.platforms-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.platforms-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.platform-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.platform-icon:hover {
  color: var(--text-primary);
}

.platform-icon svg {
  width: 32px;
  height: 32px;
}

/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: var(--text-muted);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Download Section */
.download {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.download-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.download-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.2s;
}

.download-btn:hover {
  background: var(--bg-primary);
  border-color: var(--text-muted);
}

.download-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-image {
  position: relative;
}

.download-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-content .footer-links {
  display: flex;
  gap: 60px;
}

.footer-content .footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-content .footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-content .footer-column a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-content .footer-column a:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-content .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* About Page */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 60px 0 100px;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-section ul {
  list-style: none;
  padding: 0;
}

.about-section li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}

.about-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .header .btn-primary {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .download-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .download-buttons {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 99;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

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

/* Hero Decorations */
.hero-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-decor-left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-decor-right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1200px) {
  .hero-decor {
    width: 200px;
    height: 200px;
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .hero-decor {
    display: none;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-stat svg {
  color: var(--text-muted);
}

/* Hero Title Gradient */
.hero-title-gradient {
  background: linear-gradient(180deg, var(--text-secondary) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features with Image */
.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-image {
  position: relative;
}

.features-image img {
  width: 100%;
  max-width: 500px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  padding-left: 24px;
  border-left: 2px solid var(--border);
}

.feature-item:hover {
  border-left-color: var(--text-muted);
}

.feature-item .feature-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-item .feature-text {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-image {
    order: -1;
    text-align: center;
  }
}

/* Download Section Updates */
.download-label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.download-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Page Hero */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.page-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Download Cards */
.download-cards {
  padding: 60px 0;
}

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

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
}

.download-card:hover {
  border-color: var(--text-muted);
}

.download-card-icon {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.download-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Instructions */
.instructions {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.instructions-content {
  margin-top: 48px;
}

.instructions-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.instructions-content p:last-child {
  margin-bottom: 0;
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.instruction-step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.instruction-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.instruction-step p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Status Page */
.status-overview {
  padding: 40px 0;
}

.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.status-card.status-operational {
  border-color: #22c55e;
}

.status-indicator {
  width: 16px;
  height: 16px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-info h2 {
  font-size: 24px;
  margin-bottom: 4px;
}

.status-info p {
  color: var(--text-muted);
  font-size: 14px;
}

.status-uptime {
  margin-left: auto;
  text-align: right;
}

.uptime-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #22c55e;
}

.uptime-label {
  color: var(--text-muted);
  font-size: 14px;
}

/* Server Status */
.server-status {
  padding: 60px 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.status-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.status-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.status-item-header h3 {
  font-size: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.operational {
  background: #22c55e;
}

.status-dot.partial {
  background: #f59e0b;
}

.status-dot.down {
  background: #ef4444;
}

.status-item-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.status-label {
  color: #22c55e;
}

.status-ping {
  color: var(--text-muted);
}

.status-bar {
  height: 4px;
  background: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
}

.status-bar-fill {
  height: 100%;
  background: #22c55e;
  border-radius: 2px;
}

/* Services Status */
.services-status {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.service-name {
  flex: 1;
}

.service-status {
  color: #22c55e;
  font-size: 14px;
}

/* Uptime History */
.uptime-history {
  padding: 60px 0;
}

.uptime-bars {
  display: flex;
  gap: 3px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.uptime-day {
  width: 8px;
  height: 32px;
  border-radius: 2px;
  flex-shrink: 0;
}

.uptime-day.operational {
  background: #22c55e;
}

.uptime-day.partial {
  background: #f59e0b;
}

.uptime-day.down {
  background: #ef4444;
}

.uptime-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Locations Page */
.locations-stats {
  padding: 40px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
}

/* Locations Grid */
.locations-grid-section {
  padding: 60px 0;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-top: 8px;
  margin-bottom: 40px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: border-color 0.3s;
}

.location-card:hover {
  border-color: var(--text-muted);
}

.location-flag {
  font-size: 32px;
  margin-bottom: 12px;
}

.location-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.location-city {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.location-details {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.location-ping {
  color: #22c55e;
}

.location-servers {
  color: var(--text-muted);
}

.location-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.location-badge.recommended {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content ul ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--text-secondary);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Footer Legal Links */
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Comparison Table */
.comparison {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

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

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  font-size: 14px;
}

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

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.highlight-row {
  background: rgba(34, 197, 94, 0.05) !important;
}

.highlight-row td {
  border-bottom-color: rgba(34, 197, 94, 0.2) !important;
}

.vpn-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vpn-icon {
  font-size: 18px;
}

.check-yes {
  color: #22c55e;
  font-weight: 500;
}

.check-no {
  color: #ef4444;
}

.check-partial {
  color: #f59e0b;
}

.comparison-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* Servers Section */
.servers {
  padding: 100px 0;
}

.server-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

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

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

.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.server-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.server-flag {
  font-size: 24px;
  line-height: 1;
}

.server-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.server-city {
  font-size: 12px;
  color: var(--text-muted);
}

.server-card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.server-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.server-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.server-stat-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.server-stat-value.green {
  color: #22c55e;
}

.server-stat-value.online {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
}

.server-stat-value .status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.servers-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pricing-icon {
  font-size: 20px;
}

.pricing-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-economy {
  font-size: 11px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.pricing-cta {
  text-align: center;
  margin-top: 48px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
