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

:root {
  --burgundy: #6B1F35;
  --burgundy-deep: #4D1525;
  --burgundy-soft: #8B2D47;
  --gold: #F2C94C;
  --gold-soft: #FFE48C;
  --gold-deep: #D4A72C;
  --dark-bg: #020711;
  --dark-bg-secondary: #06101F;
  --surface: #0A1222;
  --surface-variant: #111B2F;
  --surface-elevated: #192640;
  --text-primary: #F5F8FF;
  --text-secondary: #A7B3CF;
  --text-tertiary: #74819F;
  --primary-blue: #2078FF;
  --primary-blue-glow: #42A5FF;
  --secondary-orange: #FF7A1A;
  --success: #4CE59E;
  --danger: #FF5A5F;
  --warning: #FFB15C;
  --info: #42A5FF;
  --border: #263653;
  --divider: #1B2942;
  --glass-bg: rgba(10, 18, 34, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 120, 255, 0.1);
  border: 1px solid rgba(32, 120, 255, 0.25);
  color: var(--primary-blue-glow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.4s ease;
}

.glass-card:hover {
  background: rgba(10, 18, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(2, 7, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  height: var(--header-height);
}

.navbar.scrolled {
  background: rgba(2, 7, 17, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-brand img {
  height: 36px;
  width: auto;
}

.navbar-brand span {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand .brand-vpn {
  background: linear-gradient(135deg, var(--secondary-orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-glow));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease !important;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--primary-blue-glow);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(107, 31, 53, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(32, 120, 255, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(242, 201, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 229, 158, 0.1);
  border: 1px solid rgba(76, 229, 158, 0.2);
  color: var(--success);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--gold);
}

.hero-title .highlight-blue {
  color: var(--primary-blue-glow);
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-blue-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue-glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(32, 120, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 24px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-success {
  background: var(--success);
  color: #020711;
}

.btn-success:hover {
  background: #3ABF77;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(32, 120, 255, 0.15), rgba(107, 31, 53, 0.1));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(32, 120, 255, 0.15);
  animation: orb-ring 4s ease-in-out infinite;
}

.hero-orb-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.hero-orb-ring:nth-child(2) {
  width: 85%;
  height: 85%;
  animation-delay: 0.5s;
}

.hero-orb-ring:nth-child(3) {
  width: 70%;
  height: 70%;
  animation-delay: 1s;
}

@keyframes orb-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

.hero-orb-inner {
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(32, 120, 255, 0.4);
}

.hero-orb-inner img {
  width: 60%;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-map {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-blue);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-icon.burgundy {
  background: rgba(32, 120, 255, 0.15);
  color: var(--primary-blue-glow);
}

.feature-icon.blue {
  background: rgba(32, 120, 255, 0.15);
  color: var(--primary-blue-glow);
}

.feature-icon.gold {
  background: rgba(242, 201, 76, 0.15);
  color: var(--gold);
}

.feature-icon.green {
  background: rgba(76, 229, 158, 0.15);
  color: var(--success);
}

.feature-icon.orange {
  background: rgba(255, 122, 26, 0.15);
  color: var(--secondary-orange);
}

.feature-icon.purple {
  background: rgba(32, 120, 255, 0.15);
  color: var(--primary-blue-glow);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ===== PROTOCOLS ===== */
.protocols-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.protocol-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.protocol-card:hover {
  border-color: rgba(32, 120, 255, 0.3);
  background: rgba(10, 18, 34, 0.85);
  transform: translateY(-2px);
}

.protocol-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.protocol-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.protocol-card p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.why-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== PREMIUM ===== */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.premium-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.premium-card.featured {
  border-color: rgba(242, 201, 76, 0.3);
  background: rgba(10, 18, 34, 0.9);
}

.premium-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #020711;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.premium-card:hover {
  transform: translateY(-4px);
}

.premium-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.premium-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.premium-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.premium-price span {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

.premium-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.premium-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.screenshot-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
}

.screenshot-card .mockup {
  width: 100%;
  aspect-ratio: 9/19;
  background: linear-gradient(180deg, var(--dark-bg-secondary), var(--dark-bg));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 12px;
  border: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}

.screenshot-card .mockup .screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.screenshot-card .mockup .screen-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-blue);
  box-shadow: 0 0 30px rgba(32, 120, 255, 0.4);
}

.screenshot-card .mockup .screen-status {
  font-size: 10px;
  color: var(--success);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.screenshot-card .mockup .screen-bar {
  width: 70%;
  height: 6px;
  background: var(--divider);
  border-radius: 3px;
  overflow: hidden;
}

.screenshot-card .mockup .screen-bar::after {
  content: '';
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-glow));
  border-radius: 3px;
}

.screenshot-card h4 {
  font-size: 14px;
  font-weight: 600;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-bg-secondary));
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  min-width: 200px;
}

.download-btn:hover {
  background: var(--surface-variant);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.download-btn .dl-icon {
  font-size: 28px;
}

.download-btn .dl-text {
  display: flex;
  flex-direction: column;
}

.download-btn .dl-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-btn .dl-platform {
  font-size: 16px;
  font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-title {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

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

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

.faq-question .faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--divider);
  padding: 60px 0 30px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img {
  width: 120px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-variant);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--text-primary);
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue-glow);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 31, 53, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
}

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

/* ===== CONTENT PAGES ===== */
.content-page {
  padding: 60px 0 100px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

.content-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

.content-wrapper ul, .content-wrapper ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-wrapper strong {
  color: var(--text-primary);
}

.content-wrapper .last-updated {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  display: block;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(32, 120, 255, 0.15);
}

.form-control::placeholder {
  color: var(--text-tertiary);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A7B3CF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--surface);
  color: var(--text-primary);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  background: var(--primary-blue);
}

.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(32, 120, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== DELETE ACCOUNT ===== */
.delete-notice {
  background: rgba(255, 90, 95, 0.1);
  border: 1px solid rgba(255, 90, 95, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.delete-notice .notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.delete-notice h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--danger);
}

.delete-notice p {
  font-size: 14px;
  color: var(--text-secondary);
}

.delete-warning {
  background: rgba(242, 201, 76, 0.1);
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gold-soft);
}

/* ===== FAQ PAGE ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.faq-category {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.faq-category:hover {
  border-color: var(--primary-blue);
  color: var(--text-primary);
}

.faq-category.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #ffffff;
}

/* ===== DOWNLOAD PAGE ===== */
.download-hero {
  text-align: center;
  padding: 40px 0;
}

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

.download-platform-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.download-platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.download-platform-card .platform-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.download-platform-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-platform-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.download-platform-card .btn {
  width: 100%;
  justify-content: center;
}

.apk-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-blue);
}

.breadcrumbs .separator {
  color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-description {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-orb {
    width: 240px;
    height: 240px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  section {
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(2, 7, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--divider);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-orb {
    width: 200px;
    height: 200px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .content-wrapper {
    padding: 0 16px;
  }
}

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

  .hero-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ===== NOTIFICATION TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: var(--text-primary);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 360px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: rgba(76, 229, 158, 0.3);
}

.toast.error {
  border-color: rgba(255, 90, 95, 0.3);
}

/* ===== PAGE SPECIFIC ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image .about-orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(32, 120, 255, 0.1), rgba(107, 31, 53, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-image .about-orb-inner {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(32, 120, 255, 0.3);
}

.about-image .about-orb-inner span {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
