:root {
  --navy-950: #061422;
  --navy-900: #0b1f33;
  --navy-850: #0f2941;
  --navy-800: #143653;
  --navy-700: #234b68;
  --green-700: #0b7459;
  --green-600: #0e8b68;
  --green-500: #18b77c;
  --green-400: #38ca94;
  --green-100: #dcf6ec;
  --green-50: #effbf7;
  --gold-500: #d4a84e;
  --red-700: #a23a3a;
  --red-100: #fdeaea;
  --amber-700: #8b5a14;
  --amber-100: #fff5d9;
  --ink: #132536;
  --text: #385064;
  --muted: #65798b;
  --line: #dce6ed;
  --line-strong: #c9d8e2;
  --surface: #ffffff;
  --surface-soft: #f4f8fa;
  --shadow-sm: 0 8px 24px rgba(11, 31, 51, .08);
  --shadow-md: 0 18px 50px rgba(11, 31, 51, .12);
  --shadow-lg: 0 30px 80px rgba(6, 20, 34, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1220px;
  --header-height: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

h1 em {
  display: block;
  color: var(--green-600);
  font-style: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

::selection {
  color: #fff;
  background: var(--green-600);
}

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

.section {
  position: relative;
  padding: 104px 0;
}

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

.section--navy {
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  background:
    radial-gradient(circle at 88% 10%, rgba(24, 183, 124, .20), transparent 28%),
    radial-gradient(circle at 6% 98%, rgba(51, 128, 172, .18), transparent 32%),
    var(--navy-900);
}

.section--navy h2,
.section--navy h3,
.section--navy strong {
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  border-radius: 8px;
  background: var(--navy-900);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(24, 183, 124, .42);
  outline-offset: 3px;
}

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

.topbar {
  position: relative;
  z-index: 31;
  color: rgba(255, 255, 255, .9);
  background: var(--navy-950);
  font-size: .77rem;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--green-400);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(201, 216, 226, .8);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 7px 30px rgba(11, 31, 51, .04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--text);
  font-size: .91rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.install-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 9px;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-nav .button {
  margin-top: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  color: #fff;
  border: 1px solid var(--green-600);
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: 0 9px 22px rgba(14, 139, 104, .22);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s ease, filter .2s ease;
}

.button:hover {
  box-shadow: 0 13px 28px rgba(14, 139, 104, .3);
  filter: saturate(1.05) brightness(1.02);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: .86rem;
}

.button--large {
  min-height: 56px;
  padding: 15px 27px;
  font-size: 1rem;
}

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

.button--light {
  color: var(--navy-900);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}

.button--ghost {
  color: var(--navy-900);
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
}

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

.hero {
  min-height: 760px;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 86px;
  background:
    linear-gradient(115deg, rgba(239, 251, 247, .92) 0, rgba(255, 255, 255, .97) 58%, rgba(244, 248, 250, .95) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 59px, rgba(11, 31, 51, .025) 60px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -380px;
  left: -300px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(24, 183, 124, .10);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(24, 183, 124, .025), 0 0 0 160px rgba(24, 183, 124, .02);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 455px);
  align-items: center;
  gap: 54px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 18px 0;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 29px;
  color: var(--text);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.64;
}

.hero__highlights {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 31px;
  padding: 19px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero__highlights > div {
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}

.hero__highlights > div:first-child {
  padding-left: 0;
}

.hero__highlights > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero__highlights strong,
.hero__highlights span {
  display: block;
}

.hero__highlights strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 1.32rem;
  letter-spacing: -.03em;
}

.hero__highlights span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-800);
  font-size: .91rem;
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.microcopy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.55;
}

.hero__visual {
  position: absolute;
  z-index: 0;
  right: 345px;
  bottom: -65px;
  width: 530px;
  pointer-events: none;
  opacity: .82;
  transform: rotate(-1deg);
}

.lead-card {
  position: relative;
  z-index: 3;
  padding: 28px;
  border: 1px solid rgba(201, 216, 226, .84);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--green-500), #48d7b1, var(--green-700));
}

.lead-card__header {
  margin-bottom: 22px;
}

.lead-card__badge {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 9px;
  color: var(--green-700);
  border-radius: 999px;
  background: var(--green-100);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.lead-card h2 {
  margin-bottom: 9px;
  font-size: 1.65rem;
  letter-spacing: -.035em;
}

.lead-card__header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

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

.field {
  min-width: 0;
  margin-bottom: 13px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 740;
}

.field input {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  outline: none;
  font-size: .88rem;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input::placeholder {
  color: #8a9aa7;
}

.field input:hover {
  border-color: #aebfcb;
}

.field input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(24, 183, 124, .11);
}

.field input[aria-invalid="true"] {
  border-color: #cf5a5a;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(207, 90, 90, .08);
}

.money-input {
  position: relative;
}

.money-input > span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 13px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
  transform: translateY(-50%);
}

.money-input input {
  padding-left: 38px;
}

.field-error {
  display: block;
  min-height: 1px;
  margin-top: 4px;
  color: var(--red-700);
  font-size: .68rem;
  font-weight: 650;
  line-height: 1.35;
}

.equity-meter {
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.equity-meter__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.3;
}

.equity-meter__top strong {
  font-size: .78rem;
}

.equity-meter__track {
  position: relative;
  height: 7px;
  overflow: visible;
  border-radius: 999px;
  background: #dfe9ef;
}

.equity-meter__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  transition: width .35s var(--ease), background .25s ease;
}

.equity-meter__track i {
  position: absolute;
  top: -4px;
  left: 60%;
  width: 2px;
  height: 15px;
  border-radius: 2px;
  background: var(--navy-800);
}

.equity-meter p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.4;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  margin: 3px 0 15px;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem;
  line-height: 1.45;
}

.consent-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--green-600);
}

.consent-check a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-explainer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  margin-top: 10px;
  padding: 0;
  border-radius: 9px;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.form-status.is-error {
  color: var(--red-700);
  border-color: #f2c8c8;
  background: var(--red-100);
}

.form-status.is-success {
  color: var(--green-700);
  border-color: #bce8d7;
  background: var(--green-50);
}

.anti-fraud {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  margin: 19px -6px -5px;
  padding: 14px;
  border: 1px solid #cce9dd;
  border-radius: 12px;
  background: var(--green-50);
}

.anti-fraud svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--green-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.anti-fraud strong,
.anti-fraud span {
  display: block;
}

.anti-fraud strong {
  margin-bottom: 1px;
  color: var(--green-700);
  font-size: .74rem;
}

.anti-fraud span {
  color: #4b7264;
  font-size: .67rem;
  line-height: 1.4;
}

.trust-strip {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .72);
  background: var(--navy-900);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  min-width: 0;
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-strip__grid > div:first-child {
  padding-left: 0;
}

.trust-strip__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 2px;
  color: #fff;
  font-size: .94rem;
}

.trust-strip span {
  font-size: .75rem;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}

.split--wide {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.split__content .lead {
  max-width: 600px;
  margin-bottom: 27px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.67;
}

.example-card {
  overflow: hidden;
  margin: 25px 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.example-card__label {
  padding: 10px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.example-card__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 19px 18px 17px;
}

.example-card__values > div {
  padding: 0 13px;
  border-right: 1px solid var(--line);
}

.example-card__values > div:first-child {
  padding-left: 0;
}

.example-card__values > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.example-card span,
.example-card strong {
  display: block;
}

.example-card__values span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .67rem;
  line-height: 1.3;
}

.example-card__values strong {
  font-size: .93rem;
  white-space: nowrap;
}

.example-card__values .negative strong {
  color: var(--red-700);
}

.example-card__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  color: #4d6d62;
  border-top: 1px solid #cce9dd;
  background: var(--green-50);
  font-size: .8rem;
}

.example-card__result strong {
  color: var(--green-700);
  font-size: 1.28rem;
}

.decision-note {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  border-left: 3px solid var(--gold-500);
  font-size: .8rem;
  line-height: 1.58;
}

.selling-flow {
  position: relative;
  padding: 12px 0;
}

.selling-flow::before {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 65px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--green-500), var(--line-strong));
}

.selling-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  margin-bottom: 17px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 9px 28px rgba(11, 31, 51, .055);
}

.selling-flow article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--green-700);
  border: 1px solid #c6eade;
  border-radius: 50%;
  background: var(--green-50);
  font-size: .77rem;
  font-weight: 850;
}

.selling-flow h3 {
  margin-bottom: 6px;
}

.selling-flow p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

.selling-flow .selling-flow__warning {
  border-color: #edd6ab;
  background: #fffdf8;
}

.selling-flow__warning > span {
  color: var(--amber-700) !important;
  border-color: #f0d69d !important;
  background: var(--amber-100) !important;
  font-size: 1.1rem !important;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p:last-child {
  max-width: 730px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.benefit-card:hover {
  border-color: #b9ddcf;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.benefit-card .icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--green-700);
  border-radius: 13px;
  background: var(--green-50);
}

.benefit-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.profile-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  backdrop-filter: blur(8px);
}

.profile-card__head {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.profile-card__head > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy-900);
  border-radius: 15px;
  background: var(--green-400);
  font-weight: 860;
}

.profile-card__head h3 {
  margin-bottom: 3px;
  font-size: 1.5rem;
}

.profile-card__head p {
  margin: 0;
  color: rgba(255, 255, 255, .63);
  font-size: .82rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 29px;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .9rem;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 9px;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--green-400);
  border: 1px solid rgba(56, 202, 148, .4);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

.responsible-credit {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 14px;
  max-width: 960px;
  margin: 29px auto 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 203, 112, .25);
  border-radius: 13px;
  background: rgba(157, 105, 25, .12);
  font-size: .83rem;
}

.responsible-credit svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: #e8bf70;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 210px;
  padding: 29px 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-list li::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-50);
}

.process-list li > span {
  display: inline-grid;
  width: 39px;
  height: 39px;
  margin-bottom: 21px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--navy-900);
  font-size: .75rem;
  font-weight: 800;
}

.process-list h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.process-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
}

.transparency-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.transparency-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: 1rem;
}

.costs-card {
  padding: 31px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.costs-card h3 {
  margin-bottom: 19px;
  font-size: 1.42rem;
}

.costs-card ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.costs-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .84rem;
}

.costs-card li span {
  color: var(--text);
}

.costs-card li strong {
  font-size: .78rem;
  text-align: right;
}

.costs-card > p {
  margin: 0;
  padding: 13px 15px;
  color: var(--amber-700);
  border-radius: 10px;
  background: var(--amber-100);
  font-size: .74rem;
  line-height: 1.5;
}

.about-card {
  display: grid;
  grid-template-columns: 105px 1fr 240px;
  align-items: center;
  gap: 38px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0, rgba(24, 183, 124, .10), transparent 30%),
    #fff;
  box-shadow: var(--shadow-md);
}

.about-card__mark img {
  filter: drop-shadow(0 14px 20px rgba(14, 139, 104, .2));
}

.about-card__copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
}

.about-card__copy p:not(.eyebrow) {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: .89rem;
}

.about-card__facts {
  border-left: 1px solid var(--line);
  padding-left: 31px;
}

.about-card__facts > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.about-card__facts > div:last-child {
  border-bottom: 0;
}

.about-card__facts span,
.about-card__facts strong {
  display: block;
}

.about-card__facts span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.about-card__facts strong {
  font-size: .84rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 75px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-intro p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 50px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 740;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-600);
  transition: transform .2s ease;
}

.faq-list summary span {
  top: 31px;
  right: 8px;
}

.faq-list summary span::after {
  content: "";
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--green-700);
}

.faq-list details > div {
  overflow: hidden;
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.68;
}

.final-cta {
  overflow: hidden;
  color: rgba(255, 255, 255, .8);
  background:
    radial-gradient(circle at 90% 20%, rgba(56, 202, 148, .28), transparent 31%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
}

.final-cta h2 {
  max-width: 850px;
  color: #fff;
}

.final-cta p:last-child {
  max-width: 700px;
  margin-bottom: 0;
}

.site-footer {
  color: rgba(255, 255, 255, .66);
  background: var(--navy-950);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .65fr .7fr 1fr;
  gap: 52px;
  padding-top: 68px;
  padding-bottom: 48px;
}

.footer__brand img {
  width: 230px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer__brand > p {
  max-width: 365px;
  font-size: .82rem;
}

.footer__safety {
  max-width: 390px;
  margin-top: 19px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(56, 202, 148, .25);
  border-radius: 10px;
  background: rgba(24, 183, 124, .07);
  font-size: .72rem;
  line-height: 1.5;
}

.footer__safety strong {
  color: var(--green-400);
}

.footer__grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: .83rem;
  letter-spacing: .02em;
}

.footer__grid > div:not(.footer__brand) a,
.footer-link {
  display: block;
  margin: 10px 0;
  padding: 0;
  color: rgba(255, 255, 255, .66);
  border: 0;
  background: none;
  cursor: pointer;
  font-size: .79rem;
  text-align: left;
}

.footer__grid a:hover,
.footer-link:hover {
  color: #fff !important;
}

.footer__grid > div:last-child p {
  margin-bottom: 16px;
  font-size: .75rem;
  line-height: 1.65;
}

.footer__grid > div:last-child strong {
  color: #fff;
}

.footer__disclosures {
  padding: 24px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__disclosures p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .47);
  font-size: .66rem;
  line-height: 1.6;
}

.footer__disclosures strong {
  color: rgba(255, 255, 255, .7);
}

.footer__bottom {
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: rgba(0, 0, 0, .12);
}

.footer__bottom .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .67rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 24;
  right: 20px;
  bottom: 22px;
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: linear-gradient(135deg, #22c982, #0e8b68);
  box-shadow: 0 14px 35px rgba(14, 139, 104, .35);
  font-size: .78rem;
  font-weight: 780;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.96);
  transition: opacity .2s ease, visibility .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp.is-visible:hover {
  box-shadow: 0 17px 42px rgba(14, 139, 104, .43);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(calc(100% - 40px), 1050px);
  margin: auto;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 80px rgba(6, 20, 34, .25);
  backdrop-filter: blur(14px);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.cookie-banner__copy a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 34, .68);
  backdrop-filter: blur(5px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
  max-height: min(720px, calc(100vh - 40px));
  padding: 31px;
  overflow-y: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal__panel h2 {
  padding-right: 30px;
  font-size: 1.75rem;
}

.modal__panel > p {
  color: var(--muted);
  font-size: .86rem;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 17px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.consent-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.consent-option strong,
.consent-option span {
  display: block;
}

.consent-option strong {
  margin-bottom: 2px;
  font-size: .88rem;
}

.consent-option span {
  color: var(--muted);
  font-size: .73rem;
}

.consent-option input {
  position: relative;
  width: 46px;
  height: 25px;
  border-radius: 999px;
  background: #cbd8e0;
  cursor: pointer;
  appearance: none;
  transition: background .2s ease;
}

.consent-option input::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  transition: transform .2s ease;
}

.consent-option input:checked {
  background: var(--green-600);
}

.consent-option input:checked::before {
  transform: translateX(21px);
}

.always-on {
  padding: 4px 8px;
  color: var(--green-700) !important;
  border-radius: 999px;
  background: var(--green-100);
  font-size: .66rem !important;
  font-weight: 750;
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  color: #fff;
  background: var(--navy-900);
  text-align: center;
  font-size: .8rem;
}

.noscript a {
  color: var(--green-400);
  text-decoration: underline;
}

/* Legal and system pages */
.legal-hero {
  padding: 74px 0 54px;
  background: linear-gradient(135deg, var(--green-50), #fff 58%, var(--surface-soft));
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  justify-content: center;
  gap: 65px;
  padding-top: 70px;
  padding-bottom: 90px;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.legal-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: .82rem;
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: .75rem;
}

.legal-toc a:hover {
  color: var(--green-700);
}

.legal-content section {
  margin-bottom: 42px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.legal-content h2 {
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 1.65rem;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: .92rem;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-callout {
  margin: 25px 0;
  padding: 17px 20px;
  border-left: 4px solid var(--green-500);
  border-radius: 0 10px 10px 0;
  background: var(--green-50);
}

.legal-callout--warning {
  border-left-color: var(--gold-500);
  background: var(--amber-100);
}

.system-page {
  min-height: calc(100vh - 200px);
  display: grid;
  padding: 70px 20px;
  place-items: center;
  text-align: center;
}

.system-card {
  max-width: 650px;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.system-card img {
  width: 90px;
  margin: 0 auto 24px;
}

.system-card h1 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.system-card p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

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

  .hero__visual {
    right: 315px;
    width: 460px;
    opacity: .52;
  }

  .trust-strip__grid > div {
    padding-inline: 16px;
  }

  .about-card {
    grid-template-columns: 90px 1fr;
  }

  .about-card__facts {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-card__facts > div {
    padding: 0 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .about-card__facts > div:first-child {
    padding-left: 0;
  }

  .about-card__facts > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .header__actions > .button,
  .install-button {
    display: none !important;
  }

  .menu-button {
    display: block;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero__content {
    max-width: 800px;
  }

  .hero__visual {
    top: 75px;
    right: -105px;
    bottom: auto;
    width: 520px;
    opacity: .18;
  }

  .lead-card {
    width: min(100%, 720px);
  }

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

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:last-child {
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

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

  .trust-strip__grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .split,
  .split--wide,
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .benefits-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    position: static;
  }

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

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .final-cta__inner .button {
    justify-self: start;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-toc {
    position: static;
  }
}

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

  .section {
    padding: 67px 0;
  }

  .topbar__inner {
    min-height: 34px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar__inner::-webkit-scrollbar {
    display: none;
  }

  .topbar span {
    font-size: .68rem;
  }

  .topbar__optional {
    display: none !important;
  }

  .brand img {
    width: 166px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 55px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  h1 em {
    display: inline;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
    padding: 11px 0;
  }

  .hero__highlights > div,
  .hero__highlights > div:first-child,
  .hero__highlights > div:last-child {
    display: grid;
    grid-template-columns: 125px 1fr;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__highlights > div:last-child {
    border-bottom: 0;
  }

  .hero__highlights strong {
    margin: 0;
    font-size: 1.1rem;
  }

  .hero__cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__cta-row .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .lead-card {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .lead-card h2 {
    font-size: 1.48rem;
  }

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

  .field input {
    height: 50px;
    font-size: 16px;
  }

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

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:last-child,
  .trust-strip__grid > div:nth-child(2n),
  .trust-strip__grid > div:nth-last-child(-n+2) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .example-card__values {
    grid-template-columns: 1fr;
  }

  .example-card__values > div,
  .example-card__values > div:first-child,
  .example-card__values > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .example-card__values > div:last-child {
    border-bottom: 0;
  }

  .example-card__values span {
    margin: 0;
  }

  .example-card__result {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .selling-flow article {
    grid-template-columns: 43px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .selling-flow article > span {
    width: 43px;
    height: 43px;
  }

  .selling-flow::before {
    left: 37px;
  }

  .benefits-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .profile-card,
  .costs-card {
    padding: 24px 20px;
  }

  .process-list li {
    min-height: auto;
  }

  .profile-card__head {
    grid-template-columns: 50px 1fr;
  }

  .profile-card__head > span {
    width: 50px;
    height: 50px;
  }

  .costs-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .costs-card li strong {
    text-align: left;
  }

  .about-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 21px;
  }

  .about-card__mark img {
    width: 74px;
  }

  .about-card__facts {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .about-card__facts > div,
  .about-card__facts > div:first-child,
  .about-card__facts > div:last-child {
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-card__facts > div:last-child {
    border-bottom: 0;
  }

  .faq-list summary {
    padding-right: 40px;
    font-size: .93rem;
  }

  .final-cta__inner .button {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-top: 52px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer__bottom .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 12px 0;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__actions .button:last-child {
    grid-column: 1 / -1;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal__panel {
    width: 100%;
    max-height: 88vh;
    padding: 26px 18px;
    border-radius: 21px 21px 0 0;
  }

  .modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 55px 0 40px;
  }

  .legal-layout {
    padding-top: 45px;
  }

  .system-card {
    padding: 34px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .floating-whatsapp,
  .cookie-banner,
  .modal,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .legal-layout {
    padding: 20px 0;
  }
}

.offer-disclosure {
  background: linear-gradient(180deg, #fff, var(--green-50));
}

.offer-disclosure__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.offer-disclosure__grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.offer-disclosure__grid span,
.offer-disclosure__grid strong {
  display: block;
}

.offer-disclosure__grid span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.offer-disclosure__grid strong {
  font-size: 1.28rem;
}

.representative-example {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  padding: 31px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.representative-example h3 {
  font-size: 1.5rem;
}

.representative-example > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
}

.representative-example dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin: 0;
}

.representative-example dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.representative-example dl > div.wide {
  grid-column: 1 / -1;
}

.representative-example dt {
  color: var(--muted);
  font-size: .74rem;
}

.representative-example dd {
  margin: 0;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 760;
  text-align: right;
}

.offer-disclosure__note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

@media (max-width: 960px) {
  .offer-disclosure__grid {
    grid-template-columns: 1fr 1fr;
  }
  .representative-example {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .offer-disclosure__grid {
    grid-template-columns: 1fr;
  }
  .representative-example {
    padding: 23px 18px;
  }
  .representative-example dl {
    grid-template-columns: 1fr;
  }
  .representative-example dl > div.wide {
    grid-column: auto;
  }
}

/* Resumo financeiro imediatamente visível quando uma campanha oficial é publicada. */
.form-offer-summary {
  margin: -6px 0 18px;
  padding: 13px 14px;
  border: 1px solid #c9dfd6;
  border-radius: 11px;
  background: #f2faf7;
  color: var(--ink);
}

.form-offer-summary__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.form-offer-summary__head strong {
  color: var(--green-700);
  font-size: .74rem;
}

.form-offer-summary__head span {
  color: var(--muted);
  font-size: .66rem;
  text-align: right;
}

.form-offer-summary dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 8px;
}

.form-offer-summary dl > div {
  padding: 7px 8px;
  border: 1px solid rgba(11, 116, 89, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.form-offer-summary dt,
.form-offer-summary dd {
  margin: 0;
}

.form-offer-summary dt {
  color: var(--muted);
  font-size: .62rem;
}

.form-offer-summary dd {
  margin-top: 2px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
}

.form-offer-summary p,
.form-offer-summary small {
  display: block;
  margin: 0;
  color: #45665b;
  font-size: .63rem;
  line-height: 1.42;
}

.form-offer-summary small {
  margin-top: 4px;
}

.form-offer-summary a {
  display: inline-block;
  margin-top: 7px;
  color: var(--green-700);
  font-size: .64rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 520px) {
  .form-offer-summary__head {
    display: block;
  }

  .form-offer-summary__head span {
    display: block;
    margin-top: 2px;
    text-align: left;
  }
}
