:root {
  --ink: #12181a;
  --brown: #178f96;
  --brown-deep: #102326;
  --hero: #178f96;
  --top: #0e6e76;
  --tan: #178f96;
  --cream: #e7f4f4;
  --paper: #f7fbfb;
  --green: #178f96;
  --green-ink: #ffffff;
  --mock: #ececec;
  --line: #d5e8e8;
  --white: #fff;
  --muted: #4e6568;
  --max: 440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  padding-bottom: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font-family: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-head { position: sticky; top: 0; z-index: 30; background: #fff; }
.promo, .nav { padding-left: max(20px, calc((100% - 1120px) / 2)); padding-right: max(20px, calc((100% - 1120px) / 2)); }
.promo {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #f3f7f7;
  color: var(--ink);
}
.promo__offer { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }
.promo__offer strong { font-weight: 800; }
.promo__offer em { font-style: italic; font-weight: 500; }
.promo__badge { display: none; font-size: 13px; font-weight: 700; }
.countdown { display: flex; gap: 10px; text-align: center; justify-self: end; }
.countdown span { display: block; font-size: 18px; font-weight: 700; line-height: 1; }
.countdown small { font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
  border-bottom: 1px solid #edf2f2;
}
.nav__links { display: none; gap: 22px; margin: 0 auto; }
.nav__links a { text-decoration: none; font-size: 14px; font-weight: 600; }
.nav__links a:hover { color: var(--green); }
.brand--nav {
  display: flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
  text-decoration: none;
  margin-right: auto;
}
.brand--nav img, .brand--sm img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
}
.brand__product { margin-top: 3px; color: #178f96; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; line-height: 1; }
.btn--nav {
  display: inline-flex;
  width: auto;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  height: 36px;
  padding: 0 16px;
  background: #178f96;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: none;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 32, 36, 0.5);
}
.drawer__panel {
  margin-left: auto;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--paper);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer__panel a { text-decoration: none; font-weight: 700; font-size: 18px; }
.drawer__close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

main { display: block; }
section,
.footer {
  padding: 56px max(20px, calc((100% - 1120px) / 2));
}
section > * { max-width: none; margin-left: 0; margin-right: 0; }
.kicker {
  color: var(--tan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.kicker--light { color: #ffffff; }
h1, h2 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
h2 { font-size: 28px; color: var(--brown-deep); margin-bottom: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  width: auto;
  max-width: none;
}
.btn--green { background: var(--green); color: var(--green-ink); }
.btn--green:hover { background: var(--top); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.hero .btn--green { background: #111; color: #fff; }
.hero .btn--green:hover { background: #2a2a2a; }
.btn--tan { background: #fff; color: var(--hero); }
.btn--dark { background: #313131; color: white; }

.brand {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 40px;
  line-height: 1;
}
.brand--sm { font-size: 22px; letter-spacing: 0.2em; }
.brand__sub {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.mock { margin: 18px auto; }
.mock__frame {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.45), transparent 42%),
    repeating-linear-gradient(-45deg, #e4e4e4, #e4e4e4 10px, #f4f4f4 10px, #f4f4f4 20px);
  border: 1.5px dashed #b9b9b9;
  border-radius: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  text-align: center;
  color: #6b6b6b;
  padding: 16px;
}
.mock__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: white;
  border-radius: 999px;
  padding: 4px 8px;
}
.mock__name { font-size: 13px; font-weight: 700; color: #444; }
.mock__desc { font-size: 12px; max-width: 220px; }
.mock__frame--hero { min-height: 340px; border-radius: 28px 28px 80px 28px; }
.mock__frame--card { min-height: 280px; }
.mock__frame--sq { min-height: 120px; border-radius: 16px; }
.mock__frame--wide { min-height: 220px; }
.mock__frame--ing { min-height: 190px; border-radius: 18px; }
.mock__frame--avatar { width: 72px; height: 72px; min-height: 0; border-radius: 50%; margin-bottom: 10px; }
.mock__frame--pot { min-height: 160px; border-radius: 18px; margin-bottom: 12px; }
.mock__frame--label { min-height: 140px; }

.hero {
  background: var(--hero);
  color: white;
  text-align: center;
  padding-top: 28px;
  padding-bottom: 8px;
}
.hero > .hero__grid { width: 100%; }
.hero h1 { font-size: 32px; margin: 10px auto 12px; max-width: 16ch; }
.hero h1 span { color: #d7f4f4; }
.rating { font-size: 14px; color: #ffe08a; }
.rating span { font-weight: 600; color: #fff; }
.hero__lead { margin: 0 auto 18px; max-width: 36ch; font-size: 16px; }
.hero .btn { width: auto; max-width: none; background: #fff; color: var(--hero); }
.hero__guarantee { margin-top: 14px; font-size: 13px; opacity: 0.92; }
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 12px;
  font-size: 13px;
}
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
}
.hero__media { position: relative; margin: 18px auto 0; }
.hero__media img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.trust { background: var(--cream); text-align: center; position: relative; }
.trust h2 { max-width: none; font-size: 34px; line-height: 1.12; }
.trust__sub { font-size: 16px; font-weight: 500; color: #3d5558; margin: 10px 0 0; }
.trust__copy { display: flex; flex-direction: column; align-items: stretch; text-align: center; }
.trust h2, .trust__sub { text-align: center; }
.seal { align-self: center; }
.seal {
  width: 168px;
  height: auto;
  margin: 18px auto 36px;
  display: block;
}
.seal span { font-size: 10px; letter-spacing: 0.14em; font-weight: 800; }
.seal strong { font-size: 28px; }
.seal small { font-size: 9px; font-weight: 700; }
.carousel { position: relative; background: white; border-radius: 24px; padding: 12px 12px 18px; box-shadow: 0 10px 30px rgba(14, 80, 86, 0.08); }
.carousel__nav {
  position: absolute;
  top: 38%;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 26px;
  cursor: pointer;
}
.carousel__nav--prev { left: 4px; }
.carousel__nav--next { right: 4px; }
.carousel__pills { display: flex; justify-content: center; gap: 0; margin-top: -18px; position: relative; }
.carousel__pills span {
  background: #0e4e54;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}
.carousel__pills .is-on { background: #178f96; color: #fff; border-radius: 0 10px 10px 0; }
.carousel__pills span:first-child { border-radius: 10px 0 0 10px; }
.carousel__stars { text-align: center; margin-top: 12px; color: var(--brown); letter-spacing: 2px; }
.carousel blockquote { text-align: center; font-weight: 600; margin-top: 4px; }
.carousel img { width: 100%; height: auto; display: block; border-radius: 16px; }

.pains { background: var(--cream); text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px auto;
}
.pain-grid article { background: white; border-radius: 16px; padding: 8px; text-align: left; }
.pain-grid img { width: 100%; height: auto; display: block; border-radius: 12px; }
.pain-grid p { font-size: 13px; font-weight: 600; padding: 8px 4px 4px; }
.pains__close { margin: 8px auto 16px; font-weight: 600; }

.why { background: white; text-align: center; }
.why__stage { display: grid; gap: 18px; }
.why__side { display: grid; gap: 18px; text-align: left; }
.why__side article h3 { font-size: 18px; margin: 4px 0; color: var(--brown-deep); }
.why__side article p { color: #3d5558; }
.why__side .x { color: #8a9a9c; font-weight: 700; }
.why__side .x::before { content: "X  "; color: #0e4e54; font-weight: 800; }
.why__side--right { text-align: left; }
.why__lead { font-size: 16px; margin-bottom: 8px; }
.why__photo { margin: 0; }
.why__photo img { width: 100%; height: auto; display: block; }
.pairs { display: grid; gap: 12px; text-align: left; margin-top: 8px; }
.pair { border-radius: 18px; padding: 16px; }
.pair--bad { background: #e7f4f4; color: #3d5558; }
.pair--bad p { display: flex; gap: 8px; align-items: center; padding: 6px 0; font-weight: 700; }
.pair--bad span {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #0e4e54; color: white; font-size: 12px; font-weight: 800; flex: none;
}
.pair--good { background: var(--brown); color: white; }
.pair--good h3 { font-size: 18px; margin-bottom: 4px; }
.pair--good p { font-weight: 700; margin-bottom: 8px; }
.pair--good em { display: block; font-style: italic; opacity: 0.92; font-size: 14px; margin-top: 4px; }

.badges {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background: white;
}
.badges article {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: center;
}
.badges h2 { font-size: 14px; margin: 0; letter-spacing: 0.04em; }

.entre {
  background: var(--brown-deep);
  color: white;
  text-align: center;
}
.entre h2 { color: white; }
.entre p { margin-bottom: 18px; font-size: 16px; }

.stats { background: white; text-align: center; }
.stats__lead { margin-bottom: 16px; }
.stats__grid { display: grid; gap: 22px; max-width: 680px; margin: 28px auto 0; text-align: left; }
.stats__grid li { display: grid; gap: 8px; }
.stat__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.stat__row span { font-weight: 700; }
.stat__row strong { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.stat {
  --p: 0;
  height: 12px;
  border-radius: 999px;
  background: #e7f4f4;
  overflow: hidden;
}
.stat i {
  display: block;
  height: 100%;
  width: calc(var(--p) * 1%);
  border-radius: 999px;
  background: #178f96;
}

.before { background: var(--cream); text-align: center; }
.before__caption { margin-top: 10px; }
.before .btn { margin-top: 16px; }

.reviews { background: white; text-align: center; }
.review {
  background: var(--paper);
  border-radius: 20px;
  padding: 18px 16px 16px;
  margin-bottom: 12px;
  text-align: left;
}
.review img { width: 100%; height: auto; display: block; border-radius: 14px; margin-bottom: 12px; }
.review h3 { font-size: 18px; }
.review__city { color: var(--muted); font-size: 13px; }
.review__stars { color: var(--tan); letter-spacing: 2px; margin: 6px 0; }
.review .mock__frame--avatar { margin-left: 0; }

.steps { background: var(--hero); color: #fff; text-align: left; }
.steps h2, .steps .kicker { text-align: center; }
.steps h2 { color: #fff; }
.steps__stage { display: grid; gap: 22px; margin-top: 8px; }
.steps__copy > p { margin: 0 0 18px; text-align: left; }
.steps__list { display: grid; gap: 16px; }
.steps__list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  background: none;
  padding: 0;
}
.steps__list strong { display: block; }
.steps__list li p { margin: 2px 0 0; font-size: 15px; opacity: 0.92; }
.steps__list span {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.16); color: rgba(255,255,255,0.4);
  display: grid; place-items: center; font-weight: 800;
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}
.steps__list span.is-on {
  background: #fff;
  color: #178f96;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.22);
}
.steps__photo {
  margin: 0;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 28px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.steps__photo img { width: 100%; height: auto; display: block; border-radius: 16px; }

.formula { background: white; text-align: center; }
.formula__lead, .formula__note { margin-bottom: 12px; }
.ativos { display: grid; gap: 16px; text-align: left; margin-top: 8px; }
.ativos img { width: min(100%, 280px); height: auto; display: block; border-radius: 18px; margin-inline: auto; }
.ativos h3 { margin: 10px 0 4px; font-size: 18px; color: var(--brown-deep); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 18px auto; }
.tags li {
  background: var(--cream);
  color: var(--brown-deep);
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.authority { background: var(--paper); text-align: center; }
.authority__photo { margin: 18px auto 0; }
.authority__photo img { width: 100%; height: auto; display: block; border-radius: 18px; }

.offers { background: white; text-align: center; }
.offers__lead { margin: 0 auto 28px; max-width: 52ch; }
.offer {
  border: 1px solid #d7e4e4;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 16px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(16, 35, 38, 0.04);
}
.offer__flag {
  margin: 0;
  padding: 9px 18px;
  background: #178f96;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
}
.offer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px 18px 0;
  background: #f4f8f8;
}
.offer__img { width: 100%; height: 200px; object-fit: contain; display: block; }
.offer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 18px 20px 20px;
}
.offer h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--brown-deep);
}
.offer__from {
  margin: 10px 0 0;
  font-size: 15px;
  color: #7a8d90;
  text-decoration: line-through;
}
.offer__price {
  margin: 6px 0 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #102326;
}
.offer__price span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #178f96;
}
.offer__pix {
  width: 100%;
  margin: 14px 0 0;
  padding: 12px 12px;
  background: #eef6f6;
  border-left: 3px solid #178f96;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: #0e5c62;
}
.offer__ship {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #1a7a32;
}
.offer__guarantee {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #3c5558;
}
.offer .btn {
  width: 100%;
  margin-top: 16px;
  border-radius: 10px;
  font-size: 18px;
  min-height: 56px;
}
.offer--best { border-color: #178f96; }
.offer--plus { border-color: #c4891a; }
.offer--plus .offer__flag {
  background: #c4891a;
  animation: flag-blink 0.9s steps(1, end) infinite;
}
@keyframes flag-blink {
  0%, 62% { opacity: 1; }
  63%, 100% { opacity: 0.18; }
}
.offer--plus .offer__media { background: #fff8e8; }
.offer--plus .offer__pix { background: #fff4d8; border-left-color: #c4891a; color: #8a5a0a; }
.btn--gold { background: #c4891a; color: #fff; }
.btn--gold:hover { background: #a87414; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .offer--plus .offer__flag { animation: none; }
  .btn:active { transform: none; }
}
.payicons { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 18px; margin-top: 28px; }
.payicons p { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink); }
.payicons__flags { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; }
.payicons img { height: 28px; width: auto; display: block; }

.quality { background: var(--paper); text-align: center; }
.nlabel {
  max-width: 420px;
  margin: 8px auto 0;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 8px 12px 12px;
  text-align: left;
}
.nlabel__title {
  margin: 0;
  padding-bottom: 4px;
  border-bottom: 8px solid #111;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}
.nlabel__serve {
  margin: 8px 0 0;
  padding-bottom: 6px;
  border-bottom: 4px solid #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.nlabel table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nlabel th, .nlabel td {
  padding: 5px 0;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
}
.nlabel thead th { border-bottom: 5px solid #111; font-weight: 800; }
.nlabel th:nth-child(2), .nlabel th:nth-child(3),
.nlabel td:nth-child(2), .nlabel td:nth-child(3) { text-align: right; white-space: nowrap; padding-left: 10px; }
.nlabel__foot { margin: 8px 0 0; font-size: 11px; line-height: 1.35; color: #111; font-weight: 500; }

.faq { background: var(--cream); }
.faq h3 {
  margin: 22px auto 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
}
details {
  background: white;
  border-radius: 14px;
  margin: 8px auto;
  padding: 0 14px;
}
summary {
  cursor: pointer;
  font-weight: 800;
  padding: 14px 0;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--tan); font-size: 20px; }
details[open] summary::after { content: "–"; }
details p { padding-bottom: 14px; color: #243033; }

.footer { background: #111; color: white; padding-top: 28px; padding-bottom: 24px; }
.footer a, .footer .brand { color: white; text-decoration: none; display: block; margin: 6px 0; font-size: 14px; }
.footer .brand { font-size: 22px; margin-bottom: 8px; }
.footer .footer__logo {
  display: flex;
  align-items: flex-end;
  justify-self: end;
  margin: 0;
  text-decoration: none;
}
.footer .footer__logo img { display: block; height: 78px; width: auto; }
.footer__logo span {
  margin-top: 4px;
  color: #178f96;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.page { background: #fff; text-align: left; }
.page__inner { max-width: 720px; }
.page h1 { font-size: 34px; line-height: 1.15; color: var(--brown-deep); margin-bottom: 12px; }
.page h2 { font-size: 20px; margin: 28px 0 8px; }
.page p, .page li { color: #243033; }
.page p { margin-bottom: 12px; }
.page ul { list-style: disc; padding-left: 1.2em; margin-bottom: 12px; }
.page li { margin: 6px 0; }
.track { display: grid; gap: 10px; max-width: 420px; margin-top: 8px; }
.track label { font-weight: 700; font-size: 14px; }
.track input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}
.track input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 143, 150, 0.16);
}
.track .btn { width: auto; }
.track__ok { color: var(--hero); font-weight: 700; }
.track-card {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.track-card__code { margin: 0; font-weight: 800; letter-spacing: 0.06em; color: #178f96; }
.track-card h2 { margin: 6px 0 8px; font-size: 22px; }
.track-card__status { margin: 0 0 14px; font-weight: 700; }
.track-card dl { margin: 0 0 18px; display: grid; gap: 8px; }
.track-card dl div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.track-card dt { color: var(--muted); font-weight: 600; }
.track-card dd { margin: 0; font-weight: 700; }
.track-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.track-steps li {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f7f7;
  font-weight: 700;
  font-size: 14px;
  color: #6b8083;
}
.track-steps li.is-done { background: #e7f6f6; color: #0e6e76; }
.track-steps li.is-now { background: #178f96; color: #fff; }
.track-more { list-style: none; padding: 12px 0 0; margin: 12px 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.news { text-align: center; margin-bottom: 28px; }
.news h2 { color: white; font-size: 26px; }
.news p { margin: 8px auto 12px; letter-spacing: 0.04em; font-size: 13px; }
.news input {
  width: min(420px, 100%);
  max-width: none;
  min-height: 48px;
  border-radius: 12px;
  border: 0;
  padding: 0 14px;
  margin: 0 auto 10px;
  display: block;
  font-size: 16px;
}
.news__ok { color: #7ddee2; font-weight: 700; }
.footer__grid { display: grid; gap: 22px; width: 100%; margin: 0; }
.footer__label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; margin-bottom: 8px; }
.copy { max-width: 52ch; margin: 28px auto 0; font-size: 12px; opacity: 0.75; text-align: center; }

@media (max-width: 899px) {
  .btn { width: 100%; }
  .btn.btn--nav {
    display: inline-flex;
    width: auto;
    max-width: none;
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  .menu-btn { display: none; }
  .nav__links { display: none; }
  .brand--nav img { height: 48px; max-width: 180px; }
  .nav { gap: 10px; }
  .ativos img { width: 140px; }
  .hero { padding-left: 0; padding-right: 0; padding-bottom: 0; }
  .hero__copy { padding-left: 20px; padding-right: 20px; }
  .hero__media { margin-left: 0; margin-right: 0; }
  .hero__media img { width: 100%; }
}

@media (min-width: 900px) {
  .whats { bottom: 18px; }

  .promo {
    height: 68px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .promo__offer { font-size: 16px; }
  .countdown { grid-column: 2; justify-self: center; gap: 16px; }
  .promo__badge { grid-column: 3; }
  .countdown span { font-size: 27px; }
  .promo__badge { display: block; justify-self: end; font-size: 16px; }

  .nav {
    height: 96px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
  }
  .brand--nav { margin: 0; justify-self: start; }
  .brand--nav img { height: 64px; max-width: 260px; }
  .brand__product { font-size: 14px; }
  .nav__links { display: flex; justify-content: center; gap: 28px; }
  .nav__links a { font-size: 15px; font-weight: 600; }
  .btn--nav { display: inline-flex; width: auto; min-height: 41px; height: 41px; padding: 0 22px; }
  .menu-btn { display: none; }
  .drawer { display: none; }

  .hero { text-align: left; padding-top: 0; padding-bottom: 0; }
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    min-height: 560px;
  }
  .hero__copy { padding: 48px 0; }
  .hero h1 { margin: 8px 0 16px; font-size: 48px; line-height: 1.05; max-width: 14ch; }
  .hero__lead { margin: 0 0 22px; max-width: 42ch; font-size: 18px; }
  .hero .btn { width: auto; max-width: 100%; min-height: 56px; padding: 0 28px; white-space: nowrap; }
  .hero__facts { justify-content: flex-start; }
  .hero__media { margin: 0; align-self: end; }
  .hero__media img { max-height: 620px; margin-left: auto; }

  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "media copy";
    column-gap: 48px;
    align-items: center;
    text-align: left;
  }
  .trust__copy { grid-area: copy; align-items: flex-start; text-align: left; }
  .trust h2, .trust__sub { text-align: left; }
  .trust h2 { font-size: 40px; max-width: none; line-height: 1.12; margin: 0 0 0 110px; }
  .trust__sub { margin: 10px 0 0 110px; font-size: 16px; }
  .seal { width: 168px; margin: 22px auto 0; }
  .trust .carousel { grid-area: media; }

  .pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pain-grid .mock__frame--sq { min-height: 220px; }
  .pains .btn { width: min(100%, 400px); }

  .why__stage { grid-template-columns: 1fr 1.15fr 1fr; align-items: center; gap: 28px; }
  .why__photo img { max-height: 640px; width: auto; max-width: 100%; margin: 0 auto; }
  .why__side { gap: 28px; }
  .why__side--right { margin-left: 28px; }

  .badges article { min-width: 280px; }
  .stats__grid { max-width: 760px; gap: 26px; }
  .review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps__stage { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 28px; }
  .steps__photo { padding: 22px; }
  .steps__list { gap: 20px; }
  .formula .ativos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
  }
  .formula .ativos article {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
  .formula .ativos img { align-self: end; justify-self: center; width: 62%; max-width: none; height: auto; }
  .offers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }
  .offers .kicker, .offers h2, .offers__lead, .offers .payicons { grid-column: 1 / -1; text-align: center; }
  .offer { margin: 0; }
  .footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 24px; align-items: start; }
  .entre .btn { width: min(100%, 400px); }
}

/* Refinements preserve the original Lirius conversion layout. */
html { scroll-padding-top: 90px; }
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #105c62; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

.authority__photo figcaption { margin-top: 8px; color: #566b6c; font-size: 12px; }
.offer__contents { display: block; margin: 2px 0 12px; font-size: 13px; color: #436063; }
