/* ============================================================
   GTA San Andreas APK â€” Earthy Forest Design
   Palette: #36656B Â· #75B06F Â· #DAD887 Â· #F0F8A4
   Style: Deep Dark | Frosted Glass | Bento Grid | Gradient Headlines
   ============================================================ */

/* -----------------------------------------------------------
   1. GOOGLE FONTS â€” Inter
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* -----------------------------------------------------------
   2. DESIGN TOKENS
----------------------------------------------------------- */
:root {
  /* Brand Accent Colors — Earthy Forest Palette */
  --purple:         #36656B;           /* dark teal — primary */
  --purple-light:   #75B06F;           /* green - secondary */
  --green-light:    #75B06F;           /* alias for purple-light - used throughout */
  --teal-light:     #8fca89;           /* lighter green for hover states */
  --purple-soft:    rgba(54, 101, 107, 0.2);
  --orange:         #DAD887;           /* warm yellow-green — highlight */
  --orange-light:   #F0F8A4;           /* light lime — bright pop */
  --orange-soft:    rgba(218, 216, 135, 0.15);
  --teal:           #75B06F;           /* green — icons & checks */
  --teal-soft:      rgba(117, 176, 111, 0.15);
  --cyan:           #F0F8A4;           /* light lime */
  --cyan-soft:      rgba(240, 248, 164, 0.12);
  --pink:           #DAD887;

  /* Deep Dark Background Palette â€” forest dark */
  --bg-void:        #060d0d;
  --bg-deep:        #091212;
  --bg-base:        #0c1818;
  --bg-surface:     #101f1f;
  --bg-elevated:    #162828;

  /* Glass System */
  --glass-bg:       rgba(255, 255, 255, 0.03);
  --glass-bg-md:    rgba(255, 255, 255, 0.06);
  --glass-bg-strong:rgba(255, 255, 255, 0.09);
  --glass-border:   rgba(255, 255, 255, 0.08);
  --glass-border-purple: rgba(54, 101, 107, 0.4);
  --glass-blur:     20px;

  /* Text */
  --text-white:     #ffffff;
  --text-primary:   #e8f0ef;
  --text-secondary: #7e9e9a;
  --text-muted:     #3d5a57;

  /* Gradients */
  --grad-headline:  linear-gradient(135deg, #75B06F 0%, #F0F8A4 100%);
  --grad-headline-2:linear-gradient(135deg, #F0F8A4 0%, #DAD887 100%);
  --grad-purple:    linear-gradient(135deg, #36656B 0%, #1a3a3e 100%);
  --grad-orange:    linear-gradient(135deg, #DAD887 0%, #F0F8A4 100%);
  --grad-teal:      linear-gradient(135deg, #75B06F 0%, #36656B 100%);
  --grad-hero:      radial-gradient(ellipse at 30% 40%, rgba(54, 101, 107, 0.22) 0%, transparent 60%),
                    radial-gradient(ellipse at 70% 60%, rgba(117, 176, 111, 0.12) 0%, transparent 50%),
                    radial-gradient(ellipse at 50% 90%, rgba(218, 216, 135, 0.10) 0%, transparent 50%),
                    linear-gradient(180deg, rgba(6,13,13,0.95) 0%, rgba(9,18,18,0.85) 60%, rgba(6,13,13,0.75) 100%);

  /* Glow / Shadows */
  --glow-purple:    0 0 40px rgba(54, 101, 107, 0.45), 0 0 80px rgba(54, 101, 107, 0.1);
  --glow-orange:    0 0 32px rgba(218, 216, 135, 0.4), 0 0 60px rgba(218, 216, 135, 0.1);
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0,0,0,0.5);
  --shadow-hover:   0 20px 60px rgba(54, 101, 107, 0.3), 0 4px 20px rgba(0,0,0,0.7);

  /* Spacing */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  1.5rem;
  --s-lg:  2.5rem;
  --s-xl:  4rem;
  --s-2xl: 6rem;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Typography */
  --font-display: 'Syne', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-normal: 0.32s ease;
  --t-slow:   0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -----------------------------------------------------------
   3. RESET & BASE
----------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(54, 101, 107, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(240, 248, 164, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(218, 216, 135, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-light); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-light); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--green-light); }
ul { list-style: none; }
code {
  background: rgba(54, 101, 107, 0.12);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--green-light);
  border: 1px solid rgba(54, 101, 107, 0.2);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  z-index: 9999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-md);
}

/* -----------------------------------------------------------
   4. GLASSMORPHISM UTILITIES
----------------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
}

/* Gradient Text Utility */
.gradient-text {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-2 {
  background: var(--grad-headline-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -----------------------------------------------------------
   5. HEADER / NAVIGATION
----------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 15, 0.7);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: -1;
  transition: background var(--t-normal);
}

.site-header.scrolled::before {
  background: rgba(3, 3, 15, 0.92);
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(54, 101, 107, 0.4);
  box-shadow: 0 0 16px rgba(54, 101, 107, 0.3);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.logo-accent {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--teal);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-sm);
  margin-left: 0.5rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  box-shadow: 0 0 0 1px rgba(54, 101, 107, 0.5);
}

.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(117, 176, 111, 0.6), var(--glow-purple);
  color: #fff !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger active (X) animation */
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.active span { background: var(--text-white); }

/* -----------------------------------------------------------
   6. HERO SECTION
----------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: saturate(0.7) brightness(0.4);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

/* Ambient glow orbs */
.hero-bg-overlay::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 101, 107, 0.2) 0%, transparent 70%);
  top: 10%; left: 5%;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-bg-overlay::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 216, 135, 0.15) 0%, transparent 70%);
  bottom: 20%; right: 10%;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s ease-in infinite;
}

.particle:nth-child(1) { width: 3px; height: 3px; left: 10%; background: var(--green-light); animation-delay: 0s; animation-duration: 9s; }
.particle:nth-child(2) { width: 2px; height: 2px; left: 25%; background: var(--cyan); animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(3) { width: 4px; height: 4px; left: 45%; background: var(--green-light); animation-delay: 3s; animation-duration: 10s; }
.particle:nth-child(4) { width: 2px; height: 2px; left: 60%; background: var(--green-light); animation-delay: 0.8s; animation-duration: 8s; }
.particle:nth-child(5) { width: 3px; height: 3px; left: 78%; background: var(--teal); animation-delay: 2.2s; animation-duration: 11s; }
.particle:nth-child(6) { width: 2px; height: 2px; left: 90%; background: var(--cyan); animation-delay: 4s; animation-duration: 7.5s; }

@keyframes floatUp {
  0%   { bottom: -10px; opacity: 0; transform: translateX(0) scale(0); }
  20%  { opacity: 0.9; }
  80%  { opacity: 0.5; }
  100% { bottom: 100%; opacity: 0; transform: translateX(30px) scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 7rem;
  width: 100%;
}

/* Live Stats Glass Bar */
.live-stats-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  padding: 0.38rem 0.9rem;
  margin-bottom: 1.75rem;
  font-size: 0.7rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  animation: slideInDown 0.7s ease;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e, 0 0 12px rgba(34, 197, 94, 0.4);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(0.7); opacity: 0.5; }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-img-icon { display: none; }
.stat-svg-icon { width: 11px; height: 11px; flex-shrink: 0; }
.stat-label { color: var(--text-secondary); font-size: 0.67rem; white-space: nowrap; }
.stat-value { color: var(--green-light); font-weight: 700; font-size: 0.72rem; }

.stat-sep {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}


/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92;
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  animation: slideInUp 0.7s ease 0.2s both;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title-accent {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
  font-weight: 400;
  animation: slideInUp 0.7s ease 0.3s both;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  animation: slideInUp 0.7s ease 0.4s both;
}

/* Primary Download Button */
.btn-hero-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4A8166 0%, #36656B 100%);
  color: #fff !important;
  font-family: var(--font-body);
  border-radius: var(--r-md);
  padding: 1rem 2.4rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative;
  overflow: hidden;
  min-width: 240px;
  gap: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px rgba(117, 176, 111, 0.6), 0 12px 32px rgba(54, 101, 107, 0.4);
  text-decoration: none;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(218, 216, 135, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 1px rgba(218, 216, 135, 0.7), 0 16px 48px rgba(117, 176, 111, 0.5);
  background: linear-gradient(135deg, #5ba37d 0%, #46868e 100%);
}

.btn-row-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.025em;
}

/* Animated download icon wrapper */
.btn-dl-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  flex-shrink: 0;
  margin-right: 0.1rem;
}

.btn-dl-anim-icon {
  width: 18px;
  height: 18px;
  animation: dlBounce 1.6s ease-in-out infinite;
}

@keyframes dlBounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-4px); }
  60%       { transform: translateY(2px); }
  80%       { transform: translateY(-2px); }
}

.btn-svg-icon {
  width: 20px; height: 20px;
}

/* Sub-label — hidden (removed from button) */
.btn-sub-label { display: none; }

/* Secondary Button */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  letter-spacing: 0.01em;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}

.btn-hero-secondary:hover {
  border-color: rgba(54, 101, 107, 0.5);
  background: rgba(54, 101, 107, 0.1);
  color: var(--green-light) !important;
  transform: translateY(-2px);
}

/* Trust Strip */
.trust-strip {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  animation: slideInUp 0.7s ease 0.5s both;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.32rem 0.85rem;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.trust-chip:hover {
  border-color: rgba(54, 101, 107, 0.4);
  color: var(--green-light);
  background: rgba(54, 101, 107, 0.08);
}

.trust-chip-img {
  width: 14px; height: 14px;
  object-fit: contain;
  border-radius: 3px;
}

.trust-chip-svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
  color: var(--green-light);
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s ease infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(54, 101, 107, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 2px;
  height: 7px;
  background: var(--green-light);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* -----------------------------------------------------------
   7. SECTION SHARED STYLES
----------------------------------------------------------- */
.content-section {
  padding: var(--s-2xl) 0;
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 101, 107, 0.3), rgba(218, 216, 135, 0.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-light);
  background: rgba(54, 101, 107, 0.1);
  border: 1px solid rgba(54, 101, 107, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.text-orange {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

/* -----------------------------------------------------------
   8. OVERVIEW SECTION
----------------------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 1.4rem;
  line-height: 1.85;
  font-weight: 400;
}

.overview-text p {
  color: var(--text-secondary);
  margin-bottom: 1.3rem;
  line-height: 1.8;
}

/* App Info Glass Card */
.app-info-glass {
  margin-top: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.app-info-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
  padding: 1rem 1.4rem;
  background: rgba(54, 101, 107, 0.06);
  border-bottom: 1px solid var(--glass-border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.app-info-icon { width: 16px; height: 16px; flex-shrink: 0; }

.app-info-table { width: 100%; border-collapse: collapse; }

.app-info-table th,
.app-info-table td {
  padding: 0.7rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.86rem;
}

.app-info-table tr:last-child th,
.app-info-table tr:last-child td { border-bottom: none; }

.app-info-table th {
  color: var(--text-secondary);
  font-weight: 500;
  width: 42%;
}

.app-info-table td {
  color: var(--text-primary);
  font-weight: 500;
}

.app-info-table tr:hover {
  background: rgba(54, 101, 107, 0.04);
}

/* Overview Visual */
.overview-figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}

.overview-img { width: 100%; border-radius: var(--r-xl); }

figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.75rem 1rem;
}

/* Rating Glass Card */
.rating-glass-card {
  margin-top: 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.rating-label-text {
  font-size: 0.77rem;
  color: var(--text-secondary);
  min-width: 52px;
  font-weight: 500;
}

.rating-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 99px;
  transition: width 1s ease;
}

.rating-pct {
  font-size: 0.76rem;
  color: var(--text-secondary);
  min-width: 30px;
  text-align: right;
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.rating-big-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-stars-row { display: flex; gap: 3px; }

.star {
  display: inline-block;
  width: 16px; height: 16px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: rgba(255,255,255,0.15);
  position: relative;
  flex-shrink: 0;
}

.star.filled { background: var(--orange); }
.star.half { background: linear-gradient(90deg, var(--orange) 50%, rgba(255,255,255,0.15) 50%); }

.rating-total {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* -----------------------------------------------------------
   9. FEATURES SECTION â€” Bento Grid
----------------------------------------------------------- */
.features-section {
  background: linear-gradient(180deg, transparent, rgba(54, 101, 107, 0.03) 50%, transparent);
}

/* Feature Image Banner */
.feature-banner-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--glass-bg);
}

.feature-banner-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8) saturate(1);
}

.feature-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 3, 15, 0.95) 100%);
}

/* Bento Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.features-grid .feature-glass-card:nth-child(1) { grid-column: 1 / 3; }
.features-grid .feature-glass-card:nth-child(4) { grid-column: 2 / 4; }
.features-grid .feature-glass-card:nth-child(7) { grid-column: 1 / 3; }

/* Feature Glass Card */
.feature-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  box-shadow: var(--shadow-card);
}

.feature-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(54, 101, 107, 0.3);
}

.feature-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(54, 101, 107, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-normal);
  pointer-events: none;
}

.feature-glass-card:hover::before { opacity: 1; }

.feat-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.features-grid .feature-glass-card:nth-child(1) .feat-img-wrap,
.features-grid .feature-glass-card:nth-child(4) .feat-img-wrap,
.features-grid .feature-glass-card:nth-child(7) .feat-img-wrap {
  height: 200px;
}

.feat-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.6);
  transition: transform var(--t-slow);
}

.feature-glass-card:hover .feat-bg-img { transform: scale(1.04); }

.feat-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, var(--bg-void) 100%);
}

.feat-body {
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
}

.feat-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Benefits Panel */
.benefits-glass {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.benefits-glass::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 101, 107, 0.1) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}

.benefits-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  grid-column: 1 / -1;
}

.benefits-col { display: flex; flex-direction: column; gap: 0; }

.benefits-list { display: flex; flex-direction: column; gap: 0.8rem; }

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.check-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

/* -----------------------------------------------------------
   10. DOWNLOAD SECTION
----------------------------------------------------------- */
.download-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.download-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dl-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
  box-shadow: var(--shadow-card);
}

.dl-step:hover {
  border-color: rgba(54, 101, 107, 0.35);
  transform: translateX(4px);
  background: var(--glass-bg-md);
}

.dl-step-num {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(54, 101, 107, 0.15);
  border: 1px solid rgba(54, 101, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-step-num span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: 0.05em;
}

.dl-step-body h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.dl-step-body p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Download CTA Card */
.download-cta-glass {
  background: var(--glass-bg-md);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.download-cta-glass::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 101, 107, 0.18) 0%, transparent 70%);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.dl-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54, 101, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.dl-card-icon {
  width: 90px; height: 90px;
  border-radius: 22px;
  margin: 0 auto 1.2rem;
  border: 2px solid rgba(54, 101, 107, 0.4);
  box-shadow: 0 0 32px rgba(54, 101, 107, 0.4);
  position: relative;
}

.dl-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.dl-card-title span {
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dl-meta-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.dl-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}

.dl-meta-chip svg { width: 13px; height: 13px; color: var(--green-light); }

.dl-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1.4rem;
}

.dl-stars { display: flex; gap: 3px; }

.btn-download-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  margin-bottom: 0.75rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  box-shadow: 0 0 0 1px rgba(54, 101, 107, 0.5), 0 8px 32px rgba(54, 101, 107, 0.4);
}

.btn-download-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(117, 176, 111, 0.6), 0 12px 48px rgba(54, 101, 107, 0.55);
  background: var(--teal-light);
}

.btn-dl-svg { width: 20px; height: 20px; }

.btn-playstore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: transparent;
  color: var(--text-secondary) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.btn-playstore:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text-primary) !important;
  background: rgba(255,255,255,0.04);
}

.playstore-icon { width: 16px; height: 16px; }

.dl-tip {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -----------------------------------------------------------
   11. INSTALLATION SECTION
----------------------------------------------------------- */
.install-section {
  background: linear-gradient(180deg, transparent, rgba(240, 248, 164, 0.03) 50%, transparent);
}

.install-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.install-steps-wrap { display: flex; flex-direction: column; gap: 1px; }

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.5rem;
  margin-bottom: 0.75rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  box-shadow: var(--shadow-card);
}

.install-step:hover {
  border-color: rgba(117, 176, 111, 0.35);
  background: var(--glass-bg-md);
}

.install-step-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.install-step-img {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  object-fit: cover;
  border: 1px solid rgba(54, 101, 107, 0.4);
  box-shadow: 0 0 16px rgba(54, 101, 107, 0.2);
}

.install-step-line {
  width: 1.5px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(180deg, rgba(117, 176, 111, 0.3), transparent);
  margin-top: 6px;
}

.install-step:last-child .install-step-line { display: none; }

.install-step-content h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.install-step-content p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.install-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* Safety Card */
.safety-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.safety-glass-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 176, 111, 0.1) 0%, transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;
}

.safety-card-img {
  width: 100px; height: 100px;
  border-radius: var(--r-lg);
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(117, 176, 111, 0.4);
  box-shadow: 0 0 24px rgba(117, 176, 111, 0.25);
  display: block;
}

.safety-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.safety-glass-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.safety-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  text-align: left;
}

.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* What's New Card */
.whats-new-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.whats-new-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.whats-new-icon {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.whats-new-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.whats-new-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}

.whats-new-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.75rem;
}

/* -----------------------------------------------------------
   12. FAQ SECTION
----------------------------------------------------------- */
.faq-section {
  background: linear-gradient(180deg, transparent, rgba(54, 101, 107, 0.02) 50%, transparent);
}

.faq-layout { display: grid; grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
  box-shadow: var(--shadow-card);
}

.faq-item:hover { border-color: rgba(54, 101, 107, 0.3); }
.faq-item.open { border-color: rgba(54, 101, 107, 0.35); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.5;
}

.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform var(--t-fast), color var(--t-fast);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--green-light);
}

.faq-answer {
  padding: 0 1.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer:not([hidden]) {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer[hidden] { display: block !important; padding: 0 1.5rem; }

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* -----------------------------------------------------------
   13. SOCIAL PROOF SECTION
----------------------------------------------------------- */
.social-proof-section {
  padding: var(--s-2xl) 0;
  overflow: hidden;
  position: relative;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 101, 107, 0.3), rgba(218, 216, 135, 0.2), transparent);
}

.social-proof-track {
  display: flex;
  gap: 1rem;
  animation: scrollTrack 35s linear infinite;
  width: max-content;
}

.social-proof-track:hover { animation-play-state: paused; }

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.social-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  transition: border-color var(--t-fast);
}

.social-card:hover { border-color: rgba(54, 101, 107, 0.3); }

.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.social-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.social-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}

.social-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.social-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.social-stars { display: flex; gap: 2px; margin-bottom: 0.5rem; }
.social-star {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  flex-shrink: 0;
}

/* -----------------------------------------------------------
   14. FOOTER
----------------------------------------------------------- */
footer {
  padding: var(--s-2xl) 0 var(--s-lg);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 101, 107, 0.25), rgba(218, 216, 135, 0.15), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo img {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(54, 101, 107, 0.35);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-col a:hover {
  color: var(--green-light);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--green-light); }

/* -----------------------------------------------------------
   15. MOBILE RESPONSIVE
----------------------------------------------------------- */

/* --- Desktop Dropdown Nav --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Arrow svg in toggle */
.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 20, 26, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
}

.nav-dropdown-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
============================================================ */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .download-layout { grid-template-columns: 1fr; }
  .download-cta-glass { max-width: 520px; margin: 0 auto; }
  .install-layout { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-glass-card:nth-child(1) { grid-column: 1 / -1; }
  .features-grid .feature-glass-card:nth-child(4) { grid-column: 1 / -1; }
  .features-grid .feature-glass-card:nth-child(7) { grid-column: 1 / -1; }
}


/* --- Desktop Dropdown Nav --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Arrow svg in toggle */
.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 20, 26, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
}

.nav-dropdown-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
============================================================ */
@media (max-width: 768px) {

  /* --- Navigation --- */
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 13, 13, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    padding: 2rem;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link {
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    width: 100%;
    text-align: center;
    border-radius: var(--r-md);
  }
  .nav-cta {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
    border-radius: var(--r-md);
  }
  .nav-toggle { display: flex; z-index: 1000; }

    /* --- Mobile Dropdown Overrides --- */
    .nav-item-dropdown { width: 100%; text-align: center; }
    .nav-dropdown-toggle { width: 100%; justify-content: center; }
    
    .nav-dropdown-menu {
      position: relative;
      top: auto; left: auto; transform: none;
      background: rgba(0,0,0,0.2);
      border: 1px solid rgba(255,255,255,0.03);
      box-shadow: inset 0 2px 10px rgba(0,0,0,0.2);
      min-width: 100%;
      padding: 0.5rem;
      display: none;
      opacity: 1; visibility: visible;
      pointer-events: auto;
      margin-top: 0.5rem;
    }
    
    .nav-item-dropdown.active .nav-dropdown-menu {
      display: block;
      animation: navFadeDown 0.3s ease;
    }
    
    .nav-dropdown-link {
      font-size: 0.95rem;
      padding: 0.6rem 1rem;
      text-align: center;
    }
    
    @keyframes navFadeDown {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }


  /* --- Hero --- */
  .hero-content {
    padding: 2.5rem 1.25rem 6rem;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 1.1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  /* Live stats bar */
  .live-stats-glass {
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
    border-radius: 50px;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .stat-label { font-size: 0.6rem; white-space: nowrap; }
  .stat-value { font-size: 0.68rem; }
  .stat-svg-icon { width: 10px; height: 10px; }

  /* CTA Buttons */
  .hero-cta-group {
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .btn-hero-primary {
    flex: 1;
    min-width: 180px;
    padding: 1rem 1.5rem 1rem;
    border-radius: var(--r-md);
  }
  .btn-row-main {
    font-size: 0.95rem;
    gap: 0.45rem;
  }
  .btn-hero-secondary {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Trust strip */
  .trust-strip {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .trust-chip {
    font-size: 0.7rem;
    padding: 0.28rem 0.7rem;
  }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-glass-card:nth-child(1),
  .features-grid .feature-glass-card:nth-child(4),
  .features-grid .feature-glass-card:nth-child(7) { grid-column: 1; }

  /* Benefits */
  .benefits-glass { grid-template-columns: 1fr; padding: 1.5rem; }

  /* Section spacing */
  .content-section { padding: 4rem 0; }

  /* Download steps */
  .dl-step { padding: 1.1rem 1.2rem; }
  .install-step { padding: 1rem 1.2rem; }

  /* Footer */
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
}


/* --- Desktop Dropdown Nav --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Arrow svg in toggle */
.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 20, 26, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
}

.nav-dropdown-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — MOBILE 480px
============================================================ */
@media (max-width: 480px) {

  /* Nav container */
  .nav-container { padding: 0 1rem; }

  /* Hero */
  .hero-content {
    padding: 2rem 1rem 5rem;
  }
  .hero-title {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }
  .hero-subtitle { font-size: 0.9rem; line-height: 1.65; }

  /* Stats bar compact */
  .live-stats-glass {
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.6rem;
    flex-wrap: nowrap;
    overflow: hidden;
    max-width: 100%;
  }
  .stat-sep { width: 1px; flex-shrink: 0; height: 8px; }
  .live-dot { width: 6px; height: 6px; }

  /* Buttons — full width stack */
  .hero-cta-group {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }
  .btn-hero-primary {
    width: 100%;
    min-width: unset;
    padding: 1.05rem 1.5rem;
    border-radius: var(--r-md);
  }
  .btn-row-main { font-size: 1rem; font-weight: 700; }
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Trust strip - 2 per row */
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 0.4rem;
  }

  /* Section headers */
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .section-subtitle { font-size: 0.9rem; }

  /* Content section padding */
  .content-section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }

  /* App info table */
  .app-info-table th,
  .app-info-table td { padding: 0.6rem 0.9rem; font-size: 0.8rem; }

  /* Overview */
  .overview-img { border-radius: var(--r-lg); }
  .rating-glass-card { padding: 1.25rem; }
  .rating-big-num { font-size: 2.8rem; }

  /* Feature cards */
  .feature-glass-card { border-radius: var(--r-lg); }
  .feat-icon-wrap { width: 44px; height: 44px; margin: 1.25rem 1.25rem 0; }
  .feat-icon-svg { width: 22px; height: 22px; }
  .feature-title { font-size: 1rem; }
  .feature-desc { font-size: 0.85rem; }

  /* Benefits */
  .benefits-glass { padding: 1.25rem; border-radius: var(--r-lg); }
  .benefits-list li { font-size: 0.85rem; }

  /* Download */
  .download-cta-glass { padding: 1.75rem 1.25rem; border-radius: var(--r-xl); }
  .dl-card-title { font-size: 1.3rem; }
  .dl-meta-row { gap: 0.4rem; }
  .dl-meta-chip { font-size: 0.74rem; padding: 0.3rem 0.65rem; }
  .btn-download-main { font-size: 0.95rem; padding: 0.9rem; }
  .btn-playstore { font-size: 0.85rem; padding: 0.75rem; }

  /* Install steps */
  .install-step { gap: 1rem; border-radius: var(--r-lg); }
  .install-step-img { width: 44px; height: 44px; }
  .install-step-content h3 { font-size: 0.95rem; }
  .install-step-content p { font-size: 0.83rem; }

  /* Download steps */
  .dl-step { border-radius: var(--r-lg); }
  .dl-step-num { width: 40px; height: 40px; font-size: 0.85rem; flex-shrink: 0; }
  .dl-step-body h3 { font-size: 0.95rem; }
  .dl-step-body p { font-size: 0.83rem; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 1rem 1.1rem; }
  .faq-answer p { font-size: 0.85rem; padding: 0 1.1rem 1.1rem; }

  /* Social proof */
  .social-card { padding: 1.1rem; min-width: 260px; }
  .social-text { font-size: 0.83rem; }

  /* Final CTA */
  .final-stats { gap: 0.5rem; }
  .final-stat { padding: 0.75rem 1rem; min-width: 90px; }
  .final-stat strong { font-size: 1.2rem; }
  .btn-final-cta { font-size: 0.95rem; padding: 1rem 1.75rem; width: 100%; justify-content: center; }

  /* Whats new */
  .whats-new-glass { padding: 1.25rem; }
  .safety-glass-card { padding: 1.5rem; }

  /* Footer */
  .footer-col h4 { font-size: 0.8rem; }
  .footer-col a { font-size: 0.82rem; }
  .footer-desc { font-size: 0.83rem; }
  .footer-copy { font-size: 0.75rem; }
}


/* --- Desktop Dropdown Nav --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Arrow svg in toggle */
.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg,
.nav-item-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 20, 26, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.5rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.4;
  text-align: left;
}

.nav-dropdown-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 380px
============================================================ */
@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(2.1rem, 14vw, 3.2rem);
  }
  .live-stats-glass { font-size: 0.62rem; padding: 0.4rem 0.7rem; }
  .stat-label { display: none; }
  .trust-strip { grid-template-columns: repeat(2, auto); }
  .trust-chip { font-size: 0.66rem; padding: 0.25rem 0.6rem; }
  .section-title { font-size: clamp(1.5rem, 7.5vw, 2.2rem); }
  .final-stat { min-width: 80px; padding: 0.65rem 0.8rem; }
  .final-stat strong { font-size: 1.05rem; }
}

/* -----------------------------------------------------------
   16. SCROLL REVEAL ANIMATIONS
----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* -----------------------------------------------------------
   17. GLASS STEP (shared)
----------------------------------------------------------- */
.glass-step {
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* -----------------------------------------------------------
   18. GLASS FAQ (shared)
----------------------------------------------------------- */
.glass-faq {
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

/* -----------------------------------------------------------
   19. FAQ LAYOUT (remove side visual)
----------------------------------------------------------- */
.faq-layout {
  display: block;
  max-width: 780px;
  margin: 0 auto;
}

.faq-visual { display: none; }

/* Stat cards in FAQ - keep for compatibility */
.faq-stats-glass,
.fq-stat { display: none; }
.faq-phone-img { display: none; }

/* -----------------------------------------------------------
   20. FINAL CTA SECTION
----------------------------------------------------------- */
.final-cta-section {
  padding: var(--s-2xl) 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(54, 101, 107, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(218, 216, 135, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.final-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.final-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 0.9rem 1.4rem;
  min-width: 110px;
}

.final-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.final-stat span {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: var(--r-lg);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  box-shadow: 0 0 0 1px rgba(54, 101, 107, 0.6), 0 8px 40px rgba(54, 101, 107, 0.4);
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(117, 176, 111, 0.7), 0 16px 60px rgba(54, 101, 107, 0.55);
  background: var(--teal-light);
}

/* -----------------------------------------------------------
   21. BACK TO TOP BUTTON
----------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(54, 101, 107, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(54, 101, 107, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 24px rgba(54, 101, 107, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 8px 32px rgba(54, 101, 107, 0.6);
  transform: translateY(-2px);
  background: var(--teal);
}

.back-to-top svg {
  width: 18px; height: 18px;
}

/* -----------------------------------------------------------
   22. STAR STYLES (shared)
----------------------------------------------------------- */
.star {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 2px;
}

.star.filled { background: var(--orange); }
.star.half { background: linear-gradient(90deg, var(--orange) 50%, rgba(255,255,255,0.1) 50%); }

/* -----------------------------------------------------------
   23. MISC LEGACY COMPATIBILITY
----------------------------------------------------------- */
/* These handle any old class names the HTML might still use */
.final-cta-bg { display: none; }
.final-cta-bg-img { display: none; }
.final-cta-overlay { display: none; }
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.final-cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.site-footer { background: none; }

/* Footer grid layout - active */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}
.footer-links li a:hover {
  color: var(--green-light);
  transform: translateX(3px);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 240px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Legacy classes - hide */
.footer-tagline { display: none; }
.footer-nav-title { display: none; }
.footer-nav-list { display: none; }
.footer-security { display: none; }
.footer-badges { display: none; }
.footer-badge-item { display: none; }
.footer-badge-img { display: none; }
.footer-badge-svg { display: none; }
.footer-disclaimer { display: none; }
.social-link { display: none; }

/* -----------------------------------------------------------
   24. GAMEPLAY BANNER (new section in overview)
----------------------------------------------------------- */
.gameplay-banner-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3.5rem;
  max-height: 380px;
  box-shadow: var(--shadow-card);
}

.gameplay-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  transition: transform var(--t-slow), filter var(--t-slow);
}

.gameplay-banner-wrap:hover .gameplay-banner-img {
  transform: scale(1.03);
  filter: brightness(0.75) saturate(1);
}

.gameplay-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 3, 15, 0.85) 0%,
    rgba(3, 3, 15, 0.3) 50%,
    rgba(3, 3, 15, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}

.gameplay-overlay-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gameplay-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  background: rgba(218, 216, 135, 0.15);
  border: 1px solid rgba(218, 216, 135, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  width: fit-content;
}

.gameplay-overlay-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* -----------------------------------------------------------
   25. FEATURE ICON WRAPS (new icon-based cards)
----------------------------------------------------------- */
.feat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(54, 101, 107, 0.12);
  border: 1px solid rgba(54, 101, 107, 0.25);
  margin: 1.5rem 1.5rem 0;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}

.feature-glass-card:hover .feat-icon-wrap {
  background: rgba(54, 101, 107, 0.2);
  border-color: rgba(54, 101, 107, 0.5);
  box-shadow: 0 0 20px rgba(54, 101, 107, 0.25);
}

.feat-icon-svg {
  width: 26px;
  height: 26px;
  color: var(--green-light);
  transition: color var(--t-fast);
}

.feature-glass-card:hover .feat-icon-svg {
  color: var(--green-light);
}

/* -----------------------------------------------------------
   26. INLINE SVG STAT ICONS
----------------------------------------------------------- */
.stat-svg-icon {
  width: 14px;
  height: 14px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* -----------------------------------------------------------
   27. GENERAL ALIGNMENT & SPACING IMPROVEMENTS
----------------------------------------------------------- */

/* Better section header center alignment */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Feature cards â€” uniform height for bento items */
.feature-glass-card {
  display: flex;
  flex-direction: column;
}

.feat-body {
  flex: 1;
}

/* Overview grid alignment */
.overview-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Download card better centering */
.download-cta-glass {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Improved benefits grid with heading spanning full width */
.benefits-glass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
}

.benefits-heading {
  grid-column: 1 / -1;
  grid-row: 1;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 2rem;
}

.benefits-col:first-child {
  padding-right: 2rem;
  border-right: 1px solid var(--glass-border);
}

.benefits-col:last-child {
  padding-left: 2rem;
}

/* Ensure FAQ visual is properly centered at bottom */
.faq-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Responsive: feature icon cards stack correctly on mobile */
@media (max-width: 640px) {
  .gameplay-banner-img {
    height: 220px;
  }
  .gameplay-banner-overlay {
    padding: 1.5rem;
  }
  .gameplay-overlay-text strong {
    font-size: 1rem;
  }
  .benefits-col:first-child {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
  }
  .benefits-col:last-child {
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .benefits-glass {
    grid-template-columns: 1fr;
  }
  .benefits-heading {
    grid-column: 1;
  }
}

/* ============================================================
   SPEED OPTIMIZATION / SPA TRANSITIONS
============================================================ */
/* Swup Transition Animations */
.transition-fade {
  transition: 0.3s;
  opacity: 1;
}
html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(10px);
}
