/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #682AC7;
  --accent:  #8B5CF6;
  --pink:    #EC4899;
  --green:   #10B981;
  --blue:    #3B82F6;
  --gold:    #F59E0B;
  --bg:      #0F172A;
  --surface: #1E293B;
  --card:    #1a2640;
  --text:    #F8FAFC;
  --muted:   #94A3B8;
  --border:  rgba(139,92,246,0.15);
  --radius:  20px;
  --font:    'Inter', sans-serif;
  --font2:   'Outfit', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--font2); font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin: 12px 0; }
.section-header p { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }
.section-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3);
  color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.section-badge.gold { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: var(--gold); }

/* ── ORB BACKGROUNDS ── */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: rgba(104,42,199,0.2); top: -150px; right: -100px; }
.orb-2 { width: 350px; height: 350px; background: rgba(236,72,153,0.12); bottom: 100px; left: -80px; }
.orb-3 { width: 300px; height: 300px; background: rgba(139,92,246,0.1); top: 40%; left: 40%; }
.orb-4 { width: 400px; height: 400px; background: rgba(104,42,199,0.15); top: 0; left: -100px; }
.orb-5 { width: 450px; height: 450px; background: rgba(236,72,153,0.1); bottom: 0; right: -100px; }
.orb-6 { width: 600px; height: 600px; background: rgba(139,92,246,0.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s;
}
#navbar.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font2); font-weight: 800; font-size: 1.3rem; }
.logo-icon { font-size: 1.4rem; }
.logo-icon-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 22px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 600; font-size: 0.9rem; transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; display: block; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; gap: 16px; background: rgba(15,23,42,0.97); border-top: 1px solid var(--border); }
.mobile-menu a { color: var(--muted); font-weight: 500; }
.mobile-menu.open { display: flex; }
.mobile-cta { color: var(--accent) !important; font-weight: 700 !important; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 6px;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1100;
}
.lang-dropdown.show {
  display: flex;
}
.lang-opt {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 12px;
  text-align: left;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.lang-opt:hover {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text);
}
.lang-opt.active {
  color: var(--accent);
  background: rgba(139, 92, 246, 0.08);
}
.mobile-lang-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mobile-lang-btn {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 24px 80px; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.3);
  font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: var(--font2); font-size: clamp(2.8rem,5vw,4.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.hero-desc { color: var(--muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; max-width: 460px; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-family: var(--font2); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: inline-block;
  height: 48px;
  transition: transform 0.2s, opacity 0.2s;
}
.store-badge svg {
  height: 48px;
  width: auto;
}
.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(104,42,199,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(104,42,199,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: white; transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--accent); color: var(--accent); transition: background 0.2s;
}
.btn-outline:hover { background: rgba(139,92,246,0.1); }

/* ── PHONE MOCKUP ── */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-wrapper { position: relative; width: 280px; }
.phone-glow {
  position: absolute; inset: -30px; border-radius: 60px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.phone-frame {
  position: relative; background: #1a1a2e; border-radius: 40px;
  border: 2px solid rgba(139,92,246,0.3); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-notch {
  width: 80px; height: 6px; background: #0d0d1a;
  border-radius: 0 0 10px 10px; margin: 12px auto 0;
}
.phone-screen img { width: 100%; display: block; }
.floating-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(30,41,59,0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(139,92,246,0.2); border-radius: 14px;
  padding: 10px 14px; min-width: 150px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}
.card-uv  { top: 60px; left: -80px; animation-delay: 0s; }
.card-score { bottom: 120px; right: -80px; animation-delay: 2s; }
.card-tip { bottom: 40px; left: -70px; animation-delay: 4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fc-icon { font-size: 1.4rem; }
.score-icon {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.75rem; font-weight: 800; color: white;
}
.fc-info { display: flex; flex-direction: column; }
.fc-title { font-size: 0.7rem; color: var(--muted); }
.fc-value { font-size: 0.82rem; font-weight: 700; }
.fc-value.safe { color: var(--green); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.8rem; z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted); transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ── FEATURES ── */
#features { padding: 120px 24px; position: relative; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  padding: 32px; border-radius: var(--radius); border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); }
.fc-purple { background: rgba(104,42,199,0.08); border-color: rgba(104,42,199,0.2); }
.fc-purple:hover { box-shadow: 0 20px 60px rgba(104,42,199,0.2); }
.fc-violet { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); }
.fc-violet:hover { box-shadow: 0 20px 60px rgba(139,92,246,0.2); }
.fc-green  { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.fc-green:hover  { box-shadow: 0 20px 60px rgba(16,185,129,0.2); }
.fc-pink   { background: rgba(236,72,153,0.08); border-color: rgba(236,72,153,0.2); }
.fc-pink:hover   { box-shadow: 0 20px 60px rgba(236,72,153,0.2); }
.fc-blue   { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.2); }
.fc-blue:hover   { box-shadow: 0 20px 60px rgba(59,130,246,0.2); }
.fc-orange { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }
.fc-orange:hover { box-shadow: 0 20px 60px rgba(245,158,11,0.2); }
.fc-card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font2); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 6px; }
.feature-list li { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ── HOW IT WORKS ── */
#how-it-works { padding: 120px 24px; position: relative; overflow: hidden; }
.steps-wrapper { display: flex; align-items: flex-start; gap: 0; position: relative; z-index: 1; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-number {
  font-family: var(--font2); font-size: 4rem; font-weight: 900;
  color: rgba(139,92,246,0.12); line-height: 1; margin-bottom: 16px;
}
.step-content { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-content h3 { font-family: var(--font2); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.step-connector {
  flex: 0 0 60px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 56px; opacity: 0.4;
}

/* ── PREMIUM ── */
#premium { padding: 120px 24px; position: relative; }
.premium-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}
.premium-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
}
.pf-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s, background 0.3s;
}
.pf-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}
.pf-check {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}
.pf-item strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.pf-item p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1050px;
}
.pricing-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px;
  position: relative; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.trial-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.pricing-card.best-value {
  background: linear-gradient(135deg, rgba(104,42,199,0.15), rgba(139,92,246,0.1));
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.25);
}
.best-badge {
  position: absolute; top: -12px; right: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 4px 14px; border-radius: 20px; font-size: 0.72rem; font-weight: 800;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}
.pricing-card h3 { font-family: var(--font2); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-amount { font-family: var(--font2); font-size: 2.5rem; font-weight: 900; }
.price-period { color: var(--muted); font-size: 0.95rem; }
.price-note { color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; }
.pricing-btn { width: 100%; text-align: center; justify-content: center; border-radius: 12px; }

/* ── TESTIMONIALS ── */
#testimonials { padding: 120px 0; position: relative; overflow: hidden; }
#testimonials .section-inner { padding: 0 24px; }
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.testi-card.featured-testi {
  background: linear-gradient(135deg, rgba(104,42,199,0.1), rgba(139,92,246,0.08));
  border-color: rgba(104,42,199,0.3);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  font-weight: 800; font-size: 0.95rem;
}
.testi-author strong { display: block; font-size: 0.88rem; }
.testi-author span { color: var(--muted); font-size: 0.78rem; }

/* ── DOWNLOAD ── */
#download { padding: 120px 24px; position: relative; overflow: hidden; }
.download-box {
  background: linear-gradient(135deg, rgba(104,42,199,0.15), rgba(139,92,246,0.1), rgba(236,72,153,0.08));
  border: 1px solid rgba(139,92,246,0.25); border-radius: 32px; padding: 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  position: relative; z-index: 1; overflow: hidden;
}
.dl-badge {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-bottom: 16px;
}
.dl-content h2 { font-family: var(--font2); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.dl-content p { color: var(--muted); font-size: 1rem; margin-bottom: 32px; }
.dl-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-radius: 14px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.2s;
}
.store-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-sub { display: block; font-size: 0.7rem; color: var(--muted); }
.store-main { display: block; font-size: 1rem; font-weight: 700; }
.dl-visual { width: 220px; }
.dl-visual img { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 16px; line-height: 1.6; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.fl-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--text); }
.fl-col a { display: block; color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.fl-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.disclaimer-note { font-size: 0.75rem !important; }

/* ── AOS ANIMATIONS ── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate    { transform: scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .premium-wrapper { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-badge { margin: 0 auto 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-wrapper { flex-direction: column; gap: 24px; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }

  .download-box { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  .dl-btns { justify-content: center; }
  .dl-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { justify-content: center; text-align: center; }
  .pricing-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #hero { padding: 100px 16px 60px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .dl-btns { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
}
