/* ═══════════════════════════════════════════════════════════════
   ASTROSAGE — DESIGN SYSTEM & STYLES
   Theme: Midnight Galaxy | Fonts: Cinzel + Inter
═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-void:       #050508;
  --bg-deep:       #0a0a14;
  --bg-card:       #0f0f1e;
  --bg-card-hover: #141428;
  --bg-glass:      rgba(15, 15, 30, 0.7);

  --gold:          #c9a84c;
  --gold-light:    #e8b86d;
  --gold-dim:      rgba(201, 168, 76, 0.15);
  --gold-glow:     rgba(201, 168, 76, 0.4);

  --purple:        #6b5ce7;
  --purple-light:  #a78bfa;
  --purple-dim:    rgba(107, 92, 231, 0.15);
  --purple-glow:   rgba(107, 92, 231, 0.4);

  --text-primary:  #f0eaff;
  --text-secondary:#b8b0d0;
  --text-muted:    #6b6585;

  --border:        rgba(201, 168, 76, 0.12);
  --border-hover:  rgba(201, 168, 76, 0.35);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --shadow-gold:   0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-purple: 0 0 40px rgba(107, 92, 231, 0.2);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display:  'Cinzel', serif;
  --font-body:     'Inter', sans-serif;

  --nav-h:         72px;
  --container:     1200px;
}

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

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

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CANVAS STARFIELD ───────────────────────────────────────── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a14;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--sm  { padding: 8px 20px;  font-size: 0.875rem; }
.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL 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.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }
.reveal--delay-4 { transition-delay: 0.6s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,92,231,0.25) 0%, transparent 70%);
  top: 10%; left: -10%;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  top: 30%; right: -5%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  bottom: 10%; left: 40%;
  animation: float 12s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

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

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── HERO PHONE ─────────────────────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero__phone {
  width: 280px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1e);
  border-radius: 36px;
  border: 1px solid var(--border-hover);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.1),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(107,92,231,0.15);
  position: relative;
}

.hero__phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #050508;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.hero__phone-screen {
  padding: 40px 16px 16px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(201,168,76,0.06);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.hero__phone-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__phone-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero__phone-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__phone-status {
  font-size: 0.65rem;
  color: #4ade80;
}

.hero__phone-actions {
  display: flex;
  gap: 8px;
}

.hero__phone-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.hero__chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.72rem;
  line-height: 1.5;
  animation: fadeInUp 0.5s ease forwards;
}

.hero__chat-msg--in {
  background: rgba(107,92,231,0.2);
  border: 1px solid rgba(107,92,231,0.3);
  border-bottom-left-radius: 4px;
  color: var(--text-primary);
  align-self: flex-start;
}

.hero__chat-msg--out {
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  border-bottom-right-radius: 4px;
  color: var(--gold-light);
  align-self: flex-end;
}

.hero__chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(107,92,231,0.15);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.hero__chat-typing span {
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.hero__chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.hero__chat-typing span:nth-child(3) { animation-delay: 0.4s; }

.hero__phone-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero__phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(107,92,231,0.2) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Floating badges */
.hero__float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.hero__float--1 {
  top: 15%; left: -30%;
  animation: float 5s ease-in-out infinite;
}
.hero__float--2 {
  bottom: 20%; left: -25%;
  animation: float 7s ease-in-out infinite reverse;
}
.hero__float--3 {
  top: 10%; right: -20%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(15,15,30,0.5);
  backdrop-filter: blur(10px);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  flex-shrink: 0;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  transition: var(--transition);
  cursor: default;
}
.trust-bar__logo:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
}

.feature-card__icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon-wrap {
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
}

.feature-card__icon {
  width: 24px; height: 24px;
  color: var(--gold);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-card__tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--purple-dim);
  border: 1px solid rgba(107,92,231,0.25);
  border-radius: 50px;
  color: var(--purple-light);
}

/* Mini chat visual */
.feature-card__visual { margin-top: 24px; }

.mini-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-chat__msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 80%;
}

.mini-chat__msg--in {
  background: rgba(107,92,231,0.15);
  border: 1px solid rgba(107,92,231,0.25);
  color: var(--text-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.mini-chat__msg--out {
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  color: var(--gold-light);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Alert preview visual */
.alert-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.alert-item p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(107,92,231,0.04) 50%, transparent 100%);
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step__icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-dim), var(--purple-dim));
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__icon {
  width: 28px; height: 28px;
  color: var(--gold);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step__connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
  flex-shrink: 0;
}

.step__connector-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--border-hover), var(--gold-dim));
}

.step__connector-star {
  width: 16px; height: 16px;
  color: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  flex-shrink: 0;
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonials__btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.testimonials__btn svg { width: 18px; height: 18px; }

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-hover);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.testimonials__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
.pricing {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.pricing__toggle-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing__toggle-btn {
  width: 52px; height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}

.pricing__toggle-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold);
}

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

.pricing__toggle-btn.active .pricing__toggle-thumb {
  left: calc(100% - 23px);
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.pricing__save-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a14;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

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

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

.pricing-card--featured {
  background: linear-gradient(145deg, #141428, #0f0f1e);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim), var(--shadow-gold);
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 60px var(--gold-glow);
}

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a14;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  transition: var(--transition);
}

.pricing-card__period {
  font-size: 0.875rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-card__tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-card__feature--disabled {
  opacity: 0.4;
}

.pricing-card__check {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-card__x {
  width: 16px; height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════════════════════════════
   APP CTA
══════════════════════════════════════════════════════════════ */
.app-cta {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}

.app-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.app-cta__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,92,231,0.2) 0%, transparent 70%);
  top: -20%; left: -10%;
}
.app-cta__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  bottom: -20%; right: -10%;
}

.app-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.app-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dim) 0%, transparent 50%, var(--gold-dim) 100%);
  pointer-events: none;
}

.app-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 20px;
}

.app-cta__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.app-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.store-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.store-btn__icon {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.store-btn__sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-btn__main {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Zodiac Wheel */
.app-cta__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-cta__zodiac-wheel {
  position: relative;
  width: 280px; height: 280px;
}

.zodiac-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.zodiac-ring--outer {
  inset: 0;
  animation: spin-slow 30s linear infinite;
}

.zodiac-ring--inner {
  inset: 60px;
  animation: spin-reverse 20s linear infinite;
  border-color: rgba(107,92,231,0.3);
}

.zodiac-ring span {
  position: absolute;
  font-size: 1.1rem;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%; left: 50%;
  transform-origin: 0 0;
}

.zodiac-ring--outer span {
  transform: rotate(calc(var(--i) * 30deg)) translateY(-130px) rotate(calc(var(--i) * -30deg));
}

.zodiac-ring--inner span {
  transform: rotate(calc(var(--i) * 60deg)) translateY(-70px) rotate(calc(var(--i) * -60deg));
  font-size: 0.9rem;
  color: var(--purple-light);
}

.zodiac-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(20px);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer__social-link svg { width: 16px; height: 16px; }

.footer__links-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

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

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__newsletter-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer__newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.footer__newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.footer__newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

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

.footer__newsletter-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    gap: 48px;
  }

  .hero__subtitle { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__scroll-hint { display: none; }

  .hero__float--1, .hero__float--2 { left: -10%; }
  .hero__float--3 { right: -5%; }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--large { grid-column: span 2; }

  .steps {
    flex-direction: column;
    gap: 24px;
  }
  .step__connector {
    flex-direction: row;
    transform: rotate(90deg);
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .app-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 32px;
    gap: 48px;
  }
  .app-cta__buttons { justify-content: center; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: span 2; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav__links.open + .nav__actions {
    display: flex;
    position: fixed;
    top: calc(var(--nav-h) + 200px);
    left: 0; right: 0;
    padding: 0 24px 24px;
    background: rgba(5,5,8,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    gap: 12px;
  }

  .hero__phone { width: 240px; }
  .hero__float { display: none; }

  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--large { grid-column: span 1; }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__brand { grid-column: span 1; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .app-cta__zodiac-wheel { width: 220px; height: 220px; }

  .trust-bar__logos { gap: 24px; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__stats { gap: 16px; }
  .hero__stat-num, .hero__stat-suffix { font-size: 1.4rem; }

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

  .app-cta__inner { padding: 32px 20px; }
  .app-cta__buttons { flex-direction: column; }

  .pricing__cards { max-width: 100%; }

  .footer__legal { flex-direction: column; gap: 12px; align-items: center; }
}