/* ============================================
   JOQR – Premium Fintech Landing Page
   Color Palette: Deep Navy + Teal/Cyan
   ============================================ */

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

/* --- Design Tokens --- */
:root {
  --color-lime: #BCFF32;
  --color-lime-dark: #9FD92B;
  --color-teal: #00BFA6;
  --color-teal-light: #1DE9B6;
  --color-teal-dark: #00897B;
  --color-navy: #0B1426;
  --color-navy-light: #132038;
  --color-navy-mid: #1A2942;
  --color-cyan: #00E5FF;
  --color-white: #FFFFFF;
  --color-gray-100: #F4F6F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  --color-success: #10B981;
}

/* --- Dark Mode (Default) --- */
[data-theme="dark"] {
  --bg-body: #0B1426;
  --bg-section: #0F1923;
  --bg-section-alt: #0B1426;
  --bg-card: rgba(19, 32, 56, 0.7);
  --bg-card-hover: rgba(26, 41, 66, 0.9);
  --bg-footer: #060D18;
  --bg-nav: rgba(11, 20, 38, 0.88);
  --text-heading: #FFFFFF;
  --text-body: #CBD5E1;
  --text-muted: #64748B;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 191, 166, 0.4);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 191, 166, 0.08);
}

/* --- Light Mode --- */
[data-theme="light"] {
  --bg-body: #FFFFFF;
  --bg-section: #F8FAFC;
  --bg-section-alt: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-footer: #0B1426;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --text-heading: #0F172A;
  --text-body: #475569;
  --text-muted: #94A3B8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 191, 166, 0.4);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(0, 191, 166, 0.05);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
a { color: var(--color-teal); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-teal-light); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 32px; width: auto; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  transition: color 0.3s; text-decoration: none;
}
.nav-links a:hover { color: var(--text-heading); }
.nav-controls { display: flex; align-items: center; gap: 10px; }
.btn-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 10px;
  background: transparent; color: var(--text-heading);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 0.85rem; font-weight: 600;
}
.btn-icon:hover { border-color: var(--color-teal); background: rgba(0,191,166,0.06); }
#themeToggle { display: none; }

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

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, #0B1426 0%, #0F1F3A 40%, #0B1426 100%);
  z-index: 9999;
  flex-direction: column;
  opacity: 0; transition: opacity 0.35s ease;
  overflow: hidden;
}
.mobile-menu.active { display: flex; opacity: 1; }

/* Decorative background element */
.mobile-menu-bg {
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(188,255,50,0.06), transparent 70%);
  pointer-events: none;
}
.mobile-menu-bg::after {
  content: ''; position: absolute;
  bottom: -200px; left: -120px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.05), transparent 70%);
}

.mobile-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.6rem; line-height: 1;
  cursor: pointer; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: all 0.3s;
}
.mobile-close:hover {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
}

.mobile-menu-header {
  padding: 22px 28px 0;
}
.mobile-logo { height: 32px; width: auto; }

.mobile-nav {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 28px; gap: 0;
}
.mobile-nav a {
  display: flex; align-items: center; gap: 16px;
  font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 18px 20px; border-radius: 14px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  color: #FFFFFF;
  background: rgba(255,255,255,0.04);
  border-left-color: #BCFF32;
}
.mobile-nav-num {
  font-size: 0.7rem; font-weight: 600;
  color: #BCFF32; opacity: 0.5;
  font-family: 'Inter', monospace;
  min-width: 22px;
  letter-spacing: 1px;
}

.mobile-menu-footer {
  padding: 20px 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-footer a {
  font-size: 0.8rem; color: var(--color-teal); font-weight: 500;
  text-decoration: none;
}
.mobile-menu-footer span {
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--color-navy);
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #F0F4FF 0%, #E8F0FE 50%, #F5F7FF 100%);
}
[data-theme="light"] .hero-content { color: var(--color-navy); }
[data-theme="light"] .hero h1 { color: var(--color-navy); }
[data-theme="light"] .hero h1 .highlight { color: var(--color-teal-dark); }
[data-theme="light"] .hero-subtitle { color: var(--color-gray-600); }
[data-theme="light"] .hero-badge {
  background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08);
  color: var(--color-gray-600);
}
[data-theme="light"] .hero::before {
  background: radial-gradient(circle, rgba(0,191,166,0.06), transparent 70%);
}
[data-theme="light"] .hero::after {
  background: radial-gradient(circle, rgba(0,102,255,0.04), transparent 70%);
}
[data-theme="light"] .hero-phone-img {
  box-shadow: 0 40px 80px rgba(0,0,0,0.12), 0 0 40px rgba(0,0,0,0.06);
}
.hero::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,191,166,0.08), transparent 70%);
  top: -150px; right: -150px;
  animation: heroGlow 10s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.05), transparent 70%);
  bottom: -100px; left: -100px;
  animation: heroGlow 12s ease-in-out infinite reverse;
}
@keyframes heroGlow {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-20px) scale(1.05); opacity: 0.7; }
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content { color: #FFFFFF; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.7); margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 3.4rem; font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 20px; color: #FFFFFF;
}
.hero h1 .highlight { color: #BCFF32; }

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.55);
  margin-bottom: 40px; max-width: 460px; line-height: 1.75;
}

/* Hero CTAs - Desktop/Mobile split */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas-mobile { display: none; }

/* Mobile Hero CTA */
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 100px;
  background: var(--color-lime); color: #000;
  font-size: 1rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(188,255,50,0.25);
}
.hero-btn-primary:hover {
  background: var(--color-lime-dark); color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(188,255,50,0.35);
}
.hero-btn-primary .arrow { transition: transform 0.3s; }
.hero-btn-primary:hover .arrow { transform: translateX(4px); }

.hero-coming-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.78rem; font-weight: 500;
  color: var(--color-gray-500);
}
[data-theme="dark"] .hero-coming-pill {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}

.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px; border-radius: 12px;
  position: relative; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
[data-theme="light"] .btn-store {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.btn-store img { height: 36px; width: auto; display: block; flex-shrink: 0; }
.btn-store .store-info { text-align: left; }
.btn-store .store-info .store-small {
  font-size: 0.62rem; color: rgba(255,255,255,0.6); display: block; line-height: 1.2;
}
.btn-store .store-info .store-name {
  font-size: 1rem; font-weight: 700; color: #FFFFFF; line-height: 1.3;
}
[data-theme="light"] .btn-store .store-info .store-small { color: var(--color-gray-500); }
[data-theme="light"] .btn-store .store-info .store-name { color: var(--color-navy); }
.btn-store.disabled { opacity: 0.55; cursor: not-allowed; }
.btn-store.disabled:hover { transform: none; }
.btn-store:not(.disabled):hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.coming-soon-tag {
  position: absolute; top: -8px; right: -8px;
  background: var(--color-teal); color: #FFFFFF;
  font-size: 0.6rem; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Hero Phone - Device Mockup Frame */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-phone {
  position: relative;
  max-width: 280px;
}
.phone-frame {
  position: relative;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 12px;
  border: 2.5px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 60px rgba(188,255,50,0.06),
              inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-frame::before {
  content: ''; position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: #111; border-radius: 20px; z-index: 2;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-frame img {
  width: 100%; height: auto;
  border-radius: 28px;
  display: block;
}

/* Product phone frames (smaller) */
.product-phone-frame {
  position: relative;
  background: #1A1A2E;
  border-radius: 28px;
  padding: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  max-width: 220px;
  margin: 0 auto;
}
.product-phone-frame::before {
  content: ''; position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 55px; height: 18px;
  background: #111; border-radius: 14px; z-index: 2;
  border: 1px solid rgba(255,255,255,0.06);
}
.product-phone-frame img {
  width: 100%; height: auto;
  border-radius: 20px;
  display: block;
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-even { background: var(--bg-section); }
.section-odd { background: var(--bg-section-alt); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--color-teal); margin-bottom: 14px;
}

/* joqr.io CTA Link */
.joqr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  background: var(--color-lime); color: #000;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(188,255,50,0.2);
}
.joqr-cta:hover {
  background: var(--color-lime-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(188,255,50,0.3);
}
.joqr-cta .arrow { transition: transform 0.3s; }
.joqr-cta:hover .arrow { transform: translateX(4px); }
.section-title {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 18px; color: var(--text-heading);
}
.section-desc {
  font-size: 1.05rem; color: var(--text-body);
  max-width: 600px; line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-content { max-width: 700px; margin: 0 auto; text-align: center; }
.legal-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 12px;
  background: rgba(0,191,166,0.06);
  border: 1px solid rgba(0,191,166,0.12);
  margin-top: 24px; font-size: 0.88rem; font-weight: 500;
  color: var(--color-teal);
}
.legal-badge a { color: var(--color-teal); font-weight: 700; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; margin-top: 48px;
}
.feature-card {
  padding: 32px 22px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.35s ease; text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,191,166,0.08);
  border: 1px solid rgba(0,191,166,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
  color: var(--text-heading);
}
.feature-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }

/* ===== PRODUCT ===== */
.product-header { margin-bottom: 48px; }
.product-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card-item {
  border-radius: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.35s ease;
  text-align: center;
}
.product-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--border-hover);
}
.product-card-image {
  padding: 24px 24px 0;
  display: flex; justify-content: center; align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #F0F4FF 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
}
[data-theme="light"] .product-card-image {
  background: linear-gradient(180deg, #F0F4FF 0%, transparent 100%);
}
.product-card-image img {
  transition: transform 0.4s ease;
}
.product-card-item:hover .product-card-image img {
  transform: scale(1.02);
}
.product-card-item:hover .product-phone-frame {
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.product-card-item h3 {
  font-size: 1.1rem; font-weight: 700; margin: 20px 22px 8px;
  color: var(--text-heading);
}
.product-card-item p {
  font-size: 0.88rem; color: var(--text-body); line-height: 1.65;
  padding: 0 22px 24px;
}

/* ===== DOWNLOAD ===== */
.download { text-align: center; }
.download-badges {
  display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 24px; border-radius: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative; transition: all 0.3s;
}
.store-badge.disabled { opacity: 0.5; cursor: not-allowed; }
.store-badge:not(.disabled):hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.store-badge img { height: 36px; width: auto; }
.store-badge .store-text .small {
  font-size: 0.62rem; color: var(--text-muted); display: block; line-height: 1.2;
}
.store-badge .store-text .big {
  font-size: 0.95rem; font-weight: 700; color: var(--text-heading); line-height: 1.3;
}
.download-note { margin-top: 24px; font-size: 0.88rem; color: var(--text-muted); }

/* ===== TRUST ===== */
.trust { text-align: center; }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px;
}
.trust-card {
  padding: 32px 22px; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
}
.trust-card .trust-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
.trust-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text-heading); }
.trust-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.trust-card a { display: inline-block; margin-top: 6px; font-weight: 600; font-size: 0.88rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-footer); color: rgba(255,255,255,0.6); padding: 56px 0 28px;
}
[data-theme="light"] .footer {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .footer-logo-link {
  display: inline-block; margin-bottom: 14px; text-decoration: none;
}
.footer-brand .footer-logo-link img { height: 28px; width: auto; }
[data-theme="light"] .footer-brand .footer-logo-link .footer-logo-dark { display: none; }
[data-theme="light"] .footer-brand .footer-logo-link .footer-logo-light { display: block; }
[data-theme="dark"] .footer-brand .footer-logo-link .footer-logo-dark { display: block; }
[data-theme="dark"] .footer-brand .footer-logo-link .footer-logo-light { display: none; }
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 300px;
}
[data-theme="light"] .footer-brand p { color: var(--color-gray-500); }
.footer h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.8); margin-bottom: 18px;
}
[data-theme="light"] .footer h4 { color: var(--color-gray-900); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color 0.3s; }
[data-theme="light"] .footer-links a { color: var(--color-gray-500); }
.footer-links a:hover { color: var(--color-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,0.08); color: var(--color-gray-400);
}

/* ===== ANIMATIONS ===== */
.animate-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after { animation: none; }
  .hero-badge .dot { animation: none; }
}

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 110px 0 80px; min-height: 100vh; background: var(--bg-body); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 2.1rem; font-weight: 800; margin-bottom: 6px; color: var(--text-heading); }
.legal-page .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 10px; color: var(--text-heading); }
.legal-page p, .legal-page ul { color: var(--text-body); margin-bottom: 14px; line-height: 1.8; }
.legal-page ul { padding-left: 24px; }
.legal-page li { margin-bottom: 6px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-top: 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-phone { max-width: 260px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  /* Mobile CTA switch */
  .hero-ctas-desktop { display: none !important; }
  .hero-ctas-mobile {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 24px 16px; }
  .product-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .trust-grid { gap: 14px; }
  /* Footer compact mobile */
  .footer { padding: 40px 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 0.82rem; }
  .footer h4 { margin-bottom: 12px; font-size: 0.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 50px; min-height: auto; }
  .hero h1 { font-size: 1.8rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-store { justify-content: center; padding: 12px 20px; }
  .btn-store img { height: 32px; }
  .hero-phone { max-width: 200px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .download-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .legal-page { padding: 90px 0 60px; }
  .legal-page h1 { font-size: 1.7rem; }
}
