/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0b0f1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-card-hover: #1f2a42;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #22d3ee;
  --accent-hover: #06b6d4;
  --accent-glow: rgba(34, 211, 238, 0.15);
  --gradient: linear-gradient(135deg, #06b6d4, #8b5cf6);
  --gradient-hover: linear-gradient(135deg, #22d3ee, #a78bfa);
  --border: #1e293b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --transition: 0.3s ease;
  --font: 'Inter', -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: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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 16px rgba(6, 182, 212, 0.3);
}

.btn--primary:hover {
  background: var(--gradient-hover);
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
  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);
}

.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(11, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo span {
  background: linear-gradient(135deg, red, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: 160px 0 120px;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

/* ===== 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(34, 211, 238, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.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: 100px 0;
}

.pricing__card {
  max-width: 480px;
  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;
}

.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: linear-gradient(135deg, red, #8b5cf6);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
  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;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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 .btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.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(34, 211, 238, 0.2);
}

.faq__item.active {
  border-color: rgba(34, 211, 238, 0.3);
}

.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;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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;
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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%, rgba(6, 182, 212, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

.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;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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(34, 211, 238, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.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(34, 211, 238, 0.2);
}

.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;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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-glow);
  border: 2px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.15), 0 0 80px rgba(139, 92, 246, 0.08);
}
.seo-hero__logo--buy::after { background: rgba(34, 211, 238, 0.5); }
.seo-hero__logo--buy::before { border-color: rgba(34, 211, 238, 0.1); }

@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); }
}

.btn.btn--primary.btn--lg.btn--full {
	margin-bottom: 15px;
}

/* 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: #1a2236;
		height: 327px;
	  }
	  .nav__link {

		background: #1a2236;
	  }



}