/* ============================================================
   FalPerest Website — style.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:      #0D0526;
  --bg-med:       #140A38;
  --bg-light:     #1F0F4D;
  --gold:         #FFD600;
  --amber:        #FFBF00;
  --gold-dark:    #D99900;
  --mystic-purple:#8C4DF2;
  --deep-purple:  #591AA6;
  --cosmic-blue:  #263399;
  --star-white:   #F2EDFF;
  --lavender:     #BFADED;
  --card-bg:      rgba(255,255,255,0.06);
  --card-border:  rgba(255,255,255,0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--star-white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Star Canvas ---------- */
#starCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Global Helpers ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.gold-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.gold-link:hover { text-decoration: underline; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,214,0,0.1);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255,214,0,0.25);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--lavender);
  max-width: 580px;
  margin-bottom: 56px;
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,5,38,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(140,77,242,0.5);
}

.nav-brand {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Support pill button in nav */
.nav-support-btn {
  background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 5px 16px;
  border-radius: 99px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.nav-support-btn:hover {
  box-shadow: 0 0 16px rgba(255,214,0,0.45);
  transform: translateY(-1px);
  color: var(--bg-dark) !important;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,5,38,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0 20px;
}
.mobile-menu a {
  padding: 12px 24px;
  font-size: 16px;
  color: var(--lavender);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ---------- CTA Button (App Store style) ---------- */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--gold-dark));
  color: #0D0526;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255,214,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255,214,0,0.45);
}
.btn-appstore.large {
  font-size: 18px;
  padding: 16px 40px;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.glow-purple {
  width: 500px; height: 500px;
  background: var(--mystic-purple);
  top: 10%; left: -10%;
}
.glow-gold {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: 15%; right: 5%;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.3);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-app-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(140,77,242,0.6), 0 0 80px rgba(140,77,242,0.2);
  position: relative;
  z-index: 1;
}

.hero-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,214,0,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring1 { width: 140px; height: 140px; animation-delay: 0s; }
.ring2 { width: 180px; height: 180px; animation-delay: 1s; border-color: rgba(140,77,242,0.2); }

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.05); opacity: 1; }
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--lavender);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero Phone ---------- */
.hero-phone-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.phone-mockup {
  width: 240px;
  height: 490px;
  background: linear-gradient(180deg, #1C0E45, #100830);
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(140,77,242,0.2);
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}

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

.phone-notch {
  width: 90px;
  height: 20px;
  background: #0D0526;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.phone-screen {
  padding: 10px 12px;
}

.screen-header {
  margin-bottom: 10px;
}
.screen-greeting {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.screen-sub {
  font-size: 9px;
  color: var(--lavender);
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.screen-card {
  border-radius: 14px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}
.screen-card span {
  font-size: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.card-coffee    { background: linear-gradient(135deg,#724018,#4D2608); }
.card-tarot     { background: linear-gradient(135deg,#8C33A6,#4D1A73); }
.card-horoscope { background: linear-gradient(135deg,#263FA6,#141E73); }
.card-palm      { background: linear-gradient(135deg,#996633,#663318); }
.card-dream     { background: linear-gradient(135deg,#1A2680,#0D1459); }
.card-num       { background: linear-gradient(135deg,#80264D,#591433); }

.screen-coin {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255,214,0,0.2);
  font-size: 12px;
}
.coin-txt {
  font-size: 9px;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(140,77,242,0.15);
  border-color: rgba(255,255,255,0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--lavender);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(20,10,56,0.6), transparent);
  position: relative;
  z-index: 2;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-dark);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(255,214,0,0.4);
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--lavender);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 auto;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--mystic-purple));
  margin-top: 26px;
  opacity: 0.4;
}

/* Coin Packs */
.coin-packs {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.coin-pack {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  min-width: 160px;
  position: relative;
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
}
.coin-pack:hover { transform: translateY(-4px); }

.coin-pack.popular {
  border-color: rgba(255,214,0,0.4);
  background: rgba(255,214,0,0.06);
  box-shadow: 0 0 40px rgba(255,214,0,0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pack-icon { font-size: 36px; margin-bottom: 10px; }
.pack-coins {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.pack-desc {
  font-size: 12px;
  color: var(--lavender);
  margin-bottom: 10px;
}
.pack-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--lavender);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ---------- SCREENSHOTS ---------- */
.screenshots {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.screens-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.mini-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mini-phone .mini-screen {
  width: 160px;
  height: 320px;
  background: linear-gradient(180deg, #1C0E45, #100830);
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(140,77,242,0.15);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.mini-phone .mini-screen::-webkit-scrollbar { display: none; }

.mini-phone.main-phone .mini-screen {
  width: 190px;
  height: 380px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 50px rgba(140,77,242,0.25);
  border-color: rgba(255,214,0,0.2);
}

.mini-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--lavender);
  letter-spacing: 0.05em;
}

/* Mini screen internals */
.ms-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.ms-sub {
  font-size: 9px;
  color: var(--lavender);
  margin-bottom: 12px;
  line-height: 1.4;
}
.ms-row {
  font-size: 8px;
  color: var(--star-white);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: left;
}
.ms-btn {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg-dark);
  font-size: 9px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 10px;
  text-align: center;
}
.ms-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-bottom: 8px;
}
.ms-card2 {
  border-radius: 8px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ms-card2 span {
  font-size: 6px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.ms-pack {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 7px;
  color: #fff;
  margin-bottom: 4px;
  text-align: left;
}
.ms-pack.popular-pack {
  border-color: rgba(255,214,0,0.3);
  background: rgba(255,214,0,0.06);
  color: var(--gold);
}

/* ---------- ZODIAC ---------- */
.zodiac-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.zodiac-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: transform 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
  cursor: default;
}
.zodiac-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,214,0,0.35);
}

.zodiac-sym {
  font-size: 28px;
  margin-bottom: 4px;
}

.zodiac-item span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.zodiac-item small {
  font-size: 9px;
  color: var(--lavender);
  text-align: center;
  line-height: 1.3;
}

/* ---------- LEGAL SECTIONS ---------- */
.legal-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
.legal-section.alt-bg {
  background: linear-gradient(180deg, transparent, rgba(20,10,56,0.5), transparent);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: transform 0.25s;
}
.legal-card:hover { transform: translateY(-3px); }

.legal-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 14px;
}
.legal-num.gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 0 12px rgba(255,214,0,0.35);
}
.legal-num.purple {
  background: linear-gradient(135deg, var(--mystic-purple), var(--deep-purple));
  box-shadow: 0 0 12px rgba(140,77,242,0.35);
  color: #fff;
}

.legal-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.legal-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.legal-card strong { color: var(--gold); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(140,77,242,0.15), rgba(89,26,166,0.1));
  border: 1px solid rgba(140,77,242,0.3);
  border-radius: 32px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(140,77,242,0.5);
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 16px;
  color: var(--lavender);
  margin-bottom: 36px;
}

/* ---------- CONTACT ---------- */
.contact-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 40px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.contact-icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--mystic-purple), var(--deep-purple));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(140,77,242,0.3);
}

.contact-label {
  font-size: 13px;
  color: var(--lavender);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-email {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.contact-email:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-brand {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--lavender);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.sep { color: rgba(255,255,255,0.2); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  max-width: 480px;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-cta { justify-content: center; }
  .hero-phone-wrap { order: -1; }
  .hero-icon-wrap { margin: 0 auto 24px; }

  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 32px; margin-top: 0; }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 28px;
  }

  .screens-row { gap: 20px; }
  .mini-phone.main-phone .mini-screen { width: 160px; height: 320px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
  .legal-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 20px; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(140,77,242,0.4); border-radius: 3px; }
