:root {
  --ink: #0c2738;
  --green-950: #073f38;
  --green-900: #0a4b43;
  --green-800: #0b5d52;
  --green-600: #0f9f82;
  --mint: #cceee8;
  --cream: #fffdf8;
  --yellow: #ffe39b;
  --yellow-soft: #fff7df;
  --blue-soft: #eff9ff;
  --lilac-soft: #f2f0ff;
  --rose-soft: #fff4f8;
  --muted: #5f6872;
  --line: rgba(7, 63, 56, 0.12);
  --shadow: 0 26px 70px rgba(21, 49, 58, 0.10);
  --shadow-soft: 0 14px 34px rgba(21, 49, 58, 0.09);
  --radius-lg: 32px;
  --radius-md: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 20px;
  top: 20px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-950);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Announcement */
.announcement {
  background: var(--green-950);
  color: #fff;
  font-size: 0.76rem;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement__inner p {
  margin: 0;
  opacity: 0.94;
}

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

.avatar-stack {
  display: inline-flex;
  margin-left: 4px;
}

.avatar-stack i {
  width: 22px;
  height: 22px;
  margin-left: -5px;
  border: 2px solid var(--green-950);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #f3c5a5 0 24%, transparent 25%),
    linear-gradient(135deg, #ffd8bf, #7f5d51);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand__logo {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.brand__name {
  color: var(--green-950);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand__name span {
  color: #26aa91;
}

.brand small {
  margin-top: 3px;
  color: #6f59c6;
  font-size: 0.58rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 36px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--green-950);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(7, 63, 56, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 63, 56, 0.18);
}

.button--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
}

.button--outline {
  color: var(--green-950);
  border: 1px solid rgba(7, 63, 56, 0.2);
  background: #fff;
}

.button--whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 10px 22px rgba(18, 140, 74, 0.2);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 24px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 220, 130, 0.22), transparent 26%),
    linear-gradient(180deg, #fffaf1 0%, #fff 82%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 42px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(15, 159, 130, 0.09);
}

.eyebrow--pill span {
  color: #ff6575;
}

.hero h1,
.section-heading h2,
.clinic-card h2 {
  margin: 0;
  color: var(--green-950);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.25rem, 5.2vw, 5.4rem);
}

.hero h1 span {
  color: #6755c6;
}

.hero__description {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 800;
}

.play {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--green-900);
  border-radius: 50%;
  color: var(--green-900);
  font-size: 0.65rem;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 690px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero__benefits li:first-child {
  padding-left: 0;
}

.hero__benefits li:last-child {
  border-right: 0;
}

.benefit-icon {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--green-600);
}

.benefit-icon svg,
.trust-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.hero__visual img {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  max-height: 610px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: multiply;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.1px);
}

.shape--yellow {
  top: 0;
  right: 2%;
  width: 210px;
  height: 210px;
  background: rgba(255, 222, 132, 0.65);
}

.shape--mint {
  right: 2%;
  bottom: 30px;
  width: 155px;
  height: 155px;
  background: rgba(130, 223, 207, 0.48);
}

.shape--lilac {
  top: 110px;
  left: 12%;
  width: 120px;
  height: 120px;
  background: rgba(214, 197, 239, 0.42);
}

.dot-grid {
  position: absolute;
  right: 3%;
  top: 47%;
  width: 118px;
  height: 118px;
  opacity: 0.24;
  background-image: radial-gradient(circle, var(--green-600) 2px, transparent 2.5px);
  background-size: 16px 16px;
}

.floating-label {
  position: absolute;
  z-index: 5;
  padding: 13px 20px;
  border-radius: 17px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.floating-label--scan {
  left: 4%;
  top: 32%;
  background: #fff;
}

.floating-label--wa {
  right: 2%;
  bottom: 22%;
  background: #ffd65d;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 45px rgba(37, 53, 59, 0.04);
}

.trust-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--green-600);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.trust-item strong {
  color: var(--green-950);
}

/* Sections */
.section {
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 4.7vw, 4rem);
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

/* Journey cards */
.journey {
  background:
    linear-gradient(180deg, #fff 0%, #fffdf8 60%, #fff 100%);
}

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

.journey-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(12, 39, 56, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.journey-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20%;
  bottom: -10%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.journey-card--blue {
  background: linear-gradient(180deg, var(--blue-soft), #e8f8fb);
}

.journey-card--yellow {
  background: linear-gradient(180deg, #fff8e9, #fff0bd);
}

.journey-card--lilac {
  background: linear-gradient(180deg, var(--lilac-soft), #f6f1ff);
}

.journey-card--mint {
  background: linear-gradient(180deg, #effaf6, #e3f5ee);
}

.journey-card--rose {
  background: linear-gradient(180deg, var(--rose-soft), #f5eef8);
}

.journey-card__content {
  position: relative;
  z-index: 3;
  padding: 24px 22px 0;
}

.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.step-number--green { background: #51b58e; }
.step-number--gold { background: #e6ad3d; }
.step-number--blue { background: #729bda; }
.step-number--purple { background: #9a7bd0; }

.journey-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.journey-card p {
  max-width: 16ch;
  margin: 10px 0 0;
  color: #233d4d;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
}

.journey-card__icon {
  position: absolute;
  z-index: 4;
  top: 205px;
  left: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(12, 39, 56, 0.06);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(21, 49, 58, 0.12);
}

.journey-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-card__icon--green { color: #22a67f; }
.journey-card__icon--gold { color: #f2aa19; }
.journey-card__icon--blue { color: #7193d5; }
.journey-card__icon--purple { color: #9b79d5; }

.journey-card__icon--qr svg path {
  fill: currentColor;
  stroke: none;
}

.journey-card img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 66%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center bottom;
}

.primary-badge {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 45%);
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: #f16f75;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(241, 111, 117, 0.26);
}

/* Clinic */
.clinic-section {
  padding-top: 42px;
}

.clinic-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.8fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(15, 159, 130, 0.25);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(176, 231, 218, 0.42), transparent 34%),
    linear-gradient(135deg, #effaf7, #fff);
  box-shadow: var(--shadow);
}

.clinic-card__image {
  min-height: 350px;
  overflow: hidden;
}

.clinic-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-card__copy {
  align-self: center;
  padding: 45px 42px;
}

.clinic-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.clinic-card__copy > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--muted);
}

.clinic-card__list {
  align-self: center;
  margin: 34px 30px 34px 0;
  padding: 20px 0 20px 30px;
  border-left: 1px dashed rgba(7, 63, 56, 0.22);
  list-style: none;
}

.clinic-card__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 16px 0;
  color: #28484a;
  font-weight: 700;
}

.clinic-card__list span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--green-600);
  background: rgba(15, 159, 130, 0.1);
}

.clinic-benefit-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-anchor {
  height: 10px;
}

/* Footer */
.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
  font-size: 0.76rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand--footer {
  align-items: flex-start;
  gap: 7px;
}

.brand--footer .brand__logo {
  width: 132px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #fff;
}

.footer__inner p {
  margin: 0;
  text-align: center;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer a:hover {
  color: #fff;
}

/* Pricing */
.pricing-section {
  padding-block: 96px 86px;
  background:
    radial-gradient(circle at 8% 18%, rgba(204, 238, 232, 0.62), transparent 26%),
    linear-gradient(180deg, #f8fcfa 0%, #fffdf8 100%);
}

.pricing-heading {
  margin-bottom: 38px;
}

.pricing-heading > p:last-of-type {
  max-width: 660px;
  margin-inline: auto;
}

.pricing-billing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
  padding: 5px;
  border: 1px solid rgba(7, 63, 56, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(21, 49, 58, 0.08);
}

.pricing-billing__option {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.pricing-billing__option.is-active {
  color: #fff;
  background: var(--green-950);
  box-shadow: 0 6px 14px rgba(7, 63, 56, 0.16);
}

.pricing-billing__option span {
  margin-left: 4px;
  color: var(--green-800);
}

.pricing-billing__option.is-active span {
  color: var(--yellow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 22px 22px;
  border: 1px solid rgba(7, 63, 56, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(21, 49, 58, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 159, 130, 0.45);
  box-shadow: 0 24px 54px rgba(21, 49, 58, 0.13);
}

.pricing-card--featured {
  border: 2px solid var(--green-600);
  box-shadow: 0 22px 54px rgba(15, 159, 130, 0.17);
}

.pricing-card--pro {
  background: linear-gradient(160deg, #fff, #f7f4ff);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 22px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: #6f59c6;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card__topline {
  min-height: 20px;
}

.pricing-card__kicker {
  color: var(--green-800);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 14px 0 7px;
  color: var(--green-950);
  font-size: 1.65rem;
  letter-spacing: -0.055em;
}

.pricing-card__desc {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 22px;
  color: var(--ink);
}

.pricing-price__currency {
  font-size: 1.1rem;
  font-weight: 800;
}

.pricing-price__amount {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 1;
}

.pricing-price__period {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.pricing-save {
  min-height: 34px;
  margin: 9px 0 20px;
  color: var(--green-800);
  font-size: 0.68rem;
  line-height: 1.45;
}

.pricing-save strong {
  color: var(--green-950);
}

.pricing-features {
  display: grid;
  flex: 1;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #294552;
  font-size: 0.76rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.42;
}

.pricing-features li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--mint);
  font-size: 0.65rem;
  font-weight: 900;
}

.pricing-features strong {
  color: var(--green-950);
}

.pricing-button {
  width: 100%;
  min-height: 46px;
  font-size: 0.78rem;
}

.pricing-usage-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 780px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(15, 159, 130, 0.2);
  border-radius: 20px;
  background: rgba(204, 238, 232, 0.48);
}

.pricing-usage-note__icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--green-800);
  font-size: 0.95rem;
  font-weight: 900;
}

.pricing-usage-note strong {
  color: var(--green-950);
  font-size: 0.82rem;
}

.pricing-usage-note p {
  margin: 4px 0 0;
  color: #42605e;
  font-size: 0.72rem;
  line-height: 1.55;
}

.pricing-footnote {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.68rem;
}

.pricing-footnote a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-contact-button {
  width: fit-content;
  margin: 22px auto 0;
  padding-inline: 18px;
  font-size: 0.78rem;
}

.pricing-contact-button img {
  width: 22px;
  height: 22px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 12px 30px rgba(18, 140, 74, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.38);
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
  }

  .hero__benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }

  .hero__benefits li:nth-child(2) {
    border-right: 0;
  }

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

  .journey-card {
    min-height: 530px;
  }

  .clinic-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .clinic-card__list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 28px 28px;
    padding: 20px;
    border-top: 1px dashed rgba(7, 63, 56, 0.22);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .announcement__trust {
    display: none;
  }

  .announcement__inner {
    justify-content: center;
    text-align: center;
  }

  .nav {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: #f3faf7;
  }

  .hero {
    padding-top: 48px;
  }

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

  .hero__copy {
    text-align: center;
  }

  .hero__description {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__benefits {
    margin-inline: auto;
    text-align: left;
  }

  .hero__visual {
    min-height: 520px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .clinic-card {
    grid-template-columns: 1fr;
  }

  .clinic-card__image {
    min-height: 420px;
  }

  .clinic-card__copy {
    text-align: center;
  }

  .clinic-card__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .announcement {
    font-size: 0.68rem;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .hero__benefits li {
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .hero__visual {
    min-height: 410px;
  }

  .floating-label {
    font-size: 0.7rem;
    padding: 10px 13px;
  }

  .shape--yellow {
    width: 145px;
    height: 145px;
  }

  .shape--mint {
    width: 110px;
    height: 110px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .journey-card {
    min-height: 520px;
  }

  .journey-card__content {
    padding: 25px 26px 0;
  }

  .clinic-card__image {
    min-height: 320px;
  }

  .clinic-card__copy {
    padding: 34px 22px;
  }

  .clinic-card__list {
    grid-template-columns: 1fr;
    margin-inline: 18px;
  }

  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Platform audience and connection sections */
.section-heading--center { max-width: 720px; margin-inline: auto; text-align: center; }
.audience-section { padding-block: 58px; background: #fff; }
.audience-section .section-heading { margin-bottom: 30px; }
.audience-section .section-heading h2 { font-size: clamp(1.9rem,3.4vw,2.9rem); }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-card { padding: 30px 42px 30px 0; }
.audience-card + .audience-card { padding-right: 0; padding-left: 42px; border-left: 1px solid var(--line); }
.audience-card__icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--green-600); font-size: 1.25rem; font-weight: 800; }
.audience-card--clinics .audience-card__icon { color: #6575c7; }
.audience-card__label { margin: 10px 0 8px !important; color: var(--green-800) !important; font-size: .7rem !important; font-weight: 800 !important; letter-spacing: .08em; text-transform: uppercase; }
.audience-card--clinics .audience-card__label { color: #5969ba !important; }
.audience-card h3 { max-width: 440px; margin: 0; color: var(--ink); font-size: clamp(1.8rem,3vw,2.55rem); line-height: 1.12; letter-spacing: -.05em; }
.audience-card > p { max-width: 540px; color: var(--muted); line-height: 1.7; }
.audience-card ul { display: grid; gap: 10px; margin: 20px 0 22px; padding: 0; list-style: none; color: #294552; font-size: .83rem; font-weight: 600; }
.audience-card li { display: flex; align-items: center; }
.audience-card li::before { content: "✓"; display: inline-grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; margin-right: 10px; border-radius: 50%; color: #fff; background: var(--green-600); font-size: .7rem; font-weight: 800; }
.audience-card--clinics li::before { background: #7184d5; }
.audience-link { display: inline-flex; align-items: center; color: var(--green-800); font-size: .84rem; font-weight: 800; }
.audience-card--clinics .audience-link { color: #5969ba; }
.audience-link span { margin-left: 8px; }
.privacy-section { padding-block: 58px; background: #f7fbf9; }
.privacy-heading { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 70px; align-items: end; margin-bottom: 30px; }
.privacy-heading .eyebrow { grid-column: 1/-1; }
.privacy-heading h2 { margin: 8px 0 0; color: var(--ink); font-size: clamp(1.8rem,3.3vw,2.8rem); line-height: 1.12; letter-spacing: -.05em; }
.privacy-heading > p:last-child { margin: 0 0 5px; color: var(--muted); line-height: 1.75; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; row-gap: 0; border-top: 1px solid rgba(7,63,56,.13); }
.privacy-card { display: grid; grid-template-columns: auto 1fr; gap: 18px; min-height: 132px; align-items: start; padding: 25px 0; border-bottom: 1px solid rgba(7,63,56,.13); }
.privacy-card__icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--green-600); }
.privacy-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.privacy-card h3 { margin: 1px 0 7px; color: var(--ink); font-size: 1.05rem; letter-spacing: -.03em; }
.privacy-card p { max-width: 48ch; margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.6; }
.stories-section { padding-block: 58px; background: #fff; }
.stories-section .section-heading { margin-bottom: 30px; }
.stories-section .section-heading h2 { font-size: clamp(1.8rem,3.3vw,2.8rem); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-grid blockquote { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin: 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--green-600); }
.story-icon--empty { border: 2px dashed #d6ebe4; border-radius: 50%; background: #f7fbf9; }
.story-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.doctor-story__photo { width: 58px; height: 58px; border: 3px solid #e9f7f2; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 22px rgba(7, 63, 56, .12); }
.story-grid blockquote > div > p { margin: 0 0 20px; color: #314957; font-size: .94rem; line-height: 1.7; }
.story-grid footer { display: flex; flex-direction: column; }
.story-grid strong { color: var(--green-950); }
.story-grid small { margin-top: 3px; color: var(--muted); }
.final-paths { background: var(--green-950); }
.final-paths__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-paths .eyebrow { color: #7fe0c5; }
.final-paths h2 { max-width: 650px; margin: 8px 0 0; color: #fff; font-size: clamp(2rem,4vw,3.3rem); line-height: 1.08; letter-spacing: -.05em; }
.final-paths__actions { display: flex; flex: 0 0 auto; gap: 12px; }
.button--light { color: var(--green-950); background: #fff; }
@media (max-width: 900px) { .audience-grid,.story-grid,.privacy-grid { grid-template-columns: 1fr; } .audience-card { padding: 28px 0; } .audience-card + .audience-card { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; } .privacy-heading { grid-template-columns: 1fr; } .privacy-heading > p:last-child { margin-top: 18px; } .final-paths__inner { align-items: flex-start; flex-direction: column; } }
@media (max-width: 560px) { .final-paths__actions { width: 100%; flex-direction: column; } .final-paths__actions .button { width: 100%; } }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

@media (max-width: 560px) {
  .pricing-section { padding-block: 68px 60px; }
  .pricing-billing { margin-top: 22px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-card { padding: 26px 22px 22px; }
  .pricing-card__desc { min-height: auto; }
  .pricing-usage-note { padding: 16px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; min-height: 52px; padding: 7px; justify-content: center; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp img { width: 34px; height: 34px; }
}
