:root {
  --pink: #ff4fa3;
  --hot-pink: #ff2f8f;
  --orange: #ff8e1c;
  --purple: #7c3cff;
  --dark: #171423;
  --text: #514b61;
  --muted: #7e778d;
  --soft: #fff4f9;
  --line: rgba(23, 20, 35, .10);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(124, 60, 255, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

.fw-black { font-weight: 900; }
.navbar-blur {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 20, 35, .08);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--dark);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(255, 79, 163, .22);
  background: white;
}
.hero-logo-card {
  width: min(360px, 82vw);
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(23, 20, 35, .08);
  box-shadow: 0 20px 50px rgba(255, 79, 163, .14);
  backdrop-filter: blur(14px);
}
.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .85rem;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 30px rgba(255, 79, 163, .28);
}
.nav-link {
  color: var(--text);
  font-weight: 700;
}
.nav-link:hover { color: var(--hot-pink); }
.btn-primary-custom {
  border: 0;
  border-radius: 999px;
  color: white !important;
  font-weight: 800;
  padding: .85rem 1.35rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
  box-shadow: 0 16px 34px rgba(255, 79, 163, .28);
}
.btn-primary-custom:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(255, 79, 163, .35);
}
.btn-outline-custom {
  border: 1px solid rgba(255, 79, 163, .35);
  color: var(--dark);
  border-radius: 999px;
  font-weight: 800;
  padding: .85rem 1.35rem;
  background: white;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 135px 0 85px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 79, 163, .17), transparent 33%),
    radial-gradient(circle at 80% 20%, rgba(255, 142, 28, .18), transparent 30%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 74%);
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .65;
  pointer-events: none;
}
.hero-glow-one {
  width: 280px;
  height: 280px;
  background: var(--pink);
  left: -90px;
  top: 180px;
}
.hero-glow-two {
  width: 260px;
  height: 260px;
  background: var(--orange);
  right: -80px;
  bottom: 80px;
}
.badge-soft,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .5rem .9rem;
  color: var(--hot-pink);
  font-weight: 900;
  background: rgba(255, 79, 163, .10);
  font-size: .82rem;
  letter-spacing: .02em;
}
.eyebrow { margin-bottom: 1rem; }
.eyebrow.light {
  color: white;
  background: rgba(255, 255, 255, .18);
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .9;
  letter-spacing: -0.08em;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero-text {
  max-width: 620px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.75;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.trust-row span {
  padding: .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 700;
}

.phone-card {
  width: min(390px, 100%);
  border-radius: 48px;
  padding: 14px;
  background: #171423;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-top {
  width: 96px;
  height: 24px;
  margin: 0 auto -10px;
  border-radius: 0 0 18px 18px;
  background: #171423;
  position: relative;
  z-index: 2;
}
.app-screen {
  min-height: 650px;
  border-radius: 38px;
  background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
  padding: 28px 20px;
  overflow: hidden;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tiny-label { color: var(--muted); font-size: .8rem; font-weight: 700; }
.avatar-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}
.search-pill {
  margin: 26px 0 16px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--muted);
  font-weight: 700;
  background: #f5f1f7;
}
.category-row {
  display: flex;
  gap: .6rem;
  overflow: hidden;
}
.category-row span {
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-weight: 800;
  font-size: .78rem;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.product-card {
  min-height: 172px;
  border-radius: 26px;
  padding: 14px;
  background: white;
  box-shadow: 0 14px 30px rgba(23, 20, 35, .08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-card strong { font-size: .95rem; }
.product-card small { color: var(--muted); font-weight: 700; }
.product-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 20px;
  margin-bottom: 12px;
}
.card-one .product-img { background: #ffe8f3; }
.card-two .product-img { background: #fff0db; }
.card-three .product-img { background: #eee8ff; }
.card-four .product-img { background: #e9fff7; }
.bottom-action {
  margin-top: 22px;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
}

.section-padding { padding: 95px 0; }
.section-heading { max-width: 760px; margin: 0 auto 48px; }
.section-heading h2,
.seller-section h2,
.cta-card h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
  font-size: clamp(2.1rem, 4vw, 4rem);
}
.section-heading p,
.lead-custom,
.cta-card p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}
.feature-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  background: white;
  box-shadow: 0 18px 45px rgba(23, 20, 35, .06);
}
.feature-card h4 { font-weight: 900; margin-bottom: .7rem; }
.feature-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.icon-bubble {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #fff1f7, #fff7e8);
  margin-bottom: 22px;
}
.seller-section {
  background: linear-gradient(180deg, #fff7fb, #fff);
}
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--text);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.seller-card {
  border-radius: 42px;
  padding: 42px;
  background: var(--dark);
  color: white;
  box-shadow: var(--shadow);
}
.seller-card h3 { font-weight: 900; font-size: 2.4rem; }
.seller-card p { color: rgba(255,255,255,.72); }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.stats-grid div {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,.06);
}
.stats-grid strong {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}
.stats-grid span {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 700;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(23, 20, 35, .06);
}
.benefit-strip div {
  padding: 34px;
  background: white;
  border-right: 1px solid var(--line);
}
.benefit-strip div:last-child { border-right: 0; }
.benefit-strip h5 { font-weight: 900; }
.benefit-strip p { color: var(--muted); margin: 0; line-height: 1.65; }
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--hot-pink), var(--orange));
}
.cta-card {
  color: white;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 42px;
  padding: 58px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(18px);
}
.cta-card p { color: rgba(255,255,255,.82); }
.signup-form { max-width: 820px; margin-top: 26px; }
.form-control {
  border: 0;
  border-radius: 18px;
  font-weight: 700;
  padding: .95rem 1rem;
}
.cta-card small { display: block; margin-top: 16px; color: rgba(255,255,255,.76); }
.footer {
  padding: 28px 0;
  background: #120f1d;
  color: white;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer a { color: rgba(255,255,255,.72); text-decoration: none; font-weight: 700; }
.footer a:hover { color: white; }

@media (max-width: 991px) {
  .hero-section { padding-top: 115px; text-align: center; }
  .hero-text { margin: 0 auto; }
  .trust-row { justify-content: center; }
  .phone-card { transform: none; }
  .navbar-collapse { padding: 1rem 0; }
  .navbar-nav { align-items: stretch !important; }
}

@media (max-width: 767px) {
  .brand-logo { width: 42px; height: 42px; border-radius: 14px; }
  .hero-logo-card { margin-left: auto; margin-right: auto; padding: 8px 14px; }
  .hero-section { min-height: auto; padding: 104px 0 60px; }
  .hero-title { font-size: clamp(3rem, 17vw, 4.7rem); }
  .hero-text { font-size: 1rem; }
  .section-padding { padding: 66px 0; }
  .feature-card,
  .seller-card,
  .cta-card { border-radius: 28px; padding: 26px; }
  .app-screen { min-height: 560px; border-radius: 32px; }
  .product-card { min-height: 145px; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-strip div:last-child { border-bottom: 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .signup-form .btn { width: 100%; }
}

@media (max-width: 430px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .phone-card { border-radius: 38px; padding: 10px; }
  .app-screen { padding: 23px 16px; }
  .product-grid { gap: 10px; }
  .product-card { border-radius: 22px; padding: 11px; }
  .product-card strong { font-size: .84rem; }
  .product-card small { font-size: .72rem; }
  .product-img { font-size: 2rem; }
}
