:root {
  --orange: #FF7A00;
  --orange-dark: #E86A00;
  --orange-light: #FFB067;
  --peach: #FFF4E6;
  --peach-2: #FFE8CC;
  --lw-yellow: #FFD166;
  --charcoal: #2D2D2D;
  --charcoal-2: #1A1A1A;
  --off-white: #FAFAFA;
  --text-muted: #6B6B6B;
  --shadow-soft: 0 10px 25px -5px rgba(255, 122, 0, 0.12);
  --shadow-hover: 0 20px 40px -10px rgba(255, 122, 0, 0.25);
  --lw-radius: 20px;
}

body { font-family: 'Inter', sans-serif; }

h1, h2, h3, h4, h5, .brand-font {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}

/* ===== NAVBAR (Glassmorphism) ===== */
.navbar-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar-glass .nav-link {
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 10px;
  position: relative;
  transition: color 0.3s;
}
.navbar-glass .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-glass .nav-link:hover, .navbar-glass .nav-link.active { color: var(--orange); text-decoration: none; }
.navbar-glass .nav-link:hover::after, .navbar-glass .nav-link.active::after { width: 100%; }

.brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  color: var(--charcoal); text-decoration: none;
  transition: transform 0.3s;
}
.brand-logo:hover { transform: scale(1.05); color: var(--charcoal); }
.brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--lw-yellow));
  border-radius: 12px;
  display: grid; place-items: center;
  color: white; font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden; flex-shrink: 0;
}
.brand-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ===== BUTTONS ===== */
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-orange:hover { color: white; transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-orange:active { transform: scale(0.96); }

.btn-outline-dark-custom {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline-dark-custom:hover { background: var(--charcoal); color: white; transform: translateY(-3px); }

.btn-lw-yellow {
  background: var(--lw-yellow);
  color: var(--charcoal);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-lw-yellow:hover { background: #FFC93C; color: var(--charcoal); transform: translateY(-3px); box-shadow: 0 15px 30px -10px rgba(255, 209, 102, 0.6); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF9F2 0%, var(--off-white) 100%);
}
.hero-blob {
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 30% 30%, var(--lw-yellow), var(--orange-light) 60%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--peach-2), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-dark);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: lwPulse 1.8s infinite;
}
@keyframes lwPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title { font-size: clamp(1.9rem, 6vw, 3.4rem); line-height: 1.15; font-weight: 700; margin-bottom: 20px; }
.hero-title .highlight { color: var(--orange); position: relative; display: inline-block; }
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%; height: 10px;
  background: var(--lw-yellow);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.6;
}

.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 32px; }

.trust-badge { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.stars { color: var(--lw-yellow); }

/* Hero Mockup */
.hero-mockup { position: relative; z-index: 2; animation: lwFloat 5s ease-in-out infinite; }
@keyframes lwFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.mockup-card { background: white; border-radius: 24px; box-shadow: 0 30px 60px -20px rgba(255, 122, 0, 0.35); padding: 20px; position: relative; }
.mockup-card.main { transform: rotate(-3deg); }
.mockup-card.sub {
  position: absolute; top: -30px; right: -20px; width: 130px;
  transform: rotate(8deg); background: var(--lw-yellow); padding: 14px;
  border-radius: 18px; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
}
.mockup-card.sub-2 {
  position: absolute; bottom: -30px; left: -30px; background: white;
  padding: 12px 16px; border-radius: 16px; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600;
}
.mockup-card.sub-2 .check { width: 28px; height: 28px; border-radius: 50%; background: #4CAF50; color: white; display: grid; place-items: center; }
.mockup-preview {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  border-radius: 16px; padding: 20px; min-height: 260px;
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.mockup-preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.mockup-line { background: rgba(255,255,255,0.7); height: 12px; border-radius: 6px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--charcoal); color: white; border-radius: 24px;
  padding: 32px 20px; margin: -60px auto 80px; max-width: 1000px;
  box-shadow: 0 25px 50px -20px rgba(0,0,0,0.4); position: relative; z-index: 5;
}
.stats-bar .stat-item { text-align: center; padding: 10px 0; border-right: 1px solid rgba(255,255,255,0.1); }
.stats-bar .stat-item:last-child { border-right: none; }
.stats-bar .stat-number { font-family: 'Fredoka', sans-serif; font-size: clamp(1.3rem, 3.5vw, 2rem); font-weight: 700; color: var(--lw-yellow); margin-bottom: 4px; }
.stats-bar .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== SECTION HEADINGS ===== */
.section-tag { display: inline-block; background: var(--peach); color: var(--orange-dark); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.section-title { font-size: clamp(1.45rem, 4vw, 2.2rem); font-weight: 700; margin-bottom: 14px; }
.section-sub { color: var(--text-muted); max-width: 600px; margin-bottom: 40px; }

/* ===== STAGE CARDS ===== */
.stage-card {
  background: white; border-radius: var(--lw-radius); padding: 28px 18px; text-align: center;
  cursor: pointer; border: 2px solid transparent; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%; box-shadow: 0 4px 15px rgba(0,0,0,0.04); text-decoration: none; color: inherit; display: block;
}
.stage-card:hover { transform: translateY(-10px); border-color: var(--orange); box-shadow: var(--shadow-hover); color: inherit; text-decoration: none; }
.stage-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.8rem; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--peach), var(--peach-2)); transition: all 0.4s;
}
.stage-card:hover .stage-icon { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, var(--orange), var(--lw-yellow)); color: white; }
.stage-card h6 { font-weight: 600; margin-bottom: 4px; font-size: 1rem; }
.stage-card small { color: var(--text-muted); font-size: 0.8rem; }

.stage-card.featured { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }
.stage-card.featured h6, .stage-card.featured small { color: white; }
.stage-card.featured .stage-icon { background: rgba(255,255,255,0.2); color: white; }
.stage-card.featured:hover { border-color: white; box-shadow: 0 25px 50px -15px rgba(255, 122, 0, 0.5); }

.stage-card.coming-soon { border: 2px dashed #DDD; background: transparent; box-shadow: none; cursor: default; }
.stage-card.coming-soon:hover { border-color: var(--orange); transform: translateY(-5px); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: white; border-radius: var(--lw-radius); overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%; display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); color: inherit; text-decoration: none; }
.product-img { height: 150px; background: linear-gradient(135deg, #E3F2FD, #BBDEFB); position: relative; overflow: hidden; }
.product-img.pink { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.product-img.lw-yellow { background: linear-gradient(135deg, #FFF9C4, #FFE082); }
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-img-inner {
  position: absolute; inset: 20px; background: white; border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 12px;
  display: flex; flex-direction: column; gap: 6px; transition: transform 0.4s;
}
.product-card:hover .product-img-inner { transform: scale(1.05); }
.product-line { height: 8px; border-radius: 4px; background: #EEE; }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
.badge-free { background: #4CAF50; color: white; }
.badge-paid { background: var(--orange); color: white; }

.product-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.product-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 5px; }
.product-meta { color: var(--text-muted); font-size: 0.75rem; margin-bottom: 10px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-price { font-weight: 700; color: var(--orange); font-size: 1.1rem; }
.btn-add {
  background: var(--peach); color: var(--orange-dark); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; transition: all 0.3s; flex-shrink: 0;
}
.btn-add:hover { background: var(--orange); color: white; transform: rotate(90deg); }

/* ===== HOW IT WORKS ===== */
.how-section { position: relative; padding: 80px 0; }
.step-card {
  background: white; border-radius: var(--lw-radius); padding: 32px 24px; text-align: center;
  position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s; height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--lw-yellow)); color: white;
  display: grid; place-items: center; font-family: 'Fredoka', sans-serif; font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 20px; position: relative; box-shadow: 0 10px 25px -5px rgba(255, 122, 0, 0.5);
}
.step-num::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: rgba(255, 122, 0, 0.2); z-index: -1; animation: lwPulseRing 2s infinite; }
@keyframes lwPulseRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
.step-card h5 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.6; }

.step-connector { position: absolute; top: 60px; left: 15%; right: 15%; height: 2px; z-index: 1; }
.step-connector svg { width: 100%; height: 40px; }

/* ===== WHY CHOOSE US ===== */
.feature-box { background: white; border-radius: 16px; padding: 24px; height: 100%; display: flex; gap: 16px; transition: all 0.3s; border: 1px solid #F0F0F0; }
.feature-box:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.feature-box.alt { background: var(--peach); border-color: transparent; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--peach), var(--peach-2));
  display: grid; place-items: center; font-size: 1.4rem; color: var(--orange-dark); flex-shrink: 0;
}
.feature-box.alt .feature-icon { background: white; }
.feature-box h6 { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.feature-box p { color: var(--text-muted); font-size: 0.82rem; margin: 0; line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-2) 100%);
  border-radius: 32px; padding: 60px 40px; text-align: center;
  position: relative; overflow: hidden; margin: 60px 0;
}
.cta-doodle { position: absolute; font-size: 2.5rem; opacity: 0.15; animation: lwFloat 6s ease-in-out infinite; }
.cta-doodle.d1 { top: 20px; left: 40px; }
.cta-doodle.d2 { top: 40px; right: 60px; animation-delay: 1s; }
.cta-doodle.d3 { bottom: 30px; left: 80px; animation-delay: 2s; }
.cta-doodle.d4 { bottom: 20px; right: 40px; animation-delay: 1.5s; }
.cta-section h2 { font-size: clamp(1.4rem, 4.5vw, 2.4rem); margin-bottom: 14px; }
.cta-section p { color: var(--text-muted); max-width: 500px; margin: 0 auto 30px; }

/* ===== FOOTER (Landing) ===== */
.lw-footer { background: var(--charcoal-2); color: rgba(255,255,255,0.75); padding: 60px 0 20px; margin-top: 40px; }
.lw-footer h6 { color: white; font-family: 'Fredoka', sans-serif; font-size: 1rem; margin-bottom: 18px; font-weight: 600; }
.lw-footer a { color: rgba(255,255,255,0.65); text-decoration: none; display: block; margin-bottom: 10px; font-size: 0.9rem; transition: all 0.3s; }
.lw-footer a:hover { color: var(--lw-yellow); transform: translateX(4px); }

.lw-newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.lw-newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 12px 18px; border-radius: 50px; font-size: 0.9rem; outline: none;
}
.lw-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.lw-newsletter-form input:focus { border-color: var(--orange); }
.lw-newsletter-form button { background: var(--orange); color: white; border: none; padding: 12px 22px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.lw-newsletter-form button:hover { background: var(--orange-dark); }

.lw-social-icons a {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: rgba(255,255,255,0.08); border-radius: 50%; margin-right: 10px; color: white; transition: all 0.3s;
}
.lw-social-icons a:hover { background: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 20px -5px rgba(255,122,0,0.5); }

.lw-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 40px; font-size: 0.85rem; text-align: center; }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: #25D366; color: white; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5); z-index: 999;
  transition: all 0.3s; text-decoration: none;
}
.whatsapp-float:hover { color: white; transform: scale(1.1) rotate(10deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .stats-bar { margin-top: -40px; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
  .stats-bar .stat-item:last-child { border-bottom: none; }
  .step-connector { display: none; }
}
@media (max-width: 575px) {
  .cta-section { padding: 40px 20px; }
}
