:root {
  --paper: #ffffff;
  --paper-2: #e6f6ec;
  --cream: #ffffff;
  --ink: #0e0f0c;
  --ink-2: #454745;
  --ink-3: #868685;
  --brand: #00c94a;
  --brand-2: #00e056;
  --brand-3: #14f06a;
  --mint: #e8fff1;
  --lime: #c6ff4d;
  --line: rgba(14, 15, 12, 0.14);
  --line-strong: rgba(14, 15, 12, 0.22);
  --white: #ffffff;
  --dark: #163300;
  --dark-2: #1c3f0a;
  --danger: #b42318;
  --shadow: 0 18px 40px rgba(14, 15, 12, 0.1);
  --shadow-sm: 0 10px 24px rgba(14, 15, 12, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Poppins", system-ui, sans-serif;
  --nav-h: 76px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-cta {
  display: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.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 {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

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

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

.wrap-wide {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 28%, transparent);
}

.btn-primary:hover {
  background: var(--brand-2);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: color-mix(in srgb, var(--brand) 8%, transparent);
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--lime) 35%, transparent);
}

.btn-lime:hover {
  filter: brightness(1.04);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
}

.logo-mark {
  width: 52px;
  height: 46px;
  flex: none;
}

.logo-stroke {
  stroke: #0e0f0c;
}

.footer .logo-stroke {
  stroke: #ffffff;
}

.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}

.logo-facilita {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.logo-capital {
  margin-top: 2px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav-dark .logo-word,
.footer .logo-word {
  color: var(--cream);
}

.nav-dark .logo-capital,
.footer .logo-capital {
  color: rgba(255, 255, 255, 0.55);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  padding: 48px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 11ch;
}

.hero-lead {
  margin-top: 22px;
  max-width: 42ch;
  color: var(--ink-2);
  font-size: 1.08rem;
}

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

.hero-visual {
  position: relative;
}

.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08) translate(-1.5%, 1%);
  }
}

.hero-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  min-width: 220px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: hero-float 4.5s ease-in-out infinite;
}

.hero-float-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-float-amount {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-float-meta {
  margin-top: 8px;
  color: var(--ink-3);
  font-size: 0.82rem;
  font-weight: 600;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: stretch;
  min-height: 280px;
}

.flow-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.flow-card.accent {
  background: var(--brand);
  color: #04210d;
  border-color: transparent;
}

.flow-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.flow-card.accent .flow-kicker {
  color: rgba(4, 33, 13, 0.62);
}

.flow-card h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.flow-card p {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.flow-card.accent p {
  color: rgba(4, 33, 13, 0.78);
}

.flow-amount {
  margin-top: 18px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.flow-card.accent .flow-amount {
  color: var(--lime);
  font-size: 1.55rem;
}

.flow-rail {
  position: relative;
  align-self: center;
  height: 22px;
  color: var(--brand);
  display: grid;
  place-items: center;
}

.flow-rail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  animation: flow-dot 2.2s ease-in-out infinite;
}

@keyframes flow-dot {
  0% {
    left: 0;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.invoice-lines {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.invoice-lines span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--paper-2);
}

.invoice-lines span:nth-child(1) {
  width: 88%;
}

.invoice-lines span:nth-child(2) {
  width: 64%;
}

.invoice-lines span:nth-child(3) {
  width: 74%;
}

section[id] {
  scroll-margin-top: var(--nav-h);
}

.section {
  padding: 88px 0;
}

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

.problem {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.problem-bg {
  position: absolute;
  inset: -22% 0;
  z-index: 0;
  will-change: transform;
}

.problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--dark) 45%, transparent) 0%,
    color-mix(in srgb, var(--dark) 78%, transparent) 100%
  );
}

.problem-content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-inline: auto;
}

.problem h2 span {
  display: block;
  color: var(--brand);
}

.problem p {
  margin: 22px auto 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.benefits h2,
.how h2,
.cases h2,
.calc h2,
.qualify h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-lead {
  margin-top: 12px;
  color: var(--ink-2);
  max-width: 46ch;
  font-size: 1.05rem;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

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



.benefit-card {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  min-height: 220px;
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--brand);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin-top: 14px;
  color: var(--ink-2);
  max-width: 24ch;
}

.tagline {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.tagline p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 22ch;
}

.tagline span {
  color: var(--ink-3);
  font-size: 0.92rem;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  gap: 0;
  margin-top: 48px;
  align-items: start;
}

.step {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 220px;
  box-shadow: var(--shadow-sm);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 10px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step h3 {
  margin-top: 18px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.step p {
  margin-top: 10px;
  color: var(--ink-2);
}

.step-connector {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 24px;
  overflow: hidden;
}

.step-dots-line {
  display: block;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--brand) 0 4px,
    transparent 4px 12px
  );
  background-size: 12px 2px;
  animation: step-dash 1.1s linear infinite;
}

.step-pulse {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--brand);
  animation: step-pulse 1.6s ease-in-out infinite;
}

@keyframes step-dash {
  to {
    background-position: 12px 0;
  }
}

@keyframes step-dash-v {
  to {
    background-position: 0 12px;
  }
}

@keyframes step-pulse {
  0% {
    left: 4px;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 12px);
    opacity: 0;
  }
}

@keyframes step-pulse-v {
  0% {
    top: 2px;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 10px);
    opacity: 0;
  }
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.case-card {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.case-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.case-body {
  padding: 18px 18px 20px;
}

.case-person {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.case-card p {
  margin-top: 8px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.case-card .case-person {
  margin-top: 0;
  color: var(--brand);
  font-size: 0.78rem;
}

.calc {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 10%, var(--paper)) 0%, var(--paper) 100%);
}

.calc-panel {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.calc-inputs,
.calc-result {
  padding: 32px;
}

.calc-result {
  background: var(--dark);
  color: var(--cream);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field-hint {
  color: var(--ink-3);
  font-size: 0.8rem;
  font-weight: 500;
}

.money-input {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
}

.money-input span {
  color: var(--ink-3);
  font-weight: 700;
}

.money-input input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  height: auto;
  padding: 0;
  box-shadow: none;
}

.field > input,
.field > textarea {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

.field > textarea {
  height: auto;
  min-height: 52px;
  padding: 14px;
  resize: none;
}

.field > input:focus,
.field > textarea:focus,
.money-input:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 16%, transparent);
}

.field > input[type="range"] {
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: var(--paper-2);
  box-shadow: none;
  margin: 12px 0 6px;
}

.range {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 99px;
  background: var(--paper-2);
  outline: none;
}

.range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 201, 74, 0.35);
  cursor: pointer;
}

.range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 201, 74, 0.35);
  cursor: pointer;
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.chip {
  min-height: 42px;
  padding: 0 8px;
  border-radius: 99px;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-2);
  white-space: nowrap;
}

.chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--on-brand);
}

.calc-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.calc-today {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.calc-vs {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.calc-rows {
  margin: 28px 0;
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}

.calc-row span:first-child {
  color: rgba(255, 255, 255, 0.62);
}

.calc-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

.qualify-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.qualify-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.check {
  width: 22px;
  height: 22px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.form-card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.form-card .section-lead {
  margin-bottom: 22px;
}

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

.form-error {
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: -12px;
  margin-bottom: 14px;
}

.form-fine {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 0.8rem;
}

.success {
  text-align: center;
  padding: 28px 8px 12px;
}

.success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.success p {
  margin-top: 10px;
  color: var(--ink-2);
}

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 48px 0 28px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  margin-top: 12px;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.mobile-cta {
  display: none;
}

.mobile-cta[hidden] {
  display: none !important;
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .calc-panel,
  .qualify-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .step-connector {
    width: 12px;
    height: 44px;
    margin-inline: auto;
    transform: none;
  }

  .step-dots-line {
    width: 2px;
    height: 100%;
    background-image: repeating-linear-gradient(
      180deg,
      var(--brand) 0 4px,
      transparent 4px 12px
    );
    background-size: 2px 12px;
    animation-name: step-dash-v;
  }

  .step-pulse {
    left: 50%;
    top: 2px;
    margin-top: 0;
    margin-left: -4px;
    animation-name: step-pulse-v;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-rail {
    width: 28px;
    height: 28px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .flow-rail::after {
    left: 50%;
    animation-name: flow-dot-v;
  }

  @keyframes flow-dot-v {
    0% {
      top: 0;
      opacity: 0;
    }
    12% {
      opacity: 1;
    }
    88% {
      opacity: 1;
    }
    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .tagline {
    flex-direction: column;
  }

  .calc-inputs,
  .calc-result,
  .form-card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .wrap,
  .wrap-wide,
  .nav-inner {
    width: min(1200px, calc(100% - 32px));
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    padding: 28px 0 88px;
  }

  .hero-photo {
    aspect-ratio: 4 / 3;
  }

  .hero-photo img {
    object-position: center 72%;
  }

  .hero-float {
    min-width: 168px;
    left: 12px;
    bottom: auto;
    top: 12px;
    padding: 12px 14px;
  }

  .hero-float-amount {
    font-size: 1.35rem;
  }

  .flow-card,
  .step {
    min-height: 0;
  }

  .hero-actions {
    display: grid;
  }

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

  .section {
    padding: 64px 0;
  }

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

  .cases-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .case-photo {
    aspect-ratio: 1 / 1.08;
  }

  .case-body {
    padding: 12px 12px 14px;
  }

  .case-card h3 {
    font-size: 0.98rem;
  }

  #casos {
    padding-bottom: 120px;
  }

  .footer-grid {
    flex-direction: column;
  }

  #califico {
    padding-bottom: 120px;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 30;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    inset: var(--nav-h) 0 0;
    z-index: 35;
    background: var(--paper);
    padding: 24px 20px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 4px;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
  }
}

.lead-dialog {
  width: min(480px, calc(100% - 32px));
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-dialog::backdrop {
  background: rgba(14, 15, 12, 0.55);
}

.lead-dialog-body {
  position: relative;
  padding: 28px;
}

.lead-dialog h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lead-dialog .section-lead {
  margin: 8px 0 18px;
}

.lead-summary {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-2);
}

.lead-close:hover {
  background: var(--paper-2);
}

.logo-mark {
  object-fit: contain;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
