:root {
  --ink: #1d2b24;
  --muted: #68746d;
  --paper: #fffdf8;
  --soft: #f2f7ee;
  --line: #dfe8d8;
  --green: #2f7d4f;
  --green-dark: #18543b;
  --mint: #bfe6c6;
  --gold: #f6c762;
  --blue: #b7ddeb;
  --rose: #eeb8af;
  --shadow: 0 22px 70px rgba(29, 43, 36, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.top-strip {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  background: #1f5c3c;
  color: #fff;
  font-size: 0.88rem;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 70px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(223, 232, 216, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  overflow: visible;
}

.brand-logo {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.brand small {
  display: block;
  max-width: 90px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
}

.header-brand .brand-logo-wrap {
  width: auto;
  height: auto;
}

.header-brand .brand-logo {
  height: 68px;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #314238;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover {
  background: var(--soft);
}

.main-nav .nav-cta {
  padding-inline: 18px;
  background: var(--green);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fbef 0%, #e8f4ee 48%, #fff4da 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: 1;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 7vw, 94px) 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-layout h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-layout p,
.section-heading p,
.section-copy p,
.contact-band p,
.detail-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary,
.button.whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 38px rgba(47, 125, 79, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

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

.wellness-visual,
.promo-visual {
  display: grid;
  place-items: center;
}

.offer-visual {
  display: grid;
  place-items: center;
}

.offer-image-card {
  position: relative;
  width: min(100%, 500px);
  padding: 14px;
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(47, 125, 79, 0.45), rgba(246, 199, 98, 0.55)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 26px 70px rgba(29, 43, 36, 0.18);
  transform: rotate(1.5deg);
}

.offer-image-card::before {
  content: "";
  position: absolute;
  inset: 24px -16px -18px 22px;
  z-index: -1;
  border-radius: 8px;
  background: rgba(47, 125, 79, 0.16);
  transform: rotate(-4deg);
}

.offer-image-card::after {
  content: "Promocion destacada";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(29, 43, 36, 0.16);
}

.offer-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.offer-poster {
  position: relative;
  width: min(100%, 560px);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(47, 125, 79, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.86) 0 16%, transparent 35%),
    radial-gradient(circle at 82% 14%, rgba(246, 199, 98, 0.34) 0 10%, transparent 28%),
    linear-gradient(180deg, #f7fbef 0%, #dff1df 50%, #35a642 100%);
  box-shadow: var(--shadow);
}

.offer-poster::before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 104px;
  background: linear-gradient(180deg, rgba(20, 80, 43, 0), rgba(20, 80, 43, 0.92));
}

.offer-poster::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 66px;
  height: 28px;
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(47, 125, 79, 0.14);
}

.offer-title {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  padding-top: 34px;
  text-align: center;
}

.offer-title span {
  color: var(--green-dark);
  font-size: 1.38rem;
  font-weight: 800;
}

.offer-title strong {
  display: block;
  color: #0c7f16;
  font-size: clamp(2.2rem, 5vw, 4.05rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.offer-title em {
  color: #b31313;
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 800;
  font-style: italic;
}

.discount-tag,
.price-seal {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(29, 43, 36, 0.22);
}

.discount-tag {
  left: 18px;
  top: 76px;
  width: 112px;
  height: 126px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: linear-gradient(160deg, #c40f16, #8c070b);
  transform: rotate(-8deg);
  font-size: 0.9rem;
}

.discount-tag strong {
  color: #ffe245;
}

.price-seal {
  right: 20px;
  top: 68px;
  width: 126px;
  height: 126px;
  border: 3px dashed #f6d64f;
  border-radius: 50%;
  background: #0d2748;
  font-size: 0.95rem;
  transform: rotate(7deg);
}

.price-seal strong {
  display: block;
  color: #8be035;
  font-size: 1.24rem;
}

.offer-products {
  position: absolute;
  left: 50%;
  bottom: 74px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 92%;
  transform: translateX(-50%);
}

.offer-jar {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 145px;
  height: 155px;
  margin: 0 -7px;
  border: 2px solid rgba(29, 43, 36, 0.12);
  border-radius: 22px 22px 28px 28px;
  background: #fff;
  box-shadow: 0 22px 34px rgba(29, 43, 36, 0.2);
}

.offer-jar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  height: 62px;
  background: var(--jar-color, #2f7d4f);
}

.offer-jar strong,
.offer-jar small {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.offer-jar strong {
  margin-top: 28px;
  font-size: 1.04rem;
  line-height: 1;
}

.offer-jar small {
  margin-top: 7px;
  font-weight: 800;
}

.jar-cap {
  position: absolute;
  left: 12px;
  right: 12px;
  top: -16px;
  height: 32px;
  border-radius: 12px 12px 4px 4px;
  background: var(--cap-color, #2f7d4f);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.08);
}

.jar-red {
  --jar-color: #c4121c;
  --cap-color: #db1a22;
  transform: rotate(-3deg);
}

.jar-white {
  --jar-color: #3f9d42;
  --cap-color: #f0eee5;
  z-index: 2;
  width: 168px;
  height: 132px;
}

.jar-white strong {
  font-size: 1.18rem;
}

.jar-blue {
  --jar-color: #0a3564;
  --cap-color: #5b2290;
  transform: rotate(3deg);
}

.offer-benefits {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.offer-benefits span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d2748;
  font-size: 0.82rem;
  font-weight: 900;
}

.offer-leaf {
  position: absolute;
  z-index: 2;
  display: block;
  width: 96px;
  height: 48px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #63bd3d, #0a7d14);
  box-shadow: inset -10px -8px 16px rgba(0, 0, 0, 0.12);
}

.offer-leaf::after {
  content: "";
  position: absolute;
  left: 13%;
  top: 51%;
  width: 76%;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(-18deg);
}

.offer-leaf.leaf-one {
  left: -16px;
  top: 28px;
  transform: rotate(-8deg);
}

.offer-leaf.leaf-two {
  right: -20px;
  top: 24px;
  transform: rotate(22deg);
}

.offer-leaf.leaf-three {
  right: 62px;
  bottom: 120px;
  width: 68px;
  height: 34px;
  transform: rotate(-18deg);
}

.promo-visual {
  isolation: isolate;
}

.promo-visual::before,
.promo-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(47, 125, 79, 0.12);
}

.promo-visual::before {
  width: 420px;
  height: 420px;
}

.promo-visual::after {
  right: 4%;
  bottom: 4%;
  width: 180px;
  height: 180px;
  background: rgba(246, 199, 98, 0.22);
}

.promo-card {
  position: relative;
  width: min(100%, 420px);
  min-height: 330px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(223, 232, 216, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.promo-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -48px;
  width: 180px;
  height: 96px;
  border-radius: 100% 0 100% 0;
  background: rgba(47, 125, 79, 0.12);
  transform: rotate(-18deg);
}

.promo-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #173f2f;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-products {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 178px;
  margin-bottom: 18px;
}

.promo-bottle {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 174px;
  border: 1px solid rgba(29, 43, 36, 0.08);
  border-radius: 24px 24px 10px 10px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 22px 36px rgba(29, 43, 36, 0.14);
}

.promo-bottle::before {
  content: "";
  position: absolute;
  top: -28px;
  width: 44px;
  height: 34px;
  border-radius: 10px 10px 4px 4px;
  background: #f1e7c4;
  border: 1px solid rgba(29, 43, 36, 0.08);
}

.promo-bottle::after {
  content: "Nutrivida";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 78px;
  padding: 9px 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 0.82rem;
}

.bottle-green {
  z-index: 2;
  margin-right: -8px;
  background: linear-gradient(160deg, #2f7d4f, #84bd73);
  transform: rotate(-7deg);
}

.bottle-gold {
  z-index: 1;
  height: 152px;
  background: linear-gradient(160deg, #e3ae3f, #f6d988);
  transform: rotate(8deg);
}

.promo-card h3,
.chat-promo h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.promo-card p,
.chat-promo p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.promo-badge,
.promo-note {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(29, 43, 36, 0.14);
  font-weight: 900;
}

.promo-badge {
  right: 2%;
  top: 10%;
  padding: 18px 16px;
  background: var(--gold);
  color: #322310;
  transform: rotate(8deg);
}

.promo-note {
  left: 3%;
  bottom: 13%;
  padding: 14px 18px;
  background: #fff;
  color: var(--green-dark);
}

.chat-promo {
  width: min(100%, 390px);
}

.promo-phone {
  position: relative;
  min-height: 182px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fafffb, #edf7f0);
  border: 8px solid #1a231f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.promo-chat {
  width: max-content;
  max-width: 200px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: #26372d;
  font-size: 0.88rem;
  font-weight: 800;
}

.promo-chat.right {
  margin-left: auto;
  background: #25d366;
  color: #fff;
}

.promo-chat.small {
  max-width: 178px;
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 420px);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.mini-product {
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.mini-product span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 76px;
  margin-bottom: 12px;
  border-radius: 16px 16px 7px 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(29, 43, 36, 0.08);
}

.mini-product strong {
  color: #24362b;
  font-size: 0.9rem;
}

.product-pack {
  position: absolute;
  display: block;
  width: 150px;
  height: 245px;
  border-radius: 26px 26px 12px 12px;
  background: linear-gradient(160deg, #ffffff 0%, #eef8e7 100%);
  border: 1px solid rgba(47, 125, 79, 0.18);
  box-shadow: var(--shadow);
}

.product-pack::before {
  content: "Nutrivida";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  padding: 12px 8px;
  border-radius: 8px;
  background: #2f7d4f;
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.product-pack::after {
  content: "";
  position: absolute;
  left: 46px;
  top: -32px;
  width: 58px;
  height: 42px;
  border-radius: 10px 10px 4px 4px;
  background: #f7f2dd;
  border: 1px solid rgba(47, 125, 79, 0.18);
}

.pack-one {
  transform: rotate(-8deg) translateX(-54px);
}

.pack-two {
  height: 285px;
  transform: rotate(7deg) translateX(74px);
  background: linear-gradient(160deg, #ffffff 0%, #fff4d4 100%);
}

.leaf-shape {
  position: absolute;
  display: block;
  width: 140px;
  height: 72px;
  border-radius: 100% 0 100% 0;
  background: rgba(132, 189, 115, 0.38);
}

.leaf-one {
  left: 8%;
  bottom: 12%;
  transform: rotate(-26deg);
}

.leaf-two {
  right: 10%;
  top: 12%;
  transform: rotate(24deg);
}

.calm-visual,
.order-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.circle-card,
.order-visual span {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--green-dark);
  font-weight: 900;
}

.order-visual span {
  width: 170px;
  height: 92px;
  border-radius: 8px;
}

.trust-row,
.products-section,
.reviews-section,
.quality-section,
.contact-band,
.detail-content,
.faq-section,
.detail-hero {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  padding: 16px 18px;
  border: 1px solid rgba(47, 125, 79, 0.18);
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #fff9ea 0%, #fffdf7 100%);
  box-shadow: 0 22px 48px rgba(29, 43, 36, 0.11);
}

.product-card,
.reviews-grid figure,
.quality-grid > div,
.detail-content article,
.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(29, 43, 36, 0.06);
}

.trust-row article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: 104px;
  overflow: hidden;
  padding: 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-row article:not(:last-child) {
  border-right: 1px solid rgba(13, 39, 72, 0.34);
}

.trust-row article::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 12px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(47, 125, 79, 0.05);
}

.trust-row article::after {
  display: none;
}

.trust-row article > * {
  position: relative;
  z-index: 1;
}

.trust-number {
  display: none;
}

.trust-icon {
  position: relative;
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #048d18, #29a231);
  border: 4px solid #f4fff2;
  box-shadow: 0 8px 18px rgba(47, 125, 79, 0.2);
}

.trust-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.trust-row h3,
.product-card h3 {
  margin: 0 0 3px;
  color: #0d2748;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-row p,
.product-card p,
.reviews-grid blockquote,
.quality-grid p,
.detail-content p,
.faq-section p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-row p {
  color: #20322b;
  font-size: 0.74rem;
  line-height: 1.25;
}

.quality-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  padding: 86px 0 54px;
}

.quality-section::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 36px;
  bottom: 18px;
  z-index: -1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 125, 79, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(248, 252, 246, 0.82), rgba(255, 253, 248, 0));
}

.section-copy h2,
.section-heading h2,
.contact-band h2,
.detail-content h2,
.faq-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
}

.quality-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quality-promise span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(47, 125, 79, 0.16);
  border-radius: 999px;
  background: rgba(232, 244, 238, 0.68);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.quality-grid {
  display: grid;
  gap: 16px;
}

.quality-grid > div {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 28px 34px 28px 30px;
  border-left: 6px solid var(--green);
  background:
    linear-gradient(90deg, rgba(232, 244, 238, 0.92), rgba(255, 255, 255, 0.96));
}

.quality-grid > div::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 128px;
  height: 86px;
  border-radius: 100% 0 100% 0;
  background: rgba(47, 125, 79, 0.08);
  transform: rotate(-20deg);
}

.quality-grid > div > * {
  position: relative;
  z-index: 1;
}

.quality-grid > div > div {
  padding-right: 10px;
}

.quality-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(47, 125, 79, 0.16);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(47, 125, 79, 0.12);
}

.quality-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.quality-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.products-section,
.reviews-section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 16px;
  overflow: hidden;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 74px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: rgba(47, 125, 79, 0.12);
  pointer-events: none;
}

.product-card::before {
  right: -24px;
  top: 26px;
  transform: rotate(22deg);
}

.product-card::after {
  left: -26px;
  bottom: 82px;
  transform: rotate(-28deg);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
}

.product-photo-wrap {
  height: 250px;
  min-height: 0;
  padding: 12px;
  background: #f8fbf4;
  border: 1px solid rgba(47, 125, 79, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.product-photo-wrap img {
  position: absolute;
  inset: 14px;
  z-index: 1;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(29, 43, 36, 0.16));
}

.product-art::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 154px;
  border-radius: 22px 22px 10px 10px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(29, 43, 36, 0.08);
  box-shadow: 0 20px 40px rgba(29, 43, 36, 0.12);
}

.product-art.product-photo-wrap::before {
  display: none;
}

.product-art.product-photo-wrap::after {
  display: none;
}

.product-art span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.tone-green {
  background: linear-gradient(150deg, #dcedd8, #f7fbef);
}

.tone-gold {
  background: linear-gradient(150deg, #f8dda0, #fff9e8);
}

.tone-blue {
  background: linear-gradient(150deg, #c9e4ec, #f4fbff);
}

.tone-rose {
  background: linear-gradient(150deg, #f0c3bd, #fff4f1);
}

.product-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-dark);
  font-weight: 900;
}

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

.reviews-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.reviews-heading p {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
}

.reviews-grid figure {
  margin: 0;
  padding: 26px;
}

.review-stars {
  margin-bottom: 14px;
  color: #f7b91f;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0;
}

.reviews-grid blockquote {
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.reviews-grid figcaption {
  color: var(--green-dark);
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  margin-top: 32px;
  margin-bottom: 72px;
  min-height: 320px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(125deg, rgba(218, 240, 225, 0.96) 0%, rgba(218, 240, 225, 0.96) 55%, rgba(196, 226, 207, 0.96) 55%, rgba(196, 226, 207, 0.96) 100%);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.contact-band::before,
.contact-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-band::before {
  right: 6%;
  top: 0;
  width: 250px;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-28deg);
}

.contact-band::after {
  right: -60px;
  bottom: -64px;
  width: 280px;
  height: 150px;
  border-radius: 100% 0 100% 0;
  background: rgba(47, 125, 79, 0.12);
  transform: rotate(-22deg);
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

.contact-band .eyebrow,
.contact-band p {
  color: var(--green-dark);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy h2 {
  margin-bottom: 16px;
  color: #050907;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.contact-copy p {
  max-width: 760px;
  margin-bottom: 18px;
  color: #17241d;
  font-size: clamp(1.02rem, 1.6vw, 1.34rem);
}

.contact-copy strong {
  color: #030604;
}

.contact-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #101712;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(29, 43, 36, 0.08);
}

.contact-rating strong {
  color: #f7b91f;
  letter-spacing: 0;
}

.contact-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
}

.contact-steps-card {
  position: relative;
  width: min(100%, 390px);
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(47, 125, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 50px rgba(29, 43, 36, 0.13);
}

.contact-steps-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
}

.steps-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(47, 125, 79, 0.14);
}

.steps-card-head > img {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.16);
}

.steps-card-head strong,
.steps-card-head span {
  display: block;
}

.steps-card-head strong {
  color: #0e2117;
  font-size: 1.15rem;
  font-weight: 900;
}

.steps-card-head span {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(232, 244, 238, 0.74);
}

.contact-steps img {
  width: 34px;
  height: 34px;
}

.contact-steps span {
  color: #20322b;
  font-weight: 800;
  line-height: 1.25;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 54px clamp(18px, 7vw, 94px) 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 125, 79, 0.2), transparent 30%),
    linear-gradient(135deg, #0d221a 0%, #10281f 52%, #071711 100%);
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -70px;
  width: 260px;
  height: 160px;
  border-radius: 100% 0 100% 0;
  background: rgba(116, 189, 69, 0.13);
  transform: rotate(20deg);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.7fr 0.7fr minmax(230px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.site-footer .brand small,
.site-footer p,
.site-footer a {
  color: #c9d8cf;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-about p {
  max-width: 360px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo-wrap {
  width: 136px;
  height: 104px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-brand .brand-logo {
  width: auto;
  height: 94px;
}

.footer-tagline {
  display: inline-flex;
  margin-bottom: 14px;
  color: #dcefe0;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: #c9d8cf;
  font-weight: 700;
}

.footer-links a:hover,
.back-top:hover {
  color: #fff;
}

.footer-contact-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(220, 239, 224, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 110px;
  height: 64px;
  border-radius: 100% 0 100% 0;
  background: rgba(37, 211, 102, 0.16);
  transform: rotate(-18deg);
}

.footer-contact-card h3,
.footer-contact-card p {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 239, 224, 0.14);
  color: #9fb4aa;
  font-size: 0.9rem;
}

.back-top {
  font-weight: 900;
  color: #dcefe0;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 70px 0 42px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-weight: 900;
}

.detail-copy h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
}

.detail-art {
  min-height: 410px;
  box-shadow: var(--shadow);
}

.detail-art.product-photo-wrap {
  height: 520px;
  min-height: 0;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96) 0 34%, rgba(255, 255, 255, 0.42) 35% 48%, transparent 49%),
    linear-gradient(145deg, rgba(232, 244, 228, 0.95), rgba(255, 248, 229, 0.86));
}

.detail-art.product-photo-wrap img {
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 0 46px;
}

.detail-content article {
  padding: 26px;
}

.detail-content h2,
.faq-section h2 {
  font-size: 1.45rem;
}

.detail-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-content li + li {
  margin-top: 8px;
}

.faq-section {
  padding: 22px 0 70px;
}

.faq-section details {
  padding: 18px 22px;
}

.faq-section details + details {
  margin-top: 12px;
}

.faq-section summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero-layout,
  .quality-section,
  .detail-hero,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .trust-row article:not(:last-child) {
    border-right: 0;
  }

  .trust-row article:nth-child(odd) {
    border-right: 1px solid rgba(13, 39, 72, 0.24);
  }

  .trust-row article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(13, 39, 72, 0.18);
  }

  .reviews-grid,
  .detail-content,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    max-width: 420px;
  }

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

  .quality-grid > div {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 28px;
  }
}

@media (max-width: 720px) {
  .top-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-header {
    padding: 8px 18px;
  }

  .brand {
    gap: 10px;
  }

  .header-brand .brand-logo-wrap {
    width: auto;
    height: auto;
  }

  .brand-logo {
    width: auto;
    height: 58px;
  }

  .header-brand .brand-logo {
    height: 54px;
  }

  .brand small {
    max-width: 72px;
    font-size: 0.7rem;
  }

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

  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open,
  .detail-nav {
    display: flex;
  }

  .detail-nav {
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .detail-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-layout {
    min-height: 650px;
    padding-bottom: 86px;
  }

  .offer-poster {
    width: min(100%, 420px);
    min-height: 340px;
  }

  .offer-title {
    padding-top: 28px;
  }

  .offer-title span {
    font-size: 1.05rem;
  }

  .offer-title strong {
    font-size: 2.15rem;
  }

  .offer-title em {
    font-size: 1.05rem;
  }

  .discount-tag {
    left: 12px;
    top: 72px;
    width: 84px;
    height: 96px;
    font-size: 0.72rem;
  }

  .price-seal {
    right: 12px;
    top: 70px;
    width: 94px;
    height: 94px;
    font-size: 0.7rem;
  }

  .price-seal strong {
    font-size: 0.92rem;
  }

  .offer-products {
    bottom: 68px;
  }

  .offer-jar {
    width: 104px;
    height: 124px;
  }

  .jar-white {
    width: 122px;
    height: 108px;
  }

  .offer-jar strong {
    font-size: 0.82rem;
  }

  .offer-jar small,
  .offer-benefits span {
    font-size: 0.7rem;
  }

  h1,
  .hero-layout h2 {
    font-size: 2.35rem;
  }

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

  .trust-row {
    padding: 10px 14px;
  }

  .trust-row article {
    min-height: 92px;
    padding: 14px 8px;
  }

  .trust-row article:nth-child(odd) {
    border-right: 0;
  }

  .trust-row article:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(13, 39, 72, 0.16);
  }

  .product-row {
    gap: 14px;
  }

  .product-card {
    padding: 14px;
  }

  .product-card::before,
  .product-card::after {
    opacity: 0.45;
  }

  .product-photo-wrap {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.82;
    margin-bottom: 16px;
    padding: 14px;
  }

  .product-photo-wrap img {
    max-width: 100%;
    max-height: 100%;
    transform: none;
  }

  .quality-grid > div {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 24px 22px;
  }

  .quality-icon {
    width: 54px;
    height: 54px;
  }

  .site-footer {
    padding: 42px 18px 22px;
  }

  .footer-main {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .product-art {
    min-height: 0;
  }

  .contact-band {
    margin-bottom: 42px;
  }

  .contact-visual {
    min-height: 280px;
  }

  .button {
    width: 100%;
  }

}
