/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #1c1c1c;
  --bg-secondary: #242424;
  --bg-elevated: #2e2e2e;
  --bg-card: #333333;
  --bg-card-hover: #3a3a3a;
  --text-primary: #f5f5f4;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;
  --accent: #67a04b;
  --accent-soft: #7ab35f;
  --accent-hover: #5a8f42;
  --accent-glow: rgba(103, 160, 75, 0.18);
  --accent-dim: rgba(103, 160, 75, 0.12);
  --gradient: linear-gradient(135deg, #5a8f42 0%, #67a04b 45%, #7ab35f 100%);
  --gradient-hover: linear-gradient(135deg, #67a04b 0%, #7ab35f 55%, #8bc46a 100%);
  --hero-glow: rgba(103, 160, 75, 0.14);
  --border: #3f3f3f;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  display: block;
}

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

.section-title {
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-kicker {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.975rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(103, 160, 75, 0.35);
}

.btn--primary:hover {
  background: var(--gradient-hover);
  box-shadow: 0 6px 28px rgba(103, 160, 75, 0.45);
  transform: translateY(-1px);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Telegram CTA — отдельный акцент от зелёного «Подключить VPN» */
.btn--telegram {
  background: rgba(34, 158, 217, 0.12);
  color: #e8f7fc;
  border: 2px solid rgba(34, 158, 217, 0.48);
  box-shadow: 0 2px 14px rgba(34, 158, 217, 0.12);
}

.btn--telegram:hover {
  background: rgba(34, 158, 217, 0.22);
  border-color: #229ed9;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.22);
}

.btn--telegram .btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.seo-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.seo-cta__actions .btn--full {
  width: 100%;
}

.hero__more {
  margin-top: 14px;
}

.hero__more a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.hero__more a:hover {
  color: var(--accent-soft);
  border-bottom-color: rgba(103, 160, 75, 0.4);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 28, 28, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__mark svg {
  width: 40px;
  height: 40px;
  display: block;
}

.logo__mark--sm svg {
  width: 32px;
  height: 32px;
}

.logo__wordmark {
  font-weight: 800;
  color: var(--text-primary);
}

.logo__accent {
  color: var(--accent);
}

.logo:hover .logo__accent {
  color: var(--accent-soft);
}

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

.nav {
  display: flex;
  gap: 32px;
}

.nav__link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.925rem;
  transition: color var(--transition);
}

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

.header__cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: center;
}

.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(103, 160, 75, 0.25);
}

.hero__badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.035em;
}

.hero__tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
}

.hero__viz {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__viz svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.hero__viz-glow {
  position: absolute;
  width: 70%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--hero-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__packet {
  animation: hero-packet 2.8s ease-in-out infinite;
}

.hero__packet--2 {
  animation-delay: 0.9s;
}

@keyframes hero-packet {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 70% 15%, var(--hero-glow) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(103, 160, 75, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #1c1c1c 0%, #181818 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.trust-strip__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-strip__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-strip__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* How VPN works */
.how-vpn {
  padding: 88px 0 72px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.how-vpn__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}

.how-vpn__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.how-vpn__text p + p {
  margin-top: 14px;
}

.how-vpn__list {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.how-vpn__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.how-vpn__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.how-vpn__diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
}

.how-vpn__diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content {
    text-align: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__note {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-vpn__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 72px;
  }
  .trust-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(103, 160, 75, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card__text {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  padding: 88px 0 100px;
  position: relative;
  z-index: 2;
}

.pricing__wrap {
  max-width: 520px;
  margin: 0 auto;
}

.pricing__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.pricing__sticker {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(103, 160, 75, 0.4);
  letter-spacing: 0.3px;
  z-index: 2;
}

.pricing__badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing__price {
  margin-bottom: 32px;
}

.pricing__amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.pricing__currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing__features li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing__features li:last-child {
  border-bottom: none;
}

.pricing__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing__form,
.pricing__cta {
  text-align: left;
}

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

.pricing__cta .btn {
  display: inline-flex;
  text-align: center;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.pricing__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
  outline: none;
}

.pricing__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pricing__input::placeholder {
  color: var(--text-muted);
}

.pricing__note {
  margin-top: 12px;
  font-size: 0.825rem;
  color: var(--text-muted);
  text-align: center;
}

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

.faq__list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.faq__item:hover {
  border-color: rgba(103, 160, 75, 0.25);
}

.faq__item.active {
  border-color: rgba(103, 160, 75, 0.4);
}

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

.faq__question:hover {
  color: var(--accent);
}

.faq__arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.7;
}

.faq__answer-inner ol,
.faq__answer-inner ul {
  padding-left: 20px;
  margin: 8px 0;
}

.faq__answer-inner li {
  margin-bottom: 8px;
}

.faq__answer-inner p {
  margin: 8px 0;
}

.faq__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.faq__table th,
.faq__table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.faq__table th {
  color: var(--text-primary);
  font-weight: 600;
}

.faq__table td {
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .faq__table {
    font-size: 0.8rem;
  }
  .faq__table th,
  .faq__table td {
    padding: 8px 6px;
  }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal__close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.modal__body {
  padding: 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__body::-webkit-scrollbar {
  width: 6px;
}

.modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.modal__body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* Legal text styling (reused inside modals) */
.legal__content {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.8;
}

.legal__content h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 28px 0 12px;
}

.legal__content h3:first-child {
  margin-top: 0;
}

.legal__content p {
  margin-bottom: 12px;
}

.legal__content ul,
.legal__content ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal__content li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }
  .modal {
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .modal__header {
    padding: 20px 20px;
  }
  .modal__title {
    font-size: 1.1rem;
  }
  .modal__body {
    padding: 20px;
  }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: var(--bg-secondary);
}

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

.footer__brand {
  max-width: 280px;
}

.logo--footer {
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav.active {
    display: flex;
  }
  .nav__link {
    font-size: 1.25rem;
  }
  .header__cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 130px 0 80px;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__subtitle {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing__card {
    padding: 36px 24px;
  }
  .pricing__amount {
    font-size: 3rem;
  }

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

/* ===== CABINET PAGE ===== */
.cabinet {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.cabinet__box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.cabinet__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.cabinet__subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.cabinet__form {
  margin-bottom: 24px;
}

.cabinet__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cabinet__input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
  outline: none;
}

.cabinet__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.cabinet__input::placeholder {
  color: var(--text-muted);
}

.cabinet__error {
  color: #f87171;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 12px;
  display: none;
}

.cabinet__error.visible {
  display: block;
}

/* Dashboard */
.dashboard {
  display: none;
}

.dashboard.visible {
  display: block;
}

.dashboard__status {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
}

.status-dot.expired {
  background: #f87171;
}

.status-dot.limited {
  background: #fbbf24;
}

.dashboard__info {
  list-style: none;
  margin-bottom: 32px;
}

.dashboard__info li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
}

.dashboard__info li:last-child {
  border-bottom: none;
}

.dashboard__info-label {
  color: var(--text-muted);
}

.dashboard__info-value {
  color: var(--text-primary);
  font-weight: 600;
}

.dashboard__history {
  margin-top: 32px;
}

.dashboard__history h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.dashboard__history-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

.dashboard__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.dashboard__actions .btn {
  flex: 1;
}

/* ===== SEO PAGES ===== */
.seo-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}

.seo-hero__inner {
  position: relative;
  z-index: 2;
}

.seo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.seo-hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.seo-hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.seo-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.seo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--hero-glow) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 25%, rgba(103, 160, 75, 0.07) 0%, transparent 55%);
}

.seo-section {
  padding: 80px 0;
}

.seo-section--alt {
  background: var(--bg-secondary);
}

.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.seo-content__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.seo-content__text h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.seo-content__text h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 28px 0 12px;
}

.seo-content__text p {
  margin-bottom: 16px;
}

.seo-content__text ul,
.seo-content__text ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.seo-content__text li {
  margin-bottom: 8px;
}

.seo-content__text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-content__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 96px;
}

.seo-content__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.seo-content__card ul {
  list-style: none;
  padding: 0;
}

.seo-content__card li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.925rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-content__card li:last-child {
  border-bottom: none;
}

.seo-content__card li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.seo-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.seo-step:hover {
  border-color: rgba(103, 160, 75, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.seo-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.seo-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.seo-step__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.seo-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.seo-advantage {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.seo-advantage:hover {
  border-color: rgba(103, 160, 75, 0.25);
}

.seo-advantage__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.seo-advantage__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.seo-advantage__text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.seo-cta {
  padding: 80px 0;
  text-align: center;
}

.seo-cta__card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.seo-cta__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
}

.seo-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.seo-cta__price {
  margin-bottom: 24px;
}

.seo-cta__amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.seo-cta__currency {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.seo-cta__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  padding: 0;
}

.seo-cta__features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.925rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-cta__features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.seo-cta__note {
  margin-top: 16px;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.seo-breadcrumb {
  padding: 96px 0 0;
}

.seo-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0;
}

.seo-breadcrumb__list a {
  color: var(--text-muted);
}

.seo-breadcrumb__list a:hover {
  color: var(--accent);
}

.seo-breadcrumb__sep {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ===== SEO HERO LOGO ===== */
.seo-hero__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: seo-logo-pulse 3s ease-in-out infinite;
}

.seo-hero__logo svg {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 2;
}

.seo-hero__logo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: seo-orbit-spin 12s linear infinite;
}

.seo-hero__logo::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  animation: seo-orbit-spin 12s linear infinite;
}

.seo-hero__logo--youtube {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.15), 0 0 80px rgba(255, 0, 0, 0.05);
}
.seo-hero__logo--youtube::after { background: rgba(255, 0, 0, 0.5); }
.seo-hero__logo--youtube::before { border-color: rgba(255, 0, 0, 0.1); }

.seo-hero__logo--telegram {
  background: rgba(38, 165, 228, 0.1);
  border: 2px solid rgba(38, 165, 228, 0.25);
  box-shadow: 0 0 40px rgba(38, 165, 228, 0.15), 0 0 80px rgba(38, 165, 228, 0.05);
}
.seo-hero__logo--telegram::after { background: rgba(38, 165, 228, 0.5); }
.seo-hero__logo--telegram::before { border-color: rgba(38, 165, 228, 0.1); }

.seo-hero__logo--roblox {
  background: rgba(226, 35, 26, 0.1);
  border: 2px solid rgba(226, 35, 26, 0.25);
  box-shadow: 0 0 40px rgba(226, 35, 26, 0.15), 0 0 80px rgba(226, 35, 26, 0.05);
}
.seo-hero__logo--roblox::after { background: rgba(226, 35, 26, 0.5); }
.seo-hero__logo--roblox::before { border-color: rgba(226, 35, 26, 0.1); }

.seo-hero__logo--discord {
  background: rgba(88, 101, 242, 0.1);
  border: 2px solid rgba(88, 101, 242, 0.25);
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.15), 0 0 80px rgba(88, 101, 242, 0.05);
}
.seo-hero__logo--discord::after { background: rgba(88, 101, 242, 0.5); }
.seo-hero__logo--discord::before { border-color: rgba(88, 101, 242, 0.1); }

.seo-hero__logo--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 2px solid rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.15), 0 0 80px rgba(37, 211, 102, 0.05);
}
.seo-hero__logo--whatsapp::after { background: rgba(37, 211, 102, 0.5); }
.seo-hero__logo--whatsapp::before { border-color: rgba(37, 211, 102, 0.1); }

.seo-hero__logo--russia {
  background: rgba(0, 57, 166, 0.1);
  border: 2px solid rgba(0, 57, 166, 0.25);
  box-shadow: 0 0 40px rgba(0, 57, 166, 0.12), 0 0 80px rgba(213, 43, 30, 0.06);
}
.seo-hero__logo--russia::after { background: rgba(213, 43, 30, 0.5); }
.seo-hero__logo--russia::before { border-color: rgba(0, 57, 166, 0.1); }

.seo-hero__logo--buy {
  background: var(--accent-dim);
  border: 2px solid rgba(103, 160, 75, 0.35);
  box-shadow: 0 0 40px rgba(103, 160, 75, 0.2), 0 0 80px rgba(103, 160, 75, 0.06);
}
.seo-hero__logo--buy::after { background: rgba(103, 160, 75, 0.55); }
.seo-hero__logo--buy::before { border-color: rgba(103, 160, 75, 0.15); }

@keyframes seo-logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes seo-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* SEO pages responsive */
@media (max-width: 1024px) {
  .seo-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .seo-hero {
    padding: 120px 0 60px;
  }
  .seo-hero__title {
    font-size: 2rem;
  }
  .seo-hero__subtitle {
    font-size: 1.05rem;
  }
  .seo-hero__logo {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
  }
  .seo-hero__logo svg {
    width: 44px;
    height: 44px;
  }
  .seo-hero__logo::before {
    inset: -8px;
  }
  .seo-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .seo-content__card {
    position: static;
  }
  .seo-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .seo-advantages {
    grid-template-columns: 1fr;
  }
  .seo-cta__card {
    padding: 36px 24px;
  }
  .seo-cta__amount {
    font-size: 2.75rem;
  }
  .seo-breadcrumb {
    padding: 88px 0 0;
  }
}



@media (max-width: 768px) {
	.pricing__sticker {
	  top: 0px;
	  right: auto;
	  border-radius: 0 0 8px;
	  left: 0;
	}

	.pricing__badge {
	  margin-bottom: 10px;
	  margin-top: 19px;
	}
	
	.pricing__cta .btn {
		display: block;
		text-align: center;
		text-decoration: none;
		white-space: wrap;
		line-height: 1.2em;
	}

	.seo-cta__card .btn--full {
	  white-space: wrap;
	  line-height: 1.2em;
	}

	  .nav.active {

		background: var(--bg-card);
		min-height: 380px;
		height: auto;
		padding-bottom: 24px;
	  }
	  .nav__link {

		background: var(--bg-card);
	  }


}


@media (max-width: 550px) {
	
	.trust-strip__item {
		align-items: center;
		justify-content: center;
	}
	}