@charset "UTF-8";

:root {
  --bg: #f5f5f3;
  --surface: #ededeb;
  --surface-soft: #f1f1ef;
  --green: #3caf17;
  --green-soft: #4ab32c;
  --dark: #151a12;
  --dark-soft: #1d2418;
  --dark-border: rgba(255, 255, 255, 0.12);
  --text: #222620;
  --text-soft: #5f615c;
  --line: rgba(33, 38, 31, 0.16);
  --container: 1536px;
  --container-narrow: 1040px;
  --paragraph-size: 16px;
  --paragraph-size-mobile: 15px;
  --paragraph-line-height: 1.34;
  --section-title-large: 62px;
  --radius-lg: 34px;
  --radius-md: 18px;
  --shadow-soft: 0 14px 42px rgba(28, 31, 26, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
summary {
  font: inherit;
}

button,
input,
select {
  border: 0;
}

button {
  cursor: pointer;
}

main,
footer {
  overflow: clip;
}

.shell {
  width: min(var(--container), calc(100% - 180px));
  margin: 0 auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
.trust__arrow:focus-visible {
  outline: 2px solid rgba(60, 175, 23, 0.55);
  outline-offset: 3px;
}

.button--light {
  background: var(--bg);
  color: #171b15;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.button__arrow {
  width: 6px;
  height: 6px;
  border-top: 1.75px solid currentColor;
  border-right: 1.75px solid currentColor;
  transform: rotate(45deg);
}

.button--primary {
  background:
    linear-gradient(120deg, #3caf17 0%, #49b626 45%, #69ce46 50%, #49b626 55%, #3caf17 100%);
  background-size: 220% 100%;
  color: #fff;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(43, 122, 18, 0.14);
  animation: primaryButtonGlow 5.2s ease-in-out infinite;
}

.button--primary:hover {
  box-shadow: 0 18px 34px rgba(43, 122, 18, 0.24);
}

@keyframes primaryButtonGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.button--block {
  width: 100%;
  min-height: 82px;
  margin-top: 8px;
  font-size: 19px;
}

.button--footer {
  min-width: 352px;
  min-height: 62px;
  padding: 0 28px;
  font-size: 16px;
}

.topbar {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  pointer-events: none;
}

.topbar__inner {
  width: min(724px, calc(100% - 48px));
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  margin: 0 auto;
  padding: 0 16px 0 14px;
  border-radius: 14px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 44px rgba(8, 13, 7, 0.24);
  pointer-events: auto;
  overflow: hidden;
}

.brand {
  width: 104px;
  min-width: 104px;
  max-width: 104px;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
  vertical-align: top;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hero-stage {
  position: relative;
  background:
    linear-gradient(rgba(12, 18, 20, 0.52), rgba(12, 18, 20, 0.72)),
    url("./FUNDO TOP.png") center 34% / cover no-repeat;
}

.hero {
  min-height: auto;
  padding: 156px 0 28px;
  background:
    none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 620px);
  align-items: start;
  gap: 18px;
}

.hero__content {
  max-width: 720px;
  padding-left: 0;
  padding-top: 54px;
}

.hero__title {
  margin: 0;
  letter-spacing: -0.065em;
}

.hero__title-accent,
.hero__title-regular {
  display: block;
}

.hero__title-accent {
  color: #68c043;
  font-size: 72px;
  line-height: 0.93;
  font-weight: 600;
}

.hero__title-regular {
  margin-top: 10px;
  color: #fff;
  font-size: 68px;
  line-height: 0.95;
  font-weight: 300;
}

.hero__copy {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 400;
  max-width: 820px;
}

.hero__copy strong {
  font-weight: 600;
  color: #fff;
}

.hero__highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(8, 10, 12, 0.08);
}

.hero-highlight__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8be46b;
  flex: 0 0 auto;
}

.hero-highlight__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form {
  padding: 28px 18px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(128, 132, 136, 0.2), rgba(90, 94, 98, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(8, 10, 12, 0.18);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: grid;
  gap: 12px;
  transform-origin: center top;
  will-change: transform;
}

.js .hero__content,
.js .lead-form {
  opacity: 0;
  transform: translateY(26px);
  animation: heroEnter 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero__content {
  animation-delay: 0.08s;
}

.js .lead-form {
  animation-delay: 0.2s;
}

.js .hero-highlight {
  opacity: 0;
  transform: translateY(14px);
  animation: heroChipIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-highlight:nth-child(1) {
  animation-delay: 0.3s;
}

.js .hero-highlight:nth-child(2) {
  animation-delay: 0.38s;
}

.js .hero-highlight:nth-child(3) {
  animation-delay: 0.46s;
}

.js .hero-highlight:nth-child(4) {
  animation-delay: 0.54s;
}

.lead-form.is-targeted {
  animation: formPulse 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroChipIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formPulse {
  0% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.024);
  }

  100% {
    transform: scale(1);
  }
}

.lead-form input,
.custom-select__trigger {
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  border-radius: 14px;
  background: rgba(75, 79, 83, 0.34);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.lead-form input::placeholder,
.custom-select__text {
  color: rgba(255, 255, 255, 0.94);
}

.lead-form__select {
  position: relative;
}

.custom-select {
  z-index: 5;
}

.custom-select__trigger {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.custom-select__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select__arrow {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 1.75px solid #fff;
  border-bottom: 1.75px solid #fff;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: translateY(2px) rotate(225deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  padding: 8px;
  border-radius: 16px;
  background: rgba(27, 31, 34, 0.98);
  box-shadow: 0 18px 40px rgba(13, 17, 11, 0.28);
}

.custom-select.is-open .custom-select__menu {
  display: grid;
  gap: 4px;
}

.custom-select__option {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  background: transparent;
  color: #f4f4ef;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
  background: rgba(255, 255, 255, 0.08);
}

.section-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-title--light {
  color: #f4f3ef;
  font-size: 26px;
  font-weight: 600;
}

.diagnosis {
  position: relative;
  padding: 104px 0 86px;
  background: none;
}

.diagnosis::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(196, 201, 202, 0.26);
}

.diagnosis__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagnosis__cards {
  width: min(980px, 100%);
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

.diag-card {
  padding: 22px 28px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #2eaf0d 0%, #1f9208 100%);
  color: #fff;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: center;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.diag-card,
.diag-card p,
.diag-card strong,
.diag-card span,
.diag-card svg,
.diag-card path,
.diag-card circle {
  color: #fff !important;
  fill: none;
  stroke: #fff;
  -webkit-text-fill-color: #fff;
}

.diag-card p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(8, 10, 6, 0.14);
}

.diag-card strong {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(8, 10, 6, 0.14);
}

.diag-card__icon {
  width: 52px;
  height: 52px;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: transform 0.32s ease, background-color 0.32s ease;
}

.diag-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.diag-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 18px 30px rgba(12, 18, 12, 0.16);
}

.diag-card:hover .diag-card__icon {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.activation {
  padding: 90px 0 54px;
}

.activation__inner {
  display: grid;
  gap: 34px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.activation__title {
  width: 100%;
  text-align: center;
}

.activation__title h2 {
  margin: 0;
  max-width: none;
  color: #222720;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 300;
  white-space: nowrap;
}

.activation__title strong {
  font-weight: 600;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 40px;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
  --timeline-progress: 1;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  width: 5px;
  border-radius: 999px;
  background: rgba(60, 175, 23, 0.18);
}

.timeline::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  width: 5px;
  border-radius: 999px;
  background: var(--green);
  transform-origin: top center;
  transform: scaleY(var(--timeline-progress));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  column-gap: 34px;
}

.timeline__marker {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.timeline__marker,
.timeline__item p {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease;
}

.timeline__item p {
  margin: 2px 0 0;
  color: #525650;
  font-size: var(--paragraph-size);
  line-height: 1.52;
  font-weight: 400;
}

.timeline__item strong {
  color: #262a25;
  font-weight: 600;
}

.js .timeline.is-pending,
.js .timeline.is-animating {
  --timeline-progress: 0;
}

.js .timeline.is-pending .timeline__marker,
.js .timeline.is-animating .timeline__marker {
  opacity: 0;
  transform: scale(0.72);
}

.js .timeline.is-pending .timeline__item p,
.js .timeline.is-animating .timeline__item p {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
}

.js .timeline.is-animating .timeline__item.is-revealed .timeline__marker,
.js .timeline.is-complete .timeline__marker,
.js .timeline.is-animating .timeline__item.is-revealed p,
.js .timeline.is-complete .timeline__item p {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.patrimony-card {
  max-width: 1460px;
  margin: 78px auto 0;
}

.patrimony-card__heading {
  margin: 0;
  color: #20261c;
  text-align: center;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.patrimony-card__frame {
  margin-top: 34px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 84px 24px 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.patrimony-card__frame::before {
  content: "";
  position: absolute;
  inset: 84px 0 0;
  border: 1px solid rgba(35, 42, 31, 0.12);
  border-radius: 40px;
  background: linear-gradient(180deg, #fbfbf8 0%, #f1f2ec 100%);
  z-index: 0;
}

.patrimony-card__frame:hover {
  transform: translateY(-4px);
}

.patrimony-card__frame:hover::before {
  box-shadow: 0 24px 44px rgba(21, 29, 16, 0.08);
}

.patrimony-card__media {
  position: relative;
  z-index: 1;
  min-height: 520px;
  margin-top: -84px;
  border-radius: 36px;
  overflow: hidden;
}

.patrimony-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.patrimony-card__panel--content {
  position: relative;
  z-index: 1;
  padding: 50px 58px 46px;
  display: grid;
  align-content: center;
  gap: 20px;
}

.patrimony-card__lead {
  margin: 0;
  max-width: 900px;
  color: #273025;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 300;
}

.patrimony-card__statement {
  margin: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 12px;
  border-radius: 999px;
  background: rgba(60, 175, 23, 0.08);
  color: #22301d;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 600;
}

.patrimony-card__statement-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f7f18;
  flex: 0 0 auto;
}

.patrimony-card__statement-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.patrimony-card__support {
  margin: 0;
  max-width: 920px;
  color: #596058;
  font-size: 18px;
  line-height: 1.56;
  font-weight: 400;
}

.patrimony-card__closing {
  margin: 6px 0 0;
  max-width: 920px;
  padding-top: 18px;
  border-top: 1px solid rgba(35, 42, 31, 0.08);
  color: #565c54;
  font-size: 17px;
  line-height: 1.56;
  font-weight: 400;
}

.trust {
  padding: 110px 0 112px;
}

.trust__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.trust__title {
  margin: 0;
  max-width: none;
  color: #243021;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-align: center;
  white-space: nowrap;
}

.trust__title span {
  color: var(--green);
  font-weight: 600;
}

.trust__panel {
  width: 100%;
  padding: 34px 34px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(74, 179, 44, 0.14), transparent 42%),
    linear-gradient(180deg, #fafaf7 0%, #f0f1ec 100%);
  border: 1px solid rgba(37, 44, 34, 0.08);
  box-shadow: 0 24px 48px rgba(24, 29, 20, 0.08);
}

.trust__intro {
  margin: 0 0 24px;
  max-width: 700px;
  color: #60655d;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

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

.trust-stat {
  min-height: 148px;
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 56, 40, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  transition:
    background-color 0.55s ease,
    border-color 0.55s ease,
    box-shadow 0.55s ease,
    transform 0.55s ease;
}

.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(24, 29, 20, 0.1);
}

.trust-stat strong {
  display: block;
  color: #2e321e;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 600;
  font-variant-numeric: tabular-nums lining-nums;
  transition: color 0.55s ease;
}

.trust-stat span {
  display: block;
  max-width: 240px;
  color: #62665f;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  margin-top: 4px;
  transition: color 0.55s ease;
}

.trust-stat--featured.is-complete {
  background: linear-gradient(180deg, #3caf17 0%, #4ab32c 100%);
  border-color: rgba(60, 175, 23, 0.88);
  box-shadow: 0 20px 34px rgba(60, 175, 23, 0.24);
  transform: translateY(-2px);
}

.trust-stat--featured.is-complete strong,
.trust-stat--featured.is-complete span {
  color: #ffffff;
}

.reasons {
  padding: 104px 0 112px;
  background: var(--dark);
}

.reasons__inner {
  display: grid;
  gap: 66px;
}

.outlined-card {
  position: relative;
  border: 1px solid var(--dark-border);
  border-radius: 32px;
  color: #f3f3ef;
  background: transparent;
}

.outlined-card h2 {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0 18px;
  background: var(--dark);
  color: #f3f3ef;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 300;
  white-space: nowrap;
}

.outlined-card h2 span {
  color: var(--green);
  font-weight: 600;
}

.outlined-card--center {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 96px 44px;
  text-align: center;
}

.outlined-card--center p {
  max-width: 840px;
  margin: 0 auto;
  color: rgba(243, 243, 239, 0.86);
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-line-height);
  font-weight: 300;
}

.outlined-card--center strong {
  display: block;
  margin-top: 28px;
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-line-height);
  font-weight: 600;
}

.outlined-card--process {
  max-width: 1220px;
  margin: 0 auto;
  padding: 68px 92px 64px;
}

.process-list {
  display: grid;
  gap: 40px;
}

.process-item {
  display: grid;
  gap: 18px;
  transition: transform 0.32s ease;
}

.process-item__body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.process-item__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
  transition: transform 0.32s ease, color 0.32s ease;
}

.process-item__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-item p {
  margin: 0;
  color: #ffffff;
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-line-height);
  font-weight: 300;
}

.pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  align-self: start;
  align-items: center;
  margin-bottom: 0;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: transform 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease;
}

.process-item:hover {
  transform: translateY(-3px);
}

.process-item:hover .pill {
  transform: translateY(-2px);
  background: #4dc726;
  box-shadow: 0 16px 24px rgba(34, 88, 19, 0.18);
}

.process-item:hover .process-item__icon {
  transform: scale(1.08);
  color: #aef98e;
}

.faq {
  padding: 96px 0 102px;
}

.faq__shell {
  width: min(var(--container-narrow), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 16px;
  background: #e9e9e7;
  overflow: hidden;
  border: 1px solid rgba(37, 40, 36, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item:hover,
.faq-item[open] {
  transform: translateY(-2px);
  border-color: rgba(60, 175, 23, 0.14);
  box-shadow: 0 18px 30px rgba(28, 31, 26, 0.08);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 32px 17px;
  cursor: pointer;
  color: #252824;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

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

.faq-item__icon {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 1.75px solid #1d211c;
  border-bottom: 1.75px solid #1d211c;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(225deg);
}

.faq-item__content {
  padding: 10px 32px 20px;
  border-top: 1px solid rgba(37, 40, 36, 0.04);
}

.faq-item__content p {
  margin: 0;
  color: #757773;
  font-size: var(--paragraph-size);
  line-height: var(--paragraph-line-height);
  font-weight: 400;
  max-width: 88%;
}

.closing-cta {
  padding: 0 0 84px;
}

.closing-cta__inner {
  display: grid;
  justify-items: center;
}

.button--closing {
  min-width: min(100%, 732px);
  min-height: 92px;
  padding: 0 34px;
  border-radius: 28px;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-align: center;
}

body:not(.reduced-motion) .button--closing {
  animation: closingCtaPulse 2.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes closingCtaPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--closing {
    animation: none;
  }
}

.footer {
  padding: 34px 0 38px;
  background: #171915;
}

.footer__inner {
  display: grid;
  justify-items: center;
}

.footer__meta {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.footer p {
  margin: 0;
  color: rgba(243, 243, 239, 0.88);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 300;
}

.footer__lead {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(243, 243, 239, 0.94);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 243, 239, 0.94);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer__link:hover {
  transform: translateY(-1px);
  border-color: rgba(74, 179, 44, 0.52);
  background: rgba(74, 179, 44, 0.08);
}

.footer__link-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #68c043;
  flex: 0 0 auto;
}

.footer__link-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__legal {
  display: grid;
  gap: 6px;
}

.footer__legal p {
  color: rgba(243, 243, 239, 0.7);
}

.js .reveal-item {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item--left {
  transform: translateX(-36px);
}

.js .reveal-item--right {
  transform: translateX(36px);
}

.js .reveal-item--scale {
  transform: translateY(26px) scale(0.96);
}

.js .reveal-item.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

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

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: 28px;
  }

  .hero__title-accent {
    font-size: 64px;
  }

  .hero__title-regular {
    font-size: 60px;
  }

  .hero__copy {
    font-size: 20px;
  }
}

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

  .topbar__inner {
    width: min(700px, calc(100% - 32px));
  }

  .hero {
    min-height: auto;
    padding: 146px 0 26px;
  }

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

  .hero__grid {
    gap: 34px;
  }

  .hero__content {
    padding-left: 0;
    max-width: 760px;
    padding-top: 18px;
  }

  .hero__title-accent {
    font-size: clamp(52px, 7vw, 64px);
  }

  .hero__title-regular {
    font-size: clamp(48px, 6.5vw, 60px);
  }

  .hero__copy {
    max-width: 100%;
    font-size: 19px;
  }

  .lead-form {
    max-width: 560px;
    width: 100%;
  }

  .diagnosis {
    padding-top: 88px;
  }

  .trust__panel {
    padding: 28px 28px 24px;
  }

  .activation__title h2,
  .patrimony-card__heading,
  .trust__title {
    max-width: 100%;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -0.06em;
  }

  .activation__title h2 {
    white-space: normal;
  }

  .trust__title {
    white-space: normal;
  }

  .patrimony-card__heading {
    font-size: 32px;
  }

  .patrimony-card__frame {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 0;
    border: 1px solid rgba(35, 42, 31, 0.12);
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfbf8 0%, #f1f2ec 100%);
  }

  .patrimony-card__frame::before {
    display: none;
  }

  .patrimony-card__media {
    min-height: 420px;
    margin-top: 0;
    border-radius: 0;
  }

  .patrimony-card__lead {
    max-width: 100%;
    font-size: 26px;
  }

  .patrimony-card__panel--content {
    padding: 34px 30px;
  }

  .patrimony-card__statement,
  .patrimony-card__support,
  .patrimony-card__closing {
    font-size: 17px;
  }

  .timeline {
    gap: 32px;
  }

  .timeline__item {
    column-gap: 24px;
  }

  .timeline__item p {
    line-height: 1.48;
  }

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

  .outlined-card--center,
  .outlined-card--process {
    padding-left: 38px;
    padding-right: 38px;
  }

  .footer__inner {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 12px;
  }

  .topbar__inner {
    height: auto;
    min-height: unset;
    max-height: none;
    padding: 12px 14px;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
  }

  .brand {
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    height: 26px;
    min-height: 26px;
    max-height: 26px;
  }

  .button--small {
    width: 100%;
  }

  .shell,
  .faq__shell {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 138px 0 22px;
  }

  .hero__title-accent {
    font-size: 46px;
    line-height: 0.93;
  }

  .hero__title-regular {
    font-size: 42px;
    line-height: 0.95;
  }

  .hero__copy {
    margin-top: 30px;
    font-size: 16px;
    max-width: 100%;
  }

  .hero__highlights {
    margin-top: 18px;
    gap: 10px;
  }

  .hero-highlight {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .lead-form {
    padding: 20px 14px 16px;
    border-radius: 24px;
  }

  .lead-form input,
  .custom-select__trigger {
    min-height: 58px;
    padding: 0 18px;
    font-size: 16px;
  }

  .button--block,
  .button--footer {
    min-height: 60px;
    font-size: 16px;
  }

  .diagnosis {
    padding: 72px 0 54px;
  }

  .section-title--light {
    font-size: 24px;
    text-align: center;
  }

  .diag-card {
    grid-template-columns: 42px 1fr;
    padding: 18px;
    gap: 16px;
  }

  .diag-card__icon {
    width: 42px;
    height: 42px;
  }

  .diag-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .diag-card p {
    font-size: 15px;
    line-height: 1.4;
  }

  .diagnosis::before {
    top: 20px;
  }

  .activation {
    padding-top: 60px;
  }

  .activation__inner {
    gap: 36px;
  }

  .activation__title h2,
  .patrimony-card__heading,
  .trust__title {
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -0.05em;
  }

  .activation__title h2 {
    white-space: normal;
  }

  .timeline {
    gap: 28px;
  }

  .timeline::before {
    top: 14px;
    bottom: 14px;
    left: 12px;
  }

  .timeline::after {
    top: 14px;
    bottom: 14px;
    left: 12px;
  }

  .timeline__item {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 20px;
  }

  .timeline__marker {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .timeline__item p {
    font-size: var(--paragraph-size-mobile);
    line-height: 1.5;
  }

  .patrimony-card {
    margin-top: 48px;
  }

  .patrimony-card__heading {
    font-size: 28px;
    line-height: 1.1;
  }

  .patrimony-card__frame {
    margin-top: 22px;
    border-radius: 28px;
  }

  .patrimony-card__media {
    min-height: 300px;
  }

  .patrimony-card__panel--content {
    padding: 24px 20px;
    gap: 16px;
  }

  .patrimony-card__lead {
    font-size: 22px;
    line-height: 1.08;
  }

  .patrimony-card__statement {
    gap: 10px;
    padding: 10px 14px 11px;
    font-size: 15px;
  }

  .patrimony-card__statement-icon,
  .patrimony-card__statement-icon svg {
    width: 18px;
    height: 18px;
  }

  .patrimony-card__support {
    font-size: 16px;
    line-height: 1.46;
  }

  .patrimony-card__closing {
    margin-top: 10px;
    padding-top: 12px;
    font-size: 15px;
  }

  .trust {
    padding: 70px 0 74px;
  }

  .trust__inner {
    gap: 24px;
  }

  .trust__panel {
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .trust__intro {
    margin-bottom: 18px;
    font-size: 15px;
  }

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

  .trust-stat {
    min-height: 0;
    padding: 20px 18px 18px;
    border-radius: 20px;
    gap: 10px;
  }

  .trust-stat strong {
    font-size: 38px;
  }

  .trust-stat span {
    max-width: 100%;
    font-size: 15px;
  }

  .trust__title {
    text-align: left;
    white-space: normal;
  }

  .reasons {
    padding: 78px 0 82px;
  }

  .outlined-card {
    border-radius: 24px;
  }

  .outlined-card h2 {
    position: static;
    transform: none;
    padding: 0;
    margin-bottom: 22px;
    background: transparent;
    white-space: normal;
    text-align: center;
    font-size: 34px;
  }

  .outlined-card--center,
  .outlined-card--process {
    padding: 34px 20px 30px;
  }

  .outlined-card--process {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .process-list {
    gap: 30px;
  }

  .process-item {
    gap: 14px;
  }

  .process-item__body {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .process-item__icon {
    width: 42px;
    height: 42px;
  }

  .process-item__icon svg {
    width: 34px;
    height: 34px;
  }

  .outlined-card--center p,
  .outlined-card--center strong,
  .process-item p {
    font-size: var(--paragraph-size-mobile);
  }

  .pill {
    min-height: 36px;
    padding: 0 14px;
    font-size: 10px;
    white-space: normal;
  }

  .faq {
    padding: 64px 0 68px;
  }

  .closing-cta {
    padding: 0 0 70px;
  }

  .button--closing {
    min-width: 0;
    width: 100%;
    min-height: 76px;
    padding: 0 22px;
    border-radius: 22px;
    font-size: 18px;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-item__content {
    padding: 10px 18px 18px;
  }

  .faq-item__content p {
    max-width: 100%;
    font-size: var(--paragraph-size-mobile);
  }

  .footer {
    padding: 30px 0;
  }

  .footer__inner {
    gap: 16px;
    text-align: center;
  }

  .footer__meta {
    justify-items: center;
  }

  .footer__links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button--primary,
  .js .hero__content,
  .js .lead-form,
  .js .hero-highlight,
  .js .reveal-item {
    animation: none;
    transition: none;
  }

  .js .hero__content,
  .js .lead-form,
  .js .hero-highlight,
  .js .reveal-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
