:root {
  --black: #030405;
  --black-soft: #080a0d;
  --graphite: #111419;
  --graphite-2: #181d24;
  --white: #ffffff;
  --white-soft: #f4f7fb;
  --silver: #b9c3cf;
  --silver-2: #778390;
  --line: rgba(255, 255, 255, 0.11);
  --line-dark: rgba(3, 4, 5, 0.12);
  --blue: #8db7ff;
  --cyan: #8ee8ff;
  --success: #8ff0b1;
  --whatsapp: #25d366;
  --danger: #ff9f9f;
  --shell: 1180px;
  --radius: 8px;
  --font: "Aptos Display", "SF Pro Display", "Segoe UI Variable Display", "Helvetica Neue", sans-serif;
  --font-body: "Aptos", "SF Pro Text", "Segoe UI Variable Text", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(141, 183, 255, 0.32);
  color: var(--white);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.75) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.55) 1px, transparent 1px);
  background-size: 3px 3px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 75%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 4, 5, 0.76);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}

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

.brand {
  width: 146px;
  height: 34px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.brand-logo,
.footer-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.footer-brand {
  width: 126px;
  height: 30px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

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

.nav-cta {
  display: none;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.12);
  outline: none;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 16px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button span::before {
  transform: translateY(-6px);
}

.menu-button span::after {
  transform: translateY(5px);
}

.menu-open .menu-button span {
  transform: rotate(45deg);
}

.menu-open .menu-button span::before {
  opacity: 0;
}

.menu-open .menu-button span::after {
  transform: translateY(-1px) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  inset: 78px 16px auto;
  z-index: 95;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 10, 13, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu a {
  padding: 14px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.section-dark,
.section-light,
.section-graphite {
  position: relative;
}

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

.section-light {
  background:
    radial-gradient(circle at 12% 8%, rgba(141, 183, 255, 0.12), transparent 26%),
    radial-gradient(circle at 92% 86%, rgba(3, 4, 5, 0.06), transparent 30%),
    var(--white-soft);
  color: var(--black);
}

.section-graphite {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(141, 183, 255, 0.1), transparent 32%),
    linear-gradient(180deg, var(--graphite), #0a0c10);
  color: var(--white);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mouse-x, 68%) var(--mouse-y, 28%), rgba(141, 183, 255, 0.2), transparent 28%),
    radial-gradient(circle at 74% 44%, rgba(255, 255, 255, 0.075), transparent 24%),
    radial-gradient(circle at 10% 90%, rgba(142, 232, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #030405 0%, #070a0f 54%, #030405 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 42.08% 42.18%, transparent 42.3% 100%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 74px 74px, 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 76%);
  content: "";
}

.hero-light {
  position: absolute;
  width: min(72vw, 920px);
  height: min(72vw, 920px);
  right: -24vw;
  top: -24vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(141, 183, 255, 0.09) 36%, transparent 66%);
  filter: blur(8px);
  animation: lightDrift 14s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 46px;
}

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--silver);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title,
h2 {
  font-family: var(--font);
  letter-spacing: -0.055em;
}

.hero-title {
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 9.6vw, 6.95rem);
  font-weight: 820;
  line-height: 0.96;
  max-width: 940px;
}

.chrome-word,
.chrome-number {
  color: transparent;
  background:
    linear-gradient(115deg, #ffffff 0%, #9ea8b4 23%, #ffffff 46%, #c3ccd7 67%, #f8fbff 100%);
  background-size: 180% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 1px 18px rgba(185, 195, 207, 0.12);
}

.chrome-number {
  background:
    linear-gradient(112deg, #f8fbff 0%, #a9b4c2 18%, #ffffff 34%, #d7dee8 52%, #7f8b9a 70%, #f4f8fd 100%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 10px 34px rgba(185, 195, 207, 0.14));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2.5vw, 1.26rem);
  line-height: 1.52;
}

.emotional-line {
  max-width: 590px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  font-weight: 680;
  line-height: 1.48;
}

.growth-line {
  max-width: 600px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.08rem, 2.55vw, 1.34rem);
  font-weight: 800;
  line-height: 1.35;
}

.tension-line {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  font-weight: 760;
  line-height: 1.45;
}

.tension-line::before {
  width: 20px;
  height: 1px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--danger), var(--silver));
  content: "";
}

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

.micro-proof {
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.45;
}

.live-proof {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid rgba(143, 240, 177, 0.18);
  border-radius: 999px;
  background: rgba(143, 240, 177, 0.055);
  color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 28px rgba(143, 240, 177, 0.06);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.25;
}

.live-proof span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(143, 240, 177, 0.08), 0 0 18px rgba(143, 240, 177, 0.32);
}

.live-proof strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 820;
  transition: opacity 260ms ease, transform 260ms ease;
}

.live-proof.is-changing strong {
  opacity: 0;
  transform: translateY(3px);
}

.core-panel strong span,
.outcome-metric b,
.return-node small {
  display: inline-block;
  transition: opacity 260ms ease, transform 260ms ease;
}

.system-visual.is-changing .core-panel strong span,
.system-visual.is-changing .outcome-metric b,
.system-visual.is-changing .return-node small {
  opacity: 0;
  transform: translateY(3px);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  max-width: 100%;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(.2,.75,.2,1), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
  content: "";
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 54px rgba(255, 255, 255, 0.13), inset 0 -1px 0 rgba(3, 4, 5, 0.14);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.trust-line {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-line::before {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(143, 240, 177, 0.08);
  content: "";
}

.hero-proof,
.mini-trust,
.form-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-proof span,
.mini-trust span,
.form-promises span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 780;
}

.mini-trust {
  margin-top: 24px;
}

.mini-trust span,
.form-promises span {
  border-color: rgba(3, 4, 5, 0.12);
  background: rgba(3, 4, 5, 0.045);
  color: rgba(3, 4, 5, 0.66);
}

.system-visual {
  position: relative;
  min-height: 486px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 10, 14, 0.72);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.system-visual::before {
  position: absolute;
  inset: -34% -18% auto;
  height: 68%;
  background: radial-gradient(circle at 50% 20%, rgba(141, 183, 255, 0.13), transparent 60%);
  content: "";
}

.system-topbar,
.system-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
}

.system-status b {
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.system-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
  content: "";
}

.system-flow {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  margin-top: 22px;
}

.system-flow::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 17px;
  width: 1px;
  background: linear-gradient(rgba(141, 183, 255, 0.58), rgba(143, 240, 177, 0.44));
  content: "";
}

.flow-node {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px 10px 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.52);
  transition: background 360ms ease, border-color 360ms ease, color 360ms ease, transform 360ms ease;
}

.flow-node strong,
.flow-node small {
  grid-column: 2;
}

.flow-node strong {
  font-size: 14px;
  font-weight: 780;
}

.flow-node small {
  margin-top: -6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.node-index {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 860;
}

.flow-node.is-active {
  padding-left: 10px;
  border-color: rgba(141, 183, 255, 0.24);
  background: linear-gradient(90deg, rgba(141, 183, 255, 0.14), rgba(255, 255, 255, 0.035));
  color: var(--white);
  transform: translateX(4px);
}

.flow-node.is-active .node-index {
  border-color: rgba(141, 183, 255, 0.6);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(141, 183, 255, 0.08);
}

.return-node {
  padding-left: 10px;
  border-color: rgba(143, 240, 177, 0.32);
  background: linear-gradient(90deg, rgba(143, 240, 177, 0.14), rgba(255, 255, 255, 0.04));
  color: var(--white);
}

.return-node .node-index {
  border-color: rgba(143, 240, 177, 0.42);
  color: var(--success);
  box-shadow: 0 0 0 5px rgba(143, 240, 177, 0.08);
}

.return-node small {
  color: var(--success);
  font-weight: 800;
}

.system-core {
  position: relative;
  z-index: 2;
  min-height: 210px;
  display: grid;
  place-items: center;
  margin: 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(143, 240, 177, 0.11), transparent 42%),
    radial-gradient(circle at 62% 18%, rgba(141, 183, 255, 0.12), transparent 32%),
    rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.signal-map {
  position: absolute;
  inset: 20px;
  opacity: 0.24;
}

.signal-map span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 22px rgba(141, 183, 255, 0.6);
  animation: pulsePoint 3.8s ease-in-out infinite;
}

.signal-map span:nth-child(1) { left: 9%; top: 28%; animation-delay: 0ms; }
.signal-map span:nth-child(2) { left: 28%; top: 68%; animation-delay: 280ms; }
.signal-map span:nth-child(3) { left: 58%; top: 22%; animation-delay: 560ms; }
.signal-map span:nth-child(4) { left: 78%; top: 62%; animation-delay: 840ms; }
.signal-map span:nth-child(5) { left: 46%; top: 50%; animation-delay: 1120ms; background: var(--success); }

.core-panel {
  position: relative;
  width: min(100%, 286px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(3, 4, 5, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--silver);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.core-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.return-probability {
  display: block;
  margin: -2px 0 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.core-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.55;
}

.outcome-metric {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(143, 240, 177, 0.22);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(143, 240, 177, 0.12), rgba(255, 255, 255, 0.035));
}

.outcome-metric span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.outcome-metric b {
  color: var(--success);
  font-family: var(--font);
  font-size: 2rem;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.system-footer {
  padding-top: 2px;
}

.system-footer strong {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}

.truth,
.problem,
.method,
.example,
.results,
.testimonials,
.how,
.lead-form,
.final-cta {
  padding: 88px 0;
}

.truth {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 183, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #030405 0%, #0b0e13 52%, #030405 100%);
}

.truth-light {
  position: absolute;
  inset: auto 10% -42%;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 232, 255, 0.12), transparent 64%);
  filter: blur(12px);
}

.truth-inner {
  position: relative;
  max-width: 960px;
}

.truth h2 {
  margin-inline: auto;
}

.truth-sub {
  margin: 18px 0 0;
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 810;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.truth-copy {
  max-width: 570px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.inline-cta {
  display: inline-flex;
  margin-top: 28px;
  color: var(--white);
  font-size: 14px;
  font-weight: 820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-1px);
  outline: none;
}

.section-head {
  max-width: 930px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 9vw, 5.9rem);
  font-weight: 810;
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.64;
}

.section-light p {
  color: rgba(3, 4, 5, 0.64);
}

.section-light .section-kicker {
  color: #526070;
}

.problem-list {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.problem {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 159, 159, 0.08), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(141, 183, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #030405, #080a0f 52%, #030405);
}

.problem-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.problem-line span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 860;
}

.problem-line p {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(1.65rem, 5.8vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1;
}

.risk-line {
  max-width: 760px;
  margin: 34px 0 0;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 159, 159, 0.34);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.02rem, 2.6vw, 1.28rem);
  font-weight: 720;
  line-height: 1.5;
}

.section-cta {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding: 22px 0 0;
}

.section-cta p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.method-grid {
  display: grid;
  gap: 48px;
}

.method {
  background:
    radial-gradient(circle at 92% 16%, rgba(141, 183, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f9fc, #eef3f8 52%, #f7f9fc);
}

.method-copy {
  max-width: 720px;
}

.method-copy p:last-child {
  max-width: 610px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.method-stack {
  border-top: 1px solid var(--line-dark);
}

.method-row {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-row::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--black), transparent);
  content: "";
  transition: width 600ms ease;
}

.method-row.is-visible::before {
  width: 100%;
}

.method-row span {
  color: #526070;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.method-row h3 {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  font-weight: 780;
  line-height: 1.04;
}

.method-row p {
  max-width: 560px;
  margin: 0;
}

.example {
  overflow: hidden;
}

.example::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 20%, rgba(141, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  content: "";
}

.example-grid {
  position: relative;
  display: grid;
  gap: 44px;
  align-items: center;
}

.example-copy p:last-child {
  max-width: 510px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.25rem, 3.3vw, 1.7rem);
}

.scenario-board {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(3, 4, 5, 0.62);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.scenario-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.scenario-header span {
  color: var(--silver);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.scenario-header strong {
  font-size: 13px;
}

.scenario-timeline {
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.scenario-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.scenario-step span {
  color: var(--white);
  font-size: 13px;
  font-weight: 860;
}

.scenario-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.scenario-step.is-success {
  border-color: rgba(143, 240, 177, 0.24);
  background: linear-gradient(90deg, rgba(143, 240, 177, 0.13), rgba(255, 255, 255, 0.035));
}

.scenario-step.is-success span {
  color: var(--success);
}

.message-preview {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--black);
}

.message-preview span {
  display: block;
  margin-bottom: 12px;
  color: #526070;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.message-preview p {
  margin: 0;
  color: rgba(3, 4, 5, 0.78);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.56;
}

.results {
  background:
    radial-gradient(circle at 50% 0%, rgba(141, 183, 255, 0.2), transparent 36%),
    radial-gradient(circle at 14% 76%, rgba(143, 240, 177, 0.08), transparent 26%),
    var(--black);
}

.results-focus {
  margin-top: 52px;
  max-width: 920px;
  padding: clamp(26px, 5vw, 46px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.results-focus strong {
  display: block;
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(3.35rem, 9.8vw, 6.65rem);
  font-weight: 830;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.results-focus span {
  display: block;
  max-width: 760px;
  margin-top: 20px;
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(1.34rem, 3.9vw, 2.55rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.results-focus em {
  display: block;
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1.45;
}

.results-focus p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
}

.results-support {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.result-mini {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #07090c;
  transition: transform 220ms ease, background 220ms ease;
}

.result-mini:hover {
  transform: translateY(-3px);
  background: #0b0f15;
}

.result-mini strong {
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1;
}

.result-mini span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  line-height: 1.55;
}

.testimonials {
  overflow: hidden;
}

.testimonials::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(141, 183, 255, 0.14), transparent 30%);
  content: "";
}

.testimonials .shell {
  position: relative;
}

.testimonial-grid {
  display: grid;
  gap: 16px;
  margin-top: 46px;
}

.testimonial {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(141, 183, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.stars {
  color: var(--success);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.testimonial p {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 3vw, 1.22rem);
  line-height: 1.55;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 720;
}

.how-head {
  max-width: 760px;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.step {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.step span {
  color: #526070;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.step h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font);
  font-size: clamp(1.55rem, 5vw, 2.45rem);
  font-weight: 780;
  line-height: 1;
}

.step p {
  max-width: 460px;
  margin: 0;
}

.lead-form {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(141, 183, 255, 0.2), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.8), transparent 24%),
    radial-gradient(circle at 90% 74%, rgba(3, 4, 5, 0.09), transparent 26%),
    var(--white-soft);
}

.form-grid {
  display: grid;
  gap: 42px;
  align-items: start;
}

.form-copy {
  max-width: 680px;
}

.form-copy p:not(.section-kicker) {
  margin-top: 22px;
  font-size: 1.08rem;
}

.underestimate-line {
  max-width: 620px;
  color: rgba(3, 4, 5, 0.72) !important;
  font-size: clamp(1.02rem, 2.6vw, 1.22rem) !important;
  font-weight: 760;
  line-height: 1.45;
}

.form-intro {
  color: rgba(3, 4, 5, 0.9) !important;
  font-family: var(--font);
  font-size: clamp(1.35rem, 3.5vw, 2rem) !important;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.form-promises {
  margin-top: 24px;
}

.conversion-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3.4vw, 28px);
  border: 1px solid rgba(3, 4, 5, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 38px 110px rgba(3, 4, 5, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-progress {
  display: grid;
  gap: 10px;
  padding: 2px 2px 8px;
}

.form-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-progress span {
  color: #526070;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.form-progress strong {
  color: var(--black);
  font-size: 12px;
  font-weight: 860;
}

.progress-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(3, 4, 5, 0.08);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--black), var(--blue));
  transition: width 260ms ease;
}

.form-row {
  display: grid;
  gap: 14px;
}

.field {
  position: relative;
  display: grid;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 66px;
  padding: 25px 16px 9px;
  border: 1px solid rgba(3, 4, 5, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font: 650 15px/1.3 var(--font-body);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms cubic-bezier(.2,.75,.2,1);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field span {
  position: absolute;
  left: 16px;
  top: 21px;
  color: rgba(3, 4, 5, 0.5);
  font-size: 14px;
  font-weight: 720;
  pointer-events: none;
  transition: transform 180ms ease, color 180ms ease, font-size 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(141, 183, 255, 0.8);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(141, 183, 255, 0.16), 0 16px 38px rgba(3, 4, 5, 0.1);
  transform: translateY(-2px) scale(1.008);
}

.field input:focus + span,
.field input:not(:placeholder-shown) + span,
.field textarea:focus + span,
.field textarea:not(:placeholder-shown) + span,
.field select:focus + span,
.field select:valid + span {
  color: #526070;
  font-size: 11px;
  transform: translateY(-12px);
}

.field small {
  display: none;
  margin: 7px 4px 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 680;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(255, 159, 159, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 159, 159, 0.12);
}

.field.is-invalid small {
  display: block;
}

.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
  border-color: rgba(143, 240, 177, 0.78);
}

.form-trigger {
  margin: 2px 0 -2px;
  padding: 12px 14px;
  border: 1px solid rgba(3, 4, 5, 0.09);
  border-radius: 14px;
  background: rgba(3, 4, 5, 0.04);
  color: rgba(3, 4, 5, 0.74) !important;
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.45;
}

.form-imagine {
  margin: -6px 0 -2px;
  color: rgba(3, 4, 5, 0.9) !important;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.38;
  text-align: center;
}

.form-submit {
  width: 100%;
  min-height: 60px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(3, 4, 5, 0.55);
  font-size: 13px;
  text-align: center;
}

.form-note.is-success {
  color: #16783c;
  font-weight: 780;
}

.final-cta {
  overflow: hidden;
  padding: 104px 0;
  text-align: center;
  background:
    linear-gradient(180deg, #030405, #080a0d 62%, #030405);
}

.cta-light {
  position: absolute;
  inset: -22% 8% auto;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.17), rgba(141, 183, 255, 0.1) 35%, transparent 68%);
  filter: blur(10px);
}

.cta-inner {
  position: relative;
  max-width: 930px;
}

.cta-inner h2 {
  margin-inline: auto;
}

.cta-inner p:not(.section-kicker) {
  max-width: 600px;
  margin: 24px auto 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

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

.urgency {
  display: inline-flex;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 760;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(255, 255, 255, 0.55);
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  gap: 16px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 14px;
}

.footer-contact a {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #031107;
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  animation: whatsFloat 4.2s ease-in-out infinite;
  transition: transform 220ms cubic-bezier(.2,.75,.2,1), box-shadow 220ms ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 50%;
  animation: whatsPulse 2.8s ease-out infinite;
  content: "";
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 58px rgba(37, 211, 102, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  outline: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  width: max-content;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(3, 4, 5, 0.9);
  color: var(--white);
  font-size: 12px;
  font-weight: 760;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.mobile-sticky-cta {
  position: fixed;
  left: 10px;
  right: 84px;
  bottom: 10px;
  z-index: 115;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(3, 4, 5, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 14px 38px rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 840;
}

.reveal,
.hero-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.hero-reveal {
  animation: revealUp 860ms cubic-bezier(.2,.75,.2,1) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 120ms; }
.hero-reveal:nth-child(2) { animation-delay: 230ms; }
.hero-reveal:nth-child(3) { animation-delay: 340ms; }
.hero-reveal:nth-child(4) { animation-delay: 450ms; }
.hero-reveal:nth-child(5) { animation-delay: 560ms; }
.hero-reveal:nth-child(6) { animation-delay: 670ms; }
.hero-reveal:nth-child(7) { animation-delay: 780ms; }
.hero-reveal:nth-child(8) { animation-delay: 890ms; }
.hero-reveal:nth-child(9) { animation-delay: 1000ms; }
.hero-reveal:nth-child(10) { animation-delay: 1110ms; }
.hero-reveal:nth-child(11) { animation-delay: 1220ms; }

.system-visual.hero-reveal {
  animation-delay: 430ms;
}

.reveal {
  transition: opacity 820ms cubic-bezier(.2,.75,.2,1), transform 820ms cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes lightDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-8%, 10%, 0) scale(1.12);
  }
}

@keyframes pulsePoint {
  0%, 100% {
    transform: scale(0.82);
    opacity: 0.42;
  }
  45% {
    transform: scale(1.24);
    opacity: 1;
  }
}

@keyframes whatsPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes whatsFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@media (min-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 56px));
  }

  .nav-cta,
  .nav-links {
    display: inline-flex;
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .brand {
    width: 156px;
    height: 36px;
  }

  .hero-actions .button {
    min-width: 190px;
  }

  .results-support,
  .steps,
  .testimonial-grid,
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid var(--line-dark);
  }

  .step:nth-child(2n) {
    border-right: 0;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 132px 0 80px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: 56px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .system-visual {
    min-height: 590px;
  }

  .problem,
  .truth,
  .method,
  .example,
  .results,
  .testimonials,
  .how {
    padding: 124px 0;
  }

  .lead-form {
    padding: 124px 0;
  }

  .method-grid,
  .example-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
  }

  .method-copy {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .method-row {
    grid-template-columns: 128px 1fr;
    column-gap: 28px;
  }

  .method-row p {
    grid-column: 2;
  }

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

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

  .result-mini {
    min-height: 220px;
  }

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

  .form-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 68px;
  }

  .form-copy {
    position: sticky;
    top: 120px;
  }

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

  .step,
  .step:nth-child(2n) {
    min-height: 290px;
    border-right: 1px solid var(--line-dark);
  }

  .step:last-child {
    border-right: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .hero-title {
    font-size: 6.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 1ms !important;
  }

  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }

  .whatsapp-float::before {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }
}
