:root {
  --navy-950: #041426;
  --navy-900: #071b33;
  --navy-800: #0b294a;
  --navy-700: #123d6d;
  --blue: #1f75c9;
  --orange: #ff7a00;
  --orange-2: #ff9b21;
  --cream: #f5f1e9;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #0a1a2a;
  --muted: #65707c;
  --line: rgba(7, 27, 51, .13);
  --shadow: 0 24px 70px rgba(4, 20, 38, .14);
  --radius: 28px;
  --container: 1220px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

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

button,
input {
  font: inherit;
}

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

::selection {
  color: var(--navy-950);
  background: var(--orange-2);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-160%);
  transition: transform .2s;
}

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

.topbar {
  position: relative;
  z-index: 80;
  color: var(--white);
  background: var(--navy-950);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .76);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 122, 0, .7);
  animation: ping 2s infinite;
}

.topbar__benefits {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .72);
}

.topbar__benefits span + span {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.header {
  position: sticky;
  z-index: 70;
  top: 0;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(4, 20, 38, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .35s, background .35s;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(4, 20, 38, .08);
}

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

.brand {
  min-width: 185px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.brand__sun {
  position: absolute;
  inset: 5px;
  border-radius: 50% 50% 42% 58%;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  box-shadow: 0 0 0 5px rgba(255, 122, 0, .1);
  transform: rotate(-12deg);
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 2px;
  background: var(--orange);
  transform: rotate(45deg);
  opacity: .35;
}

.brand__mark::after {
  transform: rotate(-45deg);
}

.brand__bolt {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand__text strong {
  color: var(--navy-900);
  font-size: 25px;
  font-weight: 950;
  letter-spacing: .03em;
}

.brand__text small {
  margin-top: 7px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .31em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-left: auto;
}

.nav a {
  position: relative;
  color: #26384a;
  font-size: 13px;
  font-weight: 720;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.button {
  position: relative;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  cursor: pointer;
  font-weight: 850;
  font-size: 14px;
  letter-spacing: -.01em;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, .33) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
}

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

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

.button--small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 13px;
}

.button--orange {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 28px rgba(255, 122, 0, .25);
}

.button--orange:hover {
  box-shadow: 0 18px 34px rgba(255, 122, 0, .36);
}

.button--navy {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 16px 34px rgba(7, 27, 51, .18);
}

.button--white {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 15px 34px rgba(4, 20, 38, .16);
}

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

.button--pulse {
  animation: softPulse 3.2s infinite;
}

.button__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: 760px;
  height: calc(100vh - 110px);
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__image {
  position: absolute;
  inset: -4%;
  background: url("../images/hero-furia-solar.webp") center/cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 26, .97) 0%, rgba(2, 13, 26, .87) 36%, rgba(2, 13, 26, .28) 66%, rgba(2, 13, 26, .14) 100%),
    linear-gradient(0deg, rgba(2, 13, 26, .65), transparent 40%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.sun-orbit {
  position: absolute;
  border: 1px solid rgba(255, 143, 31, .25);
  border-radius: 50%;
  pointer-events: none;
}

.sun-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px var(--orange);
}

.sun-orbit--one {
  top: 17%;
  right: 12%;
  width: 360px;
  height: 360px;
  animation: orbitSpin 18s linear infinite;
}

.sun-orbit--two {
  top: 9%;
  right: 5%;
  width: 520px;
  height: 520px;
  opacity: .55;
  animation: orbitSpin 28s linear infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 80px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.hero__copy {
  max-width: 770px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, .78);
}

.eyebrow__line {
  width: 34px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 122, 0, .5);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 920;
  letter-spacing: -.067em;
  line-height: .92;
}

.word-highlight {
  position: relative;
  display: inline-block;
  color: var(--orange-2);
  text-shadow: 0 0 34px rgba(255, 122, 0, .2);
}

.word-highlight::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='400' height='10' viewBox='0 0 400 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7C90 1 252 2 398 5' stroke='%23ff7a00' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.hero__copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform .25s;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link--dark {
  color: var(--navy-900);
}

.hero__trust {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.hero__trust > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust > div > span {
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-2);
  font-size: 12px;
}

.hero__trust p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hero__trust strong {
  font-size: 12px;
  line-height: 1.2;
}

.hero__trust small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .06));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(20px);
}

.hero-card__glow {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 122, 0, .55);
  filter: blur(55px);
}

.hero-card__tag {
  position: relative;
  color: var(--orange-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-card__label {
  margin: 18px 0 3px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

.hero-card__number {
  margin: 0;
  display: flex;
  align-items: flex-start;
  line-height: .9;
}

.hero-card__number strong {
  font-size: 82px;
  font-weight: 950;
  letter-spacing: -.08em;
}

.hero-card__number span {
  margin: 7px 0 0 5px;
  color: var(--orange-2);
  font-size: 28px;
  font-weight: 900;
}

.hero-card__caption {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 780;
}

.hero-card__divider {
  height: 1px;
  margin: 24px 0 20px;
  background: rgba(255, 255, 255, .18);
}

.hero-card__bank {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.6;
}

.hero-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.hero-card a span {
  color: var(--orange-2);
  font-size: 18px;
}

.hero__bottom {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  background: rgba(3, 16, 31, .4);
  backdrop-filter: blur(8px);
}

.hero__bottom-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.hero__bottom p strong {
  color: var(--white);
}

.scroll-cue {
  position: relative;
  width: 23px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: scrollCue 1.8s infinite;
}

.ticker {
  padding: 16px 0;
  overflow: hidden;
  color: var(--navy-950);
  background: var(--orange);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .13em;
}

.ticker i {
  font-style: normal;
  color: rgba(7, 27, 51, .4);
}

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

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

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading {
  max-width: 830px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: center;
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(39px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-heading h2 span,
.calculator__copy h2 span,
.faq__intro h2 span {
  color: var(--orange);
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading--light > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, .62);
}

.choice-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.choice-card {
  position: relative;
  min-height: 430px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
}

.choice-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 330px;
  height: 330px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .08;
}

.choice-card--dark {
  color: var(--white);
  background: linear-gradient(145deg, #0b294a, var(--navy-950));
}

.choice-card--orange {
  color: var(--navy-950);
  background: linear-gradient(145deg, #ff9d25, var(--orange));
}

.choice-card__index {
  position: absolute;
  top: 28px;
  right: 32px;
  color: currentColor;
  opacity: .25;
  font-size: 15px;
  font-weight: 900;
}

.choice-card__kicker {
  margin: 0 0 24px;
  color: currentColor;
  opacity: .6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.choice-card h3 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(31px, 3.2vw, 47px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.06;
}

.choice-card ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.choice-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  opacity: .75;
  font-size: 13px;
  font-weight: 650;
}

.choice-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.choice-card__line {
  position: absolute;
  right: 45px;
  bottom: 36px;
  left: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.choice-card__line span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.choice-card__line strong {
  font-size: 86px;
  line-height: .7;
  letter-spacing: -.15em;
}

.choice-card__line--up strong {
  color: #ff7b7b;
}

.services {
  overflow: hidden;
}

.services > .container {
  position: relative;
  z-index: 2;
}

.services__flare {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 122, 0, .18);
  filter: blur(130px);
}

.lottie-art {
  pointer-events: none;
  user-select: none;
}

.services__animation {
  position: absolute;
  z-index: 1;
  top: 48px;
  right: max(2vw, 24px);
  width: clamp(180px, 23vw, 340px);
  aspect-ratio: 1;
  opacity: .2;
  filter: saturate(.85);
}

.service-grid {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .045);
  transform-style: preserve-3d;
  transition: border-color .3s, background .3s, transform .3s;
}

.service-card:hover {
  border-color: rgba(255, 122, 0, .55);
  background: rgba(255, 255, 255, .08);
}

.service-card--featured {
  color: var(--navy-950);
  background: var(--orange);
  border-color: var(--orange);
}

.service-card--featured:hover {
  color: var(--navy-950);
  background: var(--orange-2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, .55);
}

.service-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: currentColor;
  opacity: .35;
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  min-height: 58px;
  margin: 72px 0 14px;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  line-height: 1.7;
}

.service-card--featured p {
  color: rgba(4, 20, 38, .68);
}

.service-card a {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 800;
}

.service-card--featured a {
  border-color: rgba(4, 20, 38, .15);
}

.service-card a span {
  color: var(--orange);
  font-size: 20px;
}

.service-card--featured a span {
  color: var(--navy-950);
}

.calculator {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 0, .1), transparent 24%),
    var(--cream);
}

.calculator__animation {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: clamp(240px, 34vw, 520px);
  aspect-ratio: 1;
  opacity: .09;
  mix-blend-mode: multiply;
}

.calculator > .container {
  position: relative;
  z-index: 2;
}

.calculator__layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.calculator__copy h2,
.faq__intro h2 {
  margin: 18px 0 22px;
  font-size: clamp(43px, 4.7vw, 65px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}

.calculator__copy > p,
.faq__intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.calculator__note {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.calculator__note > span {
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.calculator__note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.65;
}

.calculator__panel {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(7, 27, 51, .08);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 36px 90px rgba(7, 27, 51, .13);
}

.calculator__panel::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 45px;
  left: 45px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.calculator__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.calculator__top label {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 780;
}

.calculator__top output {
  color: var(--orange);
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -.05em;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  margin: 38px 0 8px;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--orange) 0 var(--range-progress, 6.12%), #e7e9ec var(--range-progress, 6.12%) 100%);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  border: 5px solid var(--white);
  border-radius: 50%;
  appearance: none;
  background: var(--orange);
  box-shadow: 0 3px 12px rgba(7, 27, 51, .25);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 3px 12px rgba(7, 27, 51, .25);
  cursor: grab;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  color: #8b949e;
  font-size: 10px;
}

.result-grid {
  margin: 34px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
}

.result-card--orange {
  color: var(--white);
  border-color: var(--orange);
  background: linear-gradient(145deg, var(--orange), #f06700);
}

.result-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.result-card--orange span,
.result-card--orange small {
  color: rgba(255, 255, 255, .7);
}

.result-card strong {
  margin: 10px 0 3px;
  color: var(--navy-900);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 950;
  letter-spacing: -.055em;
}

.result-card--orange strong {
  color: var(--white);
}

.result-card small {
  color: #8b949e;
  font-size: 9px;
}

.calculator__fineprint {
  margin: 13px 0 0;
  color: #9299a0;
  text-align: center;
  font-size: 9px;
}

.process {
  background: var(--white);
}

.process__layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.process__visual {
  position: sticky;
  top: 120px;
  min-height: 680px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.process__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 20, 38, .76), transparent 55%);
}

.process__visual img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.process__badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  width: 150px;
  height: 150px;
  padding: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy-950);
  background: var(--orange);
  transform: rotate(7deg);
}

.process__badge strong {
  font-size: 48px;
  font-weight: 950;
  line-height: 1;
}

.process__badge span {
  font-size: 9px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.process__caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.timeline {
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  position: relative;
  padding: 0 0 42px 82px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 29px;
  width: 1px;
  background: var(--line);
}

.timeline__item:last-child::before {
  height: 34px;
}

.timeline__number {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 59px;
  height: 59px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  transition: color .3s, background .3s, border-color .3s;
}

.timeline__item:hover .timeline__number {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.timeline h3 {
  margin: 4px 0 10px;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.035em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.applications {
  background: var(--cream);
}

.application-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.application-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 16px 44px rgba(7, 27, 51, .12);
}

.application-card--wide {
  grid-row: span 2;
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.application-card:hover img {
  transform: scale(1.07);
}

.application-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 15, 28, .9), rgba(3, 15, 28, .04) 70%);
}

.application-card__content {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.application-card__content > span {
  color: var(--orange-2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
}

.application-card h3 {
  max-width: 540px;
  margin: 10px 0 16px;
  font-size: clamp(24px, 3vw, 39px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.application-card:not(.application-card--wide) h3 {
  min-height: 56px;
  font-size: 26px;
}

.application-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
}

.application-card a b {
  color: var(--orange-2);
  font-size: 17px;
}

.finance {
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
}

.finance__texture {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    radial-gradient(circle at 1px 1px, var(--navy-950) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.finance__animation {
  position: absolute;
  z-index: 1;
  bottom: -110px;
  left: -85px;
  width: clamp(240px, 29vw, 430px);
  aspect-ratio: 1;
  opacity: .22;
}

.finance::after {
  content: "";
  position: absolute;
  top: -260px;
  right: -200px;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .04), 0 0 0 160px rgba(255, 255, 255, .03);
}

.finance__layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.finance .eyebrow--light {
  color: rgba(4, 20, 38, .7);
}

.finance .eyebrow__line {
  background: var(--navy-950);
  box-shadow: none;
}

.finance__copy h2 {
  margin: 20px 0 22px;
  color: var(--navy-950);
  font-size: clamp(42px, 4.8vw, 65px);
  font-weight: 930;
  letter-spacing: -.06em;
  line-height: .98;
}

.finance__copy h2 span {
  color: var(--white);
}

.finance__copy > p {
  max-width: 580px;
  margin: 0 0 32px;
  color: rgba(4, 20, 38, .68);
  font-size: 15px;
  line-height: 1.8;
}

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

.finance-card {
  min-height: 350px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  color: var(--navy-950);
  background: rgba(255, 255, 255, .24);
  backdrop-filter: blur(14px);
}

.finance-card--dark {
  color: var(--white);
  border-color: rgba(4, 20, 38, .8);
  background: var(--navy-950);
}

.finance-card__icon {
  width: 54px;
  height: 54px;
  border: 1px solid currentColor;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.finance-card p {
  margin: auto 0 10px;
  color: currentColor;
  opacity: .65;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.finance-card h3 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.finance-card h3 strong {
  display: block;
  margin-top: 5px;
  font-size: 45px;
  font-weight: 950;
}

.finance-card small {
  padding-top: 18px;
  border-top: 1px solid currentColor;
  color: currentColor;
  opacity: .48;
  font-size: 9px;
  line-height: 1.5;
}

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

.faq__layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 130px;
}

.faq__intro .text-link {
  margin-top: 28px;
}

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

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

.accordion__item button {
  width: 100%;
  padding: 26px 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-900);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion__item button span {
  font-size: 17px;
  font-weight: 820;
  letter-spacing: -.02em;
}

.accordion__item button i {
  position: relative;
  width: 32px;
  height: 32px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .3s, transform .3s;
}

.accordion__item button i::before,
.accordion__item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--navy-900);
  transform: translate(-50%, -50%);
}

.accordion__item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s;
}

.accordion__item button[aria-expanded="true"] i {
  background: var(--orange);
  transform: rotate(180deg);
}

.accordion__item button[aria-expanded="true"] i::before,
.accordion__item button[aria-expanded="true"] i::after {
  background: var(--white);
}

.accordion__item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__panel {
  padding: 0 55px 25px 0;
}

.accordion__panel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 27, 51, .98), rgba(7, 27, 51, .84)),
    url("../images/hero-furia-solar.webp") center/cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
  background-size: 60px 60px;
}

.final-cta__glow {
  position: absolute;
  top: -130px;
  left: 30%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 122, 0, .26);
  filter: blur(100px);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.final-cta h2 {
  margin: 20px 0 0;
  font-size: clamp(46px, 5.4vw, 74px);
  font-weight: 930;
  letter-spacing: -.065em;
  line-height: .94;
}

.final-cta h2 span {
  color: var(--orange-2);
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  transition: border-color .25s, box-shadow .25s;
}

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

.lead-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, .15);
}

.lead-form small {
  color: rgba(255, 255, 255, .4);
  text-align: center;
  font-size: 9px;
}

.footer {
  color: var(--white);
  background: #020c17;
}

.footer__top {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 55px;
  align-items: center;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.footer__top > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.footer__phone {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer__phone span {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.footer__phone strong {
  margin-top: 5px;
  font-size: 20px;
}

.footer__bottom {
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #22c55e;
  box-shadow: 0 14px 35px rgba(34, 197, 94, .35);
  transition: transform .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
}

.whatsapp-float__rings {
  position: absolute;
  inset: -1px;
  border: 1px solid #22c55e;
  border-radius: 50%;
  animation: whatsappRing 2s infinite;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal--delay {
  transition-delay: .12s;
}

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

.tilt-card {
  will-change: transform;
}

@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(255, 122, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

@keyframes softPulse {
  0%, 70%, 100% { box-shadow: 0 14px 28px rgba(255, 122, 0, .25); }
  80% { box-shadow: 0 14px 28px rgba(255, 122, 0, .25), 0 0 0 10px rgba(255, 122, 0, .08); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes whatsappRing {
  0% { opacity: .7; transform: scale(1); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .header__inner > .button {
    margin-left: auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-toggle span {
    width: 17px;
    height: 2px;
    background: var(--navy-900);
    transition: transform .3s;
  }

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

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

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 22px 24px 28px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 4px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 50px rgba(4, 20, 38, .12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s, visibility .3s;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-weight: 780;
  }

  .mobile-menu .button {
    margin-top: 12px;
  }

  .hero__content {
    grid-template-columns: 1fr 245px;
    gap: 36px;
  }

  .hero-card {
    padding: 22px;
  }

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

  .service-card {
    min-height: 360px;
  }

  .process__layout,
  .calculator__layout,
  .faq__layout {
    gap: 55px;
  }

  .process__visual,
  .process__visual img {
    min-height: 610px;
    height: 610px;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 90px 0;
  }

  .topbar__benefits span:last-child,
  .header__inner > .button {
    display: none;
  }

  .topbar__benefits span + span {
    padding-left: 0;
    border: 0;
  }

  .hero {
    min-height: 780px;
    height: auto;
  }

  .hero__image {
    background-position: 66% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(2, 13, 26, .96), rgba(2, 13, 26, .54)),
      linear-gradient(0deg, rgba(2, 13, 26, .8), transparent);
  }

  .hero__content {
    padding-block: 90px 120px;
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 380px;
  }

  .section-heading--split,
  .calculator__layout,
  .process__layout,
  .finance__layout,
  .faq__layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 28px;
  }

  .services__animation {
    top: 90px;
    right: -70px;
    width: 260px;
    opacity: .12;
  }

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

  .process__visual {
    position: relative;
    top: auto;
    min-height: 520px;
  }

  .process__visual img {
    height: 520px;
    min-height: 520px;
  }

  .application-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .application-card--wide {
    grid-row: auto;
  }

  .faq__intro {
    position: static;
  }

  .finance__cards {
    max-width: 630px;
  }

  .footer__top {
    padding: 55px 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --radius: 22px;
  }

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

  .topbar {
    font-size: 9px;
    letter-spacing: .06em;
  }

  .topbar__benefits {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text strong {
    font-size: 21px;
  }

  .brand__text small {
    font-size: 7px;
  }

  .hero {
    min-height: 800px;
  }

  .hero__image {
    inset: 0;
    background-position: 68% center;
    transform: none;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(2, 13, 26, .96), rgba(2, 13, 26, .62)),
      linear-gradient(0deg, rgba(2, 13, 26, .94), transparent 65%);
  }

  .sun-orbit {
    display: none;
  }

  .hero__content {
    padding-block: 66px 105px;
    gap: 28px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13.5vw, 60px);
  }

  .hero__copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero__trust {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hero__trust > div:nth-child(3) {
    display: none;
  }

  .hero-card {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 16px;
  }

  .hero-card__tag,
  .hero-card__label,
  .hero-card__caption,
  .hero-card__bank,
  .hero-card a {
    grid-column: 1;
  }

  .hero-card__number {
    grid-column: 2;
    grid-row: 1 / 5;
  }

  .hero-card__number strong {
    font-size: 60px;
  }

  .hero-card__divider,
  .hero-card__bank {
    display: none;
  }

  .hero-card a {
    margin-top: 10px;
  }

  .hero__bottom p {
    font-size: 10px;
  }

  .ticker {
    padding-block: 13px;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .calculator__copy h2,
  .faq__intro h2,
  .finance__copy h2 {
    font-size: 39px;
  }

  .choice-grid {
    margin-top: 42px;
  }

  .choice-card {
    min-height: 390px;
    padding: 30px 25px;
  }

  .choice-card h3 {
    font-size: 34px;
  }

  .choice-card__line {
    right: 25px;
    bottom: 30px;
    left: 25px;
  }

  .choice-card__line strong {
    font-size: 65px;
  }

  .service-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .calculator__layout {
    gap: 45px;
  }

  .calculator__panel {
    margin-inline: -4px;
    padding: 26px 20px;
  }

  .calculator__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .calculator__top output {
    font-size: 40px;
  }

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

  .process__layout {
    gap: 48px;
  }

  .process__visual,
  .process__visual img {
    min-height: 430px;
    height: 430px;
  }

  .process__badge {
    width: 118px;
    height: 118px;
    padding: 15px;
  }

  .process__badge strong {
    font-size: 38px;
  }

  .timeline__item {
    padding-left: 70px;
  }

  .application-grid {
    grid-auto-rows: 360px;
  }

  .application-card__content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .application-card h3,
  .application-card:not(.application-card--wide) h3 {
    min-height: 0;
    font-size: 28px;
  }

  .calculator__animation,
  .finance__animation {
    opacity: .07;
  }

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

  .finance-card {
    min-height: 300px;
  }

  .final-cta {
    padding: 80px 0 100px;
  }

  .final-cta h2 {
    font-size: 43px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__top > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer__phone {
    text-align: left;
  }

  .footer__bottom {
    padding: 22px 0 95px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 87px;
    width: 55px;
    height: 55px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 55;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: block;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .button {
    min-height: 50px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
