/* =========================================
   Jenny Mod — Design System
   Fonts: Sora (headings) + Outfit (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --bg-deep: #07060e;
  --bg-base: #0c0a17;
  --bg-surface: #110e22;
  --bg-elevated: #18142e;
  --bg-card: rgba(16, 13, 32, .55);

  --accent-300: #c4b5fd;
  --accent-400: #a78bfa;
  --accent-500: #7c3aed;
  --accent-600: #6d28d9;
  --accent-glow: rgba(124, 58, 237, .3);

  --text-primary: #f0edf8;
  --text-body: #b5aed0;
  --text-muted: #857ea0;
  --text-faint: #5e5878;

  --border-subtle: rgba(139, 92, 246, .06);
  --border-default: rgba(139, 92, 246, .1);
  --border-hover: rgba(139, 92, 246, .22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(124, 58, 237, .3); color: #fff }
::-webkit-scrollbar { width: 8px }
::-webkit-scrollbar-track { background: var(--bg-deep) }
::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, .18); border-radius: 4px }
::-webkit-scrollbar-thumb:hover { background: rgba(139, 92, 246, .32) }

a { color: var(--accent-400); text-decoration: none; transition: color .25s }
a:hover { color: var(--accent-300) }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md) }
ul, ol { list-style: none }
strong { color: var(--text-primary); font-weight: 600 }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Outfit', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800 }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: .6em }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: .5em }
p { margin-bottom: 1em; color: var(--text-body) }
.container { width: 90%; max-width: 1200px; margin: 0 auto }
section { padding: 90px 0 }

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400), var(--accent-300));
  z-index: 10001;
  transform-origin: left;
  will-change: width;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 6, 14, .8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.header.scrolled {
  background: rgba(7, 6, 14, .95);
  border-bottom-color: var(--border-default);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.logo:hover { color: #fff }
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: box-shadow .3s, transform .3s;
}
.logo:hover img {
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.05);
}

/* Nav Links */
.nav-links { display: flex; gap: 4px; align-items: center }
.nav-links a {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .25s;
}
.nav-links a:not(.btn-download):hover,
.nav-links a:not(.btn-download).active { color: var(--text-primary) }
.nav-links a:not(.btn-download)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-500);
  border-radius: 1px;
  transition: width .3s cubic-bezier(.4,0,.2,1), left .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:not(.btn-download):hover::after,
.nav-links a:not(.btn-download).active::after { width: 50%; left: 25% }
.nav-links .btn-download {
  background: var(--accent-500);
  color: #fff;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: .88rem;
  margin-left: 8px;
  box-shadow: 0 2px 16px rgba(124, 58, 237, .25);
  transition: all .3s;
}
.nav-links .btn-download:hover {
  background: var(--accent-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, .4);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 10;
}
.hamburger:focus-visible { outline: 2px solid var(--accent-400); border-radius: 4px }
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0) }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px) }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(7, 6, 14, .98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav.open { display: flex; animation: navSlideDown .3s ease-out }
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px) }
  to { opacity: 1; transform: translateY(0) }
}
.mobile-nav a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-body);
  transition: all .25s;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a.active { background: rgba(139, 92, 246, .08); color: var(--accent-300) }

/* Language Switcher */
.lang-switcher { position: relative }
.lang-btn {
  background: rgba(139, 92, 246, .06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .25s;
}
.lang-btn:hover {
  background: rgba(139, 92, 246, .12);
  color: var(--text-primary);
  border-color: var(--border-hover);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 0 0 1px rgba(139, 92, 246, .05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.97);
  transition: all .2s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--text-body);
  font-size: .9rem;
  transition: all .2s;
  font-weight: 450;
}
.lang-dropdown a:hover { background: rgba(139, 92, 246, .08); color: var(--text-primary) }
.lang-dropdown a.active { color: var(--accent-400); font-weight: 600 }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, .12) 0%, rgba(88, 28, 135, .05) 40%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 15s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, .06) 0%, transparent 60%);
  pointer-events: none;
  animation: heroFloat 20s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlow {
  0% { transform: translateX(-50%) scale(1) }
  100% { transform: translateX(-50%) scale(1.15) }
}
@keyframes heroFloat {
  0% { transform: scale(1) translate(0, 0) }
  100% { transform: scale(1.15) translate(-20px, 10px) }
}

.hero .container { position: relative; z-index: 1 }

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  margin: 0 auto 30px;
  box-shadow: 0 12px 48px rgba(124, 58, 237, .3), 0 0 0 1px rgba(139, 92, 246, .1);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
}
.hero-logo:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 16px 56px rgba(124, 58, 237, .4);
}
.hero h1 {
  margin-bottom: 20px;
  line-height: 1.15;
  background: linear-gradient(135deg, #e8c8ff 0%, #b388ff 30%, #7c3aed 70%, #a78bfa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 8s linear infinite;
}
@keyframes textShimmer {
  0% { background-position: 0% center }
  100% { background-position: 200% center }
}
.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: -.01em;
}
.btn:focus-visible { outline: 2px solid var(--accent-400); outline-offset: 2px }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-400) 100%);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), transparent 50%, rgba(255, 255, 255, .04));
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, .15);
  color: #fff;
}
.btn-primary:hover::before { opacity: 1 }
.btn-primary:active { transform: translateY(0) }

.btn-secondary {
  background: rgba(139, 92, 246, .06);
  color: var(--accent-300);
  border: 1px solid rgba(139, 92, 246, .18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.btn-secondary:hover {
  background: rgba(139, 92, 246, .12);
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(139, 92, 246, .3);
}
.btn-secondary:active { transform: translateY(0) }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 20px }
.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124, 58, 237, .1), rgba(139, 92, 246, .06));
  color: var(--accent-400);
  padding: 7px 18px;
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(139, 92, 246, .1);
  margin-bottom: 16px;
}
.section-header h2 {
  background: linear-gradient(135deg, var(--text-primary), var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(124, 58, 237, .08), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2), 0 0 40px rgba(124, 58, 237, .06);
}
.feature-card:hover::before { opacity: 1 }
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(139, 92, 246, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, .08);
}
.feature-card h3 { color: var(--text-primary); font-size: 1.15rem }
.feature-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 0; line-height: 1.7 }

/* ===== TWO-COL LAYOUT ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center }
.two-col.reverse { direction: rtl }
.two-col.reverse > * { direction: ltr }

/* ===== IMAGE SHOWCASE ===== */
.img-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, .35), 0 0 0 1px var(--border-subtle);
  position: relative;
  transition: box-shadow .4s, transform .4s;
}
.img-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  pointer-events: none;
}
.img-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4), 0 0 40px rgba(124, 58, 237, .06);
}
.img-showcase img { border-radius: 0; width: 100% }

/* ===== STEPS ===== */
.steps { counter-reset: step }
.step-item { display: flex; gap: 24px; margin-bottom: 28px; align-items: flex-start }
.step-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.step-content h3 { margin-bottom: 6px; font-size: 1.1rem }
.step-content p { margin-bottom: 0; color: var(--text-muted); font-size: .93rem }

/* ===== DOWNLOAD CARDS ===== */
.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.download-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(124, 58, 237, .08), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.download-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .25), 0 0 40px rgba(124, 58, 237, .06);
}
.download-card:hover::before { opacity: 1 }
.download-card .icon { font-size: 2.5rem; margin-bottom: 18px }
.download-card h3 { margin-bottom: 10px; font-size: 1.25rem }
.download-card h2 { margin-bottom: 10px }
.download-card p { font-size: .93rem; margin-bottom: 24px; color: var(--text-muted) }
.download-card .btn { width: 100%; justify-content: center }
.download-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin: 16px 0 24px;
  text-align: left;
}
.download-card table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .88rem;
  color: var(--text-muted);
}
.download-card table td:last-child { color: var(--text-body) }
.download-card table tr:last-child td { border-bottom: none }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 48px auto 0 }
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  transition: border-color .3s, box-shadow .3s;
}
.faq-item:hover { border-color: var(--border-default) }
.faq-item.open {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: color .25s;
  gap: 16px;
  letter-spacing: -.01em;
}
.faq-question:hover { color: var(--accent-300) }
.faq-question:focus-visible { outline: 2px solid var(--accent-400); outline-offset: -2px }
.faq-question .arrow {
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  color: var(--accent-400);
  flex-shrink: 0;
  font-size: .85rem;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg) }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  transition: max-height .5s cubic-bezier(0,0,.2,1);
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.8;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin: 24px 0;
}
.info-table th, .info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.info-table th {
  background: rgba(124, 58, 237, .08);
  color: var(--accent-300);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.info-table td { color: var(--text-body); font-size: .93rem }
.info-table tr:last-child td { border-bottom: none }
.info-table tr:hover td { background: rgba(124, 58, 237, .03) }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0 }
.table-wrap .info-table { margin: 0 }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, .1), rgba(88, 28, 135, .06));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, .08), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 12px; position: relative }
.cta-banner p { max-width: 540px; margin: 0 auto 32px; position: relative }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, .08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1 }
.page-hero h1 { margin-bottom: 16px }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 10px 0 16px;
  font-size: .83rem;
  color: var(--text-faint);
  position: relative;
}
.breadcrumbs a { color: var(--text-muted) }
.breadcrumbs a:hover { color: var(--accent-300) }
.breadcrumbs span { margin: 0 8px }

/* ===== LEGAL CONTENT ===== */
.legal-content { max-width: 800px; margin: 0 auto }
.legal-content h2 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--accent-300) }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: .93rem }
.legal-content ul { padding-left: 20px; margin-bottom: 16px }
.legal-content ul li { list-style: disc; margin-bottom: 8px; padding-left: 4px }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--bg-deep);
  padding: 80px 0 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .15), rgba(139, 92, 246, .25), rgba(139, 92, 246, .15), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.7;
}
.footer h4 {
  font-family: 'Sora', sans-serif;
  color: var(--accent-300);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  font-size: .9rem;
  transition: color .25s, transform .25s;
}
.footer-links a:hover {
  color: var(--accent-300);
  transform: translateX(3px);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  text-align: center;
  color: var(--text-faint);
  font-size: .83rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px }
  .two-col.reverse { direction: ltr }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px }
}
@media (max-width: 768px) {
  .nav-links { display: none }
  .hamburger { display: flex }
  .hero { padding: 130px 0 70px }
  .hero h1 { font-size: 2rem }
  .hero p { font-size: 1rem }
  .hero-btns { flex-direction: column; align-items: center }
  .features-grid { grid-template-columns: 1fr }
  .download-cards { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .step-item { flex-direction: column; gap: 12px }
  section { padding: 60px 0 }
  .cta-banner { padding: 40px 24px }
  .page-hero { padding: 120px 0 50px }
  .info-table { display: block }
  .info-table thead { display: none }
  .info-table tbody, .info-table tr, .info-table td { display: block; width: 100% }
  .info-table tr { padding: 12px 16px; border-bottom: 1px solid var(--border-subtle) }
  .info-table tr:last-child { border-bottom: none }
  .info-table td { padding: 4px 0; border-bottom: none; font-size: .88rem }
  .info-table td strong { color: var(--accent-300); font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 2px }
}
@media (max-width: 480px) {
  .hero-logo { width: 80px; height: 80px }
  .btn { padding: 12px 24px; font-size: .9rem }
  .container { width: 92% }
}
