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

:root {
  --primary: #ef4f9a;
  --primary-dark: #d83884;
  --primary-soft: #fff0f7;
  --secondary: #7b2756;
  --text: #202020;
  --muted: #666;
  --white: #fff;
  --light: #fafafa;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 50px rgba(239, 79, 154, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.alt-bg {
  background: linear-gradient(180deg, #fff6fb 0%, #ffffff 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-tag,
.eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-head h2,
.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff7eb7 100%);
  color: white;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.logo strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
}

.logo small {
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff72b0 100%);
  color: var(--white);
  font-weight: 700;
  transition: 0.35s ease;
  box-shadow: 0 15px 30px rgba(239, 79, 154, 0.23);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px rgba(239, 79, 154, 0.30);
}

.btn-sm {
  padding: 12px 18px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid rgba(239, 79, 154, 0.22);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-soft);
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,79,154,0.16) 0%, rgba(239,79,154,0) 70%);
  z-index: 0;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -100px;
  left: -100px;
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--primary-dark);
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  margin: 28px 0 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.badge-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.badge-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.badge-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239,79,154,0.12);
}

.card-one {
  top: 0;
  left: 40px;
  width: 72%;
  height: 340px;
}

.card-two {
  bottom: 70px;
  right: 0;
  width: 58%;
  height: 280px;
}

.info-card {
  left: 0;
  bottom: 0;
  width: 54%;
  padding: 26px;
  height: auto;
}

.info-card h3 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.info-card p {
  color: var(--muted);
}

.float-card {
  animation: floaty 5s ease-in-out infinite;
}

.card-two.float-card {
  animation-delay: 0.5s;
}

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

.trust-strip {
  padding: 14px 0;
  background: linear-gradient(90deg, #ffd9ea 0%, #fff3f8 100%);
  border-top: 1px solid rgba(239,79,154,0.15);
  border-bottom: 1px solid rgba(239,79,154,0.15);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--secondary);
}

.category-grid,
.features-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card,
.feature-card,
.testimonial-card,
.product-card,
.contact-form,
.contact-info,
.offer-wrap {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

.category-card,
.product-card,
.testimonial-card,
.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover,
.product-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(239,79,154,0.12);
}

.category-card img,
.product-card img {
  height: 240px;
}

.card-content,
.product-info {
  padding: 22px;
}

.card-content h3,
.product-info h3,
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 10px;
}

.card-content p,
.product-info p,
.feature-card p,
.testimonial-card p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.price-row strong {
  color: var(--secondary);
  font-size: 1.1rem;
}

.price-row a {
  color: var(--primary-dark);
  font-weight: 700;
}

.offer-wrap {
  border-radius: 32px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.offer-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 16px;
}

.offer-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.offer-image img {
  height: 380px;
  border-radius: 24px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 28px 22px;
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffe2f0 0%, #fff7fb 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary-dark);
}

.testimonial-card {
  padding: 26px;
}

.testimonial-card h4 {
  margin-top: 14px;
  color: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-info,
.contact-form {
  border-radius: 28px;
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  outline: none;
  font: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(239,79,154,0.55);
  box-shadow: 0 0 0 4px rgba(239,79,154,0.08);
}

.site-footer {
  background: #1f1020;
  color: rgba(255,255,255,0.88);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.site-footer h3,
.site-footer h4 {
  color: white;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.72);
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.nav-toggle,
.hamburger {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: revealUp 0.85s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .offer-wrap,
  .contact-grid,
  .features-grid,
  .product-grid,
  .category-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 500px;
  }

  .card-one {
    left: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .nav-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }

  .hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--secondary);
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid,
  .offer-wrap,
  .contact-grid,
  .product-grid,
  .category-grid,
  .testimonial-grid,
  .features-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .card-one,
  .card-two {
    height: auto;
  }

  .card-one img,
  .card-two img,
  .offer-image img {
    height: auto;
  }

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

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 76px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .section {
    padding: 72px 0;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .category-card img,
  .product-card img {
    height: 220px;
  }

  .contact-info,
  .contact-form,
  .offer-wrap {
    padding: 22px;
  }
}
