/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; overflow-x: hidden; background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===================== CSS VARIABLES ===================== */
:root {
  --purple:  #7c3aed;
  --blue:    #2563eb;
  --cyan:    #0891b2;
  --green:   #16a34a;
  --amber:   #f59e0b;
  --orange:  #f97316;
  --dark:    #1e1b4b;
  --gradient: linear-gradient(to right,
    #6d28d9 0%, #4338ca 14%, #2563eb 28%,
    #0891b2 42%, #16a34a 56%, #ca8a04 70%,
    #ea580c 84%, #dc2626 100%);
}

/* ===================== LOGO ===================== */
.nav-logo    { height: 48px; width: auto; display: block; }
.footer-logo { height: 40px; width: auto; display: block; }
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}
.logo-letters {
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-letters .lM  { color: #e63946; }
.logo-letters .lU  { color: #f4a261; }
.logo-letters .lR  { color: #2a9d8f; }
.logo-letters .lA  { color: #457b9d; }
.logo-letters .lL  { color: #9333ea; }
.logo-letters .lO1 { color: #f97316; }
.logo-letters .lO2 { color: #e63946; }
.logo-tag {
  font-size: 0.38em;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.logo-tag-dark { color: #6b7280 !important; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-nav {
  background: white;
  color: var(--dark);
  padding: 7px 22px;
  font-size: 15px;
}
.btn-nav:hover { box-shadow: 0 4px 16px rgba(30,27,75,0.2); }

.btn-hero {
  background: white;
  color: var(--dark);
  padding: 11px 38px;
  font-size: 18px;
}
.btn-hero:hover { box-shadow: 0 6px 24px rgba(30,27,75,0.25); }

.btn-cta {
  background: #5b21b6;
  color: white;
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 50px;
  flex-shrink: 0;
}
.btn-cta:hover { background: #4c1d95; box-shadow: 0 4px 20px rgba(91,33,182,0.4); }

.star-gold { color: #f59e0b; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar .logo { font-size: 36px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.75; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--gradient);
  padding-top: 100px;
  overflow: hidden;
  min-height: 670px;
  padding-bottom: 0;
}

.hero-inner {
  padding: 30px 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text { padding-bottom: 40px; }

.hero-h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-h1 .heart {
  color: var(--amber);
  font-style: normal;
  display: inline-block;
  transform: rotate(20deg);
  font-size: 0.72em;
}

.hero-body {
  font-size: 18px;
  color: white;
  line-height: 1.65;
  margin-bottom: 4px;
}
.hero-tagline {
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 40px;
}

/* Right col — hero image */
.hero-img-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
}
.hero-girl {
  width: 100%;
  max-width: 686px;
  max-height: 475px;
  object-fit: contain;
  object-position: right top;
  position: relative;
  z-index: 2;
  display: block;
  margin-top: -16px;
}

/* Floating decorations */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}
.deco-sun {
  width: 80px;
  top: 20px;
  right: 130px;
  animation: spin 20s linear infinite;
}
.deco-star1 { width: 54px; bottom: 240px; left: -10px; animation: float 3.5s ease-in-out infinite; }
.deco-star2 { width: 40px; bottom: 160px; left: 50px;  animation: float 4.2s ease-in-out infinite 0.5s; opacity: 0.8; }
.deco-heart { width: 34px; bottom: 80px;  left: 20px;  animation: float-heart 3.8s ease-in-out infinite 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes float-heart {
  0%, 100% { transform: translateY(0) rotate(5deg); }
  50%       { transform: translateY(-10px) rotate(5deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===================== HERO SEMI-CIRCLE CURVE ===================== */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  line-height: 0;
}
.hero-curve svg { width: 100%; height: 260px; display: block; }

/* ===================== PRODUCT SHOWCASE ===================== */
.product-showcase {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  padding: 0 20px;
}
.product-box {
  max-width: 562px;
  width: 61%;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  transform: translateX(60px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

/* ===================== FEATURES ===================== */
.features {
  background: white;
  padding: 10px 64px 100px;
  position: relative;
}

.features-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.features-star-left {
  position: absolute;
  left: 60px;
  width: 52px;
}
.features-star-right {
  position: absolute;
  right: 60px;
  width: 40px;
}

.features-h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-card { display: flex; flex-direction: column; align-items: center; }

.feature-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature-icon img { width: 72px; height: 72px; object-fit: contain; }
.feature-icon svg { width: 68px; height: 68px; }
.fi-purple { background: #ede9fe; }
.fi-blue   { background: #dbeafe; }
.fi-green  { background: #d1fae5; }
.fi-orange { background: #fff7ed; }

.feature-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}
.ft-purple { color: var(--purple); }
.ft-blue   { color: var(--blue); }
.ft-green  { color: var(--green); }
.ft-orange { color: var(--orange); }

.feature-desc { font-size: 14px; color: #6b7280; line-height: 1.65; max-width: 190px; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: white;
  padding: 20px 64px 16px;
}
.cta-card {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 28px;
  padding: 56px 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.cta-wave svg { width: 100%; height: 40px; display: block; }

.cta-left h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-star { font-size: 24px; margin-left: 6px; color: var(--amber); }
.cta-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.email-pill {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 28px rgba(0,0,0,0.18);
  margin-bottom: 12px;
}
.email-pill input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 17px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #374151;
  background: transparent;
}
.email-pill input::placeholder { color: #9ca3af; }
.email-pill button {
  flex-shrink: 0;
  background: #5b21b6;
  color: white;
  border: none;
  padding: 17px 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.email-pill button:hover { background: #4c1d95; }

.cta-privacy { font-size: 12px; color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.cta-heart   { font-size: 22px; color: rgba(255,255,255,0.85); }

/* ===================== FOOTER ===================== */
.footer-wave {
  background: white;
  line-height: 0;
}
.footer-wave svg { width: 100%; display: block; }

footer {
  background: white;
  padding: 0 64px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 28px;
  margin-top: -10px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo-wrap .logo { font-size: 28px; }

.footer-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--purple); }

.social-row { display: flex; gap: 12px; }
.social-icon {
  width: 42px;
  height: 42px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s;
}
.social-icon:hover { background: var(--purple); transform: translateY(-2px); }
.social-icon svg { width: 20px; height: 20px; fill: white; }

.footer-divider { border: none; border-top: 1px solid #e5e7eb; margin-bottom: 20px; }
.footer-copy { text-align: center; font-size: 13px; color: #9ca3af; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .navbar       { padding: 20px 32px; }
  .hero-inner   { padding: 24px 32px 0; }
  .features     { padding: 60px 32px 80px; }
  .cta-section  { padding: 20px 32px 60px; }
  .cta-card     { padding: 48px 40px; gap: 40px; }
  footer        { padding: 0 32px 0; }
  .footer-inner { padding: 40px 40px 24px; }
  .features-star-left, .features-star-right { display: none; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .hero-text    { padding-bottom: 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-card     { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
  .footer-top   { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-nav   { gap: 20px; }
  .footer-inner { padding: 36px 28px 24px; }
}

@media (max-width: 480px) {
  .hero-h1      { font-size: 36px; }
  .hero-inner   { padding: 28px 20px 0; }
  .features     { padding: 50px 20px 60px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-card     { padding: 32px 20px; }
  footer        { padding: 0 12px 0; }
  .footer-inner { padding: 32px 20px 20px; }
  .navbar       { padding: 18px 20px; }
}
