* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

:root {
  font-family: 'Poppins', sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes iconRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(10deg);
  }
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
    transform: scale(1.03);
  }
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== HOW SECTION ===== */

.how-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--text-main), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  animation: fadeDown 0.6s ease;
  font-weight: 900;
}

.section-subtitle {
  opacity: 0.7;
  margin-bottom: 40px;
  font-size: 16px;
}

/* 4 колонки - десктоп */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

/* карточка */
.step {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  padding: 30px 25px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Фоновый эффект */
.step::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* hover эффект */
.step:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(79, 70, 229, 0.08);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-8px) scale(1.02);
}

.step:hover::before {
  opacity: 1;
}

/* номер шага */
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 32px;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* заголовок */
.step h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.step:hover h3 {
  color: var(--primary);
}

/* текст */
.step p {
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  transition: opacity 0.3s ease;
}

.step:hover p {
  opacity: 1;
  color: var(--text-main);
}

/* нижняя часть */
.how-footer {
  margin-top: 40px;
}

.how-note {
  margin-bottom: 15px;
  opacity: 0.8;
}

/* кнопка */
.btn-primary {
  display: inline-block;
  background: #4ECDC4;
  color: #000;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

/* hover кнопки */
.btn-primary:hover {
  transform: scale(1.05);
  background: #38bfb6;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

/* ===== АДАПТИВ ===== */

/* планшет */
@media (max-width: 900px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* телефон */
@media (max-width: 500px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

:root {
  --bg-dark: #111e2e;
  --bg-darker: #0d1620;
  --glass-bg: rgba(17, 30, 46, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --primary: #3b82f6;
  --secondary: #22c55e;
  --danger: #ef4444;
  --gold: #06b6d4;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-light: rgba(255, 255, 255, 0.7);
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
}

/* ============= BLUR BLOBS ============= */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: -200px;
  left: -100px;
  animation: float1 15s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  bottom: -150px;
  right: -50px;
  animation: float2 18s ease-in-out infinite;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #8B5CF6, var(--primary));
  top: 50%;
  right: 10%;
  animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -50px); }
  66% { transform: translate(-20px, 50px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 50px); }
  66% { transform: translate(40px, -30px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, 30px); }
  66% { transform: translate(-30px, -30px); }
}

/* ============= ANIMATIONS ============= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============= CONTAINER ============= */
.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ============= HEADER ============= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  animation: slideDown 0.6s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 20px 30px;
  border-radius: 16px;
}

.header-left {
  flex: 1;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rocket-svg {
  width: 40px;
  height: 40px;
  animation: rocket-fly 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6));
  flex-shrink: 0;
}

@keyframes rocket-fly {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-10deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.rocket-anim {
  display: inline-block;
  animation: rocket-fly 2s ease-in-out infinite;
  text-shadow: 
    0 0 10px rgba(59, 130, 246, 0.8),
    0 0 20px rgba(34, 197, 94, 0.6),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 32px;
  margin-right: 8px;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  color: white;
}

@keyframes rocket-fly {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-15deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

.tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.donate-link {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(236, 72, 153, 0.1));
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  color: #ff6b6b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  margin-right: 12px;
  position: relative;
  overflow: hidden;
}

.donate-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.donate-link:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(236, 72, 153, 0.15));
  border-color: rgba(239, 68, 68, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.donate-link:hover::before {
  left: 100%;
}

.donate-icon {
  font-size: 16px;
  display: block;
}

.telegram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 197, 94, 0.1));
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.telegram-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.telegram-link:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(34, 197, 94, 0.15));
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.telegram-link:hover::before {
  left: 100%;
}

.tg-icon {
  font-size: 16px;
  display: block;
}

.nav-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 197, 94, 0.1));
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  color: var(--text-main) !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  margin-right: 12px;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(34, 197, 94, 0.15));
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  color: var(--text-main) !important;
}

.nav-link:hover::before {
  left: 100%;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease infinite;
}

/* ============= HERO SECTION ============= */
.hero {
  text-align: center;
  margin: 60px 0;
  animation: slideUp 0.8s ease 0.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-title {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-main), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
  filter: none;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.3s both;
  flex: 0 0 auto;
}

.hero-shield {
  width: 280px;
  height: 336px;
  max-width: 100%;
  margin-top: 60px;
  filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
  flex-shrink: 0;
}

@keyframes wave-pulse {
  0% {
    r: 70px;
    opacity: 0.3;
  }
  100% {
    r: 110px;
    opacity: 0;
  }
}

@keyframes shield-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes check-draw {
  0% {
    stroke-dashoffset: 50;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.wave-pulse {
  animation: wave-pulse 2s ease-out infinite;
}

.shield-main {
  animation: shield-float 3s ease-in-out infinite;
}

.shield-check {
  animation: check-draw 1s ease-in-out infinite;
  animation-delay: 1.5s;
}

.btn-hero {
  position: relative;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-main);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
  font-family: inherit;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
}

.btn-hero:active::before {
  animation: none;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  border-radius: 12px;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:active {
  transform: scale(0.95);
}

.btn-hero:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============= BENEFITS SECTION ============= */
.benefits-section {
  margin: 80px 0;
  padding: 60px 0;
  animation: slideUp 0.8s ease 0.2s both;
}

.section-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--text-main), var(--text-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--text-muted);
  margin: -30px 0 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
  animation: none;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.4s ease;
  pointer-events: none;
}

.benefit-card:hover::after {
  left: 100%;
}

/* Фоновый эффект */
.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.3s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:nth-child(4) { animation-delay: 0.5s; }
.benefit-card:nth-child(5) { animation-delay: 0.6s; }
.benefit-card:nth-child(6) { animation-delay: 0.7s; }

.benefit-card:hover {
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
  transition: all 0.2s ease;
  animation: none;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  animation: none;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--primary);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: var(--text-main);
}

/* ============= HOW IT WORKS SECTION ============= */
.how-section {
  margin: 80px 0;
  padding: 60px 0;
  animation: slideUp 0.8s ease 0.3s both;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.2s ease;
  animation: none;
  position: relative;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
}

.step:hover {
  background: var(--glass-bg);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.best-proxy-section {
  margin: 60px 0;
  animation: slideUp 0.8s ease 0.4s both;
}

.best-proxy {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.best-proxy::before {
  content: '⭐ Лучший сервер';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.best-proxy:hover {
  border-color: var(--secondary);
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.best-proxy-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.best-proxy-info-item {
  text-align: center;
}

.best-proxy-info-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.best-proxy-info-item .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  font-family: 'Monaco', 'Courier New', monospace;
}

.best-proxy-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.best-proxy-status.online {
  color: var(--secondary);
}

.best-proxy-status.offline {
  color: var(--danger);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.online {
  background: var(--secondary);
  animation: pulse 2s ease infinite;
}

.status-indicator.offline {
  background: var(--danger);
}

.best-proxy-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

/* ============= PROXY LIST SECTION ============= */
.proxies-section {
  margin: 60px 0;
  animation: slideUp 0.8s ease 0.5s both;
}

.proxies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.proxy {
  background: rgba(79, 70, 229, 0.03);
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.proxy:nth-child(1) { animation-delay: 0.3s; }
.proxy:nth-child(2) { animation-delay: 0.35s; }
.proxy:nth-child(3) { animation-delay: 0.4s; }
.proxy:nth-child(4) { animation-delay: 0.45s; }
.proxy:nth-child(5) { animation-delay: 0.5s; }
.proxy:nth-child(6) { animation-delay: 0.55s; }

.proxy:hover {
  background: rgba(59, 130, 246, 0.06);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.proxy-ip {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  font-family: 'Monaco', 'Courier New', monospace;
  background: rgba(59, 130, 246, 0.06);
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.proxy-meta {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  gap: 15px;
  font-weight: 600;
}

.proxy-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.proxy-status {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.proxy-status.online {
  color: var(--secondary);
}

.proxy-status.offline {
  color: var(--danger);
}

.proxy-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: inherit;
  min-width: 80px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), rgba(59, 130, 246, 0.5));
  border-color: var(--primary);
  color: white;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.7));
  border-color: var(--primary);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--secondary);
  transform: translateY(-1px);
}

.btn-secondary.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ============= EMPTY STATE ============= */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  animation: slideUp 0.8s ease;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 10px;
}

/* ============= MOBILE ACTION BAR ============= */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 11, 20, 0.98);
  border-top: 1px solid rgba(79, 70, 229, 0.15);
  padding: 12px 20px 20px;
}

.btn-mobile-action {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.btn-mobile-action:active {
  transform: scale(0.98);
}

/* ============= TOAST NOTIFICATIONS ============= */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  background: rgba(79, 70, 229, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.3s ease;
  pointer-events: auto;
  min-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toast.success {
  border-left-color: var(--secondary);
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.info {
  border-left-color: var(--primary);
}

/* ============= TESTIMONIALS SECTION ============= */
.testimonials-section {
  margin: 80px 0;
  padding: 60px 0;
}

.testimonials-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  position: relative;
  display: inline-block;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1200px;
  justify-content: center;
}

.testimonials-scroll {
  width: 1010px;
  overflow: hidden;
  border-radius: 12px;
}

.testimonials-scroll-inner {
  display: flex;
  gap: 25px;
  transition: transform 0.3s ease;
  padding: 20px;
}

.carousel-arrow {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.05));
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #3b82f6;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.1));
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.testimonial-card {
  background: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  flex: 0 0 320px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.1));
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author {
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}

.testimonial-badge {
  background: rgba(34, 197, 94, 0.2);
  color: var(--secondary);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 11px;
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= BRANDS SCROLL ============= */
.brands-scroll {
  background: linear-gradient(90deg, var(--bg-dark) 0%, var(--bg-darker) 50%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.2);
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  padding: 40px 0;
  overflow: hidden;
  margin: 80px 0 0 0;
  position: relative;
}

.brands-scroll::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.brands-scroll::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, transparent 0%, var(--bg-dark) 100%);
  z-index: 10;
  pointer-events: none;
}

.brands-scroll-inner {
  display: flex;
  gap: 60px;
  animation: scroll-infinite 80s linear infinite;
  padding: 0 40px;
}

.brands-scroll-item {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.brands-scroll-icon {
  font-size: 48px;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
  animation: float-icon 3s ease-in-out infinite;
}

.brands-scroll-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #888888;
  opacity: 0.75;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============= FOOTER ============= */
.footer {
  background: rgba(7, 11, 20, 0.5);
  border-top: 1px solid rgba(79, 70, 229, 0.15);
  margin-top: 0;
  padding: 30px 20px;
  color: var(--text-main);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.footer-content strong {
  color: var(--primary);
  font-weight: 700;
}

.footer-telegram-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-telegram-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .container {
    padding: 30px 20px;
  }

  .hero {
    margin: 40px 0;
  }

  .benefits-grid {
    gap: 20px;
  }

  .best-proxy-content {
    gap: 20px;
  }

  .proxies-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .mobile-action-bar {
    display: none !important;
  }
}

/* ============= FEATURES SECTION ============= */
.features-section {
  margin: 80px 0;
  padding: 60px 0;
  animation: slideUp 0.8s ease 0.2s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.feature-item {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
  animation: none;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.5s; }
.feature-item:nth-child(5) { animation-delay: 0.6s; }
.feature-item:nth-child(6) { animation-delay: 0.7s; }

.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.2s ease;
  animation: none;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: var(--primary);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-item:hover p {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
    padding-bottom: 100px;
  }

  .header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .header-left { width: 100%; }

  .logo {
    font-size: 24px;
  }

  .tagline {
    font-size: 12px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  .donate-link {
    font-size: 12px;
    padding: 8px 14px;
  }

  .telegram-link {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero {
    margin: 30px 0;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    min-width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
    flex-direction: column;
  }

  .hero-shield {
    width: 280px;
    height: 336px;
  }

  .btn-hero {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

.steps-container { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .best-proxy-content {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }

  .best-proxy-actions {
    flex-direction: column;
    gap: 10px;
  }

  .proxies-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: block;
  }

  #toast-container {
    top: auto;
    bottom: 100px;
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
  }
}

/* ===== ULTRA MOBILE (320px - 375px) ===== */
@media (max-width: 375px) {
  .container {
    padding: 12px 8px;
    padding-bottom: 100px;
  }

  .logo {
    font-size: 18px;
  }

  .tagline {
    font-size: 10px;
  }

  .telegram-link {
    font-size: 10px;
    padding: 5px 10px;
  }

  .hero-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .btn {
    min-height: 48px;
    font-size: 13px;
    padding: 12px 10px;
  }

  input, textarea {
    font-size: 16px; /* Важно для iOS */
    padding: 10px 12px;
  }

  .steps-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }

  .step {
    padding: 15px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .benefit-card {
    padding: 20px 15px;
  }

  .benefit-icon {
    font-size: 32px;
  }

  .benefit-card h3 {
    font-size: 15px;
  }

  .benefit-card p {
    font-size: 11px;
  }

  .feature-item {
    padding: 24px 16px;
  }

  .feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .feature-item h3 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat {
    min-width: 90px;
    padding: 12px 16px;
  }

  .hero-stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hero-stat-value {
    font-size: 20px;
  }

  .hero-stats {
    gap: 16px;
    flex-direction: column;
  }

  .hero-shield {
    width: 160px;
    height: 192px;
  }

  .step p {
    font-size: 11px;
  }

  .header {
    flex-wrap: wrap;
    padding: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
}

/* ===== SMALL MOBILE (376px - 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 16px 12px;
    padding-bottom: 100px;
  }

  .logo {
    font-size: 20px;
  }

  .tagline {
    font-size: 11px;
  }

  .telegram-link {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-shield {
    width: 240px;
    height: 288px;
  }
}

@media (max-width: 375px) {
  .hero-shield {
    width: 200px;
    height: 240px;
  }
}

/* ============= CHALLENGE MODAL ============= */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.modal-content p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 16px;
  text-align: center;
}

.modal-content input::placeholder {
  color: var(--text-muted);
}

.modal-content input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.modal-content .btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.modal-content .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== ГАРАНТИРОВАННОЕ РАСПОЛОЖЕНИЕ STEPS В РЯД ===== */
.steps-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 480px) {
  .steps-container {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* ===== ГАРАНТИРОВАННОЕ РАСПОЛОЖЕНИЕ BENEFITS В РЯД ===== */
.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  .benefit-card {
    padding: 25px 20px !important;
  }
  
  .benefit-icon {
    font-size: 42px !important;
  }
  
  .benefit-card h3 {
    font-size: 16px !important;
  }
  
  .benefit-card p {
    font-size: 12px !important;
  }
}

  .hero-subtitle {
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }

  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-icon {
    font-size: 36px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .step h3 {
    font-size: 16px;
  }

  .step p {
    font-size: 12px;
  }

  .proxy {
    padding: 16px;
  }

  .proxy-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .best-proxy {
    padding: 20px;
  }

  .best-proxy::before {
    font-size: 10px;
  }

  .best-proxy-info-item .value {
    font-size: 18px;
  }

/* ===== FAQ ===== */

.faq-section {
  margin: 80px 0;
  padding: 60px 0;
  animation: slideUp 0.8s ease;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* hover */
.faq-item:hover {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.15);
}

/* активный */
.faq-item.active {
  border-color: var(--secondary);
  background: rgba(34, 197, 94, 0.08);
}

/* вопрос */
.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ответ */
.faq-answer {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
  animation: slideUp 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ============= MODAL ============= */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: rgba(17, 26, 46, 0.95);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  text-align: center;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
}

.modal-text {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: inherit;
}

.modal-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.modal-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.modal-btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.modal-btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 30, 46, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  animation: slideUp 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#cookie-banner.cookie-banner-show {
  display: flex;
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }
}

.cookie-banner-text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
}

#cookie-accept-btn,
#cookie-decline-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#cookie-accept-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

#cookie-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

#cookie-decline-btn {
  background: rgba(59, 130, 246, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

#cookie-decline-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}

/* ============= PREMIUM SECTION ON INDEX ============= */
.premium-intro-section {
  margin: 80px 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.05));
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  animation: slideUp 0.8s ease 0.5s both;
}

.premium-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.premium-intro-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.premium-intro-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-intro-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.premium-intro-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.premium-feature:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
}

.premium-feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.premium-feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-main);
}

.premium-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.premium-intro-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.premium-intro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* ============= PREMIUM PAGE HERO ============= */
.premium-hero {
  margin: 60px 0 80px;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.05));
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  animation: slideUp 0.8s ease;
}

.premium-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.premium-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 12px 25px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 25px;
  animation: fadeDown 0.6s ease;
}

.premium-hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  animation: fadeDown 0.6s ease 0.1s both;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeDown 0.6s ease 0.2s both;
}

.premium-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.6s ease 0.3s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--primary)) !important;
  color: white !important;
}

/* ============= PREMIUM COMPARISON ============= */
.premium-comparison {
  margin: 80px 0;
  padding: 80px 0;
}

.container-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.comparison-card {
  background: rgba(79, 70, 229, 0.04);
  border: 2px solid rgba(79, 70, 229, 0.2);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  animation: slideUp 0.8s ease 0.4s both;
  display: flex;
  flex-direction: column;
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.2);
}

.comparison-free {
  background: rgba(79, 70, 229, 0.04);
  border-color: rgba(79, 70, 229, 0.2);
}

.comparison-premium {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.08));
  border: 2px solid rgba(6, 182, 212, 0.6);
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  animation: premiumCardPulse 3s ease-in-out infinite;
}

.comparison-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  opacity: 0;
  animation: premiumCardGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.comparison-premium:hover {
  transform: scale(1.08) translateY(-12px);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.5), 0 0 30px rgba(6, 182, 212, 0.4);
  border-color: rgba(6, 182, 212, 0.9);
}

@keyframes premiumCardPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.5);
  }
}

@keyframes premiumCardGlow {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

.comparison-premium-btn {
  width: 100%;
  padding: 10px 24px;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(6, 182, 212, 0.6);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.comparison-premium-btn:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(59, 130, 246, 0.35));
  border-color: rgba(6, 182, 212, 0.9);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

.comparison-premium-btn:active {
  transform: translateY(-1px);
}

.comparison-free-btn {
  display: block;
  width: 100%;
  padding: 10px 24px;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(59, 130, 246, 0.15));
  border: 2px solid rgba(79, 70, 229, 0.4);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.comparison-free-btn:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(59, 130, 246, 0.25));
  border-color: rgba(79, 70, 229, 0.7);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
  transform: translateY(-3px);
  color: #ffffff;
}

.comparison-free-btn:active {
  transform: translateY(-1px);
}

.comparison-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 10px;
  color: var(--text-main);
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.comparison-list li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ============= PREMIUM SERVERS ============= */
.premium-servers {
  margin: 80px 0;
  padding: 80px 0;
}

.premium-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.premium-server-card {
  background: rgba(79, 70, 229, 0.04);
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease;
}

.premium-server-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.premium-server-card:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.premium-server-card:hover::before {
  opacity: 1;
}

.premium-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.premium-card-flag {
  font-size: 40px;
}

.premium-card-info {
  flex: 1;
}

.premium-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.premium-card-ip {
  font-size: 13px;
  color: var(--text-muted);
  margin: 5px 0 0 0;
}

.premium-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.stat {
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.premium-connect-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--primary));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
}

.premium-connect-btn:active {
  transform: translateY(0);
}

/* ============= PREMIUM SERVERS ============= */
.premium-servers {
  margin: 80px 0;
  padding: 80px 0;
}

.premium-servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

/* ============= PREMIUM BENEFITS ============= */
.premium-benefits {
  margin: 80px 0;
  padding: 80px 0;
}

.premium-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.premium-benefit-card {
  background: rgba(79, 70, 229, 0.04);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease;
}

.premium-benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-benefit-card:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.15);
}

.premium-benefit-card:hover::before {
  opacity: 1;
}

.premium-benefit-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.premium-benefit-card:hover .premium-benefit-icon {
  transform: scale(1.15);
}

.premium-benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.premium-benefit-card:hover h3 {
  color: var(--gold);
}

.premium-benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.premium-benefit-card:hover p {
  color: var(--text-light);
}

/* ============= RESPONSIVE PREMIUM ============= */
@media (max-width: 1024px) {
  .premium-intro-section {
    padding: 50px 30px;
  }

  .premium-intro-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .premium-hero {
    padding: 60px 30px;
  }

  .premium-hero-title {
    font-size: 42px;
  }

  .comparison-grid {
    gap: 25px;
  }

  .comparison-premium {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .premium-intro-section {
    margin: 60px 0;
    padding: 40px 20px;
  }

  .premium-intro-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-hero {
    margin: 40px 0 60px;
    padding: 50px 20px;
  }

  .premium-hero-title {
    font-size: 32px;
  }

  .premium-hero-buttons {
    gap: 15px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-premium {
    transform: scale(1);
  }

  .premium-cards-grid {
    grid-template-columns: 1fr;
  }

  .premium-servers-grid {
    grid-template-columns: 1fr;
  }

  .premium-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .premium-intro-section {
    padding: 30px 15px;
    margin: 40px 0;
  }

  .premium-intro-title {
    font-size: 24px;
  }

  .premium-intro-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .premium-intro-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-feature {
    padding: 15px;
  }

  .premium-hero {
    padding: 30px 15px;
    margin: 30px 0 40px;
  }

  .premium-hero-title {
    font-size: 24px;
  }

  .premium-hero-subtitle {
    font-size: 14px;
  }

  .premium-hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
  }

  .section-title {
    font-size: 26px;
  }

  .premium-card-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .stat-value {
    font-size: 16px;
  }

  .premium-benefit-card {
    padding: 25px 15px;
  }
}

/* ===== Header active link for premium ===== */
.ww-header__link--active {
  color: var(--gold) !important;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
