﻿/* ================================
   ZodiacZen — Landing Styles
   ================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0A0E1A;
  color: #E8E6E3;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- COLORS ---------- */
:root {
  --bg-deep: #0A0E1A;
  --bg-card: #131B2E;
  --bg-void: #070A14;
  --gold: #D4A853;
  --gold-hover: #F0C060;
  --text-primary: #E8E6E3;
  --text-muted: #8B8FA3;
  --border-faint: rgba(212, 168, 83, 0.15);
}

/* ---------- ANIMATIONS ---------- */
@keyframes flicker {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.1; }
.gold { color: var(--gold); }
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero__kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero__kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.5;
}
.kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.hero__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #D4A853 0%, #F0C060 40%, #E8D5A3 60%, #D4A853 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(212, 168, 83, 0.1);
}
.hero__subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 44px;
}
.hero__badges span {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-faint);
  background: rgba(255, 255, 255, 0.02);
  font-size: 12px;
  color: var(--text-muted);
  transition: 0.2s;
}
.hero__badges span:hover {
  border-color: rgba(212, 168, 83, 0.3);
  color: var(--text-primary);
}
.hero__counter {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__counter::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__counter span {
  color: var(--gold);
  font-weight: 600;
}

/* ================================
   PRICING DISCLAIMER
   ================================ */
.comparison {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(212, 168, 83, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(196, 69, 105, 0.03) 0%, transparent 60%);
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comparison__col {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.comparison__col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.comparison__col--bad {
  border-color: rgba(196, 69, 105, 0.15);
}
.comparison__col--bad::before {
  background: linear-gradient(90deg, rgba(196, 69, 105, 0.2), rgba(196, 69, 105, 0.4), rgba(196, 69, 105, 0.2));
}
.comparison__col--bad:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(196, 69, 105, 0.08);
}
.comparison__col--good {
  border-color: rgba(212, 168, 83, 0.25);
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.06), var(--bg-card));
}
.comparison__col--good::before {
  background: linear-gradient(90deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.6), rgba(212, 168, 83, 0.2));
}
.comparison__col--good:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(212, 168, 83, 0.1);
}
.comparison__heading {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}
.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.comparison__list li {
  padding-left: 24px;
  position: relative;
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}
.comparison__col--bad .comparison__list li {
  color: rgba(232, 230, 227, 0.55);
}
.comparison__col--bad .comparison__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c44569;
  opacity: 0.7;
}
.comparison__col--good .comparison__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.comparison__col .pic-placeholder {
  margin-top: 0;
}
.comparison__note {
  margin-top: 32px;
  padding: 28px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.03));
  border: 1px solid rgba(212, 168, 83, 0.15);
  width: 100%;
  text-align: center;
}
.comparison__note-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.comparison__note-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ================================
   STEPS (3 шага)
   ================================ */
.steps {
  position: relative;
  background:
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(212, 168, 83, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 168, 83, 0.02) 0%, transparent 50%);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.3), rgba(212, 168, 83, 0.2), transparent);
  pointer-events: none;
}
.step-card {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  text-align: center;
  overflow: visible;
}
.step-card__inner {
  position: relative;
  padding: 48px 28px 36px;
  border-radius: 20px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step-card__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 8px 40px rgba(212, 168, 83, 0.08);
}
.step-card__num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0E1A;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}
.step-card__icon { font-size: 36px; margin-bottom: 14px; display: block; }
.step-card__title { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step-card__text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(10, 14, 26, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(212, 168, 83, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
#starsCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero__content {
  flex: 1;
  max-width: 580px;
  text-align: left;
}
.hero__visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 280px;
  height: auto;
  opacity: 0.7;
  display: block;
}

.particle-logo-container {
  position: relative;
  width: 280px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.particle {
  position: absolute;
  background: #D4A853;
  border-radius: 50%;
  pointer-events: none;
}

/* ================================
   FEATURES
   ================================ */
.features {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 168, 83, 0.03) 0%, transparent 60%);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border-faint);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.02), var(--bg-card));
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card__icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.08);
}
.feature-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.feature-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
}
.feature-card__badge--free {
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
}

/* ================================
   HERO
   ================================ */

/* ================================
   EXAMPLE
   ================================ */
.example {
  position: relative;
  background:
    radial-gradient(ellipse 30% 40% at 50% 0%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
}
.example__card { max-width: 520px; margin: 0 auto; }
.example__bubble {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), var(--bg-card));
  border: 1px solid var(--border-faint);
  border-radius: 0 20px 20px 20px;
  padding: 24px;
  display: flex;
  gap: 14px;
  position: relative;
  margin-top: 16px;
}
.example__bubble::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 14px;
  height: 14px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-faint);
  border-left: 1px solid var(--border-faint);
  transform: rotate(45deg);
}
.example__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #F0C060);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 168, 83, 0.2);
}
.example__text p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials {
  position: relative;
  background:
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(212, 168, 83, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 168, 83, 0.02) 0%, transparent 50%);
}
.testimonials__rating {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonials__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}
.testimonials__score {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonials__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 83, 0.2) transparent;
}
.testimonials__carousel::-webkit-scrollbar {
  height: 4px;
}
.testimonials__carousel::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials__carousel::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 83, 0.2);
  border-radius: 4px;
}
.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--border-faint);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.02), var(--bg-card));
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 83, 0.2);
}
.testimonial-card blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.testimonial-card blockquote footer {
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-card blockquote footer::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--border-faint);
}

/* ================================
   FAQ
   ================================ */
.faq {
  position: relative;
  background:
    radial-gradient(ellipse 30% 30% at 50% 100%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  border: 1px solid var(--border-faint);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}
.faq__item[open] {
  border-color: rgba(212, 168, 83, 0.25);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: background 0.2s;
  cursor: pointer;
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq__item[open] .faq__arrow {
  transform: rotate(-135deg);
}
.faq__answer {
  max-height: 0;
  padding: 0 24px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__item[open] .faq__answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, #D4A853 0%, #CDA145 100%);
  color: #0A0E1A;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #E0B865 0%, #D9B157 100%);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.3);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-faint);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 168, 83, 0.3);
}
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ================================
   FOOTER
   ================================ */
.footer {
  position: relative;
  padding: 48px 0 40px;
  border-top: 1px solid var(--border-faint);
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(212, 168, 83, 0.02) 0%, transparent 50%);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo-img {
  height: 81px;
  transition: height 0.3s;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer__links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__links a:hover {
  color: var(--text-primary);
}
.footer__cta .btn {
  padding: 10px 24px;
  font-size: 13px;
}

/* Legal Section */
.footer__legal-container {
  border-top: 1px solid var(--border-faint);
  margin-top: 30px;
  padding-top: 30px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__company h4 {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
}
.footer__company p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 4px;
  opacity: 0.7;
}
.footer__legal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 12px;
}
.footer__legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal-links a:hover {
  color: var(--text-primary);
}

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom-color: rgba(212, 168, 83, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo-img {
  height: 36px;
  transition: height 0.3s;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.header__nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.header__nav a:hover {
  opacity: 1;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: center;
}
.header__nav a:hover::after {
  transform: scaleX(1);
}
.header__burger {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.header__burger span,
.header__burger span::before,
.header__burger span::after {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}
.header__burger span::before {
  content: '';
  transform: translateY(-7px);
}
.header__burger span::after {
  content: '';
  transform: translateY(5px);
}
.header__nav--open {
  display: flex;
}

/* ================================
   LEGAL PAGES
   ================================ */
.legal-main {
  padding: 120px 0 60px;
}
.legal-header {
  margin-bottom: 40px;
}
.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}
.legal-last-updated {
  color: var(--text-muted);
  font-size: 14px;
}
.legal-content {
  font-size: 16px;
  line-height: 1.7;
}
.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  font-weight: 700;
}
.legal-content h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  font-weight: 600;
}
.legal-content h4 {
  font-size: 18px;
  margin: 25px 0 12px;
  font-weight: 600;
}
.legal-content p {
  margin-bottom: 20px;
  color: var(--text-primary);
}
.legal-content ul, .legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}
.legal-content a:hover {
  text-decoration: none;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.legal-content th, .legal-content td {
  border: 1px solid var(--border-faint);
  padding: 12px 15px;
  text-align: left;
}
.legal-content th {
  background: rgba(212, 168, 83, 0.1);
  font-weight: 600;
}

/* ================================
   MINI-FORM (hero)
   ================================ */
.hero__miniform {
  max-width: 520px;
  margin: 24px auto 16px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  text-align: center;
}
.miniform__row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.miniform__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.miniform__field label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.miniform__field input {
  width: 72px;
  padding: 10px 8px;
  border-radius: 8px;
  border: 1px solid var(--border-faint);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  text-align: center;
  transition: 0.2s;
}
.miniform__field input:focus {
  outline: none;
  border-color: var(--gold);
}
.miniform__field--optional input {
  width: 90px;
}
.miniform__hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ================================
   COMPARE TABLE (3-колонки)
   ================================ */
.compare-table {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 168, 83, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 80%, rgba(212, 168, 83, 0.02) 0%, transparent 50%);
}
.compare-table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
}
.compare-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.compare-table__table th,
.compare-table__table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-faint);
  text-align: left;
  vertical-align: top;
}
.compare-table__table thead th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
}
.compare-table__table thead th:first-child {
  color: var(--text-muted);
}
.compare-table__table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.compare-table__table tbody tr:first-child td {
  border-top: none;
}
.compare-table__table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}
.compare-table__highlight {
  color: var(--gold);
  font-weight: 600;
}
.compare-table__table tbody tr:hover .compare-table__highlight {
  background: rgba(212, 168, 83, 0.06);
}

/* ================================
   TRUST / METHODOLOGY
   ================================ */
.trust {
  position: relative;
  background:
    radial-gradient(ellipse 40% 50% at 50% 0%, rgba(212, 168, 83, 0.03) 0%, transparent 60%);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.06);
}
.trust-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.1);
}
.trust-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.trust-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.trust__disclaimer {
  margin-top: 40px;
  padding: 16px 24px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  border-top: 1px solid var(--border-faint);
}

.particle-logo-canvas {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.particle-logo-canvas.is-visible {
  opacity: 1;
}

.hero__logo.particle-logo {
  display: none;
}
/* ================================
   PRICING CARDS
   ================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.pricing-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.1);
}
.pricing-card--popular {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.1);
}
.pricing-card--popular:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(212, 168, 83, 0.15);
}
.pricing-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #0A0E1A;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.pricing-card__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-faint);
}
.pricing-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.pricing-card__price {
  margin-bottom: 8px;
}
.pricing-card__amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
}
.pricing-card__original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}
.pricing-card__period {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-card__features {
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card__features strong {
  color: var(--text-primary);
  font-weight: 600;
}
.pricing-card .btn {
  width: 100%;
}

.pricing__referral {
  margin: 48px 0 32px;
}
.referral-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.03));
  border: 1px solid rgba(212, 168, 83, 0.15);
}
.referral-card__icon {
  font-size: 36px;
}
.referral-card__content {
  flex: 1;
}
.referral-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold);
}
.referral-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing__disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ================================
   FOOTER DISCLAIMER
   ================================ */
.footer__disclaimer {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ================================
   SECTIONS
   ================================ */
.section {
  position: relative;
  padding: 80px 0;
}
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section__title { margin-bottom: 32px; }
  .section__subtitle { margin-bottom: 30px; }
  .section__cta { margin-top: 32px; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__cta { display: none; }
  .comparison__grid { grid-template-columns: 1fr; }
  .comparison__col { padding: 24px; }
  .comparison__col--bad { order: 2; }
  .comparison__col--good { order: 1; }
  .comparison__note { font-size: 13px; padding: 18px 20px; flex-direction: column; gap: 10px; text-align: center; }
  .comparison__note-icon { font-size: 24px; }
  .steps__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps__grid::before { display: none; }
  .step-card__inner { padding: 40px 24px 28px; }
  .testimonial-card { flex: 0 0 280px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-direction: column; gap: 12px; }
  
  /* HERO MOBILE */
  .hero { padding: 100px 0 60px; }
  .hero__inner { max-width: 100%; }
  .hero__kicker::before,
  .hero__kicker::after { width: 24px; }
  .hero__title { font-size: 26px; }
  .hero__subtitle { font-size: 15px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .btn--ghost { width: auto; }
  .hero__badges { gap: 6px; margin-top: 32px; }
  .hero__badges span { font-size: 11px; padding: 5px 12px; }
  .hero__counter { font-size: 14px; margin-top: 28px; }
  .header__logo-img { height: 32px; }
  .footer__logo-img { height: 36px; }

  /* PRICING */
  .pricing__grid { grid-template-columns: 1fr; }
  .referral-card { flex-direction: column; text-align: center; }
  
  /* LEGAL */
  .footer__legal { flex-direction: column; gap: 30px; }
  .footer__legal-links { grid-template-columns: 1fr; }
  .footer__cta { width: 100%; text-align: center; }

  /* FAQ mobile */
  .faq__question { padding: 16px 18px; font-size: 13px; }
  .faq__answer { padding: 0 18px 16px; font-size: 13px; }

  /* NEW SECTIONS RESPONSIVE */
  .trust__grid { grid-template-columns: 1fr; }
  .compare-table__table { font-size: 12px; }
  .compare-table__table th,
  .compare-table__table td { padding: 12px 14px; }
  .compare-table__wrapper { border-radius: 12px; margin: 0 -20px; border-left: none; border-right: none; }
}