:root {
  --primary: #5F217D;
  --purple-dark: #2A0038;
  --purple-accent: #7B2FA1;
  --yellow: #FFE600;
  --white: #FFFFFF;
  --text: #151515;
  --muted: #64576b;
  --soft: #faf7ff;
  --line: rgba(95, 33, 125, 0.14);
  --shadow: 0 24px 70px rgba(42, 0, 56, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section {
  padding: 86px 0;
}

h1,
h2,
h3 {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.06;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 8vw, 5.6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.14rem;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(95, 33, 125, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  color: var(--purple-dark);
}

.brand-logo {
  width: 46px;
  height: 46px;
  padding: 4px;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(95, 33, 125, 0.15);
}

.brand-logo.is-hidden {
  display: none;
}

.brand-mark {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--yellow);
  background: linear-gradient(135deg, var(--primary), var(--purple-dark));
  box-shadow: 0 10px 26px rgba(95, 33, 125, 0.24);
}

.brand-logo.is-hidden + .brand-mark {
  display: grid;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: var(--purple-dark);
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--purple-dark);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
}

.btn-primary,
.btn-card,
.btn-whatsapp {
  color: var(--purple-dark);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 230, 0, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at top left, rgba(255, 230, 0, 0.28), transparent 32%),
    linear-gradient(135deg, var(--purple-dark), var(--primary) 55%, var(--purple-accent));
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 116px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 4px, transparent 4px 12px);
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.retail-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.06)),
    radial-gradient(circle at 30% 20%, rgba(255,230,0,0.38), transparent 30%);
  box-shadow: 0 30px 80px rgba(42, 0, 56, 0.36);
}

.retail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.retail-bg.is-hidden {
  display: none;
}

.product-box {
  position: absolute;
  left: 15%;
  bottom: 15%;
  width: 58%;
  min-height: 300px;
  padding: 34px 28px;
  border-radius: 20px;
  color: var(--purple-dark);
  background: linear-gradient(160deg, var(--white), #f5e8ff);
  transform: rotate(-5deg);
  box-shadow: 0 24px 60px rgba(42, 0, 56, 0.3);
}

.product-label {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
  font-size: 0.78rem;
}

.product-name {
  display: block;
  margin-top: 34px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.product-strip {
  display: block;
  width: 72%;
  height: 12px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--primary);
}

.barcode-float {
  position: absolute;
  right: 8%;
  top: 17%;
  width: min(250px, 58%);
  padding: 20px;
  border-radius: 20px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow);
}

.barcode-float img.is-hidden {
  display: none;
}

.barcode-float img:not(.is-hidden) {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.barcode-float img:not(.is-hidden) + .barcode-lines {
  display: none;
}

.barcode-lines {
  display: flex;
  align-items: stretch;
  gap: 7px;
  height: 90px;
}

.barcode-lines span {
  display: block;
  flex: 1;
  background: var(--text);
}

.barcode-lines span:nth-child(2),
.barcode-lines span:nth-child(5),
.barcode-lines span:nth-child(7) {
  flex: 0.45;
}

.barcode-lines span:nth-child(3),
.barcode-lines span:nth-child(8) {
  flex: 1.7;
}

.barcode-float small {
  display: block;
  margin-top: 10px;
  color: #444;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  color: var(--purple-dark);
}

.benefits,
.audience,
.faqs {
  background: var(--soft);
}

.card-grid,
.pricing-grid,
.pill-grid,
.steps-list {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.price-card,
.pill-card,
.step-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(42, 0, 56, 0.06);
}

.info-card {
  padding: 26px;
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  color: var(--purple-dark);
  background: var(--yellow);
  font-weight: 900;
  font-size: 0.95rem;
}

.info-card p,
.price-card p,
.faq-item p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 315px;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(160deg, var(--primary), var(--purple-dark));
  transform: translateY(-10px);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.price-card .price {
  color: var(--primary);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.82rem;
  font-weight: 900;
}

.price-card.featured .price {
  color: var(--yellow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.btn-card {
  width: 100%;
  margin-top: auto;
}

.pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pill-card {
  padding: 28px;
  color: var(--purple-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.steps-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 230, 0, 0.38);
}

.step-card span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--purple-dark);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.faq-item p {
  padding: 0 0 22px;
}

.final-cta {
  background: var(--white);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 6vw, 56px);
  border-radius: 34px;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 4px, transparent 4px 14px),
    linear-gradient(135deg, var(--purple-dark), var(--primary));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.site-footer {
  padding: 32px 0 92px;
  color: rgba(255,255,255,0.82);
  background: var(--purple-dark);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2rem;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--purple-dark);
  background: var(--yellow);
  box-shadow: 0 18px 42px rgba(42, 0, 56, 0.22);
  font-weight: 900;
}

.floating-whatsapp:focus-visible {
  outline-color: var(--purple-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }

  .card-grid.four,
  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .section {
    padding: 64px 0;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .retail-card {
    min-height: 430px;
    max-width: 620px;
    margin-inline: auto;
  }

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

  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-subtitle {
    margin-top: 18px;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .card-grid.four,
  .pricing-grid,
  .pill-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .retail-card {
    min-height: 360px;
    border-radius: 26px;
  }

  .product-box {
    left: 9%;
    bottom: 14%;
    width: 66%;
    min-height: 235px;
    padding: 24px 20px;
  }

  .product-name {
    font-size: 1.48rem;
  }

  .barcode-float {
    right: 6%;
    top: 9%;
    width: 188px;
    padding: 15px;
  }

  .barcode-lines {
    height: 64px;
    gap: 5px;
  }

  .barcode-float small {
    font-size: 0.66rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-inline: 18px;
  }
}

@media (max-width: 360px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 2.14rem;
  }

  h2 {
    font-size: 1.66rem;
  }

  .brand-logo,
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 0.86rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .product-box {
    width: 70%;
    min-height: 220px;
  }

  .barcode-float {
    width: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
