/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */
:root {
  --primary: #6C63FF;
  --primary-dark: #5A52D5;
  --primary-light: #8B85FF;
  --secondary: #00D2FF;
  --accent: #FF6584;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --dark-3: #0F3460;
  --light: #F8F9FA;
  --light-2: #E9ECEF;
  --text: #2D3436;
  --text-light: #636E72;
  --text-white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #6C63FF 0%, #00D2FF 100%);
  --gradient-2: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%);
  --gradient-3: linear-gradient(135deg, #FF6584 0%, #6C63FF 100%);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 40px rgba(108, 99, 255, 0.3);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Emoji font for cross-platform flag & emoji rendering (Windows fix) */
.server-flag,
.feature-icon,
.guarantee-icon,
.bonus-badge,
.bonus-banner-icon,
.testimonial-stars,
.step-number,
.logo-icon {
  font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Twemoji Mozilla', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108, 99, 255, 0.2);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch button {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.lang-switch button.active {
  background: var(--primary);
  color: white;
}

.lang-switch button:hover:not(.active) {
  color: white;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gradient-1);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--text-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(108, 99, 255, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: #00FF88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gradient-1);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 450px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #00FF88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-card-header span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.server-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.server-item:hover {
  background: rgba(108, 99, 255, 0.15);
}

.server-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.server-flag {
  font-size: 1.5rem;
}

.server-name {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
}

.server-ping {
  color: #00FF88;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--gradient-2);
  color: var(--text-white);
}

.section-gray {
  background: var(--light-2);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-dark .section-header .tag {
  background: rgba(108, 99, 255, 0.2);
  color: var(--primary-light);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card .price-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.pricing-features li .check {
  color: #00CC66;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ============================================
   LOCATIONS / COUNTRIES
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.section-dark .location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .location-card:hover {
  background: rgba(108, 99, 255, 0.15);
  border-color: var(--primary);
}

.location-flag {
  font-size: 2.5rem;
}

.location-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

.location-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.section-dark .location-info p {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   APPS SECTION
   ============================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.app-card {
  background: white;
  padding: 30px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.app-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 2rem;
}

.app-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.app-platforms {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.platform-tag {
  padding: 3px 10px;
  background: var(--light-2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient-1);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-primary);
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-dark .step-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid var(--light-2);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .faq-item:hover,
.section-dark .faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.section-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-1);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 30px;
  position: relative;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--primary-light);
}

/* Footer Payment Methods */
.footer-payment {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-payment > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  white-space: nowrap;
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.payment-method:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(108, 99, 255, 0.3);
}

.payment-method svg {
  flex-shrink: 0;
}

.payment-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-2);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   SETUP GUIDE
   ============================================ */
.guide-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.guide-tab {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--light-2);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.guide-tab.active,
.guide-tab:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.guide-step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-step-number {
  min-width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.guide-step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.guide-step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   ADVANTAGES (detailed)
   ============================================ */
.advantage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.advantage-row:nth-child(even) {
  direction: rtl;
}

.advantage-row:nth-child(even) > * {
  direction: ltr;
}

.advantage-visual {
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-size: 5rem;
}

.advantage-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.advantage-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.advantage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}

.advantage-list .icon-check {
  color: #00CC66;
  font-weight: 700;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid rgba(108, 99, 255, 0.2);
}

.guarantee-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.guarantee-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.guarantee-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantage-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .advantage-row:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  /* Hide Telegram button on mobile */
  .btn-telegram {
    display: none !important;
  }

  /* Mobile nav layout */
  .nav-right {
    gap: 10px;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Mobile fullscreen menu — hidden by default */
  .nav-links {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 0 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }

  /* Mobile menu open */
  .nav-links.open {
    display: flex !important;
  }

  /* Menu list items */
  .nav-links li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Menu links */
  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 18px 30px;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
  }

  .nav-links li a::after {
    display: none !important;
  }

  .nav-links li a:hover {
    color: #fff;
    background: rgba(108, 99, 255, 0.12);
  }

  .nav-links li a.active {
    color: #fff;
    background: rgba(108, 99, 255, 0.15);
    border-left: 3px solid var(--primary);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-payment {
    flex-direction: column;
    text-align: center;
  }

  .payment-methods {
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ============================================
   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);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table thead tr {
  background: var(--gradient-1);
  color: white;
}

.comparison-table th {
  padding: 18px 25px;
  text-align: left;
  font-weight: 600;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td {
  padding: 15px 25px;
}

.comparison-table td.center {
  text-align: center;
}

.comparison-table td.highlight {
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.comparison-table td.check-yes {
  text-align: center;
  color: #00CC66;
  font-size: 1.2rem;
}

.comparison-table td.check-no {
  text-align: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* ============================================
   REVIEW FORM & MODAL
   ============================================ */
.review-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-review:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text);
}

.modal h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.star-rating {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  direction: rtl;
  justify-content: flex-end;
}

.star-rating span {
  font-size: 2rem;
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s ease, transform 0.15s ease;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

.star-rating span:hover {
  transform: scale(1.2);
}

/* Selected stars */
.star-rating span.active {
  color: #FFD700;
}

/* Hover: light up hovered + all to its right (lower values via ~ in rtl) */
.star-rating:hover span {
  color: #ccc;
}

.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #FFD700;
}

/* When stars are selected but not hovered */
.star-rating:not(:hover) span.active {
  color: #FFD700;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
}

/* ============================================
   BONUS BADGE
   ============================================ */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #FF6584 0%, #FF8E53 100%);
  color: white;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: bonusPulse 2s infinite;
}

@keyframes bonusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 101, 132, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 101, 132, 0.2); }
}

.bonus-banner {
  background: linear-gradient(135deg, rgba(255, 101, 132, 0.1) 0%, rgba(108, 99, 255, 0.1) 100%);
  border: 1px solid rgba(255, 101, 132, 0.3);
  border-radius: var(--radius);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.bonus-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bonus-banner p {
  font-size: 0.95rem;
  font-weight: 500;
}

.bonus-banner strong {
  color: var(--accent);
}

/* ============================================
   CONTACT PAGE HELPERS
   ============================================ */
.section-header-left {
  text-align: left;
  margin-bottom: 30px;
}

.section-header-left h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header-left p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-link {
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

.contact-link:hover {
  color: var(--primary-dark);
}

/* Dark guarantee box variant */
.guarantee-box-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(108, 99, 255, 0.3);
}

.guarantee-box-dark h3 {
  color: white;
}

.guarantee-box-dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* Hidden guide panel */
.guide-panel-hidden {
  display: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
