body {
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

[data-hero-surface] {
  --mx: 72%;
  --my: 28%;
}

.marquee-shell {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 2.6rem;
}

.marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  flex-shrink: 0;
  min-width: max-content;
  align-items: center;
  gap: 2.75rem;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-right: 2.75rem;
}

.marquee-track--a {
  animation: marquee-track-a 24s linear infinite;
}

.marquee-track--b {
  animation: marquee-track-b 24s linear infinite;
}

.marquee-track span {
  position: relative;
}

.marquee-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(249, 242, 231, 0.75);
  transform: translateY(-50%);
}

.social-icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.social-icon__img {
  filter: brightness(0) invert(1);
}

.brand-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand-icon-link:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-icon-link--telegram {
  color: #27a7e7;
}

.brand-icon-link--vk {
  color: #0077ff;
}

.brand-icon-link__img {
  filter: brightness(0) invert(1);
}

.mobile-header-cta {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f9f2e7;
  padding: 0 0.9rem;
  color: #0b0b0b;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 1rem;
  color: #fff;
}

.lead-modal.is-open {
  display: grid;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(35rem, 100%);
  max-height: min(42rem, calc(100dvh - 2rem));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 242, 231, 0.1), transparent 17rem),
    linear-gradient(145deg, #0b0b0b 0%, #020202 100%);
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.lead-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.1rem;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.lead-modal__close:hover,
.lead-modal__close:focus-visible {
  background: #f9f2e7;
  color: #101010;
}

.lead-modal__content {
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem;
}

.lead-modal__content h2 {
  max-width: calc(100% - 3.2rem);
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lead-modal__content p {
  margin-top: 0.65rem;
  max-width: 27rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.18;
}

.lead-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.lead-modal__form label {
  display: grid;
  gap: 0.35rem;
}

.lead-modal__form label span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1;
}

.lead-modal__form input,
.lead-modal__form textarea {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: #111;
  padding: 0 0.9rem;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.lead-modal__form textarea {
  min-height: 5.8rem;
  resize: vertical;
  padding-top: 0.85rem;
  line-height: 1.18;
}

.lead-modal__form input:focus,
.lead-modal__form textarea:focus {
  border-color: rgba(249, 242, 231, 0.66);
  background: #151515;
}

.lead-modal__form input::placeholder,
.lead-modal__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.lead-modal__wide,
.lead-modal__check,
.lead-modal__form button,
.lead-modal__status {
  grid-column: 1 / -1;
}

.lead-modal__check {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 0.6rem !important;
  cursor: pointer;
}

.lead-modal__check input {
  width: 1.1rem;
  min-width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.05rem;
  accent-color: #f9f2e7;
}

.lead-modal__check span {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.92rem !important;
  line-height: 1.16 !important;
}

.lead-modal__form button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 10px;
  background: #f9f2e7;
  color: #101010;
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.lead-modal__form button:hover,
.lead-modal__form button:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.lead-modal__status {
  min-height: 1.1rem;
  margin: 0 !important;
  color: rgba(249, 242, 231, 0.9) !important;
  font-size: 0.96rem !important;
  line-height: 1.1 !important;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(12px);
}

.mobile-menu__panel {
  position: relative;
  z-index: 1;
  margin: 0.75rem;
  margin-top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(8, 8, 8, 0.98)),
    rgba(8, 8, 8, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-20px) scale(0.98);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.mobile-menu:not(.hidden) .mobile-menu__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.35rem;
}

.mobile-menu__link {
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 1rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.92);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.mobile-menu__link::after {
  content: "↗";
  color: rgba(249, 242, 231, 0.72);
  font-size: 1rem;
}

.mobile-menu__cta {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 1rem;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__cta--primary {
  background: #f9f2e7;
  color: #0b0b0b;
}

.mobile-menu__cta--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(249, 242, 231, 0.15), transparent 18%),
    radial-gradient(circle at 74% 30%, rgba(249, 242, 231, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 38%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
  opacity: 0.8;
}

.hero-orb--one {
  top: 12%;
  right: 20%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(249, 242, 231, 0.1), transparent 68%);
  animation: drift-orb 11s ease-in-out infinite;
}

.hero-orb--two {
  left: 4%;
  bottom: 12%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  animation: drift-orb 14s ease-in-out infinite reverse;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, rgba(249,242,231,0.06) 0 1px, transparent 1px);
  background-size: 44px 44px, 60px 60px, 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent 92%);
}

.hero-video {
  border-radius: 24px;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-left: 0.12em;
  padding: 0.02em 0.24em 0.08em;
  border-radius: 10px;
  color: #0b0b0b;
  background: #f9f2e7;
  box-shadow:
    0 12px 28px rgba(249, 242, 231, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.hero-highlight::before {
  content: "";
  position: absolute;
  inset: -18% -40%;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(255, 255, 255, 0.18) 60%,
    transparent 72%
  );
  transform: translateX(-120%) skewX(-14deg);
  animation: highlight-sheen 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(249, 242, 231, 0.36), transparent 72%);
  filter: blur(12px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 100%);
  transform: translateX(-135%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-cta::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

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

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  transform: translateX(135%);
}

.hero-cta--primary {
  background: #f9f2e7;
  box-shadow: 0 14px 30px rgba(249, 242, 231, 0.12);
}

.hero-cta--primary::after {
  background: radial-gradient(circle at center, rgba(249, 242, 231, 0.4), transparent 72%);
}

.hero-cta--primary:hover,
.hero-cta--primary:focus-visible {
  box-shadow: 0 18px 38px rgba(249, 242, 231, 0.2);
}

.hero-cta--primary:hover::after,
.hero-cta--primary:focus-visible::after {
  opacity: 1;
}

.hero-cta--ghost {
  background: rgba(255, 255, 255, 0.05);
}

.hero-cta--ghost::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 72%);
}

.hero-cta--ghost:hover,
.hero-cta--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(249, 242, 231, 0.18);
}

.hero-cta--ghost:hover::after,
.hero-cta--ghost:focus-visible::after {
  opacity: 1;
}

.stat-card {
  position: relative;
  inset: 0;
  position: relative;
  perspective: 1200px;
  cursor: pointer;
}

.reveal-card {
  opacity: 0;
  transform:
    perspective(1200px)
    translateY(34px)
    rotateX(18deg)
    scale(0.965);
  transform-origin: center bottom;
  filter: blur(10px);
  clip-path: inset(18% 0 0 0 round 14px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    box-shadow 320ms ease;
}

.reveal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 38%,
    rgba(249, 242, 231, 0.28) 50%,
    transparent 64%
  );
  transform: translateX(-130%);
}

.reveal-card.is-visible {
  opacity: 1;
  transform:
    perspective(1200px)
    translateY(0)
    rotateX(0)
    scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 14px);
}

.reveal-card.is-visible::after {
  opacity: 1;
  animation: reveal-sheen 900ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--reveal-delay, 0ms) + 120ms) both;
}

.stat-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card:hover .stat-card__inner,
.stat-card:focus-within .stat-card__inner {
  transform: rotateY(180deg);
}

.stat-card__face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.stat-card__icon {
  display: inline-flex;
  height: auto;
  width: auto;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #f9f2e7;
  opacity: 0.9;
}

.stat-card__icon iconify-icon {
  font-size: 1.8rem;
}

.stat-card__face--front {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.stat-card__face--back {
  transform: rotateY(180deg);
}

.stat-card--warm .stat-card__face--front {
  background:
    radial-gradient(circle at top right, rgba(249, 242, 231, 0.1), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.stat-card--warm .stat-card__face--back {
  background:
    linear-gradient(160deg, rgba(249, 242, 231, 0.96), rgba(232, 223, 208, 0.92));
}

.stat-card--cool .stat-card__face--front {
  background:
    radial-gradient(circle at top right, rgba(249, 242, 231, 0.08), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
}

.stat-card--cool .stat-card__face--back {
  background:
    linear-gradient(160deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.94));
}

.stat-card:hover .stat-card__face,
.stat-card:focus-within .stat-card__face {
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.24);
}

.offers-section {
  position: relative;
  overflow: hidden;
  margin-top: -0.15rem;
  padding: 2.8rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f4 100%);
  color: #101010;
  box-shadow: none;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.08);
}

.offers-section > .mx-auto {
  position: relative;
  z-index: 1;
}

.offers-scroll-controls {
  display: none;
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.94fr));
  gap: 1rem;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 29.5rem;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0d0d0d;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(249, 242, 231, 0.14), transparent 32%),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.52));
  opacity: 0.72;
}

.offer-card--featured {
  background:
    linear-gradient(180deg, rgba(249, 242, 231, 0.1), rgba(255, 255, 255, 0.025)),
    #0e0e0e;
}

.offer-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 13.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem 0;
}

.offer-card__media img {
  width: min(110%, 33rem);
  max-width: none;
  height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
  transform: translateY(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.offer-card__media--compact img {
  width: min(82%, 18rem);
}

.offer-card:hover .offer-card__media img {
  filter: drop-shadow(0 24px 42px rgba(249, 242, 231, 0.12));
  transform: translateY(-6px) scale(1.02);
}

.offer-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.05rem;
}

.offer-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-card__topline strong {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border-radius: 999px;
  background: rgba(249, 242, 231, 0.1);
  padding: 0 0.75rem;
  color: rgba(249, 242, 231, 0.82);
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.offer-card h3 {
  max-width: 11.5ch;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.offer-card p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.18;
}

.offer-card__list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.18;
}

.offer-card__list li {
  position: relative;
  padding-left: 1.25rem;
}

.offer-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #f9f2e7;
  box-shadow: 0 0 18px rgba(249, 242, 231, 0.48);
}

.offer-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.offer-card__footer span {
  color: rgba(249, 242, 231, 0.68);
  font-size: 0.9rem;
  line-height: 1.05;
}

.offer-card__footer a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 10px;
  background: #f9f2e7;
  padding: 0 0.95rem;
  color: #0b0b0b;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.offer-card__footer a:hover,
.offer-card__footer a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 242, 231, 0.14);
}

.cases-section {
  position: relative;
  overflow: hidden;
  margin-top: -1.75rem;
  padding: 6.25rem 0 5rem;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(249, 242, 231, 0.08), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.cases-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.52fr);
  gap: 1.5rem 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.cases-eyebrow {
  grid-column: 1 / -1;
  color: rgba(249, 242, 231, 0.68);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.cases-head h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(2.35rem, 3.9vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.cases-head p:not(.cases-eyebrow) {
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.18;
}

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

.case-card {
  --case-x: 50%;
  --case-y: 35%;
  --case-rx: 0deg;
  --case-ry: 0deg;
  display: flex;
  position: relative;
  min-height: 32rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #111;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  transform:
    perspective(1200px)
    rotateX(var(--case-rx))
    rotateY(var(--case-ry))
    translateY(0);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 160ms ease-out;
  will-change: transform;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(249, 242, 231, 0.28), transparent)
    0 0 / 180% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(249, 242, 231, 0.18), transparent)
    100% 0 / 1px 180% no-repeat;
  opacity: 0;
  transition: opacity 240ms ease;
}

.case-card > * {
  position: relative;
  z-index: 1;
}

.case-card:hover,
.case-card:focus-within {
  border-color: rgba(249, 242, 231, 0.34);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(249, 242, 231, 0.1) inset,
    0 0 24px rgba(249, 242, 231, 0.05);
  transform:
    perspective(1200px)
    rotateX(var(--case-rx))
    rotateY(var(--case-ry))
    translateY(0);
}

.case-card:hover::after,
.case-card:focus-within::after {
  opacity: 1;
  animation: case-border-glide 1.8s linear infinite;
}

.case-card--wide {
  grid-column: span 2;
}

.case-card__screen {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 17px 17px 0 0;
  background: #171717;
  transition:
    box-shadow 260ms ease;
}

.case-card__screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--case-x) var(--case-y), rgba(249, 242, 231, 0.12), transparent 12rem),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.48)),
    linear-gradient(120deg, rgba(249, 242, 231, 0.04), transparent 34%);
  opacity: 0.36;
  transition: opacity 240ms ease;
}

.case-card__screen::after {
  content: "Смотреть реализацию";
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 999px;
  background: #f9f2e7;
  padding: 0 0.85rem;
  color: #101010;
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.case-card__screen .case-card__glint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(249, 242, 231, 0.14) 50%,
    rgba(255, 255, 255, 0.05) 56%,
    transparent 68%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-130%) skewX(-12deg);
}

.case-card__screen img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: top center;
  transition: filter 420ms ease;
}

.case-card:hover .case-card__screen img {
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
}

.case-card:hover .case-card__screen,
.case-card:focus-within .case-card__screen {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.case-card:hover .case-card__screen::before,
.case-card:focus-within .case-card__screen::before {
  opacity: 0.52;
}

.case-card:hover .case-card__screen::after,
.case-card:focus-within .case-card__screen::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-card:hover .case-card__screen .case-card__glint,
.case-card:focus-within .case-card__screen .case-card__glint {
  opacity: 0.7;
  animation: case-screen-glint 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0 0 17px 17px;
  background:
    radial-gradient(circle at 86% 0%, rgba(249, 242, 231, 0.06), transparent 9rem),
    transparent;
  transition:
    background 240ms ease;
}

.case-card:hover .case-card__body,
.case-card:focus-within .case-card__body {
  background:
    radial-gradient(circle at var(--case-x) 0%, rgba(249, 242, 231, 0.08), transparent 10rem),
    transparent;
}

.case-card__body > span {
  color: rgba(249, 242, 231, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    transform 260ms ease;
}

.case-card:hover .case-card__body > span,
.case-card:focus-within .case-card__body > span {
  color: rgba(249, 242, 231, 0.9);
  transform: translateY(-1px);
}

.case-card h3 {
  margin-top: 0.65rem;
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    transform 260ms ease;
}

.case-card:hover h3,
.case-card:focus-within h3 {
  color: #f9f2e7;
  text-shadow:
    0 16px 34px rgba(249, 242, 231, 0.14),
    0 2px 0 rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.case-card p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.18;
  transition:
    color 220ms ease,
    transform 260ms ease;
}

.case-card:hover p,
.case-card:focus-within p {
  color: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
  transition: transform 260ms ease;
}

.case-card:hover .case-card__meta,
.case-card:focus-within .case-card__meta {
  transform: translateY(-1px);
}

.case-card__meta span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(249, 242, 231, 0.12);
  background: rgba(255, 255, 255, 0.12);
  padding: 0 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.case-card:hover .case-card__meta span,
.case-card:focus-within .case-card__meta span {
  border-color: rgba(249, 242, 231, 0.26);
  background: rgba(249, 242, 231, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: rgba(249, 242, 231, 0.94);
  transform: translateY(-1px);
}

.cases-load-more {
  display: none;
}

.team-section {
  position: relative;
  overflow: hidden;
  margin-top: -0.05rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px 28px 0 0;
  background: #fff;
  color: #101010;
}

.team-shell {
  display: grid;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 4rem 0 3.4rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 0.82fr);
  gap: 3rem;
  align-items: center;
}

.team-copy {
  display: grid;
  gap: 1.45rem;
}

.team-head {
  align-self: start;
}

.team-kicker {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 999px;
  background: #f9f2e7;
  padding: 0 0.95rem;
  color: #101010;
  font-size: 0.98rem;
  line-height: 1;
}

.team-kicker i {
  font-size: 1.1rem;
}

.team-head h2 {
  margin-top: 1.3rem;
  max-width: 14.5ch;
  color: #050505;
  font-size: clamp(2.85rem, 3.55vw, 3.95rem);
  font-weight: 700;
  line-height: 0.95;
}

.team-head p {
  max-width: 36rem;
  margin-top: 1.25rem;
  color: rgba(16, 16, 16, 0.68);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.14;
}

.team-visual-card {
  position: relative;
  display: flex;
  min-height: 34.5rem;
  align-items: flex-end;
  justify-content: center;
  perspective: 1100px;
}

.team-visual-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 33rem);
  max-height: 33rem;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.16));
  transition: filter 240ms ease;
}

.team-visual-card:hover img {
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18));
}

.team-person-hotspot {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0 1rem;
  color: rgba(16, 16, 16, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(16px);
  outline: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.team-person-hotspot--left {
  left: 0.4rem;
  bottom: 36%;
}

.team-person-hotspot--right {
  right: 0.1rem;
  bottom: 25%;
}

.team-person-hotspot:hover,
.team-person-hotspot:focus-visible {
  background: #101010;
  border-color: rgba(16, 16, 16, 0.2);
  color: #f9f2e7;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.team-person-hotspot span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.55rem);
  width: min(17rem, 78vw);
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 12px;
  background: #101010;
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.14;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.35rem);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.team-person-hotspot:hover span,
.team-person-hotspot:focus-visible span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-action {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(249, 242, 231, 0.12), transparent 38%),
    #090909;
  padding: 1rem;
  color: #fff;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.18);
}

.team-action__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.team-action__top span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.team-action__top strong {
  color: #f9f2e7;
  font-size: 1.1rem;
  line-height: 1;
  white-space: nowrap;
}

.team-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.team-form label {
  display: grid;
  gap: 0.35rem;
}

.team-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1;
}

.team-form input {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #111;
  padding: 0 0.9rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.team-form input:focus {
  border-color: rgba(249, 242, 231, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.team-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.team-form button {
  display: inline-flex;
  min-height: 3.1rem;
  align-self: end;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 10px;
  background: #f9f2e7;
  padding: 0 1rem;
  color: #101010;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.team-form button:hover,
.team-form button:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.form-consent {
  display: flex !important;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.5rem !important;
  margin-top: -0.1rem;
  cursor: pointer;
}

.form-consent input {
  width: 1rem !important;
  min-width: 1rem !important;
  height: 1rem !important;
  min-height: 1rem !important;
  margin-top: 0.02rem;
  border: 1px solid currentColor !important;
  border-radius: 3px !important;
  background: transparent !important;
  padding: 0 !important;
  accent-color: #f9f2e7;
}

.form-consent span {
  font-size: 0.86rem !important;
  line-height: 1.14 !important;
}

.form-consent--dark span {
  color: rgba(255, 255, 255, 0.78) !important;
}

.form-consent--light span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.team-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.team-messengers a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.team-messengers a:hover,
.team-messengers a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.team-messengers img {
  width: 1.05rem;
  height: 1.05rem;
  filter: brightness(0) invert(1);
}

.faq-section {
  position: relative;
  overflow: hidden;
  margin-top: -2rem;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(249, 242, 231, 0.08), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
  color: #fff;
  box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.18);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.14);
}

.faq-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 5rem 0 4.3rem;
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.55fr);
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.faq-kicker {
  grid-column: 1 / -1;
  color: rgba(249, 242, 231, 0.68);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-head h2 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(2.45rem, 3.65vw, 4rem);
  font-weight: 700;
  line-height: 0.96;
}

.faq-head p {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.18;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #101010;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: rgba(249, 242, 231, 0.24);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 4.55rem;
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.02;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: rgba(249, 242, 231, 0.56);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item summary i {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f9f2e7;
  font-size: 1.1rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.faq-item[open] summary i {
  background: #f9f2e7;
  color: #101010;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  padding: 0 1.1rem 1.1rem 3.85rem;
}

.faq-answer p {
  max-width: 56rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
  line-height: 1.2;
}

.final-section {
  position: relative;
  overflow: hidden;
  margin-top: -2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px 34px 0 0;
  background: #fff;
  color: #101010;
}

.final-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 4.6rem 0 3rem;
}

.faq-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 0.9fr);
  gap: 1.5rem 3rem;
  align-items: center;
  border: 1px solid rgba(16, 16, 16, 0.1);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.12);
}

.faq-footer__content {
  min-width: 0;
}

.faq-footer__eyebrow {
  color: rgba(16, 16, 16, 0.52);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-footer h3 {
  max-width: 14ch;
  margin-top: 0.75rem;
  color: #101010;
  font-size: clamp(2.25rem, 3.45vw, 3.9rem);
  font-weight: 700;
  line-height: 0.98;
}

.faq-footer p {
  max-width: 31rem;
  margin-top: 0.75rem;
  color: rgba(16, 16, 16, 0.68);
  font-size: 1.16rem;
  line-height: 1.18;
}

.faq-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #0b0b0b;
  padding: 0.85rem;
}

.faq-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.faq-form label {
  display: grid;
  gap: 0.35rem;
}

.faq-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1;
}

.faq-form input {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #111;
  padding: 0 0.9rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.faq-form input:focus {
  border-color: rgba(249, 242, 231, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.faq-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.faq-form button {
  display: inline-flex;
  min-height: 3.3rem;
  align-self: end;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 10px;
  background: #f9f2e7;
  padding: 0 1rem;
  color: #101010;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.faq-form button:hover,
.faq-form button:focus-visible {
  background: #fff;
  transform: translateY(-1px);
}

.faq-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.faq-contact-row a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 0.95rem;
  color: rgba(16, 16, 16, 0.76);
  font-size: 1rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.faq-contact-row a:hover,
.faq-contact-row a:focus-visible {
  background: #101010;
  color: #fff;
  transform: translateY(-1px);
}

.faq-contact-row img {
  width: 1.05rem;
  height: 1.05rem;
  filter: none;
}

.faq-contact-row a:hover img,
.faq-contact-row a:focus-visible img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .lead-modal {
    align-items: center;
    padding: 0.75rem;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 1.5rem);
    border-radius: 16px;
  }

  .lead-modal__content {
    gap: 1rem;
    padding: 0.95rem;
  }

  .lead-modal__content h2 {
    font-size: clamp(1.9rem, 8vw, 2.2rem);
  }

  .lead-modal__content p {
    font-size: 1rem;
  }

  .lead-modal__form {
    grid-template-columns: 1fr;
  }

  .lead-modal__form input,
  .lead-modal__form textarea,
  .lead-modal__form button {
    font-size: 1rem;
  }

  .stat-card__face {
    padding: 0.9rem;
  }

  .stat-card__icon iconify-icon {
    font-size: 1.65rem;
  }

  .offers-section {
    margin-top: -0.05rem;
    padding: 1.4rem 0 4rem;
    border-radius: 20px 20px 0 0;
  }

  .offers-scroll-controls {
    display: flex;
    gap: 0.5rem;
    margin: 0 0 0.55rem;
  }

  .offers-scroll-button {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 16, 16, 0.14);
    border-radius: 999px;
    background: #101010;
    color: #fff;
    font-size: 1.1rem;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .offers-scroll-button:active {
    transform: scale(0.96);
  }

  .offers-grid {
    display: flex;
    gap: 0.75rem;
    margin-right: -12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-right: 12px;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .offers-grid::-webkit-scrollbar {
    display: none;
  }

  .offer-card {
    flex: 0 0 min(100%, 22.5rem);
    min-height: 29rem;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .offer-card__media {
    min-height: 11rem;
    padding-top: 0.5rem;
  }

  .offer-card__media img {
    height: 11.5rem;
  }

  .offer-card__media--compact img {
    width: min(68%, 14rem);
  }

  .offer-card__content {
    padding: 0.95rem;
  }

  .offer-card h3 {
    max-width: 12ch;
    font-size: 2.15rem;
  }

  .offer-card p {
    font-size: 1rem;
  }

  .offer-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .offer-card__footer a {
    width: 100%;
  }

  .offer-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .cases-section {
    margin-top: -1.25rem;
    padding: 4.35rem 0 3.2rem;
    border-radius: 20px 20px 0 0;
  }

  .cases-head {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .cases-head h2 {
    max-width: 11ch;
    font-size: 2.35rem;
    white-space: normal;
  }

  .cases-head p:not(.cases-eyebrow) {
    font-size: 1rem;
  }

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

  .case-card,
  .case-card--wide {
    min-height: auto;
    grid-column: span 1;
    border-radius: 16px;
  }

  .case-card:nth-child(1),
  .case-card:nth-child(4),
  .case-card:nth-child(7),
  .case-card:nth-child(8) {
    grid-column: 1 / -1;
  }

  .cases-grid:not(.is-expanded) .case-card:nth-child(n+5) {
    display: none;
  }

  .case-card__screen {
    min-height: 16rem;
  }

  .case-card__screen img {
    height: 17.5rem;
  }

  .case-card__body {
    padding: 0.95rem;
  }

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

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

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) .case-card__screen {
    min-height: 8.5rem;
  }

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) .case-card__screen img {
    height: 9.2rem;
  }

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) .case-card__body {
    padding: 0.75rem;
  }

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) .case-card__body > span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) h3 {
    margin-top: 0.45rem;
    font-size: 1.16rem;
    line-height: 1;
  }

  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) p,
  .case-card:not(:nth-child(1)):not(:nth-child(4)):not(:nth-child(7)):not(:nth-child(8)) .case-card__meta {
    display: none;
  }

  .cases-load-more {
    display: inline-flex;
    width: 100%;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #f9f2e7;
    color: #101010;
    font-size: 1rem;
    line-height: 1;
  }

  .cases-grid.is-expanded + .cases-load-more {
    display: none;
  }

  .team-section {
    border-radius: 20px 20px 0 0;
    padding-bottom: 1.25rem;
  }

  .team-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3rem 0 3rem;
  }

  .team-copy {
    gap: 1rem;
  }

  .team-kicker {
    min-height: 2.45rem;
    font-size: 0.95rem;
  }

  .team-head h2 {
    max-width: 11.5ch;
    font-size: 2.7rem;
  }

  .team-head p {
    margin-top: 1rem;
    font-size: 1.1rem;
  }

  .team-visual-card {
    min-height: 21.5rem;
    margin-top: 0.25rem;
  }

  .team-visual-card img {
    width: min(96%, 22rem);
    max-height: 21rem;
  }

  .team-person-hotspot {
    min-height: 2.35rem;
    padding: 0 0.8rem;
    font-size: 0.92rem;
  }

  .team-person-hotspot--left {
    left: 0;
    bottom: 38%;
  }

  .team-person-hotspot--right {
    right: 0;
    bottom: 28%;
  }

  .team-person-hotspot span {
    width: min(15rem, 82vw);
    font-size: 0.95rem;
  }

  .team-action {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .team-action__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .team-action__top strong {
    font-size: 1.25rem;
  }

  .team-form {
    grid-template-columns: 1fr;
  }

  .team-form input,
  .team-form button {
    font-size: 1rem;
  }

  .team-messengers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-messengers a {
    min-height: 2.85rem;
    padding: 0 0.45rem;
    font-size: 0.9rem;
  }

  .faq-section {
    margin-top: -1.25rem;
    border-radius: 24px 24px 0 0;
  }

  .faq-shell {
    padding: 3.8rem 0 3rem;
  }

  .faq-head {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .faq-head h2 {
    max-width: 14ch;
    font-size: 2.4rem;
  }

  .faq-head p {
    font-size: 1rem;
  }

  .faq-list {
    gap: 0.6rem;
  }

  .faq-item {
    border-radius: 12px;
  }

  .faq-item summary {
    min-height: 4rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
    padding: 0.9rem;
    font-size: 1.18rem;
  }

  .faq-item summary i {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-answer {
    padding: 0 0.9rem 0.95rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .final-section {
    margin-top: -1.25rem;
    border-radius: 24px 24px 0 0;
  }

  .final-shell {
    padding: 3rem 0 2rem;
  }

  .faq-footer {
    grid-template-columns: 1fr;
    border-radius: 14px;
    padding: 0.95rem;
    gap: 1rem;
  }

  .faq-footer h3 {
    max-width: 11ch;
    font-size: 2.15rem;
  }

  .faq-footer p {
    font-size: 1rem;
  }

  .faq-form {
    grid-template-columns: 1fr;
  }

  .faq-form__fields {
    grid-template-columns: 1fr;
  }

  .faq-form input,
  .faq-form button {
    font-size: 1rem;
  }

  .faq-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .faq-contact-row a {
    min-height: 2.85rem;
    padding: 0 0.55rem;
    font-size: 0.92rem;
  }

}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

video {
  display: block;
}

@keyframes reveal-sheen {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(135%);
  }
}

@keyframes case-border-glide {
  0% {
    background-position:
      -80% 0,
      100% -80%;
  }
  100% {
    background-position:
      180% 0,
      100% 180%;
  }
}

@keyframes case-screen-glint {
  0% {
    transform: translateX(-130%) skewX(-12deg);
  }
  100% {
    transform: translateX(130%) skewX(-12deg);
  }
}

@keyframes highlight-sheen {
  0%,
  58% {
    transform: translateX(-120%) skewX(-14deg);
  }

  100% {
    transform: translateX(120%) skewX(-14deg);
  }
}

@keyframes marquee-track-a {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-track-b {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes drift-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -12px, 0) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-highlight::before {
    animation: none;
  }

  .mobile-menu__panel {
    transition: none;
  }

  .reveal-card,
  .reveal-card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    transition: none;
  }

  .reveal-card::after,
  .reveal-card.is-visible::after {
    opacity: 0;
    animation: none;
  }

  .case-card,
  .case-card:hover,
  .case-card:focus-within {
    transform: none;
  }

  .case-card__screen,
  .case-card:hover .case-card__screen,
  .case-card:focus-within .case-card__screen,
  .case-card__body,
  .case-card__body > span,
  .case-card:hover .case-card__body > span,
  .case-card:focus-within .case-card__body > span,
  .case-card h3,
  .case-card:hover h3,
  .case-card:focus-within h3,
  .case-card p,
  .case-card:hover p,
  .case-card:focus-within p,
  .case-card__meta,
  .case-card:hover .case-card__meta,
  .case-card:focus-within .case-card__meta {
    transform: none;
  }

  .case-card:hover::after,
  .case-card:focus-within::after,
  .case-card:hover .case-card__screen .case-card__glint,
  .case-card:focus-within .case-card__screen .case-card__glint {
    animation: none;
  }
}
