:root {
  --bg: #e8ecf0;
  --bg-deep: #dfe5eb;
  --paper: #ffffff;
  --ink: #1c2430;
  --muted: #5a6573;
  --line: #d5dde6;
  --line-strong: #c2ccd8;
  --accent: #1f5c4a;
  --accent-soft: #e8f2ee;
  --cta: #2d6a4f;
  --cta-hover: #245a42;
  --cta-text: #ffffff;
  --ok: #1f5c4a;
  --danger: #8f2f2f;
  --font-display: "Newsreader", "Times New Roman", Georgia, serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --radius: 6px;
  --sticky-h: 4.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #f4f6f8 0%, var(--bg) 28%, var(--bg-deep) 100%);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
}

.wrap {
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 calc(var(--sticky-h) + 2rem);
}

.site-head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.15rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #f3f3f3;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  color: #111;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 560px) {
  .site-head {
    align-items: flex-start;
  }

  .fb-badge {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
    max-width: 100%;
  }

  .site-brand__title {
    font-size: 1.25rem;
  }

  .site-brand__leaf {
    width: 42px;
    height: 42px;
  }

  .site-brand__map {
    width: 32px;
    height: 38px;
  }
}


.site-brand__leaf {
  flex-shrink: 0;
  display: block;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-brand__eyebrow {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.site-brand__title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.site-brand__map {
  flex-shrink: 0;
  margin-left: 0.15rem;
  display: block;
}

.fb-badge__icon {
  flex-shrink: 0;
  display: block;
}

.article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.15rem, 3.5vw, 2.5rem);
  box-shadow: 0 1px 0 rgba(28, 36, 48, 0.04), 0 24px 48px rgba(28, 36, 48, 0.06);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  line-height: 1.28;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.deck {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.35rem;
  font-weight: 400;
  line-height: 1.55;
}

.figure {
  margin: 1.35rem 0 1.5rem;
}

.figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #f0f3f6;
}

.figure--round img {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.figure--tight {
  margin: 1rem 0;
}

.figure figcaption {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.byline-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.byline-author {
  color: var(--muted);
  line-height: 1.2;
}

.byline-author strong {
  color: var(--ink);
  font-weight: 700;
}

.byline-date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.byline-verified {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.trust-row img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  background: #fff;
}

.formula-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 1.5rem;
}

.comment {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.comment-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (min-width: 560px) {
  .trust-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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


h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  line-height: 1.35;
  font-weight: 600;
  margin: 2.35rem 0 0.9rem;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 1.35rem 0 0.5rem;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.05rem;
}

.lead-strong {
  font-weight: 600;
  color: var(--ink);
}

.quote {
  margin: 1.35rem 0;
  padding: 0.95rem 0 0.95rem 1.15rem;
  border-left: 2px solid var(--accent);
  background: transparent;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #2a3544;
}

.checklist,
.xlist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.35rem;
}

.checklist li,
.xlist li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.55rem;
  color: var(--ink);
}

.checklist li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--ok);
  font-weight: 600;
}

.xlist li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--danger);
  font-weight: 600;
}

.card {
  margin: 1.15rem 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: #f7f9fb;
}

.card h3 {
  margin-top: 0;
  color: var(--accent);
}

.card p:last-child {
  margin-bottom: 0;
}

.plans {
  margin: 2rem 0 1.5rem;
}

.plans-intro {
  color: var(--muted);
  margin: -0.35rem 0 1.25rem;
}

.plans-grid {
  display: grid;
  gap: 0.9rem;
}

.plan {
  position: relative;
  border: 1px solid var(--line-strong);
  background: #f7f9fb;
  padding: 1.2rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.plan--featured {
  background: #eef6f2;
  border-color: #2d6a4f;
  box-shadow: 0 10px 24px rgba(45, 106, 79, 0.12);
}

.plan__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  background: #2d6a4f;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.plan__duration {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan__price {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.plan__price span {
  font-size: 2.35rem;
}

.plan__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
}

.plan__features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.92rem;
  color: #2f3a48;
  border-bottom: 1px solid rgba(28, 36, 48, 0.06);
}

.plan__features li:last-child {
  border-bottom: none;
}

.plan__features li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--cta);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--cta);
  transition: background 0.15s ease;
}

.plan__cta:hover {
  background: var(--cta-hover);
}

.plan__cta--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}

.plan__cta--ghost:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent) !important;
}

.plans-note {
  margin: 0.95rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.plans-highlight {
  margin: 1.75rem 0;
  padding: 1.25rem 1.2rem;
  border: 1px solid #2d6a4f;
  background: #eef6f2;
  text-align: left;
}

.plans-highlight__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.plans-highlight__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.plans-highlight__text {
  margin: 0 0 1rem;
  color: #3a4553;
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .plan--featured {
    transform: translateY(-4px);
  }
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  color: var(--ink);
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.7rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.comments {
  margin-top: 2.25rem;
}

.comment .name {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.comment p {
  margin-bottom: 0.35rem;
  color: #2f3a48;
}

.comment .meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer {
  margin-top: 2.5rem;
  padding: 1.75rem 1rem 0.35rem;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
  margin-left: calc(-1 * clamp(1.15rem, 3.5vw, 2.5rem));
  margin-right: calc(-1 * clamp(1.15rem, 3.5vw, 2.5rem));
  margin-bottom: calc(-1 * clamp(1.5rem, 4vw, 2.75rem));
  padding-bottom: 1.5rem;
  text-align: center;
  color: #3a4553;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.footer-brand__mark {
  display: block;
  flex-shrink: 0;
}

.footer-brand__name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1c2430;
}

.footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: #6a7583;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.95rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1c2430;
}

.footer-links a {
  color: #1c2430;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links span {
  color: #9aa5b2;
  font-weight: 400;
}

.footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: #6a7583;
}

/* Fixed bottom WhatsApp CTA — always visible */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sticky-cta .inner {
  width: min(680px, 100%);
  margin: 0 auto;
}

.sticky-cta .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin: 0;
  padding: 0.92rem 1.15rem;
  border-radius: var(--radius);
  background: var(--cta);
  color: var(--cta-text) !important;
  text-decoration: none !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  letter-spacing: 0.01em;
  line-height: 1.25;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(45, 106, 79, 0.28);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.sticky-cta .cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 8px 18px rgba(45, 106, 79, 0.34);
}

.sticky-cta .cta:active {
  transform: translateY(1px);
}

.sticky-cta .cta svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  body {
    font-size: 1.075rem;
  }

  .wrap {
    padding-top: 2.25rem;
  }
}
