@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --ink: #0c2925;
  --ink-deep: #1b4d6e;
  --forest: #2e7aaf;
  --sage: #2e7aaf;
  --mint: #eef4f9;
  --cream: #eef4f9;
  --paper: #ffffff;
  --coral: #2e7aaf;
  --gold: #bea243;
  --line: rgba(27, 77, 110, 0.14);
  --muted: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(27, 77, 110, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  width: 122px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--coral);
}

.menu-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: var(--white);
  color: var(--ink-deep);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--forest);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 28px rgba(46, 122, 175, 0.17);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--ink-deep);
  box-shadow: 0 14px 34px rgba(46, 122, 175, 0.24);
}

.button-small {
  min-height: 43px;
  padding-inline: 19px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(238, 244, 249, 0.96) 58%, rgba(238, 244, 249, 0.92) 100%),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(46, 122, 175, 0.12) 0.8px, transparent 0.8px);
  background-size: 23px 23px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 70%, #000 100%);
}

.hero-grid {
  min-height: 690px;
  padding-block: 94px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 78px;
  position: relative;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  width: 290px;
  height: 290px;
  top: -160px;
  right: 12%;
  border: 72px solid rgba(46, 122, 175, 0.15);
}

.hero-orb-two {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 7%;
  border: 38px solid rgba(27, 77, 110, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.nr-banner h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

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

.button-ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.hero-notes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-notes span::first-letter {
  color: var(--gold);
}

.diagnosis-card {
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px 5px 22px 5px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-kicker {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diagnosis-card h2 {
  margin: 6px 0 25px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.diagnosis-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnosis-card li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 0 0 22px;
}

.diagnosis-card li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: var(--line);
}

.diagnosis-card li > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.diagnosis-card strong,
.diagnosis-card small {
  display: block;
}

.diagnosis-card strong {
  margin-top: 1px;
  font-size: 0.96rem;
}

.diagnosis-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.card-location {
  margin-top: 3px;
  padding: 17px 19px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(110deg, var(--ink-deep), #28678f);
  color: var(--white);
  border-radius: 4px 14px 4px 14px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.card-location p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.card-location strong {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.card-location small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  white-space: nowrap;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.trust-grid > div {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-grid > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 0.92rem;
}

.trust-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  padding-block: 110px;
}

.section-light {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 90px;
}

.section h2,
.nr-banner h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}

.problem-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  background: var(--cream);
}

.problem-card span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.problem-card p {
  max-width: 270px;
  margin: 31px 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.clients-section {
  padding-block: 74px 82px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  align-items: end;
  gap: 12px 90px;
}

.clients-heading .eyebrow {
  grid-column: 1 / -1;
}

.clients-heading h2 {
  margin: 5px 0 0;
  max-width: 600px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.clients-heading p {
  margin: 0 0 4px;
  max-width: 540px;
  color: var(--muted);
  font-size: 0.94rem;
}

.clients-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-logo-placeholder {
  min-width: 0;
  min-height: 118px;
  padding: 20px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.client-logo-placeholder span {
  color: rgba(27, 77, 110, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.client-logo-placeholder img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 68px;
  display: block;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-logo-placeholder-large {
  padding: 14px;
}

.client-logo-placeholder-large img {
  max-height: 76px;
}

.client-logo-placeholder:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

.method-section {
  background: var(--ink-deep);
  color: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: 110px;
}

.eyebrow-light {
  color: var(--mint);
}

.method-intro h2,
.nr-banner h2 {
  color: var(--white);
}

.method-intro p {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  display: inline-block;
  margin-top: 34px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.timeline article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
}

.timeline h3 {
  margin: -3px 0 7px;
  font-size: 1.18rem;
}

.timeline p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.section-heading h2 {
  max-width: 750px;
}

#solucoes .section-heading h2 {
  max-width: 960px;
}

#solucoes .section-heading > p {
  max-width: 900px;
}

.section-heading > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.centered {
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2,
.centered > p {
  margin-left: auto;
  margin-right: auto;
}

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

.solution-card {
  min-height: 315px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px 18px 4px 18px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 22px 46px rgba(27, 77, 110, 0.09);
}

.solution-top {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-family: Georgia, serif;
}

.solution-card h3 {
  margin: 35px 0 11px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-row {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row small {
  padding: 4px 9px;
  border-radius: 30px;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.66rem;
  font-weight: 600;
}

.nr-banner {
  margin-bottom: 110px;
  padding: 50px 54px;
  display: grid;
  grid-template-columns: 95px 1fr auto;
  align-items: center;
  gap: 37px;
  overflow: hidden;
  position: relative;
  border-radius: 5px 26px 5px 26px;
  background: #e07962;
  color: var(--white);
}

.nr-banner::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -110px;
  border: 45px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.nr-badge {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.nr-banner h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.nr-banner p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.button-white {
  position: relative;
  z-index: 2;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

.button-white:hover,
.button-white:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.care-section {
  background: var(--cream);
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 110px;
}

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

.care-ring {
  position: absolute;
  border: 1px solid rgba(27, 77, 110, 0.23);
  border-radius: 50%;
}

.care-ring-one {
  width: 390px;
  height: 390px;
}

.care-ring-two {
  width: 260px;
  height: 260px;
  background: rgba(238, 244, 249, 0.67);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.72);
}

.care-center {
  position: relative;
  z-index: 2;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  font-style: italic;
  line-height: 1.1;
  text-align: center;
}

.care-word {
  position: absolute;
  z-index: 3;
  padding: 7px 14px;
  border-radius: 40px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 8px 30px rgba(27, 77, 110, 0.09);
  font-size: 0.72rem;
}

.care-word-one {
  top: 57px;
  right: 65px;
}

.care-word-two {
  bottom: 67px;
  right: 30px;
}

.care-word-three {
  bottom: 105px;
  left: 15px;
}

.care-copy > p {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--muted);
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.87rem;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.audience-section {
  background: var(--white);
}

.audience-grid {
  margin-top: 53px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-grid article {
  min-height: 230px;
  padding: 31px;
  border-top: 2px solid var(--gold);
  background: var(--cream);
}

.audience-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.audience-grid h3 {
  margin: 32px 0 9px;
  font-size: 1.13rem;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(440px, 1fr);
  gap: 110px;
}

.faq-grid > div:first-child > p {
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 38px 22px 0;
  position: relative;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 7px;
  top: 18px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 650px;
  margin: -5px 0 23px;
  padding-right: 35px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-footer {
  padding: 82px 0 22px;
  background: var(--ink-deep);
  color: var(--white);
}

.contact-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.88fr);
  gap: 105px;
  align-items: start;
}

.contact-footer-copy {
  padding-top: 3px;
}

.contact-footer-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.contact-footer-copy h2 > span {
  display: block;
  white-space: nowrap;
}

.contact-footer-copy h2 em {
  color: #3893c8;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.contact-footer-copy > p {
  max-width: 500px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 25px;
  font-style: normal;
}

.contact-item {
  width: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  flex: 0 0 24px;
  fill: none;
  stroke: #3d9bd2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-item svg .icon-fill {
  fill: #3d9bd2;
  stroke: none;
}

.contact-item span,
.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item strong {
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
}

.contact-item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
  font-style: normal;
}

a.contact-item:hover strong,
a.contact-item:focus-visible strong {
  color: #70bde8;
}

.proposal-card {
  padding: 38px;
  border: 1px solid rgba(112, 189, 232, 0.53);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.045);
}

.proposal-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.proposal-card > p {
  margin: 17px 0 18px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
}

#proposal-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#proposal-form label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

#proposal-form label > span {
  line-height: 1.3;
}

#proposal-form label b {
  color: #ff6a63;
  font-weight: 700;
}

#proposal-form label span small {
  color: rgba(255, 255, 255, 0.55);
  font-size: inherit;
}

#proposal-form input,
#proposal-form select,
#proposal-form textarea {
  width: 100%;
  border: 1px solid rgba(157, 205, 232, 0.22);
  border-radius: 6px;
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

#proposal-form input,
#proposal-form select {
  height: 42px;
  padding: 0 13px;
}

#proposal-form textarea {
  min-height: 92px;
  padding: 10px 13px;
  resize: vertical;
  line-height: 1.45;
}

#proposal-form input::placeholder,
#proposal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

#proposal-form select {
  color-scheme: dark;
}

#proposal-form input:focus,
#proposal-form select:focus,
#proposal-form textarea:focus {
  border-color: #70bde8;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 3px rgba(61, 155, 210, 0.16);
}

.proposal-submit {
  min-height: 43px;
  margin-top: 2px;
  padding: 10px 18px;
  border: 0;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.proposal-submit:hover,
.proposal-submit:focus-visible {
  transform: translateY(-1px);
  background: #eef7fc;
}

.proposal-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.84rem;
  line-height: 1.45;
}

.form-status.is-success {
  color: #a8e6bf;
}

.form-status.is-error {
  color: #ffaaa5;
}

.contact-footer-bottom {
  margin-top: 78px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.contact-footer-bottom a {
  display: block;
}

.contact-footer-bottom img {
  width: 105px;
  height: auto;
  display: block;
}

.contact-footer-bottom small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

/* Página de pacientes */

.patient-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
}

.patient-hero-visual {
  margin: 0;
  position: relative;
}

.patient-hero-visual img {
  width: 100%;
  max-height: 510px;
  display: block;
  border-radius: 22px 5px 22px 5px;
  object-fit: cover;
}

.patient-hero-visual figcaption {
  width: calc(100% - 40px);
  margin: -52px auto 0;
  padding: 20px 22px;
  position: relative;
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--gold);
  border-radius: 4px 14px 4px 14px;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(27, 77, 110, 0.22);
}

.patient-hero-visual figcaption strong {
  font-size: 0.92rem;
}

.patient-hero-visual figcaption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.5;
}

.patient-stats strong {
  color: var(--ink-deep);
  font-size: 1.3rem;
}

.patient-values {
  background: var(--white);
}

.patient-values-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.patient-values-grid article {
  min-height: 215px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.patient-values-grid article:hover {
  transform: translateY(-3px);
  background: var(--cream);
}

.patient-values-grid article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.patient-values-grid h3 {
  margin: 29px 0 9px;
  font-size: 1.1rem;
}

.patient-values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.patient-help-section {
  background: var(--cream);
}

.patient-help-carousel {
  margin-top: 58px;
}

.patient-help-viewport {
  overflow: hidden;
}

.patient-help-grid {
  display: flex;
  gap: 18px;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.patient-help-grid article {
  flex: 0 0 calc(23.8095% - 17.1429px);
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 180ms ease, background 180ms ease;
}

.patient-help-grid article:hover {
  transform: translateY(-3px);
  background: var(--cream);
}

.patient-help-grid article > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.patient-help-content {
  padding: 17px 22px 19px;
  flex: 1;
}

.patient-help-grid h3 {
  margin: 0 0 7px;
  font-size: 1.1rem;
}

.patient-help-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.patient-help-controls {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.patient-help-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-deep);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.patient-help-arrow:hover,
.patient-help-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: var(--forest);
  background: var(--mint);
}

.patient-help-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patient-products {
  background: var(--white);
}

.patient-products-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.patient-product-card {
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px 20px 4px 20px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(27, 77, 110, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.patient-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(27, 77, 110, 0.12);
}

.patient-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.patient-product-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
}

.patient-product-label {
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.patient-product-icon {
  width: 58px;
  height: 58px;
  margin-top: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
}

.patient-product-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patient-product-card h3 {
  margin: 25px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.patient-product-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.patient-product-card ul {
  margin: 25px 0 28px;
  padding: 21px 0 0;
  display: grid;
  gap: 11px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.patient-product-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.patient-product-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0.65em;
  left: 0;
  border-radius: 50%;
  background: var(--gold);
}

.patient-product-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.patient-journey-grid {
  align-items: center;
}

.patient-reimbursement-card {
  margin-top: 70px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px 22px 5px 22px;
  background: rgba(255, 255, 255, 0.07);
}

.patient-reimbursement-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.patient-reimbursement-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.patient-reimbursement-copy h2 {
  margin: 9px 0 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.patient-reimbursement-copy p {
  max-width: 720px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.patient-reimbursement-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.patient-reimbursement-card > .button {
  white-space: nowrap;
}

.patient-ceo-section {
  background: var(--white);
}

.patient-ceo-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.patient-ceo-photo {
  margin: 0;
  position: relative;
}

.patient-ceo-photo::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 1px solid rgba(190, 162, 67, 0.55);
  border-radius: 22px 5px 22px 5px;
}

.patient-ceo-photo img {
  width: 100%;
  max-height: 580px;
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 5px 22px 5px 22px;
  object-fit: cover;
}

.patient-ceo-copy h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.patient-ceo-copy > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}

.patient-ceo-copy .patient-role {
  margin-top: 10px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patient-tags {
  margin-top: 28px;
  padding-top: 0;
}

.patient-tags small {
  padding: 7px 12px;
}

.patient-approach-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.patient-approach-list article {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.patient-approach-list h3 {
  margin: 0;
  font-size: 1rem;
}

.patient-approach-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.patient-specialties {
  background: var(--white);
}

.patient-specialty-cloud {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.patient-specialty-cloud span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--cream);
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 600;
}

.patient-testimonials {
  background: var(--cream);
}

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

.testimonial-grid--eight {
  grid-template-columns: repeat(6, 1fr);
}

.testimonial-grid--eight article {
  grid-column: span 2;
}

.testimonial-grid--eight article:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.testimonial-grid article {
  min-height: 275px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 4px 18px 4px 18px;
  background: var(--white);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.17em;
}

.testimonial-grid blockquote {
  margin: 24px 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-grid article > p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.patient-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.7fr);
  gap: 90px;
  align-items: center;
}

.patient-footer-cta {
  padding: 34px 36px;
  border: 1px solid rgba(112, 189, 232, 0.42);
  border-radius: 4px 18px 4px 18px;
  background: rgba(255, 255, 255, 0.055);
}

.patient-footer-cta > span {
  color: #70bde8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.patient-footer-cta h3 {
  margin: 13px 0 0;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.patient-footer-cta p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
  line-height: 1.65;
}

.patient-footer-button {
  width: 100%;
  background: var(--white);
  color: var(--ink-deep);
  box-shadow: none;
}

.patient-footer-button:hover,
.patient-footer-button:focus-visible {
  background: #eef7fc;
  color: var(--ink-deep);
}

.patient-footer-contacts {
  margin-top: 58px;
  padding-top: 36px;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.15fr 1.35fr;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-style: normal;
}

.patient-footer-contacts .contact-item {
  width: auto;
}

.patient-footer .contact-footer-bottom {
  margin-top: 58px;
}

body.has-open-modal {
  overflow: hidden;
}

.audience-modal {
  width: min(500px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px 5px 20px 5px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.audience-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.audience-modal-shell {
  padding: 48px 48px 52px;
  text-align: center;
}

.audience-modal-shell > img {
  width: 132px;
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.audience-modal-shell h1 {
  max-width: 500px;
  margin: 10px auto 14px;
  color: var(--ink-deep);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  line-height: 1.08;
}

.audience-modal-shell p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
}

.audience-modal-actions {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.audience-modal-actions .button {
  width: 100%;
  gap: 10px;
}

.audience-modal-actions svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-modal-actions .button-ghost {
  background: var(--white);
  color: var(--ink-deep);
}

.audience-modal-actions .button-ghost:hover,
.audience-modal-actions .button-ghost:focus-visible {
  background: var(--mint);
}

.patient-modal {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px 5px 20px 5px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(12, 41, 37, 0.28);
}

.patient-modal::backdrop {
  background: rgba(9, 31, 45, 0.72);
  backdrop-filter: blur(6px);
}

.patient-modal-shell {
  max-height: calc(100dvh - 32px);
  padding: 34px 42px 42px;
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.patient-modal-close {
  width: 42px;
  height: 42px;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink-deep);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.patient-modal-close:hover,
.patient-modal-close:focus-visible {
  transform: rotate(4deg);
  background: var(--mint);
}

.patient-modal-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.patient-modal-progress {
  margin: 0 62px 34px 0;
}

.patient-modal-progress > span {
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patient-modal-progress > div {
  margin-top: 9px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.patient-modal-progress i {
  height: 4px;
  display: block;
  border-radius: 10px;
  background: var(--line);
  transition: background 180ms ease;
}

.patient-modal-progress i.is-active {
  background: var(--forest);
}

.patient-form-step {
  display: none;
}

.patient-form-step.is-active {
  display: block;
}

.patient-form-step h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.patient-form-step > p:not(.patient-modal-status) {
  max-width: 620px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.patient-modal-fields {
  margin-top: 27px;
  display: grid;
  gap: 16px;
}

.patient-modal-fields label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.patient-modal-fields b,
.patient-choice-group b {
  color: #d7514a;
}

.patient-modal-fields input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.patient-modal-fields input::placeholder {
  color: rgba(74, 74, 74, 0.55);
}

.patient-modal-fields input:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46, 122, 175, 0.12);
}

.patient-choice-group {
  min-width: 0;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.patient-choice-group + .patient-choice-group {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.patient-choice-group legend {
  width: 100%;
  padding: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.patient-choice-group legend small {
  margin-top: 3px;
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.patient-choice-list {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.patient-choice-list-checks {
  grid-template-columns: 1fr 1fr;
}

.patient-choice-list-radios {
  grid-template-columns: repeat(3, 1fr);
}

.patient-choice-list label {
  min-width: 0;
  display: block;
  position: relative;
  cursor: pointer;
}

.patient-choice-list input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.patient-choice-list span {
  min-height: 52px;
  padding: 11px 13px 11px 42px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--cream);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.patient-choice-list span::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 14px;
  border: 1.5px solid rgba(27, 77, 110, 0.4);
  border-radius: 4px;
  background: var(--white);
}

.patient-choice-list-radios span {
  min-height: 64px;
  padding-left: 39px;
}

.patient-choice-list-radios span::before {
  border-radius: 50%;
}

.patient-choice-list input:checked + span {
  border-color: var(--forest);
  background: rgba(46, 122, 175, 0.09);
  color: var(--ink-deep);
  font-weight: 600;
}

.patient-choice-list input:checked + span::before {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: inset 0 0 0 4px var(--white);
}

.patient-choice-list input:focus-visible + span {
  outline: 3px solid rgba(46, 122, 175, 0.22);
  outline-offset: 2px;
}

.patient-choice-group.has-error .patient-choice-list span {
  border-color: rgba(215, 81, 74, 0.65);
}

.patient-modal-status {
  min-height: 21px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.patient-modal-status:empty {
  min-height: 0;
  margin-top: 12px;
}

.patient-modal-status.is-error {
  color: #bd3d37;
}

.patient-modal-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr);
  gap: 10px;
}

.patient-modal-primary,
.patient-modal-secondary,
.patient-modal-whatsapp {
  min-height: 50px;
  padding: 11px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.patient-modal-primary {
  width: 100%;
  margin-top: 20px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
}

.patient-modal-actions .patient-modal-primary {
  margin-top: 0;
}

.patient-modal-primary:hover,
.patient-modal-primary:focus-visible,
.patient-modal-whatsapp:hover,
.patient-modal-whatsapp:focus-visible {
  transform: translateY(-1px);
  background: var(--ink-deep);
}

.patient-modal-primary:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.patient-modal-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-deep);
}

.patient-modal-secondary:hover,
.patient-modal-secondary:focus-visible {
  background: var(--mint);
}

.patient-form-success {
  padding: 27px 12px 12px;
  text-align: center;
}

.patient-success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 122, 175, 0.1);
  color: var(--forest);
}

.patient-success-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.patient-form-success .eyebrow::before {
  display: none;
}

.patient-form-success > p:not(.patient-modal-status) {
  margin-inline: auto;
}

.patient-form-success em {
  font-style: italic;
}

.patient-modal-whatsapp {
  max-width: 330px;
  margin: 28px auto 0;
  gap: 9px;
  border: 1px solid #25d366;
  background: #25d366;
  color: var(--white);
}

.patient-modal-whatsapp svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.patient-modal-whatsapp:hover,
.patient-modal-whatsapp:focus-visible {
  background: #1ebe5d;
}

@media (max-width: 1040px) {
  nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 4px 4px;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(27, 77, 110, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  nav a {
    padding: 10px 12px;
  }

  nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 390px;
    gap: 45px;
  }

  .method-grid,
  .care-grid,
  .faq-grid {
    gap: 65px;
  }

  .contact-footer-grid {
    gap: 55px;
  }

  .patient-ceo-grid {
    gap: 60px;
  }

  .nr-banner {
    grid-template-columns: 76px 1fr;
  }

  .nr-banner .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .split-heading,
  .method-grid,
  .care-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 74px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .diagnosis-card {
    max-width: 580px;
  }

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

  .clients-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .clients-heading .eyebrow {
    grid-column: auto;
  }

  .clients-heading p {
    max-width: 650px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

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

  .split-heading {
    gap: 25px;
  }

  .method-intro {
    max-width: 600px;
  }

  .care-grid {
    gap: 35px;
  }

  .care-visual {
    min-height: 410px;
  }

  .faq-grid {
    gap: 45px;
  }

  .contact-footer {
    padding-top: 68px;
  }

  .contact-footer-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .patient-footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .patient-footer-cta {
    max-width: 620px;
  }

  .patient-footer-contacts {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

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

  .patient-hero-visual {
    max-width: 620px;
  }

  .patient-values-grid,
  .patient-help-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .patient-products-grid {
    grid-template-columns: 1fr;
  }

  .patient-reimbursement-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .patient-reimbursement-card > .button {
    grid-column: 2;
    justify-self: start;
  }

  .patient-product-card {
    min-height: 0;
  }

  .testimonial-grid--eight article,
  .testimonial-grid--eight article:nth-last-child(2) {
    grid-column: auto;
  }

  .patient-ceo-photo {
    max-width: 520px;
  }

  .contact-footer-copy > p {
    max-width: 620px;
  }

  .contact-list {
    grid-template-columns: 1fr 1fr;
  }

  .proposal-card {
    max-width: 620px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 76px;
    gap: 9px;
  }

  .brand-logo {
    width: 92px;
  }

  .nav > .button {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.67rem;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 58px 62px;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.8rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    gap: 8px;
    flex-direction: column;
  }

  .patient-page .hero-notes {
    align-items: center;
    text-align: center;
  }

  .company-page .hero-notes {
    align-items: center;
    text-align: center;
  }

  .diagnosis-card {
    padding: 26px;
  }

  .trust-grid,
  .problem-grid,
  .solution-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 88px;
    padding: 20px 10px;
  }

  .trust-grid > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .patient-page .patient-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .patient-page .patient-stats > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .patient-page .patient-stats > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section h2 {
    font-size: 2rem;
  }

  .problem-grid,
  .solution-grid,
  .audience-grid {
    margin-top: 38px;
  }

  .clients-section {
    padding-block: 62px 68px;
  }

  .clients-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }

  .client-logo-placeholder {
    min-height: 105px;
  }

  .client-logo-placeholder img {
    max-height: 62px;
  }

  .client-logo-placeholder-large img {
    max-height: 70px;
  }

  .problem-card {
    min-height: 145px;
  }

  .problem-card p {
    margin-top: 22px;
  }

  .method-grid {
    gap: 55px;
  }

  .patient-reimbursement-card {
    margin-top: 52px;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .patient-reimbursement-icon {
    width: 62px;
    height: 62px;
  }

  .patient-reimbursement-card > .button {
    width: 100%;
    grid-column: 1;
  }

  .timeline article {
    grid-template-columns: 43px 1fr;
    gap: 14px;
  }

  .solution-card {
    min-height: 285px;
  }

  .nr-banner {
    width: calc(100% - 28px);
    margin-bottom: 78px;
    padding: 34px 27px;
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .nr-banner .button {
    grid-column: 1;
  }

  .nr-badge {
    width: 63px;
    height: 63px;
  }

  .care-visual {
    min-height: 330px;
  }

  .care-ring-one {
    width: 310px;
    height: 310px;
  }

  .care-ring-two {
    width: 205px;
    height: 205px;
  }

  .care-word-one {
    top: 28px;
    right: 28px;
  }

  .care-word-two {
    bottom: 36px;
    right: 6px;
  }

  .care-word-three {
    bottom: 75px;
    left: 0;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .contact-footer {
    padding-top: 58px;
  }

  .contact-footer-copy h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .patient-footer-main,
  .patient-footer-contacts {
    grid-template-columns: 1fr;
  }

  .patient-footer-main {
    gap: 38px;
  }

  .patient-footer-cta {
    padding: 27px 24px;
  }

  .patient-footer-contacts {
    margin-top: 44px;
    padding-top: 30px;
    gap: 25px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .proposal-card {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-footer-bottom {
    margin-top: 58px;
  }

  .patient-hero-visual figcaption {
    width: calc(100% - 24px);
    margin-top: -35px;
  }

  .patient-values-grid,
  .patient-help-grid,
  .patient-products-grid,
  .testimonial-grid,
  .patient-approach-list {
    grid-template-columns: 1fr;
  }

  .patient-values-grid,
  .patient-help-grid,
  .patient-products-grid,
  .testimonial-grid {
    margin-top: 38px;
  }

  .patient-product-card {
    min-height: 0;
    padding: 27px 24px;
  }

  .patient-help-carousel {
    margin-top: 38px;
  }

  .patient-help-grid {
    margin-top: 0;
    gap: 14px;
  }

  .patient-help-grid article {
    flex-basis: calc(83.3333% - 11.6667px);
  }

  .patient-help-controls {
    justify-content: center;
  }

  .patient-ceo-grid {
    gap: 58px;
  }

  .patient-ceo-photo::before {
    inset: -10px 10px 10px -10px;
  }

  .patient-modal {
    width: min(100% - 20px, 760px);
    max-height: calc(100dvh - 20px);
  }

  .audience-modal {
    width: min(100% - 20px, 500px);
    margin: 170px auto auto;
  }

  .audience-modal-shell {
    padding: 36px 24px 30px;
  }

  .audience-modal-shell > img {
    width: 116px;
    margin-bottom: 23px;
  }

  .audience-modal-actions {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .patient-modal-shell {
    max-height: calc(100dvh - 20px);
    padding: 27px 20px 30px;
  }

  .patient-modal-close {
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
  }

  .patient-modal-progress {
    margin: 0 50px 28px 0;
  }

  .patient-choice-list-checks,
  .patient-choice-list-radios {
    grid-template-columns: 1fr;
  }

  .patient-choice-list-radios span {
    min-height: 52px;
  }

  .patient-modal-actions {
    grid-template-columns: 1fr;
  }

  .patient-modal-actions .patient-modal-primary {
    grid-row: 1;
  }

  .patient-form-success {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
