:root {
  --bg-page: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-panel: rgba(255, 255, 255, 0.82);
  --bg-panel-strong: rgba(255, 255, 255, 0.92);
  --text-primary: var(--color-black);
  --text-secondary: rgb(20 20 20 / 90%);
  --text-muted: rgba(20, 20, 20, 0.48);
  --line-soft: rgba(20, 20, 20, 0.12);
  --line-strong: rgba(20, 20, 20, 0.2);
  --accent: var(--color-accent);
  --accent-soft: rgba(22, 22, 211, 0.1);
  --accent-deep: #101d57;
  --shadow-soft: 0 24px 80px rgba(20, 20, 20, 0.08);
  --shadow-large: 0 48px 120px rgba(20, 20, 20, 0.16);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.75rem;
  --page-width: min(1260px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  background:
    radial-gradient(circle at top left, rgba(22, 22, 211, 0.04), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--text-primary);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.site-header,
.section,
.site-footer {
  width: var(--page-width);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0.15rem;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: var(--page-width);
  max-width: var(--page-width);
  padding: 0.42rem 0.5rem 0.42rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.8rem;
  background: rgba(16, 16, 18, 0.56);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transform: translateX(-50%);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex: 0 0 auto;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.55rem 0.82rem 0.55rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.32rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -8px 16px rgba(10, 14, 46, 0.06);
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(109, 117, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(113, 121, 255, 0.18) 0%, rgba(72, 76, 186, 0.1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(15, 18, 52, 0.18);
}

.site-header__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  flex: 0 0 auto;
}

.site-header__phone-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.site-header__phone-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.site-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.55rem;
  flex: 0 0 auto;
  margin-right: 0.15rem;
}

.site-brand img {
  display: block;
  width: auto;
  height: 1.375rem;
}

.site-brand__descriptor {
  display: inline-grid;
  gap: 0.12rem;
  align-self: flex-end;
  color: rgba(255, 255, 255, 1);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: normal;
  transform: translateY(0.08rem);
}

.site-brand__descriptor span {
  display: block;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 1.25rem;
  padding: 0 0.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-header__menu-toggle {
  position: relative;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.site-header__menu-toggle:hover,
.site-header__menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-header__menu-box {
  display: grid;
  gap: 0.24rem;
  width: 1.05rem;
}

.site-header__menu-box span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

body.is-nav-open .site-header__menu-toggle {
  background: rgba(74, 69, 255, 0.14);
  border-color: rgba(109, 117, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 28px rgba(22, 22, 211, 0.18);
}

body.is-nav-open .site-header__menu-box span:nth-child(1) {
  transform: translateY(0.37rem) rotate(45deg);
}

body.is-nav-open .site-header__menu-box span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .site-header__menu-box span:nth-child(3) {
  transform: translateY(-0.37rem) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 24;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0.58);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nav-drawer__panel {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  bottom: 0.48rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.9rem;
  width: min(28rem, calc(100vw - 0.96rem));
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.7rem;
  background: rgba(12, 12, 15, 0.82);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate3d(1.4rem, 0, 0);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.nav-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.08rem 0.08rem 0;
}

.nav-drawer__brand {
  gap: 0.34rem;
}

.nav-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-drawer__close:hover,
.nav-drawer__close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-drawer__close svg {
  width: 1rem;
  height: 1rem;
}

.nav-drawer__body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  gap: 1rem;
}

.nav-drawer__nav {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  min-height: 0;
  padding: 0.18rem 0.08rem 0;
  overflow-y: auto;
}

.nav-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.45rem;
  padding: 0.84rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.12rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-drawer__nav a:hover,
.nav-drawer__nav a:focus-visible {
  transform: translateX(0.16rem);
  background: rgba(74, 69, 255, 0.14);
  border-color: rgba(109, 117, 255, 0.32);
}

.nav-drawer__footer {
  display: grid;
  gap: 0.8rem;
  padding: 0.1rem 0.08rem 0.08rem;
}

.nav-drawer__button {
  width: 100%;
}

.nav-drawer__phone {
  width: 100%;
  justify-content: center;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .nav-drawer {
  visibility: visible;
  pointer-events: auto;
}

body.is-nav-open .nav-drawer__backdrop {
  opacity: 1;
}

body.is-nav-open .nav-drawer__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.nav-timer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 2.9rem;
  padding: 0.32rem 0.62rem 0.3rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.32rem;
  background:
    linear-gradient(180deg, rgba(103, 111, 255, 0.2) 0%, rgba(55, 61, 184, 0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -8px 16px rgba(10, 14, 46, 0.08);
  backdrop-filter: blur(14px) saturate(122%);
  -webkit-backdrop-filter: blur(14px) saturate(122%);
  color: var(--color-white);
}

.nav-timer__unit {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 2rem;
  padding-bottom: 0.62rem;
}

.nav-timer__unit--ms {
  min-width: 1.72rem;
}

.nav-timer__value {
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 8px rgba(20, 20, 20, 0.16);
}

.nav-timer__label {
  position: absolute;
  bottom: 0.02rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 1.55rem;
  text-align: center;
  white-space: nowrap;
  font-size: 0.42rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.nav-timer__separator {
  align-self: center;
  margin-top: -0.38rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 4.1rem;
  padding: 0.95rem 1.05rem 0.95rem 1.55rem;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    0 18px 34px rgba(22, 22, 211, 0.28),
    0 4px 10px rgba(20, 20, 20, 0.18);
  overflow: hidden;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 24%, rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at top, rgba(112, 121, 255, 0.24), transparent 58%);
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -42%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: skewX(-24deg);
  opacity: 0.7;
  pointer-events: none;
  transition: transform 420ms ease;
}

.button__label,
.button__icon {
  position: relative;
  z-index: 1;
}

.button__label {
  white-space: nowrap;
}

.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(133, 142, 255, 0.36) 0%, rgba(77, 83, 227, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 6px 12px rgba(8, 8, 58, 0.18);
  flex: 0 0 auto;
}

.button__icon svg {
  width: 1rem;
  height: 1rem;
}

.button--nav {
  min-height: 2.9rem;
  margin-left: 0;
  padding: 0.55rem 0.62rem 0.55rem 0.95rem;
  font-size: 0.84rem;
  box-shadow:
    0 10px 20px rgba(22, 22, 211, 0.18),
    0 4px 10px rgba(20, 20, 20, 0.14);
}

.button--nav .button__icon {
  width: 1.7rem;
  height: 1.7rem;
}

.button--nav .button__icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.button--small {
  min-height: 3.2rem;
  padding: 0.65rem 0.72rem 0.65rem 1.05rem;
  font-size: 0.92rem;
  box-shadow:
    0 12px 24px rgba(22, 22, 211, 0.22),
    0 4px 10px rgba(20, 20, 20, 0.14);
}

.button--small .button__icon {
  width: 1.85rem;
  height: 1.85rem;
}

.button--small .button__icon svg {
  width: 0.82rem;
  height: 0.82rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 24px 44px rgba(22, 22, 211, 0.36),
    0 6px 14px rgba(20, 20, 20, 0.18);
}

.button:hover::after,
.button:focus-visible::after {
  animation-play-state: paused;
  transform: translateX(305%) skewX(-24deg);
  opacity: 0.76;
}

.button:not(.button--ghost)::after {
  animation: button-sheen-auto 5000ms ease-in-out infinite;
}

.button--ghost {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.16) 100%);
  color: var(--color-white);
  backdrop-filter: blur(18px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.button--ghost::after {
  left: -54%;
  width: 42%;
}

.button--ghost .button__icon {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.2);
}

.button--ghost:hover::after,
.button--ghost:focus-visible::after {
  transform: translateX(385%) skewX(-24deg);
  opacity: 0.8;
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: clip;
  color: var(--color-white);
}

.hero-media,
.hero-fallback,
.hero-embed,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-fallback,
.hero-embed {
  width: 100%;
  height: 100%;
}

.hero-fallback {
  transform: scale(1.02);
  filter: saturate(0.94);
  object-fit: cover;
}

.hero-embed {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 1600ms ease;
  will-change: opacity, transform;
}

.hero-embed__frame {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: auto;
  background: transparent;
  --media-object-fit: cover;
  --media-object-position: center;
  --controls: none;
  --center-controls: none;
  pointer-events: none;
}

.hero.is-video-ready .hero-embed {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 3;
  background:
    radial-gradient(circle at 20% 44%, rgba(20, 20, 20, 0.86) 0%, rgba(20, 20, 20, 0.74) 20%, rgba(20, 20, 20, 0.48) 38%, rgba(20, 20, 20, 0.2) 54%, rgba(20, 20, 20, 0) 68%),
    linear-gradient(90deg, rgba(20, 20, 20, 0.68) 0%, rgba(20, 20, 20, 0.52) 18%, rgba(20, 20, 20, 0.28) 34%, rgba(20, 20, 20, 0.12) 48%, rgba(20, 20, 20, 0) 62%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.16) 0%, rgba(20, 20, 20, 0.1) 42%, rgba(20, 20, 20, 0.18) 100%);
}

.hero-inner,
.hero-bottom {
  position: relative;
  z-index: 4;
  width: var(--page-width);
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 8.5rem 0 9rem;
}

.hero-copy-block {
  max-width: 46rem;
  animation: hero-rise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-intro {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.32rem, 1.44vw, 1.7rem);
  font-weight: 500;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.9);
}

.hero-statements {
  margin-top: 2rem;
}

.hero-statement {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff5bf;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  transform: translateX(-50%);
}

.hero-bottom p {
  max-width: 24rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-scroll::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: currentColor;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-bottom: 3rem;
}

.section-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-copy {
  max-width: 36rem;
  margin: 0;
  color: var(--text-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.section-benefits::before,
.section-process::before,
.section-faq::before,
.section-team::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-soft) 18%, transparent 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-item {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 26rem;
  border: 0;
  border-radius: var(--radius-lg);
  background: #101216;
  box-shadow: 0 28px 72px rgba(20, 20, 20, 0.1);
  overflow: hidden;
}

.benefit-item {
  grid-column: span 4;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 68%;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.34) 26%, rgba(8, 10, 16, 0.78) 64%, rgba(8, 10, 16, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.benefit-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 18%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 18%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

.benefit-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.benefit-item:hover .benefit-media img {
  transform: scale(1.06);
}

.benefit-body {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  gap: 0.95rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

.benefit-number {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 3rem;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.42);
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.benefit-item h3,
.process-item h3,
.team-card h3,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.benefit-item h3 {
  color: var(--color-white);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  line-height: 0.96;
}

.benefit-item p,
.team-card p,
.team-summary-copy p,
.faq-panel p,
.contact-copy p {
  margin: 0;
  color: var(--text-secondary);
}

.benefit-item p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.82);
}

.benefit-cta {
  position: relative;
  margin-top: 1rem;
  min-height: min(70vh, 40rem);
  border-radius: var(--radius-xl);
  background: #101216;
  box-shadow: 0 32px 84px rgba(20, 20, 20, 0.12);
  overflow: hidden;
}

.benefit-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.18) 34%, rgba(8, 10, 16, 0.7) 72%, rgba(8, 10, 16, 0.93) 100%);
  pointer-events: none;
  z-index: 1;
}

.benefit-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  backdrop-filter: blur(22px) saturate(112%);
  -webkit-backdrop-filter: blur(22px) saturate(112%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: 2;
}

.benefit-cta__media,
.benefit-cta__fallback,
.benefit-cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.benefit-cta__media {
  overflow: hidden;
}

.benefit-cta__fallback,
.benefit-cta__video {
  object-fit: cover;
}

.benefit-cta__fallback {
  transform: scale(1.02);
}

.benefit-cta__video {
  opacity: 0;
  display: block;
  background: transparent;
  --media-object-fit: cover;
  --media-object-position: center;
  --controls: none;
  --center-controls: none;
  transition: opacity 420ms ease;
}

.benefit-cta.is-video-ready .benefit-cta__video {
  opacity: 1;
}

.benefit-cta__body {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  column-gap: 2rem;
  row-gap: 1rem;
  align-items: center;
  min-height: inherit;
  max-width: none;
  padding: 2rem;
}

.benefit-cta__kicker {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 3rem;
  margin: 0;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.38);
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.benefit-cta h3 {
  margin: 0;
  grid-column: 1;
  align-self: center;
  color: var(--color-white);
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  line-height: 0.96;
}

.benefit-cta .button {
  grid-column: 2;
  align-self: center;
  width: 100%;
}

.benefit-cta p:last-of-type {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}

.section-gallery {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.gallery-copy {
  display: grid;
  gap: 1rem;
  align-self: center;
  justify-items: start;
}

.gallery-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gallery-feature,
.before-after {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-large);
}

.gallery-feature img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.before-after {
  position: relative;
  aspect-ratio: 1.35 / 1;
  background: rgba(20, 20, 20, 0.06);
  user-select: none;
}

.before-after__image,
.before-after__image img {
  width: 100%;
  height: 100%;
}

.before-after__image {
  margin: 0;
}

.before-after__image img {
  display: block;
  object-fit: cover;
}

.before-after__image--overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--split));
  -webkit-clip-path: inset(0 0 0 var(--split));
}

.before-after__image--overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 0;
  pointer-events: none;
}

.before-after__divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow:
    0 0 0 1px rgba(20, 20, 20, 0.08),
    0 0 24px rgba(255, 255, 255, 0.4);
  transform: translateX(-50%);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.68) 60%),
    rgba(255, 255, 255, 0.92);
  color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(22, 22, 211, 0.14),
    0 12px 30px rgba(20, 20, 20, 0.18);
  transform: translate(-50%, -50%);
}

.before-after__handle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.before-after__labels {
  position: absolute;
  inset: 1rem 1rem auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.before-after__labels span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.42);
  backdrop-filter: blur(16px);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.section-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0;
  padding-bottom: 3rem;
}

.section-carousel .section-heading {
  width: var(--page-width);
  margin: 0 auto 2.25rem;
}

.section-carousel .carousel {
  position: relative;
  width: 100%;
  padding-inline: 0;
  overflow: hidden;
}

.carousel {
  width: 100%;
}

.carousel.swiper {
  overflow: hidden;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.35rem;
  height: 4.35rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
  color: var(--color-white);
  box-shadow:
    0 18px 34px rgba(22, 22, 211, 0.28),
    0 4px 10px rgba(20, 20, 20, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.carousel-button--prev {
  left: clamp(0.75rem, 2.4vw, 2rem);
}

.carousel-button--next {
  right: clamp(0.75rem, 2.4vw, 2rem);
}

.carousel-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow:
    0 24px 44px rgba(22, 22, 211, 0.36),
    0 6px 14px rgba(20, 20, 20, 0.18);
}

.carousel-track {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0;
  align-items: center;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.carousel-track.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.carousel-slide img {
  display: block;
  width: auto;
  height: min(60vh, 42rem);
  max-height: 60vh;
  max-width: none;
  object-fit: contain;
  transition: transform 700ms ease;
}

.carousel-slide:hover img {
  transform: scale(1.04);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.82fr);
  gap: 2rem;
}

.process-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-soft);
}

.process-item:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
  box-shadow:
    0 12px 24px rgba(22, 22, 211, 0.22),
    0 3px 8px rgba(20, 20, 20, 0.12);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-item div {
  display: grid;
  gap: 0.8rem;
}

.process-item h3 {
  font-size: 1.45rem;
  line-height: 1;
}

.process-item p {
  margin: 0;
  color: var(--text-secondary);
}

.process-visuals {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
  align-self: start;
}

.process-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-visual--large {
  height: 30rem;
}

.process-visual--small {
  height: 12rem;
}

.process-promo {
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 0.3rem);
  background: #2527b8;
  color: var(--color-white);
  box-shadow:
    0 30px 70px rgba(22, 22, 211, 0.18),
    0 16px 32px rgba(20, 20, 20, 0.1);
}

.process-promo__media {
  display: grid;
  place-items: center;
  min-height: 20rem;
}

.process-promo__media img {
  width: min(100%, 24rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(9, 18, 66, 0.22));
}

.process-promo__copy {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.process-promo__kicker {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.process-promo__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.process-promo__button {
  justify-self: start;
  background: var(--color-white);
  color: var(--accent-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -10px 18px rgba(16, 29, 87, 0.08),
    0 18px 34px rgba(9, 18, 66, 0.24);
}

.process-promo__button .button__icon {
  background:
    linear-gradient(180deg, rgba(22, 22, 211, 0.16) 0%, rgba(22, 22, 211, 0.08) 100%);
}

.section-team {
  padding-top: 5rem;
}

.team-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-panel-strong);
  box-shadow: var(--shadow-soft);
}

.team-card img {
  aspect-ratio: 1 / 0.92;
  object-fit: cover;
}

.team-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem;
}

.team-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-card h3 {
  font-size: 1.85rem;
  line-height: 1;
}

.team-summary {
  margin-top: 1.25rem;
}

.team-summary-copy {
  display: grid;
  gap: 1.75rem;
  align-content: center;
  min-height: clamp(19rem, 30vw, 24rem);
  padding: clamp(1.9rem, 3vw, 2.8rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 29, 87, 0.96) 0%, rgba(22, 22, 211, 0.92) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.team-summary-copy p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.team-summary-copy .button {
  width: 100%;
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--accent-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -10px 18px rgba(16, 29, 87, 0.08),
    0 18px 34px rgba(9, 18, 66, 0.28);
}

.team-summary-copy .button .button__icon,
.contact-form .button .button__icon {
  background:
    linear-gradient(180deg, rgba(22, 22, 211, 0.16) 0%, rgba(22, 22, 211, 0.08) 100%);
}

.section-faq {
  padding-top: 6rem;
}

.faq-heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.faq-heading .button {
  justify-self: start;
  width: min(100%, 26rem);
}

.button--faq-ask {
  min-width: 14.5rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}

.faq-item {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(22, 22, 211, 0.08);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(22, 22, 211, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 252, 0.96) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(20, 20, 20, 0.05);
  overflow: clip;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 28px 64px rgba(20, 20, 20, 0.08);
}

.faq-item.is-open {
  border-color: rgba(22, 22, 211, 0.18);
  background:
    radial-gradient(circle at top right, rgba(22, 22, 211, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 252, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 30px 72px rgba(20, 20, 20, 0.09);
}

.faq-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.65rem;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 6.75rem;
  padding: 1.15rem 1.45rem;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.faq-icon {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  justify-self: end;
  border: 1px solid rgba(22, 22, 211, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.32) 58%),
    rgba(22, 22, 211, 0.05);
  color: var(--accent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 10px 18px rgba(22, 22, 211, 0.08);
  transition:
    transform 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(22, 22, 211, 0.2);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.42) 58%),
    rgba(22, 22, 211, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 14px 24px rgba(22, 22, 211, 0.1);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
  will-change: height;
}

.faq-item.is-open .faq-panel {
  opacity: 1;
}

.faq-panel-inner {
  padding: 0 1.45rem 1.35rem;
}

.faq-panel p {
  max-width: 30rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.62;
}

.section-contact {
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 8rem 0 4rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.contact-background,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 18, 0.84) 0%, rgba(10, 12, 18, 0.64) 34%, rgba(10, 12, 18, 0.46) 58%, rgba(10, 12, 18, 0.8) 100%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.12) 0%, rgba(8, 10, 16, 0.18) 46%, rgba(8, 10, 16, 0.82) 100%);
}

.contact-panel {
  position: relative;
  z-index: 2;
  width: var(--page-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.88fr);
  min-height: min(46rem, calc(100svh - 12rem));
  gap: 3rem;
  align-items: center;
  align-content: end;
}

.contact-copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  max-width: 36rem;
}

.contact-copy .section-kicker,
.contact-copy h2,
.contact-copy p {
  color: var(--color-white);
}

.contact-copy .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.contact-copy h2 {
  font-size: clamp(2.9rem, 5.2vw, 6rem);
  line-height: 0.9;
  text-wrap: balance;
}

.contact-copy p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact-meta {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-top: 0.5rem;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.1rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(7, 10, 20, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 220ms ease;
}

.contact-phone [data-phone-label] {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.contact-phone__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.contact-phone__icon svg {
  width: 100%;
  height: 100%;
}

.contact-phone:hover,
.contact-phone:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 46px rgba(7, 10, 20, 0.22);
}

.contact-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(7, 10, 20, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 220ms ease, opacity 180ms ease;
}

.contact-social svg {
  width: 1.38rem;
  height: 1.38rem;
}

.contact-social:hover,
.contact-social:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 34px rgba(7, 10, 20, 0.18);
}

.contact-social--placeholder {
  opacity: 0.72;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius-lg) + 0.2rem);
  background: rgba(10, 12, 18, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 64px rgba(8, 10, 16, 0.2);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-primary);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form .button {
  margin-top: 0.5rem;
  justify-self: stretch;
  width: 100%;
  background:
    linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
  color: var(--color-white);
  box-shadow:
    0 18px 34px rgba(22, 22, 211, 0.28),
    0 4px 10px rgba(20, 20, 20, 0.18);
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.88;
}

.contact-form__status {
  margin: -0.1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-form__status[data-state="error"] {
  color: rgba(255, 214, 214, 0.96);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #31d46b 0%, #13b856 100%);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  overflow: visible;
  box-shadow:
    0 18px 34px rgba(19, 184, 86, 0.32),
    0 0 42px rgba(49, 212, 107, 0.22),
    0 10px 22px rgba(7, 10, 20, 0.18);
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(73, 255, 145, 0.54) 0%, rgba(49, 212, 107, 0.34) 34%, rgba(49, 212, 107, 0.16) 54%, rgba(49, 212, 107, 0) 74%);
  filter: blur(6px);
  animation: whatsapp-pulse-glow 1800ms ease-out infinite;
  pointer-events: none;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -0.12rem;
  z-index: -2;
  border: 2px solid rgba(73, 255, 145, 0.52);
  border-radius: inherit;
  animation: whatsapp-pulse-ring 1800ms ease-out infinite;
  pointer-events: none;
}

.whatsapp-float svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 24px 42px rgba(19, 184, 86, 0.4),
    0 0 52px rgba(49, 212, 107, 0.28),
    0 12px 24px rgba(7, 10, 20, 0.22);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before,
.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  animation-duration: 1600ms;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer--landing {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #0d0d10;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__inner {
  width: var(--page-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1.4rem;
}

.site-footer--landing .site-footer__link {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer--landing .site-footer__link:hover,
.site-footer--landing .site-footer__link:focus-visible {
  color: rgba(255, 255, 255, 1);
}

.site-footer__link {
  color: var(--text-secondary);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--accent);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(22, 22, 211, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  color: var(--text-primary);
}

.legal-shell {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0 3rem;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-secondary);
  box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.legal-back svg,
.legal-footer__back svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

.legal-back:hover,
.legal-back:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 22, 211, 0.18);
  color: var(--accent);
}

.thank-you-page {
  min-height: 100vh;
  background: #090b10;
  color: var(--color-white);
}

.thank-you-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.thank-you-media,
.thank-you-overlay {
  position: absolute;
  inset: 0;
}

.thank-you-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.92);
}

.thank-you-overlay {
  background:
    linear-gradient(135deg, rgba(6, 8, 14, 0.78) 0%, rgba(6, 8, 14, 0.42) 34%, rgba(6, 8, 14, 0.78) 100%),
    linear-gradient(180deg, rgba(6, 8, 14, 0.22) 0%, rgba(6, 8, 14, 0.38) 42%, rgba(6, 8, 14, 0.88) 100%);
}

.thank-you-shell {
  position: relative;
  z-index: 1;
  width: var(--page-width);
  min-height: 100vh;
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 2rem;
}

.thank-you-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.thank-you-card {
  align-self: center;
  max-width: 42rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(12, 14, 22, 0.58) 0%, rgba(12, 14, 22, 0.42) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(26px) saturate(132%);
  -webkit-backdrop-filter: blur(26px) saturate(132%);
}

.thank-you-card .section-kicker {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.74);
}

.thank-you-card h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.thank-you-card p {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.55;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.thank-you-actions .button {
  min-width: 16rem;
}

.legal-brand {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: rgba(16, 16, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.18);
}

.legal-card {
  padding: 2.2rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 80px rgba(20, 20, 20, 0.08);
}

.legal-card h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.legal-copy {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.legal-copy section {
  display: grid;
  gap: 0.75rem;
}

.legal-copy h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.legal-copy p,
.legal-copy li {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.72;
}

.legal-copy ul {
  margin: 0;
  padding-left: 1.3rem;
}

.legal-copy a {
  color: var(--accent);
}

.legal-footer {
  width: min(980px, calc(100vw - 2rem));
  padding-top: 0;
}

.legal-footer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(2.2rem);
  }

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

@keyframes whatsapp-pulse-glow {
  0% {
    opacity: 0.12;
    transform: scale(0.96);
  }

  24% {
    opacity: 0.95;
  }

  70% {
    opacity: 0.24;
    transform: scale(1.18);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes whatsapp-pulse-ring {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }

  18% {
    opacity: 0.82;
  }

  72% {
    opacity: 0.18;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes hero-slide-zoom-in {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes button-sheen-auto {
  0%,
  58%,
  100% {
    transform: translateX(0) skewX(-24deg);
    opacity: 0;
  }

  12% {
    opacity: 0.78;
  }

  28% {
    transform: translateX(560%) skewX(-24deg);
    opacity: 0.62;
  }

  34% {
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 9.4rem;
  }

  .button,
  .button::after,
  .button--ghost::after,
  .site-header__phone,
  .contact-phone,
  .contact-social,
  .legal-back,
  .carousel-button,
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .site-header__menu-toggle,
  .nav-drawer__close,
  .nav-drawer__nav a {
    transition:
      none !important;
  }

  .button::after,
  .button--ghost::after,
  .whatsapp-float::before,
  .whatsapp-float::after {
    animation: none !important;
  }

  .button:hover,
  .button:focus-visible,
  .button:active {
    transform: none !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 18px 34px rgba(22, 22, 211, 0.28),
      0 4px 10px rgba(20, 20, 20, 0.18) !important;
  }

  .button--nav:hover,
  .button--nav:focus-visible,
  .button--nav:active {
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14) !important;
  }

  .button--small:hover,
  .button--small:focus-visible,
  .button--small:active {
    box-shadow:
      0 12px 24px rgba(22, 22, 211, 0.22),
      0 4px 10px rgba(20, 20, 20, 0.14) !important;
  }

  .button--ghost:hover,
  .button--ghost:focus-visible,
  .button--ghost:active {
    transform: none !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.16) 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.18) !important;
  }

  .button::after,
  .button:hover::after,
  .button:focus-visible::after,
  .button:active::after,
  .button--ghost::after,
  .button--ghost:hover::after,
  .button--ghost:focus-visible::after,
  .button--ghost:active::after {
    transform: translateX(0) skewX(-24deg) !important;
    opacity: 0 !important;
    animation: none !important;
  }

  .whatsapp-float::before,
  .whatsapp-float:hover::before,
  .whatsapp-float:focus-visible::before,
  .whatsapp-float:active::before,
  .whatsapp-float::after,
  .whatsapp-float:hover::after,
  .whatsapp-float:focus-visible::after,
  .whatsapp-float:active::after {
    transform: none !important;
    opacity: 0 !important;
    animation: none !important;
  }

  .site-header__phone:hover,
  .site-header__phone:focus-visible,
  .site-header__phone:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
    color: rgba(255, 255, 255, 0.92) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -8px 16px rgba(10, 14, 46, 0.06) !important;
  }

  .site-header__cta .site-header__phone:hover,
  .site-header__cta .site-header__phone:focus-visible,
  .site-header__cta .site-header__phone:active {
    transform: none !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14) !important;
  }

  .nav-drawer__phone:hover,
  .nav-drawer__phone:focus-visible,
  .nav-drawer__phone:active,
  .contact-phone:hover,
  .contact-phone:focus-visible,
  .contact-phone:active {
    transform: none !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14) !important;
  }

  .contact-social:hover,
  .contact-social:focus-visible,
  .contact-social:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--color-white) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 14px 30px rgba(7, 10, 20, 0.14) !important;
  }

  .legal-back:hover,
  .legal-back:focus-visible,
  .legal-back:active {
    transform: none !important;
    border-color: rgba(20, 20, 20, 0.1) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: var(--text-secondary) !important;
    box-shadow: 0 14px 34px rgba(20, 20, 20, 0.08) !important;
  }

  .carousel-button:hover,
  .carousel-button:focus-visible,
  .carousel-button:active {
    transform: translateY(-50%) !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 18px 34px rgba(22, 22, 211, 0.28),
      0 4px 10px rgba(20, 20, 20, 0.18) !important;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible,
  .whatsapp-float:active {
    transform: none !important;
    border-color: transparent !important;
    background:
      linear-gradient(180deg, #31d46b 0%, #13b856 100%) !important;
    color: var(--color-white) !important;
    box-shadow:
      0 18px 34px rgba(19, 184, 86, 0.32),
      0 0 42px rgba(49, 212, 107, 0.22),
      0 10px 22px rgba(7, 10, 20, 0.18) !important;
  }

  body:not(.is-nav-open) .site-header__menu-toggle:hover,
  body:not(.is-nav-open) .site-header__menu-toggle:focus-visible,
  body:not(.is-nav-open) .site-header__menu-toggle:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: var(--color-white) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 12px 24px rgba(0, 0, 0, 0.16) !important;
  }

  body.is-nav-open .site-header__menu-toggle:hover,
  body.is-nav-open .site-header__menu-toggle:focus-visible,
  body.is-nav-open .site-header__menu-toggle:active {
    transform: none !important;
    border-color: rgba(109, 117, 255, 0.34) !important;
    background: rgba(74, 69, 255, 0.14) !important;
    color: var(--color-white) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 14px 28px rgba(22, 22, 211, 0.18) !important;
  }

  .nav-drawer__close:hover,
  .nav-drawer__close:focus-visible,
  .nav-drawer__close:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: rgba(255, 255, 255, 0.84) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 22px rgba(0, 0, 0, 0.16) !important;
  }

  .nav-drawer__nav a:hover,
  .nav-drawer__nav a:focus-visible,
  .nav-drawer__nav a:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .faq-item:hover {
    transform: none !important;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 20px 50px rgba(20, 20, 20, 0.05) !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 0.55rem;
    column-gap: 0.75rem;
    width: min(calc(100vw - 0.75rem), max-content);
    max-width: calc(100vw - 0.75rem);
    top: 0.12rem;
    padding: 0.58rem 0.68rem 0.62rem 0.78rem;
    border-radius: 1.55rem;
  }

  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.08rem 0 0.05rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    mask-image: linear-gradient(90deg, transparent 0%, #000 1rem, #000 calc(100% - 1rem), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 1rem, #000 calc(100% - 1rem), transparent 100%);
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0.54rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-brand {
    gap: 0.44rem;
  }

  .site-header__cta {
    justify-self: end;
    margin-left: 0;
    padding: 0.18rem;
    gap: 0.22rem;
  }

  .site-header__cta .site-header__phone {
    justify-content: center;
    gap: 0;
    width: 2.7rem;
    min-width: 2.7rem;
    min-height: 2.7rem;
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
    overflow: hidden;
  }

  .site-header__cta .site-header__phone::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 24%, rgba(255, 255, 255, 0) 42%),
      radial-gradient(circle at top, rgba(112, 121, 255, 0.24), transparent 58%);
    pointer-events: none;
  }

  .site-header__cta .site-header__phone-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
  }

  .site-header__cta .site-header__phone-icon svg {
    width: 1.16rem;
    height: 1.16rem;
  }

  .site-header__cta .site-header__phone:hover,
  .site-header__cta .site-header__phone:focus-visible {
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
  }

  .site-header__cta .site-header__phone-label {
    display: none;
  }

  .nav-drawer__phone,
  .contact-phone {
    position: relative;
    border: 0;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
    color: var(--color-white);
    overflow: hidden;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-drawer__phone::before,
  .contact-phone::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 24%, rgba(255, 255, 255, 0) 42%),
      radial-gradient(circle at top, rgba(112, 121, 255, 0.24), transparent 58%);
    pointer-events: none;
  }

  .nav-drawer__phone .site-header__phone-icon,
  .contact-phone__icon {
    background: transparent;
    box-shadow: none;
    color: var(--color-white);
  }

  .nav-drawer__phone {
    height: 3.2rem;
    min-height: 3.2rem;
    padding: 0 1.05rem;
    gap: 0.72rem;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .nav-drawer__button {
    height: 3.2rem;
    min-height: 3.2rem;
    padding: 0 1.05rem;
    font-size: 0.92rem;
  }

  .nav-drawer__button .button__label {
    width: 100%;
    text-align: center;
  }

  .nav-drawer__phone .site-header__phone-label {
    width: auto;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: 0.92rem;
  }

  .nav-drawer__phone .site-header__phone-icon {
    position: static;
    transform: none;
  }

  .nav-drawer__button .button__icon {
    right: 0.68rem;
  }

  .nav-drawer__phone .site-header__phone-icon,
  .nav-drawer__button .button__icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .nav-drawer__phone .site-header__phone-icon svg,
  .nav-drawer__button .button__icon svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .nav-drawer__phone .site-header__phone-icon {
    width: 1.3rem;
    height: 1.3rem;
  }

  .nav-drawer__phone .site-header__phone-icon svg {
    width: 100%;
    height: 100%;
  }

  .nav-drawer__phone:hover,
  .nav-drawer__phone:focus-visible,
  .contact-phone:hover,
  .contact-phone:focus-visible {
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
  }

  .button--nav {
    min-height: 2.7rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .site-header__cta .button--nav .button__icon {
    display: none;
  }

  .gallery-layout,
  .process-layout,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5) {
    grid-column: auto;
  }

  .benefit-item {
    min-height: 23rem;
  }

  .benefit-cta__body {
    grid-template-columns: 1fr;
    row-gap: 1.1rem;
    padding: 1.7rem;
  }

  .benefit-cta .button {
    width: min(100%, 24rem);
  }

  .process-visuals {
    display: none;
  }

  .process-promo {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    justify-items: center;
    text-align: center;
    padding: 1.85rem 1.5rem 2.9rem;
  }

  .process-promo__media {
    min-height: 0;
    width: 100%;
    justify-items: center;
  }

  .process-promo__media img {
    width: min(100%, 17rem);
  }

  .process-promo__copy {
    width: 100%;
    max-width: 34rem;
    gap: 0.9rem;
    justify-items: center;
    text-align: center;
  }

  .process-promo__copy h3 {
    max-width: 30rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .process-promo__button {
    justify-self: center;
    width: auto;
    min-width: 18rem;
  }

  .team-summary-copy {
    min-height: clamp(20rem, 36vw, 26rem);
  }
}

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

  .carousel-slide {
    width: 90vw;
    max-width: 90vw;
  }

  .carousel-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 840px) {
  :root {
    --page-width: min(100vw - 1rem, 1260px);
  }

  html {
    scroll-padding-top: 10.75rem;
  }

  .site-header {
    width: var(--page-width);
    top: 0.1rem;
    row-gap: 0.42rem;
    column-gap: 0.55rem;
    padding: 0.5rem 0.55rem 0.58rem;
    border-radius: 1.35rem;
  }

  .site-brand {
    gap: 0.26rem;
  }

  .site-brand img {
    height: 1.14rem;
  }

  .site-brand__descriptor {
    gap: 0.08rem;
    font-size: 0.5rem;
    letter-spacing: 0.16em;
    transform: translateY(0.02rem);
  }

  .site-header__cta {
    padding: 0.16rem;
  }

  .site-header__phone {
    min-height: 2.45rem;
    padding: 0.44rem 0.72rem 0.44rem 0.62rem;
    gap: 0.45rem;
  }

  .site-header__phone-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .site-header__cta .site-header__phone-icon svg {
    width: 1.08rem;
    height: 1.08rem;
  }

  .site-header__phone-label {
    font-size: 0.73rem;
  }

  .site-header__cta > .button,
  .site-header > .button {
    display: inline-flex;
  }

  .site-header__cta .button {
    width: auto;
  }

  .site-header__cta .button--nav {
    min-height: 2.45rem;
    padding: 0.44rem 0.76rem;
    gap: 0;
    font-size: 0.73rem;
  }

  .site-header__cta .site-header__phone {
    width: 2.45rem;
    min-width: 2.45rem;
    min-height: 2.45rem;
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background:
      linear-gradient(180deg, #4a45ff 0%, #2b26f0 38%, #1616d3 100%);
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
    overflow: hidden;
    gap: 0;
  }

  .site-header__cta .site-header__phone::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 24%, rgba(255, 255, 255, 0) 42%),
      radial-gradient(circle at top, rgba(112, 121, 255, 0.24), transparent 58%);
    pointer-events: none;
  }

  .site-header__cta .site-header__phone-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
  }

  .site-header__cta .site-header__phone:hover,
  .site-header__cta .site-header__phone:focus-visible {
    box-shadow:
      0 10px 20px rgba(22, 22, 211, 0.18),
      0 4px 10px rgba(20, 20, 20, 0.14);
  }

  .site-nav {
    gap: 0.4rem;
    padding-top: 0.05rem;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .site-nav a {
    padding: 0.46rem 0.68rem;
    font-size: 0.76rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 3.5rem;
    padding-inline: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 10, 12, 0.08) 0%, rgba(10, 10, 12, 0.18) 22%, rgba(10, 10, 12, 0.5) 58%, rgba(10, 10, 12, 0.88) 100%),
      radial-gradient(circle at 22% 66%, rgba(14, 14, 16, 0.74) 0%, rgba(14, 14, 16, 0.28) 34%, rgba(14, 14, 16, 0) 64%);
  }

  .hero-inner {
    min-height: 100svh;
    align-items: center;
    padding: 8.9rem 0 max(2.5rem, env(safe-area-inset-bottom) + 1.5rem);
  }

  .hero-copy-block {
    width: 100%;
    max-width: min(31rem, 100%);
    padding-inline: 0.9rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    max-width: 19rem;
    font-size: clamp(2.7rem, 8vw, 3.85rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .hero-intro {
    max-width: 22rem;
    margin-top: 1.1rem;
    font-size: 1.02rem;
    line-height: 1.4;
  }

  .hero-actions {
    width: min(100%, 23rem);
    margin-top: 1.7rem;
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-bottom {
    display: none;
  }

  .hero-bottom p {
    max-width: 100%;
  }

  .hero-scroll {
    font-size: 0.8rem;
  }

  .section {
    padding: 4.75rem 0;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
    padding-inline: 0.75rem;
  }

  .section-heading h2 {
    font-size: clamp(2.7rem, 8vw, 3.85rem);
  }

  .section-copy {
    max-width: 30rem;
    font-size: 1rem;
  }

  .section-gallery {
    padding-top: 4rem;
    padding-bottom: 0;
  }

  .gallery-layout {
    gap: 1.35rem;
    margin-bottom: 0;
  }

  .gallery-copy {
    gap: 0.85rem;
    padding-inline: 0.75rem;
  }

  .gallery-copy h2 {
    font-size: clamp(2.7rem, 8vw, 3.85rem);
  }

  .before-after {
    aspect-ratio: 1 / 0.72;
    border-radius: 1.85rem;
  }

  .before-after__labels {
    inset: 0.8rem 0.8rem auto;
  }

  .before-after__labels span {
    padding: 0.42rem 0.68rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .before-after__handle {
    width: 3.1rem;
    height: 3.1rem;
  }

  .benefits-grid,
  .faq-columns,
  .team-layout {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    margin-bottom: 1.8rem;
  }

  .benefit-item,
  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5) {
    grid-column: auto;
  }

  .benefit-item {
    min-height: 21rem;
    border-radius: 1.65rem;
  }

  .benefit-number {
    top: 0.95rem;
    left: 0.95rem;
    min-width: 2.7rem;
    height: 2.7rem;
    padding: 0 0.84rem;
    font-size: 0.74rem;
  }

  .benefit-body {
    gap: 0.72rem;
    padding: 1.05rem 1.05rem 1.15rem;
  }

  .benefit-item h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .benefit-item p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .benefit-cta {
    min-height: 25rem;
    border-radius: 1.9rem;
  }

  .benefit-cta__body {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 1rem;
    padding: 1.3rem;
  }

  .benefit-cta__kicker {
    top: 1rem;
    left: 1rem;
    min-height: 2.65rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.72rem;
  }

  .benefit-cta h3 {
    grid-column: 1;
    font-size: clamp(1.6rem, 7.8vw, 2.1rem);
  }

  .benefit-cta .button {
    grid-column: 1;
    justify-self: start;
    order: 2;
    width: 100%;
  }

  .carousel {
    width: 100%;
  }

  .carousel-button {
    width: 3.35rem;
    height: 3.35rem;
  }

  .carousel-button svg {
    width: 1rem;
    height: 1rem;
  }

  .button {
    width: 100%;
    justify-content: center;
    padding-inline: 1rem;
    text-align: center;
  }

  .button__label {
    width: 100%;
    text-align: center;
  }

  .button__icon {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
  }

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

  .carousel-track {
    gap: 0;
  }

  .carousel-slide {
    border-radius: 1.55rem;
  }

  .carousel-slide img {
    height: min(44svh, 22rem);
    max-height: 44svh;
  }

  .process-item {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.2rem 0;
  }

  .process-number {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.72rem;
  }

  .process-item h3 {
    font-size: 1.22rem;
  }

  .process-promo {
    gap: 1rem;
    padding: 1.2rem 1.2rem 2rem;
    border-radius: 1.9rem;
    justify-items: center;
    text-align: center;
  }

  .process-promo__media {
    min-height: 0;
  }

  .process-promo__media img {
    width: min(100%, 14rem);
  }

  .process-promo__copy {
    gap: 0.8rem;
    justify-items: center;
    text-align: center;
  }

  .process-promo__copy h3 {
    max-width: 24rem;
    font-size: clamp(1.55rem, 6vw, 2.15rem);
  }

  .button--process-promo-cta {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 20.5rem);
    min-height: 4.1rem;
    padding: 0.95rem 4.2rem 0.95rem 1.55rem;
  }

  .button--process-promo-cta .button__label {
    display: block;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    margin-inline: auto;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
  }

  .button--process-promo-cta .button__icon {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
  }

  .process-visuals {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .faq-trigger span:first-child {
    font-size: 1.16rem;
  }

  .faq-item {
    min-height: 0;
    padding: 0;
    border-radius: 1.35rem;
  }

  .faq-trigger {
    min-height: 5.35rem;
    padding: 0.92rem 1rem;
  }

  .faq-panel-inner {
    padding: 0 1rem 1rem;
  }

  .faq-heading .button {
    width: fit-content;
    max-width: 100%;
  }

  .button--faq-ask {
    min-width: 15.5rem;
    min-height: 3.5rem;
    padding: 0.8rem 1rem 0.8rem 1.25rem;
    font-size: 1rem;
  }

  .button--faq-ask .button__icon {
    position: static;
    transform: none;
    width: 2.1rem;
    height: 2.1rem;
    margin-left: 0.65rem;
  }

  .button--faq-ask .button__label {
    width: auto;
    text-align: left;
  }

  .team-card-body {
    padding: 1.2rem;
    gap: 0.7rem;
  }

  .team-card,
  .team-summary-copy {
    border-radius: 1.35rem;
  }

  .team-card h3 {
    font-size: 1.55rem;
  }

  .team-summary-copy {
    min-height: auto;
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .team-summary-copy p {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .contact-panel {
    gap: 1.5rem;
  }

  .section-contact {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .contact-copy {
    max-width: 100%;
    gap: 0.9rem;
    align-content: center;
    padding-inline: 0.75rem;
  }

  .contact-copy h2 {
    max-width: 20rem;
    font-size: clamp(2.7rem, 8vw, 3.85rem);
  }

  .contact-copy p {
    max-width: 24rem;
    font-size: 1rem;
  }

  .contact-meta {
    gap: 0.8rem;
    margin-top: 0.25rem;
  }

  .contact-phone {
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-size: 0.98rem;
  }

  .contact-socials {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .contact-form {
    padding: 1.15rem;
    gap: 0.85rem;
    border-radius: 1.35rem;
  }

  .contact-form textarea {
    min-height: 7rem;
  }

  .thank-you-shell {
    padding: 0.95rem 0 1.6rem;
    gap: 1.35rem;
  }

  .thank-you-header {
    flex-wrap: wrap;
  }

  .thank-you-card {
    max-width: 100%;
    padding: 1.55rem;
    border-radius: 1.55rem;
  }

  .thank-you-card p {
    max-width: 28rem;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  :root {
    --page-width: min(100vw - 0.75rem, 1260px);
  }

  html {
    scroll-padding-top: 10.4rem;
  }

  .site-header {
    padding: 0.46rem 0.48rem 0.54rem;
    row-gap: 0.34rem;
    column-gap: 0.45rem;
    border-radius: 1.22rem;
  }

  .site-brand {
    gap: 0.22rem;
  }

  .site-brand img {
    height: 1.02rem;
  }

  .site-brand__descriptor {
    gap: 0.06rem;
    font-size: 0.46rem;
    letter-spacing: 0.15em;
    transform: translateY(0.02rem);
  }

  .site-nav {
    gap: 0.35rem;
  }

  .site-header__phone {
    min-height: 2.25rem;
    padding: 0.42rem 0.62rem 0.42rem 0.58rem;
    gap: 0.4rem;
  }

  .site-header__phone-icon {
    width: 1.38rem;
    height: 1.38rem;
  }

  .site-header__phone-icon svg {
    width: 0.78rem;
    height: 0.78rem;
  }

  .site-header__cta .site-header__phone-icon svg {
    width: 1rem;
    height: 1rem;
  }

  .site-header__phone-label {
    font-size: 0.7rem;
  }

  .site-nav a {
    padding: 0.42rem 0.58rem;
    font-size: 0.73rem;
  }

  .site-header__cta .button--nav {
    min-height: 2.25rem;
    padding: 0.42rem 0.64rem;
    gap: 0;
    font-size: 0.7rem;
  }

  .site-header__cta .site-header__phone {
    width: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0;
    gap: 0;
  }

  .site-header__cta .site-header__phone-icon {
    width: 100%;
    height: 100%;
  }

  .hero-inner {
    padding: 8.2rem 0 max(1.9rem, env(safe-area-inset-bottom) + 1rem);
  }

  .hero-copy-block {
    max-width: 100%;
    padding-inline: 0.95rem;
  }

  .hero-eyebrow {
    margin-bottom: 0.82rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.1rem, 9.8vw, 2.75rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .hero-intro {
    max-width: none;
    margin-top: 0.95rem;
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    margin-top: 1.45rem;
    gap: 0.72rem;
  }

  .hero-bottom p {
    max-width: 17rem;
    font-size: 0.88rem;
  }

  .hero-scroll {
    gap: 0.55rem;
    font-size: 0.74rem;
  }

  .hero-scroll::before {
    width: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-carousel {
    padding-top: 1rem;
  }

  .section-heading {
    margin-bottom: 1.6rem;
    padding-inline: 0.95rem;
  }

  .section-heading h2,
  .gallery-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.1rem, 9.8vw, 2.75rem);
  }

  .section-kicker {
    font-size: 0.72rem;
  }

  .gallery-copy {
    padding-inline: 0.95rem;
  }

  .before-after {
    aspect-ratio: 1 / 0.72;
    border-radius: 1.65rem;
  }

  .before-after__labels {
    inset: 0.7rem 0.7rem auto;
  }

  .before-after__labels span {
    padding: 0.38rem 0.54rem;
    font-size: 0.68rem;
  }

  .before-after__handle {
    width: 2.85rem;
    height: 2.85rem;
  }

  .before-after__handle svg {
    width: 1.1rem;
    height: 1.1rem;
  }

  .carousel-track {
    gap: 0;
  }

  .carousel-slide {
    border-radius: 1.5rem;
  }

  .carousel-slide img {
    height: min(40svh, 19rem);
    max-height: 40svh;
  }

  .carousel-button {
    width: 3rem;
    height: 3rem;
  }

  .benefit-item {
    min-height: 18.75rem;
    border-radius: 1.45rem;
  }

  .benefit-item h3 {
    font-size: clamp(1.35rem, 8.8vw, 1.78rem);
  }

  .benefit-item p {
    font-size: 0.94rem;
  }

  .benefit-cta {
    min-height: 27.5rem;
  }

  .benefit-cta::before {
    height: 76%;
    background:
      linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.24) 22%, rgba(8, 10, 16, 0.82) 60%, rgba(8, 10, 16, 0.97) 100%);
  }

  .benefit-cta::after {
    height: 56%;
    backdrop-filter: blur(26px) saturate(118%);
    -webkit-backdrop-filter: blur(26px) saturate(118%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.82) 56%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.14) 18%, rgba(0, 0, 0, 0.82) 56%, rgba(0, 0, 0, 1) 100%);
  }

  .benefit-cta__body {
    align-content: end;
    padding: 1rem 1rem 1.4rem;
  }

  .benefit-cta h3 {
    font-size: clamp(1.45rem, 8.5vw, 1.9rem);
  }

  .process-item {
    grid-template-columns: 2.85rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .process-number {
    width: 2.18rem;
    height: 2.18rem;
    font-size: 0.68rem;
  }

  .process-item h3 {
    font-size: 1.14rem;
  }

  .process-promo {
    padding: 1.1rem;
  }

  .faq-trigger span:first-child {
    font-size: 1.06rem;
  }

  .faq-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .team-summary-copy {
    padding: 1.25rem;
    gap: 1rem;
  }

  .team-summary-copy p {
    font-size: clamp(1.3rem, 9vw, 1.7rem);
  }

  .team-summary-copy .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 5rem;
    padding: 0.9rem 4.2rem 0.9rem 1.2rem;
  }

  .team-summary-copy .button .button__label {
    display: block;
    flex: 0 1 calc(100% - 3.55rem);
    width: calc(100% - 3.55rem);
    min-width: 0;
    max-width: calc(100% - 3.55rem);
    margin-inline: auto;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
  }

  .team-summary-copy .button .button__icon {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .contact-copy h2 {
    max-width: 18rem;
  }

  .contact-copy {
    padding-inline: 0.95rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .thank-you-shell {
    padding: 0.72rem 0 1.2rem;
    gap: 1rem;
  }

  .thank-you-header {
    display: grid;
    justify-items: start;
    gap: 0.72rem;
  }

  .thank-you-card {
    padding: 1.2rem;
    border-radius: 1.3rem;
  }

  .thank-you-card .section-kicker {
    margin-bottom: 0.8rem;
  }

  .thank-you-card h1 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .thank-you-card p {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .thank-you-actions {
    margin-top: 1.2rem;
  }

  .thank-you-actions .button {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float {
    right: 0.72rem;
    bottom: 3.72rem;
    width: 3.25rem;
    min-height: 3.25rem;
  }
}

@media (max-width: 460px) {
  html {
    scroll-padding-top: 12.8rem;
  }

  .benefit-cta {
    min-height: 29rem;
  }

  .benefit-cta::before {
    height: 82%;
    background:
      linear-gradient(180deg, rgba(8, 10, 16, 0) 0%, rgba(8, 10, 16, 0.28) 18%, rgba(8, 10, 16, 0.86) 56%, rgba(8, 10, 16, 0.98) 100%);
  }

  .benefit-cta::after {
    height: 62%;
    backdrop-filter: blur(28px) saturate(120%);
    -webkit-backdrop-filter: blur(28px) saturate(120%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.86) 52%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.86) 52%, rgba(0, 0, 0, 1) 100%);
  }

  .benefit-cta__body {
    padding: 1rem 1rem 1.6rem;
  }

  .thank-you-card {
    padding: 1rem;
  }

  .thank-you-card h1 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }

  .team-summary-copy .button {
    min-height: 5.2rem;
    padding: 0.95rem 4rem 0.95rem 1rem;
  }

  .team-summary-copy .button .button__label {
    flex-basis: calc(100% - 3.45rem);
    width: calc(100% - 3.45rem);
    max-width: calc(100% - 3.45rem);
  }

  .button--process-promo-cta {
    width: min(100%, 18.5rem);
    min-height: 4.1rem;
    padding: 0.95rem 4.1rem 0.95rem 1.35rem;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .site-brand {
    justify-self: start;
  }

  .site-header__cta {
    width: 100%;
    justify-self: stretch;
  }

  .site-header__cta .button {
    width: 100%;
  }

  .site-header__cta .button--nav {
    justify-content: space-between;
  }

  body.has-nav-drawer .site-header {
    gap: 0.34rem;
  }

  body.has-nav-drawer .site-header__cta {
    width: auto;
    justify-self: auto;
    margin-left: auto;
    padding: 0.12rem;
    gap: 0.14rem;
  }

  body.has-nav-drawer .site-header__cta .button {
    width: auto;
  }

  body.has-nav-drawer .site-header__cta .button--nav {
    min-height: 2.05rem;
    padding: 0.36rem 0.5rem;
    font-size: 0.62rem;
    justify-content: center;
  }

  body.has-nav-drawer .site-header__cta .site-header__phone {
    width: 2.05rem;
    min-width: 2.05rem;
    min-height: 2.05rem;
  }

  .hero-inner {
    padding-top: 11.4rem;
  }
}

body.has-nav-drawer .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  width: var(--page-width);
  padding: clamp(0.42rem, 1vw, 0.58rem) clamp(0.5rem, 1.3vw, 0.72rem);
  border-radius: clamp(1.2rem, 2vw, 1.6rem);
}

body.has-nav-drawer .site-nav {
  display: none !important;
}

body.has-nav-drawer .site-header__cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.22rem;
  margin-left: auto;
  padding: 0.18rem;
}

body.has-nav-drawer .site-header__menu-toggle {
  display: inline-flex;
}

@media (max-width: 640px) {
  body.has-nav-drawer .site-header {
    gap: 0.42rem;
    padding: 0.42rem 0.46rem;
  }

  body.has-nav-drawer .site-header__cta {
    gap: 0.18rem;
    padding: 0.14rem;
  }

  body.has-nav-drawer .site-header__cta .button--nav {
    min-height: 2.2rem;
    padding: 0.4rem 0.58rem;
    font-size: 0.68rem;
  }

  body.has-nav-drawer .site-header__cta .site-header__phone {
    width: 2.2rem;
    min-width: 2.2rem;
    min-height: 2.2rem;
  }

  .nav-drawer__panel {
    top: 0.38rem;
    right: 0.38rem;
    bottom: 0.38rem;
    width: min(24rem, calc(100vw - 0.76rem));
    padding: 0.62rem;
    border-radius: 1.38rem;
  }

  .nav-drawer__nav a {
    min-height: 3.15rem;
    font-size: 0.94rem;
  }

  .nav-drawer__close,
  .site-header__menu-toggle {
    width: 2.72rem;
    height: 2.72rem;
    border-radius: 0.9rem;
  }
}

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

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