/* ================================================================
   MediaDrop – Unified Design System v3.0
   Clean rebuild: no duplicates, full dark/light support
   ================================================================ */

/* ================================================================
   1. CSS VARIABLES (Single Source of Truth)
   ================================================================ */
:root {
    /* Colors */
    --primary:        #4f6ef7;
    --primary-dark:   #3a54d4;
    --accent:         #00d4ff;
    --warning:        #fbbf24;
    
    /* Gradient */
    --gradient:       linear-gradient(135deg, #00d4ff 0%, #4f6ef7 50%, #1e1b6b 100%);
    --gradient-soft:  linear-gradient(135deg, rgba(0,212,255,.15) 0%, rgba(79,110,247,.15) 100%);
    
    /* Light Mode Surfaces */
    --bg:             #f4f7ff;
    --bg-alt:         #eef2ff;
    --surface:        #ffffff;
    --surface-alt:    #f8faff;
    --border:         rgba(0, 0, 0, 0.08);
    --shadow:         0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover:   0 16px 48px rgba(0, 0, 0, 0.14);
    
    /* Light Mode Text */
    /*  --text:           #0f172a;*/
    /*  --text-soft:      #475569;*/
    /*  --text-muted:     #94a3b8;*/
    
    --text:        #0f172a;
    --text-soft:   #475569;  /* ممتاز */
    --text-muted:  #6b7280;  /* أغمق شوي لرفع التباين */
    
    /* Navbar */
    --nav-bg:         rgba(255, 255, 255, 0.88);
    --nav-border:     rgba(0, 0, 0, 0.08);
    
    /* Misc */
    --radius:         16px;
    --radius-lg:      24px;
    --transition:     0.28s ease;
    --font:           'Cairo', system-ui, -apple-system, sans-serif;
}

html[data-theme="dark"] {
  /* Dark Mode Surfaces */
  --bg:             #020617;
  --bg-alt:         #0a0f1e;
  --surface:        rgba(255, 255, 255, 0.05);
  --surface-alt:    rgba(255, 255, 255, 0.03);
  --border:         rgba(255, 255, 255, 0.10);
  --shadow:         0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-hover:   0 16px 48px rgba(0, 0, 0, 0.55);

  /* Dark Mode Text */
/*  --text:           #e2e8f0;*/
/*  --text-soft:      #94a3b8;*/
/*  --text-muted:     #64748b;*/

--text:        #e2e8f0;
--text-soft:   #94a3b8;
--text-muted:  #9ca3af; /* كان أضعف، هذا أفضل */

  /* Navbar */
  --nav-bg:         rgba(2, 6, 23, 0.88);
  --nav-border:     rgba(255, 255, 255, 0.08);
}

/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  transition: background var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  filter: none !important;
}

i {
  opacity: 1 !important;
  visibility: visible !important;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: var(--text-soft);
}

.lead {
  color: var(--text-soft) !important;
  font-size: 1.1rem;
}

/* Base text */
p {
  color: var(--text-soft);
}

/* Muted text (accessible contrast) */
.text-muted {
  color: var(--text-muted) !important;
}

/* Lead */
.lead {
  color: var(--text-soft) !important;
}
/*.text-muted {*/
/*  color: #495057 !important; /* أغمق */*/
/*}*/

.text-muted-custom {
  color: #343a40;
}
.text-high-contrast {
  color: var(--text);
}
h3 {
  font-size: 1rem; /* نفس حجم h5 */
  font-weight: 600;
}
/*[data-theme="light"] .text-muted {*/
/*    color: var(--text-soft) !important;*/
/*}*/
/**/
/*[data-theme="dark"] .text-muted {*/
/*  color: #cbd5f5 !important;*/
/*}*/
/*/* Override Bootstrap's .text-muted in dark mode */*/
/*html[data-theme="dark"] .text-muted {*/
/*  color: var(--text-soft) !important;*/
/*}*/
/*p, .text-muted, .lead {*/
/*  color: var(--text-soft);*/
/*}*/
/**/
/* ================================================================
   4. NAVBAR
   ================================================================ */
.navbar {
  background: var(--nav-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  transition: background var(--transition);
  padding: 12px 0;
}

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

.navbar-brand span {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text) !important;
}

.navbar-logo {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(79, 110, 247, 0.3));
}

.navbar .nav-link {
  color: var(--text-soft) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 4px;
  position: relative;
}

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

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

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

/* Dropdown */
.dropdown-menu {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-hover);
}

.dropdown-item {
  color: var(--text);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  border-radius: 8px;
}

.dropdown-item:hover {
  background: var(--gradient-soft);
  color: var(--primary);
}

html[data-theme="dark"] .dropdown-item:hover {
  background: rgba(79, 110, 247, 0.15);
}

/* Theme Toggle */
#themeToggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

#themeToggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(15deg) scale(1.05);
}

/* Language Toggle */
#langToggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
}

#langToggle:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}

/* Premium Button in Navbar */
.navbar .btn-warning {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: none;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  transition: all var(--transition);
}

.navbar .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Navbar Nav RTL */
.navbar-nav {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}

.navbar-nav .nav-item {
  margin: 0 !important;
}

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

/* ================================================================
   5. HERO SECTION
   ================================================================ */
.hero-section {
  background: var(--gradient);
  color: #fff;
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff !important;
  line-height: 1.2;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.15rem;
}

.hero-section p.text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ================================================================
   6. BUTTONS
   ================================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, #00d4ff, #4f6ef7);
  border: none;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(79, 110, 247, 0.45);
  color: #fff !important;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

/* ================================================================
   7. FEATURE CARDS
   ================================================================ */
#features {
  background: var(--bg-alt);
  transition: background var(--transition);
}

html[data-theme="dark"] #features {
  background: var(--bg-alt);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: all var(--transition);
}

html[data-theme="dark"] .feature-icon {
  background: rgba(79, 110, 247, 0.18);
  color: var(--accent);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: #fff;
  transform: rotate(-6deg) scale(1.08);
}

.feature-title {
  color: var(--text) !important;
  font-weight: 800;
}

.feature-desc {
  color: var(--text-soft) !important;
}

/* Download Now Text */
.download-now-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* text-muted-feature (custom) */
.text-muted-feature {
  color: var(--text-muted) !important;
}

/* ================================================================
   8. WHY SECTION
   ================================================================ */
section.py-5.text-center {
  background: var(--bg);
}

section.py-5.text-center h2 {
  color: var(--text);
}

section.py-5.text-center h5 {
  color: var(--text);
}

section.py-5.text-center p.text-muted {
  color: var(--text-soft) !important;
}

/* ================================================================
   9. SCREENSHOTS SECTION
   ================================================================ */
#screenshots {
  background: var(--bg);
  transition: background var(--transition);
}

#screenshots .lead {
  color: var(--text-muted) !important;
}

.screenshot-img {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.screenshot-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

#screenshots p.fw-bold {
  color: var(--text) !important;
}

/* ================================================================
   10. PLATFORMS SECTION
   ================================================================ */
#platforms {
  background: var(--bg-alt);
  transition: background var(--transition);
}

#platforms h2 {
  color: var(--text);
}

#platforms .platform-lead {
  color: var(--text-muted) !important;
}

.platform-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: default;
}

.platform-badge:hover {
  transform: translateY(-6px);
  background: var(--gradient);
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

.platform-badge h5 {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-icon {
  color: var(--primary);
  transition: color var(--transition);
}

.platform-badge:hover h5,
.platform-badge:hover .platform-icon {
  color: #fff !important;
}

html[data-theme="dark"] .platform-icon {
  color: var(--accent);
}

/* ================================================================
   11. DOWNLOAD SECTION
   ================================================================ */
.download-section {
  background: var(--gradient);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff !important;
}

.download-section .lead {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Store Buttons */
.store-btn {
  position: relative;
  display: inline-block;
  transition: all var(--transition);
  border-radius: 12px;
}

.store-btn:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.store-btn img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

.store-btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.store-btn.disabled:hover {
  transform: none;
  filter: none;
}

.store-btn .soon-label {
  position: absolute;
  top: -10px;
  right: 50%;
  transform: translateX(50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Info box inside download section */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* ================================================================
   12. PREMIUM SECTION
   ================================================================ */
#premium {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}

html[data-theme="light"] #premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

#premium h2,
#premium .lead,
#premium li,
#premium p {
  color: #fff !important;
}

#premium .text-warning {
  color: var(--warning) !important;
}

#premium .text-danger {
  color: #f87171 !important;
}

#premium .badge {
  font-size: 0.85rem;
}

.premium-icon {
  animation: floatIcon 4s ease-in-out infinite;
}

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

/* ================================================================
   13. CONTACT SECTION
   ================================================================ */
#contact {
  background: var(--bg);
  transition: background var(--transition);
}

#contact h2 {
  color: var(--text);
}

.contact-lead {
  color: var(--text-muted) !important;
}

#contact #contactForm {
  background: var(--surface) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: background var(--transition);
}

#contact #contactForm label {
  color: var(--text) !important;
  font-weight: 600;
}

#contact #contactForm input,
#contact #contactForm textarea {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  transition: border-color var(--transition), background var(--transition);
}

#contact #contactForm input:focus,
#contact #contactForm textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(79, 110, 247, 0.15) !important;
  outline: none;
}

#contact #contactForm input::placeholder,
#contact #contactForm textarea::placeholder {
  color: var(--text-muted) !important;
}

#contact #contactForm button[type="submit"] {
  background: var(--gradient) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-weight: 700;
  padding: 12px 36px;
  transition: all var(--transition);
}

#contact #contactForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 110, 247, 0.4);
}

/* ================================================================
   14. FAQ / ACCORDION
   ================================================================ */
.accordion-item {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background var(--transition);
}

.accordion-button {
  background: var(--surface) !important;
  color: var(--text) !important;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-soft) !important;
  color: var(--primary) !important;
}

html[data-theme="dark"] .accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}

.accordion-button::after {
  filter: none;
}

html[data-theme="dark"] .accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background: var(--surface-alt) !important;
  color: var(--text-soft) !important;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

/* ================================================================
   15. FOOTER
   ================================================================ */
.footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
  transition: background var(--transition);
}

html[data-theme="light"] .footer {
  background: #0f172a;
}

.footer h5 {
  color: #fff !important;
  font-weight: 700;
}

.footer p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  transition: color var(--transition), padding-right var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-right: 4px;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.12);
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gradient);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ================================================================
   16. FLOATING DOWNLOAD BUTTON
   ================================================================ */
.floating-download {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--gradient);
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 9990;
  display: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.floating-download:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 35px rgba(0,0,0,0.4);
  color: #fff !important;
}

/* ================================================================
   17. PREMIUM POPUP
   ================================================================ */
.premium-popup {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.72);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.popup-box {
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  color: #fff;
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 360px;
  width: 92%;
  border: 1px solid rgba(255,255,255,0.12);
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-box h3,
.popup-box p {
  color: #fff !important;
}

@keyframes popupIn {
  from { transform: scale(0.8) translateY(20px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

/* ================================================================
   18. ANIMATIONS
   ================================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

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

/* ================================================================
   19. PHONE MOCKUP
   ================================================================ */
.phone-mockup {
  transition: transform var(--transition);
}

.phone-mockup:hover {
  transform: translateY(-8px) rotate(-1deg);
}

/* ================================================================
   20. LANGUAGE DIRECTION (EN / AR)
   ================================================================ */
html[lang="en"] body {
  direction: ltr;
  text-align: left;
}

html[lang="en"] .navbar-nav {
  flex-direction: row;
}

html[lang="en"] .navbar-actions {
  margin-left: auto;
  margin-right: 0;
}

html[lang="en"] .footer-links a:hover {
  padding-right: 0;
  padding-left: 4px;
}

html[lang="en"] .social-icons a {
  margin-left: 0;
  margin-right: 8px;
}

html[lang="en"] .floating-download {
  left: auto;
  right: 24px;
}


/* ================================================================
   21. UTILITY & MISC
   ================================================================ */
.section-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: background var(--transition);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
}

/* Download Now text gradient fix for light mode */
html[data-theme="light"] .download-now-text {
  -webkit-text-fill-color: transparent;
}

/* Subscribe Section */
.subscribe-section {
  margin-top: 80px;
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f72585, #4361ee);
  color: #fff;
}

.subscribe-section h2,
.subscribe-section p {
  color: #fff !important;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Crown glow */
.fa-crown {
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* store buttons top (features section) */
.download-buttons-top {
  margin-top: 10px;
}

/* ================================================================
   22. RESPONSIVE
   ================================================================ */
@media (min-width: 1200px) {
  .hero-title { font-size: 3.4rem; }
}

@media (max-width: 992px) {
  .hero-title   { font-size: 2.4rem; }
  .download-title { font-size: 2.2rem; }
  .hero-section { padding: 120px 0 70px; }
}

@media (max-width: 768px) {
  .hero-title   { font-size: 2rem; }
  .download-title { font-size: 1.8rem; }
  .hero-section { padding: 100px 0 60px; }
  .navbar-actions { gap: 8px; }
}

@media (max-width: 576px) {
  .hero-title   { font-size: 1.75rem; }
  .store-btn img  { height: 48px; }
  .floating-download { font-size: 0.85rem; padding: 10px 16px; }
  .download-now-text { font-size: 1.6rem; }
}

