/* ===== ASTARS — Dark Premium Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep:       #04040f;
  --bg-main:       #07071a;
  --bg-card:       rgba(138, 100, 200, 0.05);
  --bg-card-hover: rgba(138, 100, 200, 0.12);
  --bg-glass:      rgba(15, 12, 35, 0.7);

  --gold:          #C9A227;
  --gold-light:    #E8BC3A;
  --gold-dim:      rgba(201, 162, 39, 0.15);
  --violet:        #9B7FD4;
  --violet-light:  #B89EE8;
  --violet-dim:    rgba(155, 127, 212, 0.1);
  --rose:          #E87DA8;

  --text-primary:  #EDE8F8;
  --text-secondary:rgba(237, 232, 248, 0.65);
  --text-muted:    rgba(237, 232, 248, 0.38);

  --border:        rgba(155, 127, 212, 0.15);
  --border-gold:   rgba(201, 162, 39, 0.25);
  --border-hover:  rgba(155, 127, 212, 0.4);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 32px rgba(4, 4, 15, 0.6);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.18);
  --shadow-violet: 0 0 40px rgba(155, 127, 212, 0.2);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

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

section { padding: 90px 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-star {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--violet-dim);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0700;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet-light);
  background: var(--violet-dim);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 9px 16px;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

#star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,127,212,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  bottom: 50px;
  left: -80px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero h1 .gold { color: var(--gold); }
.hero h1 .italic { font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero visual right side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}

.hero-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, rgba(155,127,212,0.35), rgba(7,7,26,0) 70%);
  border: 1px solid rgba(155,127,212,0.2);
  animation: float 6s ease-in-out infinite;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.15);
  animation: rotate-slow 20s linear infinite;
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(155,127,212,0.1);
  animation: rotate-slow 30s linear infinite reverse;
}

.hero-zodiac-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(155,127,212,0.12);
  animation: rotate-slow 60s linear infinite;
}

.zodiac-icon {
  position: absolute;
  font-size: 1.1rem;
  color: var(--violet);
  opacity: 0.5;
  transform-origin: center;
  animation: float 4s ease-in-out infinite;
}

.hero-card-float {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
}

.hero-card-float:nth-child(2) { animation-delay: -2s; }
.hero-card-float:nth-child(3) { animation-delay: -4s; }

.hero-card-float.c1 { top: 40px; left: -20px; }
.hero-card-float.c2 { bottom: 60px; right: -10px; }
.hero-card-float.c3 { bottom: 140px; left: -30px; }

.hero-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-card-icon.gold { background: var(--gold-dim); }
.hero-card-icon.violet { background: var(--violet-dim); }
.hero-card-icon.rose { background: rgba(232,125,168,0.1); }

.hero-card-text { font-size: 0.82rem; }
.hero-card-text strong { display: block; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 1px; }
.hero-card-text span { color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(155,127,212,0.03);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.marquee-item .star { color: var(--gold); font-size: 0.7rem; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-violet);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--violet-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.service-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
}

.service-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0700;
}

.services-more {
  text-align: center;
  margin-top: 44px;
}

/* Service tags */
.service-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.tag-popular { background: rgba(201,162,39,0.12); color: var(--gold-light); }
.tag-new { background: rgba(155,127,212,0.12); color: var(--violet-light); }
.tag-hit { background: rgba(232,125,168,0.12); color: var(--rose); }

/* ─── HOW IT WORKS ─── */
.how-section { background: rgba(155,127,212,0.03); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.step-item p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── SPECIALISTS ─── */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.specialist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: var(--transition);
}

.specialist-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.specialist-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(155,127,212,0.15));
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.specialist-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.specialist-title {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.specialist-bio {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.specialist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-tag {
  background: var(--violet-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.76rem;
  color: var(--violet-light);
  font-weight: 500;
}

.specialist-exp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.specialist-exp .star { color: var(--gold); }

/* ─── PRICING PREVIEW ─── */
.pricing-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,127,212,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0;
  justify-content: center;
}

.toggle-label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.toggle-label.active { color: var(--text-primary); }

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.toggle-switch.on { background: var(--violet-dim); border-color: var(--violet); }

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: var(--transition);
}
.toggle-switch.on .toggle-thumb {
  left: 27px;
  background: var(--violet);
}

.toggle-badge {
  background: rgba(155,127,212,0.12);
  border: 1px solid var(--border);
  color: var(--violet-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

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

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.plan-card.featured {
  border-color: var(--violet);
  background: linear-gradient(160deg, rgba(155,127,212,0.1) 0%, rgba(7,7,26,0.8) 100%);
  box-shadow: 0 0 60px rgba(155,127,212,0.15);
}

.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured:hover { box-shadow: 0 8px 60px rgba(155,127,212,0.25); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet), #7B5EA7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.plan-currency {
  font-size: 1.1rem;
  color: var(--gold);
  padding-bottom: 4px;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(155,127,212,0.15);
  color: var(--violet);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.no { color: var(--text-muted); }
.plan-features li.no .check {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--bg-main); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

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

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-dim), var(--gold-dim));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--violet-light);
  flex-shrink: 0;
}

.review-name { font-size: 0.88rem; font-weight: 600; }
.review-meta { font-size: 0.75rem; color: var(--text-muted); }

.review-service {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ─── CTA BLOCK ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(155,127,212,0.12) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto 24px;
}

.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}

.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--violet); background: rgba(155,127,212,0.05); }

.cta-hint {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--border-hover); }

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

.faq-question:hover { color: var(--violet-light); }

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--violet);
  color: var(--violet);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 14px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--violet); color: var(--violet-light); background: var(--violet-dim); }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-sk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE NAV DRAWER ─── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(4,4,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px;
  transition: var(--transition);
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

/* ─── DIVIDER ─── */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  border-radius: 2px;
  margin: 20px 0;
}

/* ─── PRICING PAGE SPECIFIC ─── */
.pricing-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  background: rgba(155,127,212,0.06);
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.comparison-table th.plan-col {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
}
.comparison-table th.plan-col.featured-col { color: var(--violet-light); }

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(155,127,212,0.06);
  color: var(--text-secondary);
}

.comparison-table td.center { text-align: center; }
.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:hover td { background: rgba(155,127,212,0.03); }

.check-yes { color: var(--violet); font-size: 1rem; }
.check-no { color: var(--text-muted); }

/* ─── ORDER MODAL ─── */
.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal.open { display: flex; }

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 15, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.order-modal-card {
  position: relative;
  z-index: 1;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card);
  animation: modal-pop 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.order-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.order-modal-close:hover { color: var(--text-primary); }

.order-modal-icon { font-size: 2.4rem; text-align: center; margin-bottom: 10px; }
.order-modal-title { font-family: var(--font-display); font-size: 1.5rem; text-align: center; margin-bottom: 6px; }
.order-modal-service { text-align: center; color: var(--gold); font-weight: 600; font-size: 0.95rem; margin-bottom: 24px; }

.order-form { display: flex; flex-direction: column; gap: 16px; }
.order-form-row { display: flex; gap: 14px; }
.order-form-row .order-field { flex: 1; }

.order-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.order-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.02em; }
.order-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
}
.order-field input::placeholder { color: var(--text-muted); }
.order-field input:focus { border-color: var(--violet); background: rgba(155, 127, 212, 0.06); }

.order-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.order-agree input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer; }
.order-agree a { color: var(--violet-light); text-decoration: underline; }

.order-submit { width: 100%; margin-top: 6px; justify-content: center; }

.order-success { text-align: center; padding: 10px 0; }
.order-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(107, 186, 117, 0.15);
  border: 1px solid rgba(107, 186, 117, 0.4);
  color: #6bba75;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.order-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.order-success p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }

/* ─── LEGAL PAGES ─── */
.legal-page { padding: 130px 0 80px; }
.legal-page .container { max-width: 880px; }
.legal-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-intro { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.legal-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--violet)); border-radius: 2px; margin: 24px 0 40px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 1.02rem; color: var(--violet-light); margin: 22px 0 10px; }
.legal-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin: 0 0 14px 0; padding-left: 22px; }
.legal-content li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 8px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .specialists-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .specialist-card { flex-direction: column; }
  .cta-form { flex-direction: column; }

  .hero-stats { gap: 20px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  .marquee-item { padding: 14px 24px; font-size: 0.8rem; }
  .section-sub { font-size: 0.98rem; }
  .footer-bottom { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .order-form-row { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.7rem; }
  .plans-grid { gap: 48px; }
  .service-card { padding: 22px; }
  .order-modal { padding: 12px; }
  .order-modal-card { padding: 30px 20px; }
  .hero-stats { gap: 16px 24px; }
  .hero-stat-num { font-size: 1.5rem; }
}
