:root {
  --ink: #151413;
  --ink-soft: #3c3a36;
  --muted: #6f6a61;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --stone: #eee8dd;
  --stone-strong: #d9cbbb;
  --brand: #828ef9;
  --brand-dark: #38419c;
  --gold: #a16207;
  --teal: #0f766e;
  --shadow: 0 22px 70px rgba(21, 20, 19, 0.13);
  --radius: 8px;
  --container: min(1280px, calc(100vw - 48px));
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(130, 142, 249, 0.55);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 124px) 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1320px, calc(100vw - 28px));
  min-height: 72px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.88);
  box-shadow: 0 18px 50px rgba(21, 20, 19, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--brand);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 28px));
  display: none;
  padding: 8px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.98);
  box-shadow: 0 22px 60px rgba(21, 20, 19, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(130, 142, 249, 0.12);
  color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 136px;
  padding-bottom: clamp(34px, 4vw, 58px);
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96);
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.94) 0%, rgba(251, 250, 246, 0.78) 43%, rgba(251, 250, 246, 0.13) 100%),
    linear-gradient(0deg, rgba(21, 20, 19, 0.58), rgba(21, 20, 19, 0.05) 42%, rgba(21, 20, 19, 0.18));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 820px;
  padding-bottom: clamp(16px, 5vw, 50px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 36px;
  font-size: clamp(2.55rem, 5.5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-text {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  margin-bottom: 34px;
}

.hero-actions,
.available-inner,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 16px 36px rgba(56, 65, 156, 0.26);
}

.btn-primary:hover {
  background: #2b337d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(21, 20, 19, 0.18);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(21, 20, 19, 0.12);
}

.trust-row {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.trust-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--brand-dark);
  box-shadow: 0 0 0 5px rgba(130, 142, 249, 0.16);
}

.intro-strip {
  padding: clamp(46px, 5vw, 64px) 0;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
  border-bottom: 1px solid rgba(21, 20, 19, 0.08);
  background: var(--ink);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.intro-grid .section-kicker,
.intro-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3.2vw, 3.1rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.testimonial-heading {
  max-width: 440px;
}

.testimonial-heading .section-kicker {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.testimonial-heading h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
}

.emphasis-word {
  display: inline-block;
  font-size: 1.12em;
  font-weight: 900;
  line-height: 0.92;
}

.testimonial-carousel {
  position: relative;
  min-height: 315px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: clamp(22px, 3vw, 34px);
  display: grid;
  align-content: space-between;
  gap: 30px;
  margin: 0;
  opacity: 0;
  transform: translateX(22px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide.is-exiting {
  opacity: 0;
  transform: translateX(-18px);
}

.testimonial-slide blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.5;
}

.testimonial-slide figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.owner-photo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 7px rgba(0, 0, 0, 0.18);
}

.testimonial-slide strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.testimonial-dots {
  position: absolute;
  right: clamp(22px, 3vw, 34px);
  bottom: clamp(20px, 2.6vw, 28px);
  display: flex;
  gap: 9px;
}

.testimonial-dots button {
  width: 28px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.testimonial-dots button.is-active {
  width: 42px;
  background: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 860px;
}

.section-heading p,
.model-copy p,
.guarantee-copy p,
.contact-copy p,
.available p,
.benefit-card p,
.step p,
.compare-card p {
  color: var(--muted);
}

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

.benefit-card,
.step,
.compare-card,
.contact-form {
  border: 1px solid rgba(21, 20, 19, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow:
    0 16px 28px rgba(21, 20, 19, 0.12),
    0 38px 95px rgba(21, 20, 19, 0.16);
}

.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 16% 18%, rgba(130, 142, 249, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(130, 142, 249, 0.08), transparent 46%);
  opacity: 0.95;
  pointer-events: none;
}

.benefit-card::after {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  bottom: -18px;
  color: rgba(56, 65, 156, 0.075);
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
  transform: translateY(10px);
  transition:
    transform 360ms ease;
  pointer-events: none;
}

.benefit-card h3,
.benefit-card p,
.benefit-card .icon-line {
  position: relative;
  z-index: 1;
}

.benefit-card:hover {
  border-color: rgba(56, 65, 156, 0.24);
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(21, 20, 19, 0.14);
}

.benefit-card:hover::after {
  transform: translateY(0);
}

.icon-line {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow:
    inset 0 0 0 9px rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(56, 65, 156, 0.18);
}

.icon-line img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: translateZ(0);
}

.benefit-card.is-visible .icon-line {
  animation: benefitIconIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes benefitIconIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.86);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.model-section {
  background: #f4efe7;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.model-copy {
  position: sticky;
  top: 122px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  position: relative;
  min-height: 184px;
  padding: 30px 30px 30px 112px;
  overflow: hidden;
}

.step span {
  position: absolute;
  top: 30px;
  left: 28px;
  color: var(--brand-dark);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

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

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

.compare-card {
  overflow: hidden;
}

.compare-card h3,
.compare-card p {
  padding-inline: 22px;
}

.compare-card h3 {
  margin-top: 22px;
}

.compare-card p {
  padding-bottom: 24px;
}

.compare {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-img.after {
  clip-path: inset(0 0 0 var(--pos));
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(21, 20, 19, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(56, 65, 156, 0.86);
  box-shadow: 0 12px 30px rgba(21, 20, 19, 0.22);
  transform: translate(-50%, -50%);
}

.tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(21, 20, 19, 0.76);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag-before {
  left: 14px;
}

.tag-after {
  right: 14px;
  background: rgba(56, 65, 156, 0.84);
}

.compare input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.guarantee {
  background: var(--ink);
  color: #fff;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.guarantee .section-kicker {
  color: #c8cdfd;
}

.guarantee-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.risk-list div {
  min-height: 144px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.risk-list span {
  display: block;
  margin-bottom: 26px;
  color: #c8cdfd;
  font-weight: 800;
}

.risk-list strong {
  font-size: 1.1rem;
}

.available {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--brand-dark), #6875ee);
  color: #fff;
}

.available-inner {
  justify-content: space-between;
  gap: 28px;
}

.available-inner > div {
  max-width: 690px;
}

.available .section-kicker,
.available p {
  color: rgba(255, 255, 255, 0.78);
}

.available h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.3vw, 3.2rem);
}

.idealista-word {
  width: auto;
  height: 0.78em;
  max-width: min(3.95em, 100%);
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: -0.03em;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(21, 20, 19, 0.15);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(56, 65, 156, 0.45);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(21, 20, 19, 0.08);
  background: #fff;
}

.footer-inner {
  justify-content: space-between;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 210ms;
}

.delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 32px, 760px);
  }

  .site-header {
    gap: 12px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid,
  .intro-grid,
  .testimonial-grid,
  .model-grid,
  .guarantee-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.8) 66%, rgba(251, 250, 246, 0.42) 100%),
      linear-gradient(0deg, rgba(21, 20, 19, 0.46), rgba(21, 20, 19, 0.06) 60%);
  }

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

  .model-copy {
    position: static;
  }

  .testimonial-heading {
    max-width: 720px;
  }

  .testimonial-carousel {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 64px;
    padding: 8px 8px 8px 12px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.78rem;
    white-space: normal;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

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

  .trust-row span {
    flex: 1 1 auto;
    min-width: min(100%, 190px);
  }

  .benefit-grid,
  .comparison-grid,
  .risk-list {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 24px;
  }

  .icon-line {
    margin-bottom: 28px;
  }

  .step {
    min-height: auto;
    padding: 82px 24px 24px;
  }

  .step span {
    top: 24px;
    left: 24px;
  }

  .available-inner {
    align-items: stretch;
  }

  .testimonial-carousel {
    min-height: 430px;
    padding: 22px;
  }

  .testimonial-slide {
    inset: 22px;
  }

  .testimonial-slide blockquote {
    font-size: 1rem;
  }

  .testimonial-dots {
    right: 22px;
    bottom: 22px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

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

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