/* ==================================================
   Mila Live — High-Converting Mobile-First CSS
   Theme: Ultra Dark Violet / Hot Pink Neon / Glassmorphism
   ================================================== */

:root {
  --bg-dark: #07050e;
  --bg-card: rgba(22, 16, 38, 0.75);
  --bg-card-hover: rgba(35, 25, 60, 0.85);
  --primary-pink: #ff2a85;
  --primary-magenta: #e60067;
  --primary-purple: #8a2be2;
  --accent-gold: #ffb703;
  --accent-green: #00f5d4;
  --text-main: #ffffff;
  --text-muted: #b3adc2;
  --text-dim: #7b748d;
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(255, 42, 133, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-glow: 0 0 25px rgba(255, 42, 133, 0.5);
  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container-sm {
  max-width: 720px;
}

.text-center { text-align: center; }
.text-pink { color: var(--primary-pink); }
.text-purple { color: var(--primary-purple); }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }

.gradient-text {
  background: linear-gradient(135deg, #ff2a85 0%, #ff758c 40%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: var(--border-highlight);
  box-shadow: 0 12px 40px 0 rgba(255, 42, 133, 0.25);
}

/* Top Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #9d4edd, #ff2a85, #ff758c, #9d4edd);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.announcement-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.announcement-badge i {
  width: 14px;
  height: 14px;
}

.spots-pill {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  color: var(--accent-gold);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 5, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.6);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-live {
  background: var(--primary-pink);
  color: #fff;
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 800;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-status {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

/* Pulse Dot Animation */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00f5d4;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f5d4;
  animation: pulseGlow 1.5s infinite;
  display: inline-block;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 245, 212, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

/* ==================================================
   BUTTON STYLES & BREATHING GLOW ANIMATION
   ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient Base */
.btn-gradient, .btn-hero, .btn-card-action, .btn-sticky {
  background: linear-gradient(135deg, #ff007f 0%, #ff2a85 40%, #7928ca 100%);
  color: #ffffff;
}

/* BREATHING + PULSE ANIMATION CLASS */
.btn-breathing {
  animation: breathingGlow 2.4s ease-in-out infinite;
}

@keyframes breathingGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6), 0 0 30px rgba(121, 40, 202, 0.3);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.95), 0 0 60px rgba(255, 42, 133, 0.7), 0 0 80px rgba(121, 40, 202, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6), 0 0 30px rgba(121, 40, 202, 0.3);
  }
}

/* Hover Sweep Shine Effect */
.btn-breathing::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(25deg);
  animation: sweepShine 3.5s infinite;
}

@keyframes sweepShine {
  0% { left: -60%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-hero {
  padding: 16px 28px;
  font-size: 1.1rem;
  width: 100%;
  border-radius: var(--radius-md);
  flex-direction: row;
}

.btn-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.btn-sub-text {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.9;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 14px 24px;
  font-size: 0.95rem;
  width: 100%;
  border-radius: var(--radius-md);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.25rem;
}

/* HERO SECTION */
.hero-section {
  padding: 40px 0 60px;
  position: relative;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 42, 133, 0.25) 0%, rgba(138, 43, 226, 0.15) 50%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-pink {
  border-color: rgba(255, 42, 133, 0.4);
  color: var(--primary-pink);
}

.hero-title {
  font-size: 2.8rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* HERO VISUAL MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 340px;
  border-radius: 36px;
  padding: 12px;
  border: 2px solid rgba(255, 42, 133, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 42, 133, 0.3);
  position: relative;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

.status-live-badge {
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-time {
  color: var(--text-dim);
}

.phone-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

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

.stream-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.caller-info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.chip-avatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-pink);
}

.chip-detail {
  display: flex;
  flex-direction: column;
}

.chip-name {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-icon {
  width: 14px;
  height: 14px;
  color: #00f5d4;
  fill: #00f5d4;
}

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

/* Floating Hearts Animation */
.floating-hearts {
  position: absolute;
  right: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.heart {
  font-size: 1.4rem;
  animation: floatUp 3s infinite ease-in-out;
  opacity: 0;
}

.h1 { animation-delay: 0s; }
.h2 { animation-delay: 0.8s; }
.h3 { animation-delay: 1.6s; }
.h4 { animation-delay: 2.4s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  30% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-80px) scale(1.2); opacity: 0; }
}

.screen-action-wrap {
  width: 100%;
}

.btn-call-pulse {
  width: 100%;
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  color: #000;
  font-weight: 800;
  padding: 12px;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.6);
  animation: callPulse 1.8s infinite;
}

@keyframes callPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(0, 245, 212, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0); }
}

/* SECTIONS COMMON */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-pink);
  letter-spacing: 1px;
  background: rgba(255, 42, 133, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 42, 133, 0.2);
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-highlight {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.feature-img-preview {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
}

.feature-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.bg-magenta { background: linear-gradient(135deg, #ff2a85, #ff758c); }
.bg-purple { background: linear-gradient(135deg, #8a2be2, #9d4edd); }
.bg-rose { background: linear-gradient(135deg, #e60067, #ff007f); }
.bg-gold { background: linear-gradient(135deg, #ffb703, #fb8500); }

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

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

.feature-tag {
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

/* MODELS SECTION (9 CARDS) */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.model-img-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.model-card:hover .model-img {
  transform: scale(1.06);
}

.model-live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  color: var(--accent-green);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(0, 245, 212, 0.3);
}

.model-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.9) 100%);
}

.model-meta {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.model-name {
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

.model-name i {
  width: 13px;
  height: 13px;
  color: var(--primary-pink);
}

.model-age {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.model-stats {
  font-size: 0.72rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.model-stats i {
  width: 11px;
  height: 11px;
}

.model-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.model-tags .tag {
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

.btn-card-action {
  width: 100%;
  padding: 10px 8px;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  gap: 4px;
}

.btn-card-action i {
  width: 14px;
  height: 14px;
}

/* REVIEWS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.review-stars {
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

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

.avatar-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.author-tag {
  font-size: 0.7rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 2px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 18px 24px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

/* BOTTOM CTA SECTION */
.bottom-cta-section {
  padding: 40px 0 80px;
}

.cta-card {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--border-highlight);
  background: radial-gradient(circle at center, rgba(255, 42, 133, 0.15) 0%, rgba(22, 16, 38, 0.8) 100%);
}

.cta-logo-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(255, 42, 133, 0.8);
}

.cta-heading {
  font-size: 2rem;
}

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

/* FOOTER */
.site-footer {
  padding: 24px 0 100px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: var(--text-muted);
}

/* STICKY FOOTER CTA BAR */
.sticky-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 8, 22, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 42, 133, 0.4);
  padding: 10px 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

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

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

.sticky-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-pink);
}

.sticky-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-sticky {
  padding: 10px 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* MODAL POPUP */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  width: 100%;
  max-width: 440px;
  padding: 32px 24px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid var(--primary-pink);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.modal-coins-badge {
  display: inline-block;
  background: rgba(255, 183, 3, 0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 6px;
}

.progress-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0 10px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff2a85, #00f5d4);
  transition: width 0.2s ease;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.install-guide-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.install-guide-box h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .feature-highlight {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  /* 2 COLUMNS ON TABLETS & MOBILE FOR MODELS GRID */
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .desktop-only { display: none; }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn-hero {
    padding: 14px 20px;
  }

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

  .btn-sub-text {
    font-size: 0.65rem;
  }

  .phone-card {
    max-width: 300px;
  }

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

  /* STRICT 2-COLUMN GRID ON MOBILE PHONES (1行2列) */
  .models-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .model-meta {
    bottom: 6px;
    left: 8px;
    right: 8px;
  }

  .model-name {
    font-size: 0.9rem;
  }

  .model-age {
    font-size: 0.78rem;
  }

  .model-stats {
    font-size: 0.65rem;
  }

  .model-body {
    padding: 8px;
    gap: 6px;
  }

  .model-tags .tag {
    font-size: 0.62rem;
    padding: 2px 4px;
  }

  .btn-card-action {
    padding: 8px 4px;
    font-size: 0.75rem;
  }

  .cta-heading {
    font-size: 1.4rem;
  }
}
