/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --hot-pink: #ff1493;
  --soft-pink: #ffb6d9;
  --rose: #ff69b4;
  --light-pink: #fff0f7;
  --purple-glow: #e040fb;
  --white: #ffffff;
  --text-dark: #2d1b2e;
  --text-mid: #6b3a5e;
  --glass: rgba(255,255,255,0.15);
  --glass-border: rgba(255,182,217,0.3);
  --shadow: 0 8px 32px rgba(255,20,147,0.15);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.mouse-glow {
  position: fixed; width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== LOGO ===== */
.logo-img-wrap { display: flex; align-items: center; }
.logo-img {
  height: 56px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,20,147,0.25));
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(255,20,147,0.1);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo { flex: 1; }
.logo-main {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  display: block; font-size: 0.65rem;
  color: var(--text-mid); letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; list-style: none; gap: 28px;
}
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid); transition: color 0.3s;
}
.nav-links a:hover { color: var(--hot-pink); }
.nav-cta {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white; border: none; padding: 10px 24px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,20,147,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,20,147,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--hot-pink); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(255,20,147,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 75%, rgba(224,64,251,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,105,180,0.1) 0%, transparent 70%),
    linear-gradient(160deg, #fff5fb 0%, #ffe0f0 35%, #ffd0e8 65%, #ffc0e0 100%);
}

/* Decorative blobs in hero */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,20,147,0.18) 0%, transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(224,64,251,0.12) 0%, transparent 30%),
    radial-gradient(circle at 60% 90%, rgba(255,105,180,0.15) 0%, transparent 25%);
}
.hero::after { display: none; }
.hero-waves {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 3;
}
.hero-waves svg { width: 100%; height: 120px; }
.wave { fill: rgba(255,20,147,0.08); }
.wave1 { animation: waveMove 6s ease-in-out infinite alternate; }
.wave2 { fill: rgba(255,105,180,0.06); animation: waveMove 8s ease-in-out infinite alternate-reverse; }
@keyframes waveMove { from { d: path("M0,160L60,170.7C120,181,240,203,360,197.3C480,192,600,160,720,154.7C840,149,960,171,1080,176C1200,181,1320,171,1380,165.3L1440,160L1440,320L0,320Z"); } to { d: path("M0,180L60,160C120,140,240,180,360,190C480,200,600,170,720,160C840,150,960,180,1080,185C1200,190,1320,160,1380,150L1440,140L1440,320L0,320Z"); } }

.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 4; width: 100%;
}
.hero-text { flex: 1; }
/* Glass card behind hero text for readability over blurred bg */
.hero-text {
  flex: 1;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(255,20,147,0.12);
}
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge {
  background: rgba(255,20,147,0.1);
  border: 1px solid rgba(255,20,147,0.3);
  color: var(--hot-pink); font-size: 0.7rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-pulse { animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,20,147,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,20,147,0); }
}
.hero-title { margin-bottom: 20px; }
.brand-name {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--purple-glow) 50%, var(--rose) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(255,20,147,0.3));
}
.brand-tagline {
  display: block; font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-mid); font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; margin-top: 8px;
}
.hero-desc {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white;
  box-shadow: 0 6px 30px rgba(255,20,147,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,20,147,0.55); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--hot-pink);
  color: var(--hot-pink);
}
.btn-outline:hover { background: var(--hot-pink); color: white; transform: translateY(-3px); }

/* ===== HERO VISUAL ===== */
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.product-float {
  position: relative; width: 460px; height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.product-glow-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.22) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
/* Primary hero image */
.hero-primary-img-wrap {
  position: relative; z-index: 2;
  animation: floatPad 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(255,20,147,0.4));
}
.hero-primary-img {
  width: 420px; max-width: 44vw;
  display: block; border-radius: 24px;
  object-fit: contain;
}

/* Scene petals */
.scene-petal {
  position: absolute; font-size: 1.3rem;
  animation: petalFloat 5s ease-in-out infinite; z-index: 3;
}
.sp1 { top: 5%; left: 5%; animation-delay: 0s; }
.sp2 { top: 10%; right: 5%; animation-delay: 0.7s; }
.sp3 { bottom: 15%; left: 3%; animation-delay: 1.4s; }
.sp4 { bottom: 10%; right: 8%; animation-delay: 2s; }

/* Hero floating tags */
.hero-tag {
  position: absolute; background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,20,147,0.25);
  color: var(--hot-pink); font-size: 0.72rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255,20,147,0.15);
  backdrop-filter: blur(10px); z-index: 5;
  display: flex; align-items: center; gap: 6px;
  animation: petalFloat 4s ease-in-out infinite;
}
.ht1 { top: 8%; left: -5px; animation-delay: 0s; }
.ht2 { top: 42%; right: -5px; animation-delay: 1s; }
.ht3 { bottom: 12%; left: 5px; animation-delay: 2s; }

@keyframes petalFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(15deg); opacity: 1; }
}

/* ===== PRODUCT SHOWCASE IMAGE ===== */
.product-img-showcase {
  position: relative; width: 380px;
  display: flex; align-items: center; justify-content: center;
}
.showcase-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.18) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
.showcase-img {
  width: 100%; max-width: 380px;
  border-radius: 20px;
  filter: drop-shadow(0 16px 40px rgba(255,20,147,0.3));
  animation: floatPad 4s ease-in-out infinite;
  position: relative; z-index: 1;
  object-fit: contain;
}

.hero-scroll-hint {
  position: absolute; bottom: 140px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-mid); font-size: 0.75rem; z-index: 4;
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot-pink);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== GLOBAL KEYFRAMES ===== */
@keyframes glowPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}
@keyframes floatPad {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ===== SECTIONS COMMON ===== */
section { position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--hot-pink); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(255,20,147,0.08); padding: 6px 16px; border-radius: 50px;
}
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark); margin-bottom: 12px;
}
.section-header p { color: var(--text-mid); font-size: 1rem; }

/* ===== FEATURES ===== */
.features { padding: 100px 24px; background: var(--white); }
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 36px 28px;
  text-align: center; transition: all 0.4s ease;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, rgba(255,240,247,0.8), rgba(255,255,255,0.9));
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,20,147,0.2);
  border-color: rgba(255,20,147,0.4);
}
.card-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,20,147,0.15), rgba(224,64,251,0.15));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem; color: var(--hot-pink);
  box-shadow: 0 0 20px rgba(255,20,147,0.2);
  transition: all 0.4s;
}
.feature-card:hover .card-icon {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white; box-shadow: 0 0 30px rgba(255,20,147,0.5);
}
.feature-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ===== PRODUCT SHOWCASE ===== */
.product {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,20,147,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(224,64,251,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #fff5fb, #fce4ec);
}
.product-showcase {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
}
.product-3d { flex: 1; min-width: 280px; display: flex; justify-content: center; }
.product-img-showcase {
  position: relative; width: 340px;
  display: flex; align-items: center; justify-content: center;
}
.showcase-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.18) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
.showcase-img {
  width: 100%; border-radius: 16px;
  filter: drop-shadow(0 16px 40px rgba(255,20,147,0.3));
  animation: floatPad 4s ease-in-out infinite;
  position: relative; z-index: 1;
}
.product-img-showcase.no-img .pad-display-fallback { display: flex !important; }
.pad-display-fallback {
  display: none; width: 280px; height: 320px;
  align-items: center; justify-content: center;
  animation: floatPad 4s ease-in-out infinite;
}
.pad-outer {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #fff0f7, #ffe4f0);
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(255,20,147,0.2);
  border: 2px solid rgba(255,20,147,0.2);
}
.pad-inner {
  width: 85%; height: 85%;
  background: linear-gradient(145deg, #ffffff, #fff0f7);
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: inset 0 4px 20px rgba(255,20,147,0.1);
}
.pad-core {
  position: absolute; top: 20%; left: 15%; right: 15%; bottom: 20%;
  background: linear-gradient(145deg, rgba(255,182,217,0.4), rgba(255,105,180,0.2));
  border-radius: 40%;
}
.pad-wings-left, .pad-wings-right {
  position: absolute; top: 35%; width: 30px; height: 50px;
  background: linear-gradient(145deg, #ffb6d9, #ff69b4);
  border-radius: 50%;
}
.pad-wings-left { left: -20px; transform: rotate(-15deg); }
.pad-wings-right { right: -20px; transform: rotate(15deg); }
.pad-labels { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.label-tag {
  position: absolute; background: white;
  border: 1px solid rgba(255,20,147,0.3);
  color: var(--hot-pink); font-size: 0.7rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  box-shadow: 0 4px 15px rgba(255,20,147,0.15);
  white-space: nowrap;
}
.l1 { top: -10px; left: -30px; }
.l2 { top: 30%; right: -50px; }
.l3 { bottom: 20%; left: -40px; }
.l4 { bottom: -10px; right: -20px; }
.product-stats { flex: 1; min-width: 280px; }
.product-stats h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--text-dark); margin-bottom: 16px; }
.product-stats p { color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.stat-item {
  background: white; border-radius: 16px; padding: 20px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid rgba(255,20,147,0.1);
}
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--text-mid); margin-top: 4px; }
.product-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.p-badge {
  background: rgba(255,20,147,0.08); border: 1px solid rgba(255,20,147,0.2);
  color: var(--hot-pink); font-size: 0.8rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
}

/* ===== WHY CHOOSE ===== */
.why {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255,20,147,0.07) 0%, transparent 55%),
    white;
}
.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
}
.why-visual { flex: 1; min-width: 280px; display: flex; justify-content: center; }
.why-illustration {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.why-blob {
  position: absolute; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,20,147,0.1) 0%, transparent 70%);
  border-radius: 50%; animation: glowPulse 4s ease-in-out infinite;
}
.illus-circle {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(255,20,147,0.2);
}
.c1 { width: 260px; height: 260px; animation: spin 20s linear infinite; }
.c2 { width: 200px; height: 200px; animation: spin 15s linear infinite reverse; border-color: rgba(224,64,251,0.2); }
.c3 { width: 140px; height: 140px; animation: spin 10s linear infinite; border-color: rgba(255,105,180,0.3); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.illus-icon {
  font-size: 4rem; color: var(--hot-pink);
  filter: drop-shadow(0 0 20px rgba(255,20,147,0.4));
  z-index: 1;
}
.illus-petals {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.illus-petals span {
  position: absolute; font-size: 1.2rem;
  animation: petalFloat 4s ease-in-out infinite;
}
.illus-petals span:nth-child(1) { top: 5%; left: 10%; animation-delay: 0s; }
.illus-petals span:nth-child(2) { top: 5%; right: 10%; animation-delay: 1s; }
.illus-petals span:nth-child(3) { bottom: 5%; left: 10%; animation-delay: 2s; }
.illus-petals span:nth-child(4) { bottom: 5%; right: 10%; animation-delay: 0.5s; }
.why-content { flex: 1; min-width: 280px; }
.why-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--text-dark); margin: 12px 0 32px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.why-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 1rem; color: var(--text-mid); font-weight: 500;
  padding: 12px 20px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,240,247,0.8), rgba(255,255,255,0.9));
  border: 1px solid rgba(255,20,147,0.1);
  transition: all 0.3s;
}
.why-list li:hover { transform: translateX(8px); border-color: rgba(255,20,147,0.3); box-shadow: var(--shadow); }
.check-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

/* ===== HOW TO USE ===== */
.howto {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,20,147,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #fff5fb, #fce4ec);
}
.steps-row {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 280px;
  text-align: center; padding: 40px 24px; position: relative;
}
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255,20,147,0.4);
  animation: stepPulse 2s ease-in-out infinite;
}
@keyframes stepPulse {
  0%,100% { box-shadow: 0 8px 25px rgba(255,20,147,0.4); }
  50% { box-shadow: 0 8px 40px rgba(255,20,147,0.7); }
}
.step-connector {
  position: absolute; top: 70px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--soft-pink));
  z-index: 0;
}
.step-card:last-child .step-connector { display: none; }
.step-icon { font-size: 2rem; color: var(--hot-pink); margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 10px; }
.step-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(224,64,251,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255,20,147,0.07) 0%, transparent 50%),
    white;
}
.testi-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.testi-card {
  background: linear-gradient(145deg, rgba(255,240,247,0.9), rgba(255,255,255,0.95));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,182,217,0.3);
  border-radius: 24px; padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.4s; animation: floatCard 5s ease-in-out infinite;
}
.testi-card:nth-child(2) { animation-delay: 1s; }
.testi-card:nth-child(3) { animation-delay: 2s; }
.testi-card:nth-child(4) { animation-delay: 3s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.testi-card:hover { box-shadow: 0 20px 60px rgba(255,20,147,0.2); border-color: rgba(255,20,147,0.3); }
.stars { font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow));
  color: white; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.reviewer span { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 24px;
  background: linear-gradient(135deg, #fff0f7, #fce4ec);
  position: relative; overflow: hidden;
}
.contact-bg-blobs { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.08) 0%, transparent 70%);
}
.b1 { width: 500px; height: 500px; top: -100px; right: -100px; animation: glowPulse 6s ease-in-out infinite; }
.b2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: glowPulse 8s ease-in-out infinite reverse; }
.contact-cards {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
  position: relative; z-index: 1;
}
.contact-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,182,217,0.3);
  border-radius: 24px; padding: 40px 28px; text-align: center;
  box-shadow: var(--shadow); transition: all 0.4s;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(255,20,147,0.2); }
.contact-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
  animation: glowPulse 3s ease-in-out infinite;
}
.whatsapp-icon { background: linear-gradient(135deg, #25d366, #128c7e); color: white; box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.email-icon { background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow)); color: white; box-shadow: 0 8px 25px rgba(255,20,147,0.4); }
.location-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; box-shadow: 0 8px 25px rgba(255,107,107,0.4); }
.contact-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 10px; }
.contact-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.btn-email { background: linear-gradient(135deg, var(--hot-pink), var(--purple-glow)); color: white; box-shadow: 0 6px 20px rgba(255,20,147,0.4); }
.btn-email:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,20,147,0.5); }

/* ===== INQUIRY FORM ===== */
.inquiry {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255,20,147,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(224,64,251,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #fff5fb 0%, #fce4ec 100%);
  position: relative; overflow: hidden;
}
.inq-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,20,147,0.08) 0%, transparent 70%);
}
.ib1 { width: 500px; height: 500px; top: -150px; right: -100px; animation: glowPulse 7s ease-in-out infinite; }
.ib2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: glowPulse 9s ease-in-out infinite reverse; }
.inquiry-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }

.inquiry-wrap {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 48px; align-items: stretch; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.inquiry-left { flex: 0 0 300px; min-width: 260px; }
.inq-info-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,240,247,0.95));
  border: 1px solid rgba(255,20,147,0.15);
  border-radius: 24px; padding: 36px 28px;
  box-shadow: var(--shadow); height: 100%;
  display: flex; flex-direction: column; gap: 16px;
}
.inq-logo { margin-bottom: 4px; }
.inq-tagline { color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; }
.inq-details { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.inq-detail-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-mid);
}
.inq-detail-row i { color: var(--hot-pink); margin-top: 2px; flex-shrink: 0; }
.inq-product-thumb { margin-top: auto; padding-top: 16px; }
.inq-product-thumb img { width: 100%; border-radius: 10px; filter: drop-shadow(0 8px 20px rgba(255,20,147,0.2)); }

.inquiry-right { flex: 1; min-width: 280px; }
.inquiry-form {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,182,217,0.3);
  border-radius: 24px; padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(255,20,147,0.1);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid rgba(255,182,217,0.5);
  background: rgba(255,245,251,0.8);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark);
  outline: none; transition: all 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 3px rgba(255,20,147,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; }
.inq-submit {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 16px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.inq-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.form-note {
  text-align: center; font-size: 0.78rem; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note i { color: var(--hot-pink); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a0a14, #2d1b2e);
  color: rgba(255,255,255,0.8); padding: 60px 24px 0;
  position: relative;
}
.footer-wave { position: absolute; top: 0; left: 0; width: 100%; }
.footer-wave svg { width: 100%; height: 80px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px;
  padding-top: 40px;
}
.footer-brand .logo-main { font-size: 2rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.8; margin: 16px 0 24px; max-width: 280px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,20,147,0.15); border: 1px solid rgba(255,20,147,0.3);
  color: var(--soft-pink); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--hot-pink); color: white;
  box-shadow: 0 0 20px rgba(255,20,147,0.5);
  transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-head); font-size: 1.1rem; color: white;
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--soft-pink); }
.footer-contact p {
  color: rgba(255,255,255,0.6); font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; line-height: 1.6;
}
.footer-contact i { color: var(--hot-pink); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding: 20px 0; }
.footer-line {
  height: 1px; margin-bottom: 20px;
  background: linear-gradient(90deg, transparent, var(--hot-pink), var(--purple-glow), var(--hot-pink), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}
@keyframes lineGlow {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; box-shadow: 0 0 10px rgba(255,20,147,0.5); }
}
.footer-bottom p { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; padding-bottom: 20px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-right {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; text-align: center; padding: 40px 24px; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-primary-img { width: 320px; max-width: 85vw; }
  .product-float { width: 340px; height: 340px; }
  .product-glow-ring { width: 300px; height: 300px; }
  .product-showcase, .why-inner { flex-direction: column; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(255,255,255,0.97); padding: 20px; gap: 16px; box-shadow: 0 10px 30px rgba(255,20,147,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .l1, .l2, .l3, .l4 { display: none; }
  .inquiry-wrap { flex-direction: column; }
  .inquiry-left { flex: none; width: 100%; }
  .inq-product-thumb { display: none; }
  .inquiry-form { padding: 28px 20px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge-row { justify-content: center; }
  .form-row { flex-direction: column; gap: 16px; }
  .product-pack-img { width: 260px; }
  .ht1, .ht2, .ht3 { display: none; }
}
