/* ========================================
   Art Filters - Modern Landing Page CSS
   Pink Theme
   ======================================== */

:root {
  --primary: #FF2D78;
  --primary-dark: #D4136A;
  --primary-light: #FF6FC8;
  --secondary: #FF8E53;
  --accent: #FFD93D;
  --dark: #0D0D12;
  --dark-2: #131318;
  --dark-3: #18181F;
  --light: #F8F9FF;
  --text-muted: #9CA3AF;
  --gradient-hero: linear-gradient(135deg, #0D0D12 0%, #1A0A14 50%, #130D1F 100%);
  --gradient-primary: linear-gradient(135deg, #FF2D78 0%, #FF6FC8 60%, #FFB3D9 100%);
  --gradient-cta: linear-gradient(135deg, #FF2D78 0%, #FF6FC8 100%);
  --gradient-secondary: linear-gradient(135deg, #FF2D78 0%, #FF8E53 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,45,120,0.08) 0%, rgba(255,111,200,0.04) 100%);
  --border-glass: 1px solid rgba(255,255,255,0.07);
  --border-pink: 1px solid rgba(255,45,120,0.2);
  --shadow-glow: 0 0 40px rgba(255,45,120,0.3);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override Start Bootstrap theme #mainNav (ID beats class in specificity) */
#mainNav {
  background-color: transparent !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.modern-landing {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
nav.navbar-modern,
#mainNav.navbar-modern {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0 !important;
  background: rgba(13,13,18,0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  transition: var(--transition);
}
nav.navbar-modern.scrolled,
#mainNav.navbar-modern.scrolled {
  background: rgba(13,13,18,0.98) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255,45,120,0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar-modern .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.navbar-modern .nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255,45,120,0.4);
}
.navbar-modern .nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 20px;
  transition: var(--transition);
}
.navbar-modern .nav-links a:hover {
  color: #fff;
  background: rgba(255,45,120,0.12);
}
.navbar-modern .nav-cta {
  background: var(--gradient-cta) !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255,45,120,0.4);
  transition: var(--transition);
}
.navbar-modern .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,45,120,0.55) !important;
}
.navbar-toggler-modern {
  background: rgba(255,45,120,0.12);
  border: var(--border-pink);
  border-radius: 10px;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
}
.navbar-toggler-modern:hover {
  background: rgba(255,45,120,0.2);
}

/* ══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255,45,120,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,111,200,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,45,120,0.12);
  border: 1px solid rgba(255,45,120,0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF6FC8;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat .number {
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.store-badge {
  display: block;
  transition: var(--transition);
}
.store-badge:hover {
  transform: translateY(-3px);
}
.store-badge img {
  height: 46px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Hero Phone Mockup */
.hero-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.hero-phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,45,120,0.3) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-phone {
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  max-width: 270px;
  width: 100%;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero-phone img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,45,120,0.2);
  border: 2px solid rgba(255,255,255,0.08);
}
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-glass);
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: float 5s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.hero-floating-card.card-1 {
  top: 18%;
  right: 0;
  animation-delay: -1.5s;
}
.hero-floating-card.card-2 {
  bottom: 22%;
  left: 0;
  animation-delay: -3s;
}
.hero-floating-card .card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-floating-card .card-icon.purple { background: rgba(255,45,120,0.25); }
.hero-floating-card .card-icon.orange { background: rgba(255,142,83,0.25); }

/* ══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
.stats-section {
  padding: 64px 0;
  background: var(--dark-3);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}
.stat-item {
  text-align: center;
  padding: 16px 12px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.stat-number {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.25);
  color: #FF6FC8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: var(--dark);
}
.feature-card {
  background: var(--gradient-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-cta);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,45,120,0.25);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255,45,120,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: var(--gradient-cta);
  box-shadow: 0 6px 20px rgba(255,45,120,0.3);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   FILTERS MARQUEE
═══════════════════════════════════════ */
.filters-section {
  padding: 100px 0;
  background: var(--dark-2);
  overflow: hidden;
}
.filters-marquee {
  display: flex;
  gap: 20px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.filters-track {
  display: flex;
  gap: 20px;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.filter-thumb {
  flex-shrink: 0;
  width: 180px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.filter-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(255,45,120,0.25);
  border-color: rgba(255,45,120,0.3);
}
.filter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filter-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 20px 12px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.filter-thumb:hover .filter-thumb-overlay { opacity: 1; }

/* ══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-section {
  padding: 100px 0;
  background: var(--dark);
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.how-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 8px 28px rgba(255,45,120,0.4);
  position: relative;
  z-index: 1;
}
.how-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.how-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}
.how-connector {
  position: absolute;
  top: 70px;
  right: -25%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,45,120,0.5), rgba(255,45,120,0.1));
}

/* ══════════════════════════════════════
   SHOWCASE SECTION (screen2)
═══════════════════════════════════════ */
.showcase-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0D0D12 0%, #1A0A14 100%);
  overflow: hidden;
}
.showcase-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.showcase-check-icon {
  width: 26px;
  height: 26px;
  background: rgba(255,45,120,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #FF6FC8;
  flex-shrink: 0;
  border: 1px solid rgba(255,45,120,0.2);
}

/* ══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-section {
  padding: 100px 0;
  background: var(--dark-2);
}
.review-card {
  background: rgba(255,255,255,0.03);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(255,45,120,0.2);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.review-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,45,120,0.35);
}
.review-name { font-size: 0.9rem; font-weight: 700; }
.review-platform { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════════
   DOWNLOAD CTA
═══════════════════════════════════════ */
.download-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,45,120,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.download-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* ══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-modern {
  background: var(--dark-3);
  border-top: var(--border-glass);
  padding: 60px 0 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255,45,120,0.3);
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-heading {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: #FF6FC8; }
.footer-bottom {
  border-top: var(--border-glass);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255,45,120,0.15);
  color: #FF6FC8;
  border-color: rgba(255,45,120,0.3);
}

/* ══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary-modern {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(255,45,120,0.38);
  letter-spacing: -0.2px;
}
.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,45,120,0.5);
  color: #fff;
  text-decoration: none;
}
.btn-outline-modern {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-modern:hover {
  border-color: rgba(255,45,120,0.4);
  color: #fff;
  background: rgba(255,45,120,0.08);
  text-decoration: none;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   FEEDBACK MODAL
═══════════════════════════════════════ */
.modal-modern .modal-content {
  background: var(--dark-2);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  color: #fff;
}
.modal-modern .modal-header {
  border-bottom: var(--border-glass);
  padding: 24px 28px;
}
.modal-modern .modal-body { padding: 28px; }
.modal-modern .modal-footer {
  border-top: var(--border-glass);
  padding: 20px 28px;
}
.modal-modern .form-control,
.modal-modern .form-control:focus {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 12px;
}
.modal-modern .form-control:focus {
  border-color: rgba(255,45,120,0.4);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.1);
}
.modal-modern .form-control::placeholder { color: rgba(255,255,255,0.3); }
.modal-modern label { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ══════════════════════════════════════
   GRADIENT TEXT HELPERS
═══════════════════════════════════════ */
.text-gradient-pink {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-warm {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤991px)
═══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-floating-card { display: none; }
  .how-connector { display: none; }
  .hero-phone { max-width: 220px; }
  .hero-phone-wrapper { margin-top: 40px; padding: 20px 0; }
  .hero-phone-glow { width: 260px; height: 260px; }
  .section-subtitle { max-width: 100%; }
  .hero-section { padding: 110px 0 60px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
═══════════════════════════════════════ */
@media (max-width: 767px) {
  .hero-section {
    text-align: center;
    padding: 100px 0 60px;
  }
  .hero-description {
    margin: 0 auto 28px;
    font-size: 1rem;
  }
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
  .hero-stat .number { font-size: 1.5rem; }
  .store-badges { justify-content: center; }
  .store-badge img { height: 40px; }
  .hero-phone { max-width: 200px; }
  .hero-phone-wrapper { margin-top: 32px; }

  .features-section,
  .how-section,
  .reviews-section,
  .filters-section { padding: 70px 0; }

  .stats-section { padding: 48px 0; }
  .stat-item::after { display: none; }

  .download-section { padding: 80px 0; }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .section-title { letter-spacing: -0.5px; }

  .feature-card { padding: 28px 20px; }
  .review-card { padding: 24px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; letter-spacing: -1px; }
  .hero-badge { font-size: 0.72rem; }
  .store-badge img { height: 38px; }
  .btn-primary-modern { padding: 12px 28px; font-size: 0.95rem; }
  .navbar-modern .container { padding: 0 16px; }
  .how-step { padding: 28px 12px; }
}
