:root {
  --bg: #080808;
  --panel: #0d0e0c;
  --panel-2: #11130f;
  --white: #f5f7f2;
  --muted: #a7aea2;
  --soft: #737b72;
  --green: #6db33f;
  --green-dark: #3e7f23;
  --red: #ff4f5f;
  --red-soft: rgba(255, 79, 95, .16);
  --line: rgba(255, 255, 255, .10);
  --container: 1180px;
  --radius: 30px;
}

* {
  box-sizing: border-box
}

[hidden] {
  display: none !important
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--green);
  color: #071006
}

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

button,
input {
  font: inherit
}

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

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 12%, rgba(109, 179, 63, .10), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .045), transparent 22%),
    linear-gradient(180deg, #080808 0%, #060706 56%, #090a08 100%);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.shell {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(var(--container), calc(100% - 36px));
  height: 72px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(8, 8, 8, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .34);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto
}

.brand img {
  height: 34px;
  width: auto
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #c9d0c4;
  font-weight: 700;
  font-size: 15px
}

.main-nav a {
  transition: .2s ease;
  color: #c9d0c4
}

.main-nav a:hover {
  color: #fff
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-green {
  background: var(--green);
  color: #071006;
  box-shadow: 0 15px 45px rgba(109, 179, 63, .20)
}

.btn-green:hover {
  background: #79c34a
}

.btn-muted {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .10);
  color: #fff
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .14);
  color: #fff
}

.btn-large {
  min-height: 56px;
  padding: 0 26px;
  font-size: 17px
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  position: relative;
  cursor: pointer
}

.menu-button span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .2s
}

.menu-button span:first-child {
  top: 16px
}

.menu-button span:last-child {
  bottom: 16px
}

.hero {
  min-height: 100vh;
  padding: 150px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
}

.hero-text {
  align-self: center;
  margin-top: -30px;
}

.tagline,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7cec3;
  font-weight: 850;
  letter-spacing: .02em;
}

.tagline span,
.section-label::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.hero h1 {
  margin: 22px 0 22px;
  font-size: 46px !important;
  line-height: 1.2 !important;
  letter-spacing: 1.5px !important;
  max-width: 680px;
}

.hero h1 strong {
  display: block;
  color: var(--green);
  font-size: 46px !important;
  line-height: 1.2 !important;
  letter-spacing: 1.5px !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

.hero p {
  max-width: 670px;
  margin: 0;
  color: #d1d7ce;
  font-size: 21px;
  line-height: 1.52
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d8dfd5
}

.proof-row span {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .035);
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 750;
}

.hero-product {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px
}

.product-stage {
  position: relative;
  height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 32px;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, .09) 35%, transparent 38% 100%),
    radial-gradient(circle at 50% 46%, rgba(109, 179, 63, .18), transparent 28%),
    linear-gradient(145deg, #131512 0%, #080908 58%, #030403 100%);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .48), inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(109, 179, 63, .22);
  clip-path: polygon(0 0, 34% 0, 34% 1px, 1px 1px, 1px 28%, 0 28%, 0 0, 100% 0, 100% 100%, 66% 100%, 66% calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) 72%, 100% 72%);
  opacity: .8;
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 179, 63, .62), transparent);
  opacity: .7;
}

.sticker {
  position: relative;
  z-index: 2;
  width: min(255px, 44vw);
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .54));
  animation: stickerPresence 5.2s ease-in-out infinite;
}

.product-size {
  position: absolute;
  left: 26px;
  top: 24px;
  z-index: 3;
  color: #dfe8d9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  background: rgba(0, 0, 0, .44);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  padding: 8px 12px;
}

.scan-line {
  position: absolute;
  z-index: 4;
  width: min(310px, 54vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(109, 179, 63, .92), transparent);
  box-shadow: 0 0 18px rgba(109, 179, 63, .58);
  animation: scanProduct 3.8s ease-in-out infinite;
}

.product-shadow {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 46px;
  margin-top: 310px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  filter: blur(16px);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .028);
  border-radius: 34px;
  overflow: hidden;
}

.quick-stats article {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.quick-stats article:last-child {
  border-right: 0
}

.quick-stats b {
  display: block;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 27px);
  letter-spacing: 0;
  margin-bottom: 7px;
  white-space: nowrap
}

.quick-stats span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35
}

.section {
  padding: 96px 0;
  position: relative
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px
}

.section-heading.center {
  text-align: center;
  margin-inline: auto
}

.section-heading.narrow {
  max-width: 680px
}

.section-heading h2,
.flow-copy h2,
.price-card h2 {
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .94;
  letter-spacing: -.065em;
  margin: 18px 0 15px
}

.section-heading p,
.flow-copy p,
.price-card p {
  font-size: 20px;
  line-height: 1.5;
  color: #c5ccc1;
  margin: 0;
  max-width: 760px
}

.section-heading.center p {
  margin-inline: auto
}

.feature-cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014));
  position: relative;
  overflow: hidden
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(109, 179, 63, .24);
  transform: rotate(45deg)
}

.feature-card.primary {
  grid-row: span 2;
  background: linear-gradient(155deg, rgba(109, 179, 63, .10), rgba(255, 255, 255, .03))
}

.feature-card.wide {
  grid-column: span 2
}

.feature-card span {
  color: var(--green);
  font-weight: 900;
  letter-spacing: .13em;
  font-size: 13px
}

.feature-card h3 {
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.045em;
  margin: 78px 0 14px
}

.feature-card p {
  font-size: 17px;
  line-height: 1.48;
  color: #aeb7aa;
  margin: 0;
  max-width: 440px
}

.feature-card.primary h3 {
  font-size: 48px;
  margin-top: 130px
}

/* Reviews Carousel Layout */
.reviews-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

#publicReviewsContainer {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

#publicReviewsContainer::-webkit-scrollbar {
  height: 6px;
}

#publicReviewsContainer::-webkit-scrollbar-thumb {
  background: rgba(109, 179, 63, 0.4);
  border-radius: 999px;
}

.steps-section {
  padding-top: 30px
}

.steps-lane {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative
}

.step-item {
  position: relative;
  z-index: 1;
  min-height: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(155deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  overflow: hidden
}

.step-item:nth-child(1) {
  border-radius: 30px 8px 8px 30px
}

.step-item:nth-child(2) {
  border-radius: 8px
}

.step-item:nth-child(3) {
  border-radius: 8px 30px 30px 8px
}

.step-item::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: .8
}

.step-item::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 26px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(109, 179, 63, .20);
  transform: rotate(45deg)
}

.step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #061006;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 28px
}

.step-item h3 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 0 0 12px
}

.step-item p {
  color: #aab3a6;
  margin: 0;
  font-size: 17px;
  line-height: 1.48
}

.step-img-wrapper {
  width: 100%;
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4/5;
  background: #0f120f;
}

.step-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-item:hover .step-img-wrapper img {
  transform: scale(1.04);
}

.flow-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center
}

.flow-copy {
  max-width: 520px
}

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

.flow-grid article {
  min-height: 154px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .028)
}

.flow-grid b {
  display: block;
  color: var(--green);
  font-size: 13px;
  letter-spacing: .14em;
  margin-bottom: 42px
}

.flow-grid span {
  display: block;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.04em
}

.price-section {
  padding-top: 20px
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(109, 179, 63, .09), rgba(255, 255, 255, .025));
  padding: 42px
}

.price-card p {
  margin-bottom: 28px
}

.price-product {
  height: 340px;
  border-radius: 30px;
  background: #060706;
  border: 1px solid rgba(255, 255, 255, .10);
  display: grid;
  place-items: center;
  overflow: hidden
}

.price-product img {
  width: 150px;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, .58));
  animation: productLift 5.5s ease-in-out infinite
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .025);
  border-radius: 22px;
  overflow: hidden
}

.faq-list summary {
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green)
}

.faq-list details[open] summary::after {
  content: "−"
}

.faq-list p {
  padding: 0 26px 22px;
  margin: 0;
  color: #aab3a6;
  font-size: 17px;
  line-height: 1.5
}

.footer {
  padding: 32px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 24px;
  color: #8e978c
}

.footer img {
  height: 36px;
  width: auto
}

.footer p {
  margin: 10px 0 0
}

.footer-links {
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 800
}

.footer-links a:hover,
.legal-links a:hover {
  color: var(--green)
}

.legal-links {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  line-height: 1.35;
  color: #9ba49a
}

.legal-links a {
  white-space: nowrap
}

.is-visible {
  animation: rise .55s ease both
}

@keyframes stickerPresence {

  0%,
  100% {
    transform: translateY(0) rotate(-.6deg)
  }

  50% {
    transform: translateY(-4px) rotate(.35deg)
  }
}

@keyframes productLift {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg)
  }

  50% {
    transform: translateY(-8px) rotate(1deg)
  }
}

@keyframes scanProduct {

  0%,
  100% {
    transform: translateY(-142px);
    opacity: 0
  }

  18%,
  82% {
    opacity: 1
  }

  50% {
    transform: translateY(142px)
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

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

@media (max-width:980px) {
  .site-header {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 10px 12px 10px 18px;
    border-radius: 26px
  }

  .main-nav,
  .header-actions {
    display: none;
    width: 100%;
    margin: 0;
    padding: 10px 2px;
    flex-direction: column;
    align-items: stretch
  }

  .main-nav {
    gap: 12px
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex
  }

  .menu-button {
    display: block
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px
  }

  .hero-text {
    align-self: stretch;
    margin-top: 0
  }

  .hero-product {
    min-height: auto;
    order: -1
  }

  .product-stage {
    height: 520px
  }

  .quick-stats {
    grid-template-columns: 1fr 1fr
  }

  .quick-stats article:nth-child(2) {
    border-right: 0
  }

  .quick-stats article {
    border-bottom: 1px solid rgba(255, 255, 255, .08)
  }

  .feature-cards {
    grid-template-columns: 1fr
  }

  .feature-card.primary,
  .feature-card.wide {
    grid-column: auto;
    grid-row: auto
  }

  .feature-card.primary h3,
  .feature-card h3 {
    font-size: 34px;
    margin-top: 66px
  }

  .steps-lane {
    grid-template-columns: 1fr
  }

  .step-item,
  .step-item:nth-child(1),
  .step-item:nth-child(2),
  .step-item:nth-child(3) {
    border-radius: 24px
  }

  .flow-section,
  .price-card {
    grid-template-columns: 1fr
  }

  .flow-copy {
    max-width: none
  }

  .price-product {
    height: 260px
  }

  .price-product img {
    width: 120px
  }
}

@media (max-width:640px) {
  .shell {
    width: calc(100% - 28px)
  }

  .brand img {
    height: 30px
  }

  .hero {
    gap: 32px;
    padding-bottom: 56px
  }

  .hero h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    letter-spacing: 1.5px !important
  }

  .hero p,
  .section-heading p,
  .flow-copy p,
  .price-card p {
    font-size: 18px
  }

  .hero-actions .btn {
    width: 100%
  }

  .proof-row span {
    font-size: 13px
  }

  .product-stage {
    height: 420px;
    border-radius: 24px
  }

  .sticker {
    width: 185px
  }

  .product-size {
    left: 18px;
    top: 18px
  }

  .product-shadow {
    width: 190px;
    margin-top: 250px
  }

  .quick-stats {
    grid-template-columns: 1fr
  }

  .quick-stats article {
    border-right: 0
  }

  .section {
    padding: 68px 0
  }

  .section-heading h2,
  .flow-copy h2,
  .price-card h2 {
    font-size: 43px
  }

  .flow-grid {
    grid-template-columns: 1fr
  }

  .price-card {
    padding: 26px
  }

  .footer {
    grid-template-columns: 1fr
  }

  .footer-links {
    flex-direction: column;
    gap: 10px
  }

  .legal-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
  }

  .legal-links a {
    white-space: normal
  }

  #publicReviewsContainer>.feature-card {
    flex: 0 0 85% !important;
    min-width: 0 !important;
  }
}

/* WhatsApp Support Button */
.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 95px;
  height: 95px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn svg {
  width: 50px;
  height: 50px;
}

@media (max-width: 640px) {
  .whatsapp-btn {
    bottom: 36px;
    right: 32px;
    width: 85px;
    height: 85px;
  }
  .whatsapp-btn svg {
    width: 45px;
    height: 45px;
  }
}