/* ==========================================================================
   Status FluxSave - Comprehensive Style System
   Distinct PC (Desktop) & Mobile (Celular) Experiences
   ========================================================================== */

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

/* -------------------------------------------------------------------------- */
/* 1. Global Variables & Design Tokens                                       */
/* -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-dark: #070D12;
  --bg-card: rgba(18, 28, 36, 0.75);
  --bg-card-hover: rgba(26, 40, 52, 0.92);
  --bg-nav: rgba(7, 13, 18, 0.88);
  
  --emerald-primary: #00E676;
  --emerald-hover: #00C853;
  --emerald-dark: #00A884;
  --emerald-glow: rgba(0, 230, 118, 0.35);
  --emerald-light-bg: rgba(0, 230, 118, 0.1);

  --text-main: #F0F6FC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(0, 230, 118, 0.4);

  /* Spacing & Layout */
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Animated Gradient Mesh */
.bg-gradient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 20% 15%, rgba(0, 230, 118, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(0, 168, 132, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(0, 230, 118, 0.06) 0%, transparent 45%);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  outline: none;
  white-space: nowrap;
  user-select: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
  color: #070D12;
  box-shadow: 0 6px 22px var(--emerald-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 230, 118, 0.5);
  background: linear-gradient(135deg, #00FF84 0%, #00B890 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--emerald-primary);
  color: var(--emerald-primary);
}

.btn-large {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  gap: 0.4rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* Pulse Animation */
.pulse-glow {
  animation: pulseAnimation 2.2s infinite;
}

@keyframes pulseAnimation {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  transition: var(--transition-fast);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 12px var(--emerald-glow);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--emerald-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.logo-badge {
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: var(--emerald-light-bg);
  color: var(--emerald-primary);
  border: 1px solid rgba(0, 230, 118, 0.3);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--emerald-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--emerald-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-toggle:active {
  background: rgba(0, 230, 118, 0.15);
  border-color: var(--emerald-primary);
}

/* Mobile Bottom Fixed Bar (Hidden on PC) */
.mobile-bottom-bar {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.9rem;
  background: var(--emerald-light-bg);
  border: 1px solid rgba(0, 230, 118, 0.3);
  border-radius: var(--radius-full);
  color: var(--emerald-primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 1.2rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--emerald-primary) 0%, #00B890 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 580px;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.spec-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.spec-pill i {
  color: var(--emerald-primary);
  width: 16px;
  height: 16px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.security-note i {
  color: var(--emerald-primary);
  width: 16px;
  height: 16px;
}

/* Hero Media & 3D Promo Card (PC Desktop Mode) */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--emerald-glow);
  border: 2px solid rgba(0, 230, 118, 0.3);
  transition: var(--transition-normal);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  max-width: 420px;
  width: 100%;
}

.promo-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 45px rgba(0, 230, 118, 0.45);
}

.promo-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  height: auto;
}

.floating-badge {
  position: absolute;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(11, 20, 26, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 230, 118, 0.4);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-badge.badge-top {
  top: 15px;
  left: -20px;
}

.floating-badge.badge-bottom {
  bottom: 25px;
  right: -20px;
  animation-delay: 2s;
}

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

.floating-badge i {
  font-size: 1.3rem;
  color: var(--emerald-primary);
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: #FFF;
}

.badge-text span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Features Grid (PC Mode) */
.features-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.8rem auto;
}

.section-tag {
  color: var(--emerald-primary);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.feature-card {
  padding: 2.2rem 1.8rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--emerald-primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 230, 118, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--emerald-light-bg);
  border: 1px solid rgba(0, 230, 118, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--emerald-primary);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--emerald-primary);
  color: #070D12;
  box-shadow: 0 0 20px var(--emerald-glow);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Interactive Screenshots Showcase (PC Layout) */
.screenshots-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.screenshots-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tabs-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.15rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-normal);
  user-select: none;
}

.tab-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
  background: rgba(0, 230, 118, 0.08);
  border-color: var(--emerald-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.15);
}

.tab-btn .tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.tab-btn.active .tab-icon {
  background: var(--emerald-primary);
  color: #070D12;
}

.tab-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.tab-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Phone Mockup Frame (PC Desktop View) */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  width: 310px;
  height: 640px;
  background: #111;
  border-radius: 44px;
  padding: 12px;
  border: 4px solid #333;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 35px rgba(0, 230, 118, 0.2);
  position: relative;
  overflow: hidden;
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.screen-img.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Banner Showcase Section (PC Mode) */
.banner-showcase {
  padding: 5rem 0;
}

.banner-box {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 28, 36, 0.9) 0%, rgba(7, 26, 20, 0.9) 100%);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: var(--radius-lg);
}

.banner-box-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

/* How It Works (PC Mode) */
.how-it-works {
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--emerald-primary);
  color: #070D12;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 15px var(--emerald-glow);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(0, 230, 118, 0.3);
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 1.3rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  user-select: none;
}

.faq-question i {
  color: var(--emerald-primary);
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
  transition: max-height 0.3s ease-in-out;
}

/* Download CTA Section */
.download-cta-section {
  padding: 5rem 0;
}

.download-cta-card {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15) 0%, rgba(7, 13, 18, 0.95) 100%);
  border: 1px solid var(--emerald-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 230, 118, 0.15);
}

.download-cta-card h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.download-cta-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Download Countdown Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.download-modal {
  width: 90%;
  max-width: 480px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: var(--transition-spring);
}

.modal-overlay.active .download-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.timer-ring {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 4px solid rgba(0, 230, 118, 0.2);
  border-top-color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem auto;
  font-size: 1.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--emerald-primary);
  animation: spinRing 1s linear infinite;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-title {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-primary), #00FF84);
  transition: width 0.1s linear;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  background: #04080B;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.5;
}


/* ==========================================================================
   2. SPECIFIC MOBILE (CELULAR) & TABLET STYLES (@media max-width: 992px)
   ========================================================================== */

@media (max-width: 992px) {
  /* General Layout Adjustments */
  body {
    padding-bottom: 74px; /* Space for Mobile Floating Bar */
  }

  /* Mobile Hero Section */
  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 6.5vw, 2.8rem);
    line-height: 1.25;
  }

  .hero-subtitle {
    margin: 0 auto 1.5rem auto;
    font-size: 1rem;
  }

  .hero-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }

  .spec-pill {
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.6rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-download-btn, .hero-view-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .security-note {
    justify-content: center;
    font-size: 0.78rem;
  }

  .promo-card {
    max-width: 320px;
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--emerald-glow);
  }

  .promo-card:hover {
    transform: none;
  }

  .floating-badge {
    display: none; /* Hide floating 3D badges on mobile for clean screen space */
  }

  /* Features Grid on Mobile */
  .features-section {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .feature-card {
    padding: 1.5rem 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Interactive Screenshots Section on Mobile (Horizontal Scroll Pills) */
  .screenshots-section {
    padding: 4rem 0;
  }

  .screenshots-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tabs-menu {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.8rem;
    gap: 0.6rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tabs-menu::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    gap: 0.5rem;
  }

  .tab-btn .tab-info p {
    display: none; /* Hide paragraph on mobile pill mode */
  }

  .tab-btn .tab-info h4 {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .tab-btn .tab-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    border-radius: 50%;
  }

  /* Mobile Phone Frame Mockup */
  .phone-frame {
    width: 270px;
    height: 550px;
    border-radius: 36px;
    padding: 8px;
    border-width: 3px;
  }

  .phone-screen-container {
    border-radius: 26px;
  }

  /* Banner Showcase on Mobile */
  .banner-showcase {
    padding: 3.5rem 0;
  }

  .banner-box {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.2rem;
    text-align: center;
    gap: 1.8rem;
  }

  /* Steps Grid on Mobile */
  .how-it-works {
    padding: 4rem 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .step-card {
    padding: 1.8rem 1.2rem;
  }

  /* Download CTA on Mobile */
  .download-cta-card {
    padding: 2.8rem 1.2rem;
  }

  .download-cta-card h2 {
    font-size: 1.9rem;
  }
}

/* Specific Small Smartphone Adjustments (@media max-width: 768px) */
@media (max-width: 768px) {
  .desktop-only-btn {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Fixed Sticky Bottom Download Bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 99;
    background: rgba(11, 20, 26, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 118, 0.4);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 230, 118, 0.25);
  }

  .mobile-bar-content {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .mobile-bar-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    object-fit: cover;
    border: 1px solid rgba(0, 230, 118, 0.3);
  }

  .mobile-bar-info {
    display: flex;
    flex-direction: column;
  }

  .mobile-bar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFF;
    line-height: 1.1;
  }

  .mobile-bar-sub {
    font-size: 0.7rem;
    color: var(--emerald-primary);
    font-weight: 600;
  }

  /* Full Screen Mobile Navigation Menu Overlay */
  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 58px);
    background: rgba(7, 13, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.8rem 1.25rem;
    gap: 0.85rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 99;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
  }

  .nav-link.active {
    background: var(--emerald-light-bg);
    border-color: rgba(0, 230, 118, 0.3);
  }

  .nav-link::after {
    display: none;
  }
}
