/* ==========================================================================
   AnimePirates - Modern, High-End Mobile-First Stylesheet
   Domain: animepirates.in
   ========================================================================== */

:root {
  /* Core Dark Theme Palette */
  --bg-dark: #08090d;
  --bg-surface: #10131d;
  --bg-card: #151824;
  --bg-card-hover: #1b2030;
  --bg-glass: rgba(16, 19, 29, 0.9);

  /* Primary Brand Accents */
  --primary-orange: #ff6a00;
  --primary-orange-light: #ff8533;
  --primary-orange-glow: rgba(255, 106, 0, 0.4);
  
  --accent-pink: #ec4899;
  --accent-pink-glow: rgba(236, 72, 153, 0.35);
  
  --accent-cyan: #06b6d4;
  --accent-green: #25d366;
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;

  /* Text Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 106, 0, 0.3);
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 10px 30px -5px var(--primary-orange-glow);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --ease-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  padding-bottom: 75px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--ease-smooth);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.text-pink { color: var(--accent-pink); }
.text-cyan { color: var(--accent-cyan); }
.text-green { color: var(--accent-green); }
.text-amber { color: var(--accent-amber); }
.font-bold { font-weight: 700; }

/* Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-orange);
  top: -100px;
  left: 15%;
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-pink);
  bottom: 20%;
  right: -50px;
}

/* ==========================================================================
   Top Support / Announcement Bar
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #180d19 0%, #220d18 50%, #151024 100%);
  border-bottom: 1px solid rgba(236, 72, 153, 0.25);
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-alert {
  background: #e11d48;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.announcement-link {
  color: #ff4d6d;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announcement-link:hover { text-decoration: underline; }

.top-wa-badge {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease-smooth);
}

.top-wa-badge:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-box {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  border-radius: 10px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 106, 0, 0.4);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.brand-name span { color: var(--primary-orange); }

.brand-url {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--ease-smooth);
}

.nav-item:hover { color: var(--text-main); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-wa-nav {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--accent-green);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-wa-nav:hover {
  background: var(--accent-green);
  color: #08090d;
}

.btn-nav-cta {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.menu-toggle-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.15rem;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Mobile Drawer
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-subtle);
  z-index: 300;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  color: var(--text-muted);
  font-size: 1.3rem;
}

.drawer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.drawer-item:hover {
  background: var(--bg-card);
  color: var(--primary-orange);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* ==========================================================================
   Buttons Master Set
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--ease-smooth);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  box-shadow: 0 6px 22px var(--primary-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.6);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-block { width: 100%; }

.btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 12px 20px;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Hero Section & Clean App CTA Card
   ========================================================================== */
.hero-section {
  position: relative;
  z-index: 10;
  padding: 40px 0 60px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.3);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-orange-light);
  margin-bottom: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
  box-shadow: 0 0 8px var(--primary-orange);
  animation: pulseLive 1.8s infinite;
}

@keyframes pulseLive {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.pill-version {
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.72rem;
}

.hero-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-gradient {
  background: linear-gradient(135deg, #ff8c33 0%, #ff5500 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 580px;
}

.hero-subtext strong { color: var(--text-main); }

/* App CTA Card Box */
.app-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-main);
  width: 100%;
}

.app-cta-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.app-card-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255, 106, 0, 0.4);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.35);
  overflow: hidden;
  flex-shrink: 0;
}

.app-card-icon img {
  width: 100%;
  height: 100%;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: cover;
  display: block;
}

.app-card-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.app-title-row h3 {
  font-size: 1.2rem;
}

.verified-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.app-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Hero Button Group */
.app-btn-group {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-hero-download {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px var(--primary-orange-glow);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--ease-smooth);
}

.btn-hero-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.6);
}

.btn-hero-download i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.btn-hero-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.btn-top {
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

.btn-main {
  font-size: 0.95rem;
  font-weight: 800;
}

.btn-size-tag {
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

.btn-hero-pwa {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-align: left;
  transition: var(--ease-smooth);
}

.btn-hero-pwa:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(236, 72, 153, 0.4);
  transform: translateY(-2px);
}

.btn-hero-pwa i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Quick Trust Strip */
.app-trust-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.trust-chip.tele:hover { color: var(--accent-cyan); border-color: rgba(6, 182, 212, 0.4); }
.trust-chip.group:hover { color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); }
.trust-chip.wa { color: var(--accent-green); border-color: rgba(37, 211, 102, 0.3); }
.trust-chip.wa:hover { background: rgba(37, 211, 102, 0.15); }
.trust-chip.safe { color: #10b981; border-color: rgba(16, 185, 129, 0.25); }

/* ==========================================================================
   Hero Device Frame Mockup
   ========================================================================== */
.hero-device-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.device-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.smartphone-frame {
  background: #0f1118;
  border: 8px solid #1c202d;
  border-radius: 38px;
  padding: 6px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 106, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-island {
  width: 80px;
  height: 16px;
  background: #1c202d;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.phone-screen-inner {
  background: #090a0f;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mini-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px 8px;
  background: rgba(16, 19, 29, 0.95);
  border-bottom: 1px solid var(--border-subtle);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.8rem;
}

.mini-icons {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mini-hero-banner {
  position: relative;
  height: 165px;
  overflow: hidden;
}

.mini-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-banner-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 10, 15, 0.95) 0%, rgba(9, 10, 15, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}

.mini-tag {
  background: var(--primary-orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 3px;
}

.mini-banner-fade h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.mini-banner-fade p {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.mini-watch-pill {
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.mini-section-label {
  padding: 8px 10px 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

.mini-catalog-img-box {
  padding: 0 10px 10px;
}

.mini-catalog-img {
  width: 100%;
  border-radius: 8px;
}

/* Floating Badges */
.floating-pill {
  position: absolute;
  background: rgba(16, 19, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  box-shadow: var(--shadow-main);
  z-index: 30;
}

.pill-top {
  top: 10%;
  left: -20px;
  animation: floatAnim 4s ease-in-out infinite;
}

.pill-bottom {
  bottom: 12%;
  right: -20px;
  animation: floatAnim 4.5s ease-in-out infinite 1.5s;
}

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

/* ==========================================================================
   Section Headers
   ========================================================================= */
.section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.section-title-wrap {
  max-width: 680px;
  margin: 0 auto 36px;
}

.section-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--primary-orange);
  background: rgba(255, 106, 0, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   App Preview Gallery Tabs & Showcase
   ========================================================================== */
.interactive-preview-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.preview-tab-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ease-smooth);
}

.preview-tab-pill:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
}

.preview-tab-pill.active {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--primary-orange-glow);
}

.preview-slide-card {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  animation: fadeInSlide 0.35s ease;
}

.preview-slide-card.active {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-media-box {
  background: #040508;
  position: relative;
  cursor: pointer;
  border-right: 1px solid var(--border-subtle);
  overflow: hidden;
}

.browser-fake-bar {
  padding: 8px 12px;
  background: #0d0f18;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

.fake-dots {
  display: flex;
  gap: 4px;
}

.fake-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33394e;
}

.fake-url {
  color: var(--text-dim);
  font-family: monospace;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px;
  border-radius: 4px;
}

.zoom-indicator {
  margin-left: auto;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 0.72rem;
}

.preview-full-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.preview-media-box:hover .preview-full-img {
  transform: scale(1.02);
}

.preview-info-box {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-tag-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.info-chip {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
}

.info-chip.pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.info-chip.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.info-chip.amber { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }
.info-chip.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.info-chip.orange { background: rgba(255, 106, 0, 0.15); color: var(--primary-orange); }

.preview-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.preview-info-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.info-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-bullet-list div {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--ease-smooth);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.7);
}

.feature-box.featured {
  border-color: rgba(236, 72, 153, 0.4);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, var(--bg-card) 100%);
}

.feature-hot-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.feature-icon.orange { background: rgba(255, 106, 0, 0.12); color: var(--primary-orange); }
.feature-icon.pink { background: rgba(236, 72, 153, 0.12); color: var(--accent-pink); }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.12); color: var(--accent-cyan); }
.feature-icon.amber { background: rgba(245, 158, 11, 0.12); color: var(--accent-amber); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.12); color: var(--accent-purple); }
.feature-icon.green { background: rgba(37, 211, 102, 0.12); color: var(--accent-green); }

.feature-box h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Installation Guide
   ========================================================================== */
.platform-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.platform-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--ease-smooth);
}

.platform-tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
}

.platform-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--primary-orange-glow);
}

.guide-pane {
  display: none;
  animation: fadeInSlide 0.3s ease;
}

.guide-pane.active { display: block; }

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.guide-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.step-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.guide-step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.guide-step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.guide-step-card code {
  background: rgba(255, 106, 0, 0.15);
  color: var(--primary-orange-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.guide-cta-center {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Community & VIP Support Hub
   ========================================================================== */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--ease-smooth);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.7);
}

.support-card.featured-wa {
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.08) 0%, var(--bg-card) 100%);
}

.support-card-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
}

.support-card-tag.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.support-card-tag.blue { background: rgba(2, 132, 199, 0.15); color: #38bdf8; }
.support-card-tag.green { background: rgba(37, 211, 102, 0.18); color: var(--accent-green); }

.support-card-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.support-card-icon-wrap.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.support-card-icon-wrap.blue { background: rgba(2, 132, 199, 0.15); color: #38bdf8; }
.support-card-icon-wrap.green { background: rgba(37, 211, 102, 0.15); color: var(--accent-green); }

.support-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.support-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.btn-support-telegram {
  background: #0088cc;
  color: #fff;
  padding: 11px 16px;
}
.btn-support-telegram:hover { background: #0099e6; transform: translateY(-2px); }

.btn-support-group {
  background: #0284c7;
  color: #fff;
  padding: 11px 16px;
}
.btn-support-group:hover { background: #0369a1; transform: translateY(-2px); }

.btn-support-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 11px 16px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}
.btn-support-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); }

/* ==========================================================================
   Stats Strip Box
   ========================================================================== */
.stats-strip-section {
  padding: 15px 0 45px;
}

.stats-strip-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.stat-name {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-row {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--ease-smooth);
}

.faq-row.active {
  border-color: rgba(255, 106, 0, 0.35);
}

.faq-toggle-btn {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-chevron {
  font-size: 0.8rem;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-row.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-row.active .faq-content-body {
  max-height: 220px;
  padding: 0 20px 16px;
}

.faq-content-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ==========================================================================
   Bottom Final CTA Card
   ========================================================================== */
.final-cta-card {
  background: radial-gradient(circle at 50% 0%, #1e243a 0%, #0d101a 100%);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 48px 20px;
  box-shadow: var(--shadow-glow);
  width: 100%;
}

.final-cta-logo {
  border-radius: 14px;
  box-shadow: 0 0 22px var(--primary-orange-glow);
  margin-bottom: 14px;
}

.final-cta-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
}

.final-cta-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.final-cta-checks {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ==========================================================================
   Desktop Floating Action Widget
   ========================================================================== */
.sticky-action-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-wa-float {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.sticky-wa-float:hover {
  transform: translateY(-2px);
  color: #fff;
}

.sticky-guide-float {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px var(--primary-orange-glow);
}

.sticky-guide-float:hover {
  transform: translateY(-2px);
}

.sticky-top-float {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--ease-smooth);
}

.sticky-top-float.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Mobile Bottom Sticky Install Bar (Fixed Bug-Free)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
  z-index: 250;
  background: rgba(10, 12, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  box-sizing: border-box;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.85);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  gap: 10px;
}

.mobile-sticky-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.mobile-sticky-logo {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  background: #000;
  border: 1px solid rgba(255, 106, 0, 0.4);
}

.mobile-sticky-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.mobile-sticky-text strong {
  font-size: 0.84rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.mobile-sticky-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.btn-mobile-dl {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 9px;
  white-space: nowrap;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff3700 100%);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-orange-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 20px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 12px 0 16px;
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  gap: 8px;
}

.footer-social-row a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social-row a:hover {
  color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--primary-orange);
  padding-left: 3px;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.spec-line strong { color: #fff; }

.footer-bottom-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.disclaimer {
  max-width: 520px;
  text-align: right;
}

/* ==========================================================================
   Modals & Lightbox
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 106, 0, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px var(--primary-orange-glow);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  padding: 24px;
  position: relative;
  transform: translateY(15px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon-wrap {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  border-radius: 12px;
  margin: 0 auto 10px;
  background: #000;
  box-shadow: 0 0 16px var(--primary-orange-glow);
  overflow: hidden;
  flex-shrink: 0;
}

.modal-icon-wrap img {
  width: 100%;
  height: 100%;
  max-width: 50px !important;
  max-height: 50px !important;
  object-fit: cover;
  display: block;
}

.modal-top h3 {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.modal-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.download-timer-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
}

.download-timer-msg {
  font-size: 0.84rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-pink) 100%);
  transition: width 0.1s linear;
}

.mirror-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mirror-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mirror-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 10px 12px;
  border-radius: 10px;
  transition: var(--ease-smooth);
}

.mirror-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 106, 0, 0.3);
}

.mirror-item.active-server {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.05);
}

.mirror-text strong {
  display: block;
  font-size: 0.85rem;
}

.mirror-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mirror-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.modal-wa-banner {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.modal-wa-banner a {
  color: var(--accent-green);
  font-weight: 700;
  text-decoration: underline;
}

.modal-security-row {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.modal-security-row code { color: var(--accent-cyan); }

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  z-index: 10;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.lightbox-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.lightbox-photo {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #000;
}

.lightbox-caption-text {
  padding: 10px 14px;
  background: var(--bg-card);
  font-size: 0.85rem;
  font-weight: 600;
  border-top: 1px solid var(--border-subtle);
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
  max-width: 360px;
  pointer-events: none;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  animation: slideToastDown 0.3s ease;
  pointer-events: auto;
}

@keyframes slideToastDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtext {
    margin: 0 auto 24px;
  }
  .app-cta-card {
    max-width: 560px;
  }
  .app-cta-header {
    justify-content: center;
    text-align: left;
  }
  .app-trust-strip {
    justify-content: center;
  }
  .preview-slide-card.active {
    grid-template-columns: 1fr;
  }
  .preview-media-box {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .preview-full-img {
    height: 260px;
  }
  .guide-steps-grid,
  .support-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu, .btn-nav-cta, .btn-wa-nav {
    display: none;
  }
  .menu-toggle-btn {
    display: flex;
  }
  .sticky-action-widget {
    display: none;
  }
  .mobile-sticky-bar {
    display: block;
  }
  .app-btn-group {
    grid-template-columns: 1fr;
  }
  .stats-strip-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
  }
  .stat-sep {
    display: none;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .top-announcement {
    display: none;
  }
  .hero-heading {
    font-size: 1.85rem;
  }
  .app-cta-card {
    padding: 16px;
  }
  .app-cta-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .app-title-row {
    justify-content: center;
  }
  .app-tags-row {
    justify-content: center;
  }
  .hero-device-col {
    display: none;
  }
  .preview-info-box {
    padding: 20px 16px;
  }
  .final-cta-card {
    padding: 32px 14px;
  }
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .final-cta-buttons .btn {
    width: 100%;
  }
  .final-cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
