:root {
  --bg-body: #eef7f8;
  --bg-panel: #ffffff;
  --bg-soft: #dff4f6;
  --bg-mint: #c8f3f6;
  --bg-ink: #005f6a;
  --primary: #00aebc;
  --primary-dark: #007f8e;
  --accent: #7de3eb;
  --accent-deep: #004b56;
  --text-main: #07353b;
  --text-muted: #3f6a70;
  --on-dark: #e9fbfc;
  --on-dark-soft: #b9e9ee;
  --border-color: rgba(0, 95, 106, 0.16);
  --border-soft: 1px solid var(--border-color);
  --shadow-soft: 0 24px 70px rgba(0, 75, 86, 0.2);
  --shadow-card: 0 18px 44px rgba(0, 75, 86, 0.12);
  --hero-glow: rgba(0, 174, 188, 0.22);
  --products-overlay: rgba(0, 174, 188, 0.46);
  --radius: 18px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(120deg, rgba(223, 244, 246, 0.95), transparent 38%),
    linear-gradient(300deg, rgba(200, 243, 246, 0.78), transparent 34%),
    var(--bg-body);
  color: var(--text-main);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  margin-bottom: 1.25rem;
  text-align: center;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

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

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 6rem 0;
}

.section-intro {
  margin: 0 auto 1.5rem;
  max-width: 640px;
  text-align: center;
}

.text-gradient {
  background: linear-gradient(110deg, var(--bg-ink), var(--primary), #5dd9e3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: start;
}

.highlight {
  color: var(--primary);
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 0.95rem 2rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 16px 34px rgba(0, 95, 106, 0.3);
  color: #fff;
}

.btn-primary::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: 0.45s ease;
  width: 100%;
  z-index: -1;
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(0, 95, 106, 0.4);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-small {
  font-size: 0.9rem;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
}

.btn-text {
  align-items: center;
  color: var(--accent-deep);
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  padding: 0.8rem 0;
}

.btn-text i {
  color: var(--primary);
}

header {
  background: rgba(238, 247, 248, 0.88);
  border-bottom: var(--border-soft);
  backdrop-filter: blur(18px);
  left: 0;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-flex {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.logo {
  align-items: center;
  color: var(--bg-ink);
  display: inline-flex;
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  gap: 0.75rem;
}

.logo-mark {
  align-items: center;
  background: var(--bg-ink);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--bg-ink);
  font-size: 1.45rem;
}

@media (min-width: 992px) {
  .nav-links {
    align-items: center;
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 9rem 0 4rem;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, var(--hero-glow), transparent 58%);
  content: "";
  height: 620px;
  position: absolute;
  right: -210px;
  top: 80px;
  width: 620px;
}

.hero-bg-img {
  background: linear-gradient(rgba(0, 95, 106, 0.56), rgba(0, 95, 106, 0.56));
  background-position: center;
  background-size: cover;
  border-radius: 0 0 0 90px;
  height: 100%;
  opacity: 0.12;
  position: absolute;
  right: 0;
  top: 0;
  width: min(48vw, 620px);
  z-index: -1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.85fr);
}

.hero-content {
  max-width: 760px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.ingredients-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: var(--border-soft);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 75, 86, 0.1);
  color: var(--accent-deep);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.65rem 1rem;
  margin-bottom: 1.6rem;
  padding: 0.65rem 1rem;
}

.ingredients-pill i {
  color: var(--primary);
}

.timer-banner {
  background: #fff;
  border: 1px solid rgba(0, 174, 188, 0.32);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 95, 106, 0.14);
  color: var(--primary-dark);
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  padding: 0.65rem 1rem;
}

.hero-product {
  align-items: center;
  aspect-ratio: 1 / 1.12;
  background: linear-gradient(160deg, #ffffff 0%, #e7f8fa 52%, #c8f3f6 100%);
  border: 1px solid rgba(0, 95, 106, 0.14);
  border-radius: 42px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}

.hero-product::before,
.hero-product::after {
  border: 1px solid rgba(0, 95, 106, 0.14);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.hero-product::before {
  height: 420px;
  width: 420px;
}

.hero-product::after {
  height: 300px;
  width: 300px;
}

.product-stamp {
  background: rgba(0, 95, 106, 0.92);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 2;
}

.hero-product-img {
  filter: drop-shadow(0 26px 34px rgba(0, 75, 86, 0.24));
  max-width: 80%;
  position: relative;
  transform: scale(1.55) translateY(4%);
  width: 50%;
  z-index: 1;
}

.product-note {
  background: rgba(255, 255, 255, 0.75);
  border: var(--border-soft);
  border-radius: 16px;
  bottom: 1.5rem;
  box-shadow: 0 14px 30px rgba(31, 45, 42, 0.08);
  color: var(--bg-ink);
  font-size: 0.92rem;
  font-weight: 800;
  left: 1.5rem;
  max-width: 290px;
  padding: 1rem;
  position: absolute;
  z-index: 2;
}

.counter-strip {
  align-items: center;
  background: var(--bg-ink);
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.6rem;
  text-align: center;
}

.counter-num {
  color: var(--accent);
  font-family: "Outfit", sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.counter-text {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefits-section {
  background: linear-gradient(180deg, transparent, rgba(223, 244, 246, 0.78));
}

.benefits-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin-top: 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.74);
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.7rem;
  transition: 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(0, 174, 188, 0.34);
  transform: translateY(-4px);
}

.b-icon {
  align-items: center;
  background: var(--bg-soft);
  border-radius: 16px;
  color: var(--primary);
  display: flex;
  font-size: 1.35rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 54px;
}

.benefit-card h4 {
  color: var(--bg-ink);
  font-size: 1.22rem;
  margin-bottom: 0.55rem;
}

.benefit-card p {
  margin-bottom: 0;
}

.marquee-wrapper {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  overflow: hidden;
  padding: 1.3rem 0;
  white-space: nowrap;
}

.marquee-track {
  animation: scroll 42s linear infinite;
  display: inline-flex;
  gap: 1.3rem;
}

.marquee-reverse {
  animation-direction: reverse;
}

.review-card {
  background: #fff;
  border: var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  padding: 1.35rem;
  white-space: normal;
  width: 340px;
}

.stars {
  color: #20b9c6;
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
}

.r-text {
  color: var(--text-main);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.r-author {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0;
  text-align: right;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.products-section {
  background:
    radial-gradient(circle at top, var(--products-overlay), transparent 42%),
    var(--bg-ink);
  color: #fff;
  position: relative;
}

.products-section h2,
.products-section h3 {
  color: #fff;
}

.products-header {
  text-align: center;
}

#timer-component {
  color: var(--accent);
  display: flex;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  gap: 0.8rem;
  justify-content: center;
}

.scarcity-text {
  color: #c8f3f6;
  font-size: 0.84rem;
  font-weight: 800;
  margin-top: 0.6rem;
  text-align: center;
}

.pricing-grid {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  max-width: 340px;
  order: 2;
  padding: 2rem;
  position: relative;
  text-align: center;
  transition: 0.25s ease;
  width: 100%;
}

.price-card > p {
  color: var(--on-dark-soft);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(200, 243, 246, 0.92), #fff);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  color: var(--text-main);
  order: 1;
  transform: scale(1.04);
  z-index: 2;
}

.price-card.featured h3 {
  color: var(--bg-ink);
}

.price-card.featured p {
  color: var(--text-muted);
}

.p-badge {
  background: #fff;
  border: 1px solid rgba(0, 174, 188, 0.24);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  left: 50%;
  padding: 0.34rem 1rem;
  position: absolute;
  text-transform: uppercase;
  top: -14px;
  transform: translateX(-50%);
}

.p-img {
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.24));
  height: 190px;
  margin: 0.6rem auto 1rem;
  object-fit: contain;
  width: 100%;
}

.p-img-one {
  transform: scale(1.42) translateY(-4%);
  transform-origin: center bottom;
}

.price-big {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1;
  margin: 1rem 0;
}

.featured .price-big {
  color: var(--bg-ink);
}

.price-big span {
  color: currentColor;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.68;
}

.savings-tag {
  color: var(--accent);
  font-weight: 800;
}

.featured .savings-tag {
  color: var(--primary-dark);
}

.shipping-tag {
  align-items: center;
  color: var(--on-dark-soft);
  display: flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1rem;
}

.featured .shipping-tag {
  color: var(--accent-deep);
}

.total-price {
  color: #fff;
  font-weight: 800;
  margin-top: 1rem;
}

.featured .total-price {
  color: var(--bg-ink);
}

.total-price span {
  color: currentColor;
  opacity: 0.55;
  text-decoration: line-through;
}

.payments-note {
  align-items: center;
  color: var(--on-dark-soft);
  display: flex;
  font-weight: 800;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.ritual-section {
  background: linear-gradient(180deg, rgba(223, 244, 246, 0.75), transparent);
}

.protocol-container {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.protocol-step {
  background: #fff;
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  position: relative;
  text-align: center;
}

.protocol-step i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.protocol-step h4 {
  color: var(--bg-ink);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.protocol-step p {
  margin-bottom: 0;
}

.step-num {
  align-items: center;
  background: var(--bg-ink);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -18px;
  transform: translateX(-50%);
  width: 42px;
}

.guarantee-box {
  background: var(--bg-ink);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  color: #fff;
  margin: 0 auto 2rem;
  max-width: 860px;
  overflow: hidden;
  padding: 3rem;
  position: relative;
  text-align: center;
}

.guarantee-box::before {
  background: linear-gradient(90deg, var(--primary), #ffffff, var(--accent));
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.guarantee-box h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.guarantee-box p {
  color: var(--on-dark);
  margin: 0 auto;
  max-width: 690px;
}

.guarantee-seal {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  font-size: 2.2rem;
  height: 86px;
  justify-content: center;
  margin: 0 auto 1.4rem;
  width: 86px;
}

.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
}

.certifications div {
  align-items: center;
  background: #fff;
  border: var(--border-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  color: var(--accent-deep);
  display: flex;
  font-weight: 800;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
}

.label-section {
  margin-top: 2rem;
}

.label-card {
  background: #fff;
  border: var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem;
}

.label-card h3 {
  color: var(--bg-ink);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.label-card ul {
  color: var(--text-muted);
  display: grid;
  gap: 0.65rem;
  list-style-position: inside;
}

.label-img {
  background: var(--primary);
  border: 1px solid rgba(0, 95, 106, 0.2);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 75, 86, 0.16);
  margin-top: 1.5rem;
  width: 100%;
}

.faq-section {
  background: rgba(223, 244, 246, 0.72);
}

.faq-container {
  max-width: 830px;
}

.faq-item {
  background: #fff;
  border: var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 75, 86, 0.08);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-head {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
}

.faq-head i {
  color: var(--primary);
  transition: 0.25s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: 0.3s ease;
}

.faq-item.active .faq-body {
  padding-bottom: 1.35rem;
}

.faq-item.active .faq-head {
  color: var(--primary-dark);
}

.faq-item.active .faq-head i {
  transform: rotate(180deg);
}

footer {
  background: var(--bg-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  padding: 4rem 0;
  text-align: center;
}

.footer-brand {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

footer p {
  color: var(--on-dark-soft);
}

.f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.f-links a {
  color: var(--on-dark-soft);
}

.f-links a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

  .hero-product {
    min-height: 390px;
  }

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

  .protocol-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .ingredients-pill {
    align-items: flex-start;
    border-radius: 16px;
    flex-direction: column;
  }

  .hero-product {
    border-radius: 28px;
    min-height: 360px;
    padding: 1.4rem;
  }

  .hero-product-img {
    transform: scale(1.72) translateY(7%);
    width: 100%;
  }

  .product-stamp {
    left: 1.2rem;
    right: auto;
  }

  .product-note {
    font-size: 0.85rem;
    left: 1rem;
    right: 1rem;
  }

  .counter-strip {
    flex-direction: column;
  }

  .review-card {
    width: 290px;
  }

  .guarantee-box {
    border-radius: 24px;
    padding: 2.2rem 1.4rem;
  }

  .f-links {
    flex-direction: column;
  }
}
