:root {
  --primary-purple: #8b5cf6;
  --neon-pink: #ff007f;
  --neon-cyan: #00f0ff;
  --neon-yellow: #ffe600;
  --bright-green: #10b981;
  --orange-pop: #ff6b35;
  --wa-color: #25d366;
  --wa-hover: #1eb956;
  
  --bg-deep: #090314;
  --bg-card: rgba(22, 10, 42, 0.85);
  --border-card: rgba(255, 255, 255, 0.12);

  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  --font-fun: 'Fredoka', cursive;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-retro: 'Space Grotesk', sans-serif;

  --radius-xl: 22px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Cosmic Neon Background Gradients */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 20%, rgba(255, 0, 127, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 90%, rgba(255, 230, 0, 0.1) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle Retro Grid Floor */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  background: 
    linear-gradient(transparent 92%, rgba(255, 0, 127, 0.15) 92%),
    linear-gradient(90deg, transparent 92%, rgba(0, 240, 255, 0.15) 92%);
  background-size: 40px 40px;
  transform: perspective(400px) rotateX(65deg);
  transform-origin: bottom center;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* Floating Fun Stickers */
.floating-stickers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sticker {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.75;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  animation: floatSticker 6s infinite ease-in-out alternate;
}

.s1 { top: 12%; left: 4%; animation-delay: 0s; }
.s2 { top: 22%; right: 5%; animation-delay: 1s; font-size: 2.5rem; }
.s3 { top: 50%; left: 3%; animation-delay: 2s; }
.s4 { top: 65%; right: 4%; animation-delay: 1.5s; font-size: 2rem; }
.s5 { top: 80%; left: 6%; animation-delay: 3s; font-size: 2.4rem; }
.s6 { top: 38%; right: 3%; animation-delay: 2.5s; }
.s7 { top: 92%; right: 8%; animation-delay: 0.5s; }
.s8 { top: 6%; right: 25%; animation-delay: 1.8s; font-size: 1.8rem; }
.s9 { top: 88%; left: 22%; animation-delay: 2.8s; }

@keyframes floatSticker {
  0% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-15px) rotate(8deg) scale(1.05); }
  100% { transform: translateY(10px) rotate(-8deg) scale(0.95); }
}

/* Typography & Titles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
}

.gradient-retro {
  background: linear-gradient(135deg, #ff007f 0%, #ff6b35 50%, #ffe600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-fun);
  letter-spacing: 1px;
}

.gradient-neon {
  background: linear-gradient(135deg, #00f0ff 0%, #a855f7 70%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-retro);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(9, 3, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 0, 127, 0.2);
  z-index: 50;
  padding: 14px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-fun);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-badge {
  font-size: 1.6rem;
  animation: pulse 2s infinite;
}

.accent-highlight {
  color: var(--neon-yellow);
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.6);
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--neon-cyan);
  transform: translateY(-1px);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-fun);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-nav-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* Hero Section */
.hero {
  max-width: 1050px;
  margin: 0 auto;
  padding: 70px 20px 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 127, 0.12);
  border: 1.5px solid var(--neon-pink);
  color: #ffb3d9;
  font-family: var(--font-retro);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
}

.pill-fire {
  font-size: 1.2rem;
  animation: bounce 1.5s infinite;
}

.hero-heading {
  font-size: 3.6rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 38px;
  line-height: 1.6;
}

.hero-desc strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #ff007f 0%, #8b5cf6 100%);
  color: #fff;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(255, 0, 127, 0.7);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  color: var(--neon-cyan);
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-family: var(--font-fun);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(0, 240, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.t-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.t-icon-box.orange { background: rgba(255, 107, 53, 0.2); border: 1px solid var(--orange-pop); }
.t-icon-box.cyan { background: rgba(0, 240, 255, 0.2); border: 1px solid var(--neon-cyan); }
.t-icon-box.pink { background: rgba(255, 0, 127, 0.2); border: 1px solid var(--neon-pink); }

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: #fff;
}

.trust-item small {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Catalog Section */
.catalog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  position: relative;
  z-index: 2;
}

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

.section-header h2 {
  font-family: var(--font-fun);
  font-size: 2.6rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

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

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-family: var(--font-fun);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #8b5cf6 0%, #ff007f 100%);
  border-color: #ff007f;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 0, 127, 0.45);
  transform: translateY(-2px);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.demo-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.demo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 45px rgba(0, 240, 255, 0.3), 0 0 15px rgba(255, 0, 127, 0.2);
}

/* Corner Ribbons */
.card-ribbon {
  position: absolute;
  top: 14px;
  right: -30px;
  transform: rotate(45deg);
  font-family: var(--font-retro);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 34px;
  color: #fff;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.ribbon-green { background: #10b981; }
.ribbon-pink { background: #ff007f; }
.ribbon-gold { background: #d97706; }
.ribbon-dark { background: #3f3f46; }

.card-preview {
  height: 210px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.theme-dino {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 60%, #40916c 100%);
}

.theme-retro {
  background: linear-gradient(135deg, #240046 0%, #1f083d 50%, #ff007f 100%);
}

.theme-boho {
  background: linear-gradient(135deg, #4a2828 0%, #8c4a53 50%, #b76e79 100%);
}

.theme-wedding {
  background: linear-gradient(135deg, #18181b 0%, #27272a 60%, #3f3f46 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

.preview-badge {
  align-self: flex-start;
  font-family: var(--font-retro);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.preview-hero {
  text-align: center;
}

.demo-emoji {
  font-size: 3.2rem;
  display: inline-block;
  margin-bottom: 6px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

.preview-hero h3 {
  font-family: var(--font-fun);
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.card-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.45);
  color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-family: var(--font-fun);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  gap: 12px;
}

.btn-demo {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #fff;
  font-family: var(--font-fun);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-demo:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.btn-card-wa {
  background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-fun);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-card-wa:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

/* Feature Highlight Section */
.features-highlight {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 70px;
  position: relative;
  z-index: 2;
}

.feature-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-box {
  background: rgba(22, 10, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 127, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.f-icon-lg {
  font-size: 2.4rem;
  display: inline-block;
  margin-bottom: 10px;
}

.feature-box h4 {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}

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

/* How It Works Section */
.how-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  position: relative;
  z-index: 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 34px 26px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-num-bubble {
  font-family: var(--font-fun);
  font-size: 1.8rem;
  font-weight: 700;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.color-1 { background: linear-gradient(135deg, #ff007f 0%, #ff6b35 100%); }
.color-2 { background: linear-gradient(135deg, #00f0ff 0%, #0284c7 100%); }
.color-3 { background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%); }
.color-4 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.step-card h3 {
  font-family: var(--font-fun);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

/* Fast Brief Form */
.form-section {
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.form-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(255, 0, 127, 0.3);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 0, 127, 0.15);
  backdrop-filter: blur(14px);
}

.form-header {
  text-align: center;
  margin-bottom: 34px;
}

.form-header h2 {
  font-family: var(--font-fun);
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-fun);
  font-size: 0.95rem;
  color: #f1f5f9;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(8, 2, 18, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
  background: rgba(12, 4, 26, 0.9);
}

.form-group select option {
  background: #190933;
  color: #fff;
}

.btn-submit-wa {
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
  color: #fff;
  border: none;
  font-family: var(--font-fun);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-submit-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.btn-icon-wa {
  font-size: 1.4rem;
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* Footer */
.main-footer {
  background: #05010a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 20px 30px;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 340px;
  margin-top: 10px;
}

.footer-contact h4 {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--neon-cyan);
}

.footer-contact p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--wa-color);
  text-decoration: none;
  font-weight: 700;
}

.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

/* Phone Mockup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 1, 12, 0.88);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

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

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 96vh;
}

.modal-header {
  width: 390px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.modal-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-title-box h3 {
  font-family: var(--font-fun);
  font-size: 1.1rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-cyan);
  animation: pulse 1.5s infinite;
}

.modal-controls {
  display: flex;
  gap: 8px;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

/* Smartphone Frame */
.phone-frame {
  width: 390px;
  height: 730px;
  max-height: calc(90vh - 60px);
  background: #000;
  border: 12px solid #271a38;
  border-radius: 46px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(139, 92, 246, 0.3);
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background: #4b3869;
  border-radius: 10px;
  z-index: 10;
}

.phone-camera {
  position: absolute;
  top: 10px;
  left: calc(50% + 42px);
  width: 7px;
  height: 7px;
  background: #00f0ff;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 6px #00f0ff;
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

/* Floating WhatsApp Action Button */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.7);
}

.wa-float-emoji {
  font-size: 2rem;
}

.wa-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(15, 6, 28, 0.95);
  color: #fff;
  border: 1px solid var(--neon-cyan);
  font-family: var(--font-fun);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Micro-animations */
.bounce-anim {
  animation: bounce 2.2s infinite ease-in-out;
}

.pulse-anim {
  animation: pulse 2s infinite ease-in-out;
}

.float-anim {
  animation: floatSticker 4s infinite ease-in-out alternate;
}

.shine-anim {
  animation: shine 2.5s infinite;
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes shine {
  0%, 100% { opacity: 1; transform: rotate(0deg); }
  50% { opacity: 0.8; transform: rotate(8deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.3rem;
  }

  .floating-stickers {
    display: none;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

  .phone-frame {
    width: 320px;
    height: 600px;
  }

  .modal-header {
    width: 320px;
  }
}
