@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css");

:root {
  --ink: #111111;
  --muted: #666a70;
  --line: #e7e8ea;
  --paper: #ffffff;
  --soft: #f1f5fb;
  --dark: #07111f;
  --dark-2: #0c1b31;
  --primary: #176bff;
  --mint: #18d3ff;
  --blue: #66a6ff;
  --shadow: 4px 4px 20px rgba(5, 20, 40, 0.14);
  --radius: 20px;
  --shell: 1140px;
  --wide: 1792px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.28s ease;
}
body.nav-open {
  overflow: hidden;
}
@media (max-width: 860px) {
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(3, 9, 20, 0.42);
    backdrop-filter: blur(4px);
  }
  body.nav-open .site-header {
    color: var(--ink);
  }
  body.nav-open .site-header::before {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(16px);
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}
ul,
ol,
dl {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: #020813;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}
html.show-loader .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.loader-mark {
  display: grid;
  gap: 14px;
  justify-items: center;
  font-size: 1.55rem;
  font-weight: 800;
}
.loader-mark img {
  display: block;
  width: 94px;
  height: 94px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(23, 107, 255, 0.28));
}
.loader-mark span {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  letter-spacing: 0;
}
.loader-mark i {
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}
.loader-mark i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--primary);
  animation: loaderLine 0.9s ease-in-out infinite alternate;
}
@keyframes loaderLine {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(150%);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transform: translateY(0);
  transition:
    color 0.25s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}
.site-header.is-scrolled,
.legal-page .site-header {
  color: var(--ink);
}
.site-header.is-scrolled::before,
.legal-page .site-header::before {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--shell), calc(100% - 48px));
  height: 74px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  font-size: 0;
  line-height: 0;
}
.brand-mark svg,
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  object-fit: contain;
}
.brand-text {
  font-size: 1.05rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.94rem;
  font-weight: 750;
}
.site-nav a {
  opacity: 0.86;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.site-nav a:hover {
  color: var(--primary);
  opacity: 1;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}
.header-cta svg,
.service-card svg,
.to-top svg,
.footer-social svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cta svg {
  width: 18px;
  height: 18px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}
body.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
body.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}
.section-kicker {
  margin: 0 0 38px;
  color: var(--primary);
  font-size: 1.62rem;
  line-height: 1.3;
  font-weight: 700;
}
.center-title {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.center-title h2,
.stack-title h2,
.review-sticky h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3.55rem;
  line-height: 1.16;
  font-weight: 800;
  word-break: keep-all;
}
.center-title > p:not(.section-kicker),
.review-sticky p,
.contact-copy p:not(.section-kicker) {
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
  font-weight: 550;
  word-break: keep-all;
}
.center-title.light {
  color: #fff;
}
.center-title.light > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.62);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary,
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary {
  min-height: 64px;
  padding: 0 30px;
  font-size: 1.08rem;
}

.hero {
  position: relative;
  min-height: 948px;
  overflow: hidden;
  color: #fff;
  background: #030915;
}
.hero-image,
.hero-dim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero-dim {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.42) 45%,
      rgba(0, 0, 0, 0.08)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0) 46%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 948px;
  margin: 0 auto;
  padding: 130px 0 115px;
}
.hero-copy-block {
  max-width: 760px;
}
.hero-kicker {
  margin: 0 0 22px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
}
.hero h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 750;
  white-space: pre-line;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.52);
}
.hero h1 strong {
  display: inline-block;
  padding: 15px 0 45px;
  font-size: 6.6rem;
  line-height: 1;
  font-weight: 800;
}
.hero-copy {
  max-width: 640px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.75;
  font-weight: 550;
  word-break: keep-all;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.58);
}
.hero-index {
  display: grid;
  gap: 14px;
  min-width: 270px;
  padding-bottom: 10px;
}
.hero-index li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-weight: 750;
}
.hero-index span {
  color: var(--primary);
  font-size: 0.82rem;
}

.intro-section {
  padding: 180px 0 135px;
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 35px;
  margin-top: 60px;
}
.service-grid .service-card:nth-child(odd) {
  transform: translateY(112px);
}
.service-card {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 45px 40px;
  border-radius: var(--radius);
  color: #fff;
  background: #000;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.1)
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0));
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}
.service-card:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}
.service-card div {
  position: relative;
  z-index: 2;
  max-width: 360px;
}
.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--primary);
}
.service-card h3 {
  margin: 0 0 20px;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 800;
}
.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  word-break: keep-all;
}

.scroll-solution {
  position: relative;
  overflow: clip;
  padding-bottom: 180px;
  background: #fff;
}
.stack-spacer {
  height: 600vh;
}
.stack-sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 82px 0 70px;
}
.stack-title {
  padding-bottom: 70px;
}
.stack-title .section-kicker {
  margin-bottom: 48px;
  color: #111;
  font-size: 1.6rem;
}
.stack-title h2 em {
  color: var(--primary);
  font-style: normal;
}
.stack-title h2 span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
}
.stack-title h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: -1;
  height: 22px;
  background: var(--primary);
}
.stack-content {
  position: relative;
  overflow: hidden;
}
.wide-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}
.wide-marquee div {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeWide 20s linear infinite;
}
.wide-marquee span {
  color: rgba(17, 17, 17, 0.07);
  font-size: 12rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes marqueeWide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.stack-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(430px, 1.08fr) minmax(
      280px,
      0.82fr
    );
  align-items: center;
  gap: 48px;
}
.place-window,
.desc-window {
  overflow: hidden;
}
.place-window {
  height: 72px;
}
.desc-window {
  height: 74px;
}
.place-window ul,
.desc-window ul {
  will-change: transform;
  transition: transform 0.12s linear;
}
.place-window li {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 72px;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}
.place-window li span {
  color: var(--primary);
  font-size: 1rem;
}
.desc-window li {
  display: flex;
  align-items: center;
  min-height: 74px;
  color: #222;
  font-size: 1.32rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: right;
  word-break: keep-all;
}
.solution-thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumb-stage {
  position: relative;
  width: clamp(340px, 29vw, 430px);
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
}
.stack-card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  will-change: transform, opacity;
}
.stack-card:first-child {
  opacity: 1;
  transform: scale(1);
}
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-section {
  position: relative;
  overflow: hidden;
  padding: 250px 0 190px;
  color: #fff;
  background: var(--dark);
}
.impact-slider {
  overflow: hidden;
  margin-top: 130px;
  padding-bottom: 140px;
}
.impact-track {
  display: flex;
  gap: 45px;
  width: max-content;
  animation: impactMove 36s linear infinite;
}
.impact-track figure {
  position: relative;
  flex: 0 0 525px;
  height: 385px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  transition: transform 0.3s ease;
}
.impact-track figure:hover {
  transform: translateY(-30px);
}
.impact-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.impact-track figcaption {
  position: absolute;
  left: 34px;
  top: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-weight: 800;
}
@keyframes impactMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.result-copy {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.result-copy p {
  margin: 0;
  font-size: 3rem;
  line-height: 1.24;
  font-weight: 750;
  word-break: keep-all;
}
.result-copy strong {
  background: linear-gradient(
    90deg,
    #176bff 0%,
    #18d3ff 34%,
    #65f0c6 58%,
    #176bff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: highlightFlow 3.2s linear infinite;
}
@keyframes highlightFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

.review-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(to bottom, var(--dark) 76%, #fff 76%);
}
.review-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-bottom: 190px;
}
.review-sticky {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  align-items: flex-start;
}
.review-sticky span {
  margin-bottom: 35px;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 750;
}
.review-sticky p {
  margin: 28px 0 56px;
  color: rgba(255, 255, 255, 0.68);
}
.review-list {
  display: grid;
  justify-items: end;
  gap: 45px;
  padding-top: 120px;
  perspective: 1200px;
}
.review-card {
  position: relative;
  width: 389px;
  height: 478px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  will-change: transform, opacity;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 16%,
    rgba(0, 0, 0, 0.04) 52%
  );
}
.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.review-card div {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 34px;
  z-index: 2;
}
.review-card span {
  display: block;
  margin-bottom: 20px;
  font-weight: 750;
}
.review-card p {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.32;
  font-weight: 750;
  word-break: keep-all;
}
.statement-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: rgba(17, 17, 17, 0.07);
}
.statement-marquee div {
  display: flex;
  width: max-content;
  animation: statementMove 24s linear infinite;
}
.statement-marquee span {
  font-size: 10.5rem;
  line-height: 0.95;
  font-weight: 800;
  white-space: nowrap;
}
@keyframes statementMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mosaic-section {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: linear-gradient(to bottom, #fff 30%, var(--soft) 30%);
}
.mosaic-mask {
  margin-top: 92px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 74%, rgba(0, 0, 0, 0) 94%);
  mask-image: linear-gradient(180deg, #000 74%, rgba(0, 0, 0, 0) 94%);
}
.mosaic-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  transform: scale(1.32);
  transform-origin: center top;
  will-change: transform;
}
.mosaic-column {
  display: grid;
  gap: 24px;
  will-change: transform;
}
.mosaic-column:nth-child(1),
.mosaic-column:nth-child(3) {
  transform: translateY(100px);
}
.mosaic-column:nth-child(2) {
  transform: translateY(-50px);
}
.mosaic-column li {
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}
.mosaic-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section {
  padding: 120px 0 160px;
  background: var(--soft);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 80px;
}
.process-list li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 310px;
  padding: 40px 32px;
  border: 1px solid rgba(23, 107, 255, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(12, 24, 48, 0.05);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.process-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 8%,
    var(--primary),
    var(--mint),
    transparent 92%
  );
  background-size: 240% 100%;
  opacity: 0;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 0.24s ease;
  pointer-events: none;
}
.process-list li::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(24, 211, 255, 0.22),
    rgba(24, 211, 255, 0) 68%
  );
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 0.28s ease,
    transform 0.32s ease;
  pointer-events: none;
  z-index: -1;
}
.process-list li:hover {
  transform: translateY(-10px);
  border-color: rgba(23, 107, 255, 0.26);
  box-shadow: 0 28px 75px rgba(17, 53, 116, 0.14);
}
.process-list li:hover::before {
  opacity: 1;
  animation: processBorderFlow 1.5s linear infinite;
}
.process-list li:hover::after {
  opacity: 1;
  transform: scale(1);
}
.process-list li > * {
  position: relative;
  z-index: 1;
}
@keyframes processBorderFlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 240% 50%;
  }
}
.process-list span {
  color: var(--primary);
  font-weight: 800;
}
.process-list h3 {
  margin: 72px 0 18px;
  font-size: 1.52rem;
  font-weight: 800;
}
.process-list p {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
  word-break: keep-all;
}

.kinetic-section {
  position: relative;
  min-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 260px 0 120px;
  color: #fff;
  background: var(--dark);
}
.kinetic-bg,
.kinetic-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.kinetic-bg {
  object-fit: cover;
}
.kinetic-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.3));
}
.kinetic-words {
  position: absolute;
  inset: 80px 0 auto;
  z-index: 1;
  display: grid;
  gap: 80px;
  pointer-events: none;
}
.kinetic-words p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 7.5rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}
.kinetic-words .word-right {
  text-align: right;
  padding-right: 7%;
}
.kinetic-words .word-left {
  padding-left: 7%;
}
.kinetic-words span {
  position: relative;
  top: -22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 80px;
  align-items: end;
}
.contact-copy h2 {
  color: #fff;
}
.contact-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 0;
}
.inline-form,
.quick-order form {
  display: grid;
  gap: 10px;
}
.inline-form {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}
.inline-form label,
.quick-order label {
  display: grid;
  gap: 8px;
}
.inline-form span,
.quick-order label:not(.quick-consent) > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}
.inline-form input,
.quick-order input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}
.inline-form input:focus,
.quick-order input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.18);
}
.inline-form button,
.quick-order button[type="submit"] {
  min-height: 56px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.faq-section {
  padding: 175px 0 190px;
  color: #fff;
  background: var(--dark);
}
.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 84px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--dark-2);
}
.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100px;
  padding: 0 30px;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 1.45rem;
  font-weight: 750;
}
.faq-item button span {
  display: flex;
  align-items: center;
  gap: 24px;
}
.faq-item button span::before {
  content: "Q";
  color: var(--primary);
  font-weight: 800;
}
.faq-item i {
  position: relative;
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  transition: transform 0.35s ease;
}
.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 16px;
  height: 3px;
  background: #fff;
}
.faq-item i::after {
  transform: rotate(90deg);
}
.faq-item.is-open i {
  transform: rotate(90deg);
}
.faq-item.is-open i::before {
  opacity: 0;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 30px 0 77px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.05rem;
  line-height: 1.78;
  font-weight: 550;
  word-break: keep-all;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer p {
  padding-bottom: 36px;
}

.quick-order {
  position: fixed;
  right: 24px;
  bottom: 70px;
  z-index: 90;
  width: 320px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(3, 9, 20, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.quick-order.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(100% + 48px));
}
.quick-order-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 42px 6px 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}
.quick-order-title strong {
  font-weight: 800;
}
.quick-order-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(23, 107, 255, 0.1);
  color: var(--primary);
}
.quick-order-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.quick-order-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(3, 9, 20, 0.06);
  color: rgba(3, 9, 20, 0.62);
  line-height: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.quick-order-close:hover {
  background: rgba(23, 107, 255, 0.1);
  color: var(--primary);
  transform: rotate(90deg);
}
.quick-order-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.quick-order label:not(.quick-consent) > span {
  color: rgba(0, 0, 0, 0.58);
}
.quick-order input {
  border-color: rgba(3, 9, 20, 0.12);
  background: #fff;
}
.quick-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin-top: 2px;
}
.quick-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--primary);
}
.quick-consent span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
  word-break: keep-all;
}
.quick-consent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.modal-open {
  overflow: hidden;
}
.lead-modal[hidden] {
  display: none;
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 9, 20, 0.68);
  backdrop-filter: blur(10px);
}
.lead-modal__panel {
  position: relative;
  width: min(100%, 430px);
  padding: 42px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-modal.is-open .lead-modal__panel {
  transform: translateY(0) scale(1);
}
.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(3, 9, 20, 0.06);
  color: var(--ink);
}
.lead-modal__close svg,
.lead-modal__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lead-modal__close svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}
.lead-modal__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--mint));
  color: #fff;
  box-shadow: 0 18px 45px rgba(23, 107, 255, 0.3);
}
.lead-modal__icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.8;
}
.lead-modal__panel p {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0;
}
.lead-modal__panel h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.3;
  font-weight: 800;
  word-break: keep-all;
}
.lead-modal__panel > span {
  display: block;
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.58);
  line-height: 1.6;
  word-break: keep-all;
}
.lead-modal__confirm {
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 750;
}
.to-top {
  position: fixed;
  right: 24px;
  bottom: 10px;
  z-index: 92;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--primary);
  color: #fff;
}
.to-top svg {
  width: 23px;
  height: 23px;
}

.site-footer {
  padding: 70px 0 30px;
  color: #fff;
  background: #030914;
}
.footer-inner,
.footer-bottom {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1fr);
  gap: 44px;
}
.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}
.footer-map {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, max-content);
  align-content: flex-start;
  justify-content: end;
  gap: 12px 38px;
}
.footer-map a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}
.footer-map a:hover,
.footer-bottom a:hover {
  color: var(--primary);
}
.footer-social {
  display: flex;
  margin-top: 24px;
  gap: 8px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.footer-social svg {
  width: 22px;
  height: 22px;
}
.footer-social a:first-child svg,
.footer-social a:nth-child(3) svg,
.footer-social a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  line-height: 1.6;
  word-break: keep-all;
}
.footer-bottom small {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.legal-main {
  padding: 150px 0 100px;
  background: var(--soft);
}
.legal-wrap {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.legal-wrap h1 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.2;
}
.legal-wrap .lead {
  margin: 20px 0 36px;
  color: var(--muted);
  line-height: 1.7;
}
.legal-wrap section + section {
  margin-top: 34px;
}
.legal-wrap h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}
.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  line-height: 1.8;
}
.legal-wrap ul {
  margin: 0;
  padding-left: 20px;
}
.legal-wrap li {
  list-style: disc;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal.in-view,
.is-ready .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.hero .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.hero .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1280px) {
  .center-title h2,
  .stack-title h2,
  .review-sticky h2,
  .contact-copy h2 {
    font-size: 3rem;
  }
  .hero h1 strong {
    font-size: 5.5rem;
  }
  .stack-grid {
    gap: 34px;
    grid-template-columns: minmax(160px, 0.68fr) minmax(380px, 1.04fr) minmax(
        240px,
        0.78fr
      );
  }
  .place-window li {
    font-size: 2.25rem;
  }
  .desc-window li {
    font-size: 1.08rem;
  }
  .statement-marquee span {
    font-size: 8rem;
  }
  .kinetic-words p {
    font-size: 5.9rem;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .review-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    display: grid;
    align-content: end;
    min-height: 860px;
  }
  .hero {
    min-height: 860px;
  }
  .hero-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }
  .stack-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .solution-thumb {
    justify-content: center;
  }
  .thumb-stage {
    width: min(100%, 390px);
  }
  .desc-window li {
    text-align: left;
  }
  .review-sticky {
    position: relative;
    min-height: 0;
    padding-top: 130px;
  }
  .review-layout {
    display: grid;
    gap: 50px;
  }
  .review-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
    padding-top: 0;
  }
  .review-card {
    width: 100%;
    height: 420px;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-map {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    width: min(100% - 32px, var(--shell));
    height: 66px;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 105;
    display: grid;
    align-content: start;
    gap: 8px;
    width: min(78vw, 320px);
    height: 100dvh;
    padding: 92px 24px 28px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: -30px 0 90px rgba(0, 0, 0, 0.18);
    transform: translateX(105%);
    opacity: 1;
    visibility: hidden;
    transition:
      visibility 0.34s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
  }
  .site-nav a {
    padding: 14px 4px;
    border-bottom: 0;
    border-radius: 0;
    color: rgba(3, 9, 20, 0.82);
    font-size: 1rem;
    font-weight: 700;
  }
  .site-nav a:hover {
    color: var(--primary);
    background: transparent;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    position: relative;
    z-index: 120;
    display: inline-block;
  }
  .section-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, var(--shell));
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom small {
    text-align: left;
    white-space: normal;
  }
  .section-kicker {
    margin-bottom: 24px;
    font-size: 1.1rem;
  }
  .center-title h2,
  .stack-title h2,
  .review-sticky h2,
  .contact-copy h2 {
    font-size: 2.35rem;
    line-height: 1.18;
  }
  .center-title > p:not(.section-kicker),
  .review-sticky p,
  .contact-copy p:not(.section-kicker) {
    font-size: 1.02rem;
    margin-top: 22px;
  }
  .hero,
  .hero-inner {
    min-height: 820px;
  }
  .hero-inner {
    padding: 112px 0 54px;
  }
  .hero-dim {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.22) 55%);
  }
  .hero-kicker {
    font-size: 1.08rem;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
  .hero h1 strong {
    padding-bottom: 30px;
    font-size: 4rem;
  }
  .hero-copy {
    font-size: 1.03rem;
  }
  .hero-index {
    grid-template-columns: 1fr;
  }
  .intro-section {
    padding: 110px 0 90px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 46px;
  }
  .service-grid .service-card:nth-child(odd) {
    transform: none;
  }
  .service-card {
    min-height: 300px;
    padding: 32px 26px;
  }
  .scroll-solution {
    padding: 100px 0;
  }
  .stack-spacer {
    height: auto;
  }
  .stack-sticky {
    position: relative;
    min-height: 0;
    padding: 0;
  }
  .stack-title {
    padding-bottom: 40px;
  }
  .wide-marquee span {
    font-size: 4.5rem;
  }
  .place-window,
  .desc-window {
    height: auto;
    overflow: visible;
  }
  .place-window ul,
  .desc-window ul {
    display: grid;
    gap: 10px;
    transform: none !important;
  }
  .place-window li {
    height: auto;
    font-size: 1.48rem;
  }
  .desc-window li {
    min-height: 0;
    padding: 12px 0;
    font-size: 0.98rem;
    border-bottom: 1px solid var(--line);
  }
  .thumb-stage {
    display: grid;
    height: auto;
    min-height: 0;
    max-height: none;
    gap: 12px;
  }
  .stack-card {
    position: relative;
    inset: auto;
    height: 280px;
    opacity: 1 !important;
    transform: none !important;
  }
  .impact-section {
    padding: 120px 0 100px;
  }
  .impact-slider {
    margin-top: 60px;
    padding-bottom: 80px;
  }
  .impact-track {
    gap: 18px;
    animation-duration: 28s;
  }
  .impact-track figure {
    flex-basis: 320px;
    height: 240px;
  }
  .result-copy p {
    font-size: 2rem;
  }
  .review-section {
    background: var(--dark);
  }
  .review-layout {
    padding-bottom: 110px;
  }
  .review-list {
    grid-template-columns: 1fr;
  }
  .review-card {
    height: 360px;
  }
  .statement-marquee span {
    color: #fff;
    font-size: 4.6rem;
  }
  .mosaic-section {
    padding: 110px 0 92px;
  }
  .mosaic-board {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 560px);
    transform: none !important;
  }
  .mosaic-column {
    transform: none !important;
  }
  .mosaic-column li {
    height: 320px;
  }
  .process-section {
    padding: 90px 0;
  }
  .process-list {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }
  .process-list li {
    min-height: 230px;
  }
  .process-list h3 {
    margin-top: 48px;
  }
  .kinetic-section {
    min-height: 760px;
    padding: 150px 0 86px;
  }
  .kinetic-words {
    top: 120px;
    gap: 80px;
  }
  .kinetic-words p {
    font-size: 3.6rem;
  }
  .contact-shell {
    display: grid;
    gap: 36px;
  }
  .inline-form {
    padding: 18px;
  }
  .faq-section {
    padding: 100px 0 120px;
  }
  .faq-list {
    margin-top: 46px;
  }
  .faq-item button {
    min-height: 78px;
    padding: 0 20px;
    font-size: 1.04rem;
  }
  .faq-answer p {
    padding-left: 50px;
    font-size: 0.95rem;
  }
  .legal-main {
    padding-top: 110px;
  }
  .legal-wrap {
    width: min(100% - 32px, 920px);
    padding: 30px 22px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 104px;
  }
  .brand-text {
    font-size: 1rem;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .btn {
    width: 100%;
  }
  .hero h1 strong {
    font-size: 3.2rem;
  }
  .hero,
  .hero-inner {
    min-height: 760px;
  }
  .service-card {
    min-height: 270px;
  }
  .place-window li {
    font-size: 1.25rem;
  }
  .thumb-stage {
    width: min(100%, 340px);
  }
  .result-copy p {
    font-size: 1.65rem;
  }
  .review-card {
    height: 330px;
  }
  .kinetic-words p {
    font-size: 2.65rem;
  }
  .kinetic-words span {
    top: -10px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.76rem;
  }
  .inline-form {
    grid-template-columns: 1fr;
  }
  .quick-order {
    left: 10px;
    right: 10px;
    bottom: 8px;
    width: auto;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom)) 8px;
    border-radius: 16px;
  }
  .quick-order.is-hidden {
    transform: translateY(calc(100% + 24px));
  }
  .quick-order-close {
    top: -11px;
    right: -11px;
    width: 22px;
    height: 22px;
    background: rgba(3, 9, 20, 0.06);
    box-shadow: none;
  }
  .quick-order-close svg {
    width: 14px;
    height: 14px;
  }
  .quick-order form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 68px;
    align-items: end;
    gap: 5px 6px;
  }
  .quick-order-title,
  .quick-order label:not(.quick-consent) > span {
    display: none;
  }
  .quick-order label:not(.quick-consent) {
    display: block;
  }
  .quick-consent {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0;
    gap: 5px;
  }
  .quick-consent input {
    width: 13px;
    height: 13px;
    min-height: 13px;
    margin-top: 1px;
  }
  .quick-consent span {
    display: inline;
    font-size: 0.62rem;
    line-height: 1.25;
  }
  .quick-order input {
    min-height: 40px;
    padding: 0 9px;
    border-radius: 9px;
    font-size: 0.88rem;
  }
  .quick-order .quick-consent input {
    width: 13px;
    height: 13px;
    min-height: 13px;
    padding: 0;
    border-radius: 3px;
  }
  .quick-order button[type="submit"] {
    grid-column: 3;
    grid-row: 1;
    min-height: 40px;
    padding: 0;
    border-radius: 9px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .to-top {
    display: none;
  }
  body.quick-closed .to-top {
    right: 14px;
    bottom: 14px;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .footer-map {
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@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;
  }
}
