@font-face {
  font-family: "NexenTire";
  src: url("/assets/fonts/NEXEN_TIRE_Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Wanted Sans Variable";
  src: url("/assets/fonts/WantedSansVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 1000;
  font-display: swap;
}

@font-face {
  font-family: "NexenTire";
  src: url("/assets/fonts/NEXEN_TIRE_Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #0056e0;
  --red-deep: #003ea5;
  --black: #000;
  --text: #111;
  --muted: #666;
  --line: #e7e8eb;
  --soft: #f6f8fb;
  --header-height: 82px;
  --content-width: 1200px;
  --wide-width: 1365px;
  --media-width: 1680px;
  --page-gutter: 30px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --motion-fast: 180ms;
  --motion-base: 380ms;
  --motion-reveal: 720ms;
  --motion-hover: 360ms;
  --motion-ease-standard: cubic-bezier(.22, .61, .36, 1);
  --motion-ease-emphasized: cubic-bezier(.16, 1, .3, 1);
  --motion-ease-hover: cubic-bezier(.4, 0, .2, 1);
  --type-hero: clamp(44px, 3.9vw, 56px);
  --type-section-title: clamp(40px, 3vw, 43px);
  --type-section-title-large: clamp(42px, 3.25vw, 47px);
  --type-card-title: 27px;
  --type-body: 16px;
  --type-body-small: 15px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Wanted Sans Variable", "Malgun Gothic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.02em;
  word-break: keep-all;
  overflow-x: hidden;
}

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

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

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

a,
button {
  touch-action: manipulation;
}

button {
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

:where(.hero, .customer-hub, .footer-inquiry, .footer) :where(a, button):focus-visible {
  outline-color: #fff;
}

.site-header:not(.is-scrolled):not(.menu-open):not(.lnb-open) :where(a, button):focus-visible {
  outline-color: #fff;
}

h1,
h2,
h3,
h4,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
.primary-button,
.stat-card strong,
.inquiry-links strong {
  font-family: "NexenTire", "Malgun Gothic", sans-serif;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -60px;
  left: 20px;
  padding: 12px 18px;
  color: #fff;
  background: #000;
  transition: top .2s;
}

.skip-link:focus {
  top: 10px;
}

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 30px;
  display: grid;
  grid-template-columns: 215px minmax(660px, 1fr) 230px;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: transparent;
  transition: top .28s ease, color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled,
.site-header.menu-open,
.site-header.lnb-open {
  color: #111;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

@media (hover: hover) and (pointer: fine) {
  .site-header:hover {
    color: #111;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  }
}

.brand {
  position: relative;
  z-index: 1002;
  width: 205px;
}

.brand img {
  width: 100%;
  transition: filter .25s ease;
}

.brand-logo--mobile {
  display: none;
}

.site-header:not(.is-scrolled):not(.menu-open):not(.lnb-open) .brand img {
  filter: brightness(0) invert(1);
}

@media (hover: hover) and (pointer: fine) {
  .site-header:not(.is-scrolled):not(.menu-open):not(.lnb-open):hover .brand img {
    filter: none;
  }
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 42px);
  white-space: nowrap;
}

.desktop-nav > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  transition: color var(--motion-hover) var(--motion-ease-hover);
}

.desktop-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-hover) var(--motion-ease-hover);
}

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

.desktop-lnb {
  position: absolute;
  z-index: 1001;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  color: #111;
  border-top: 1px solid #e9edf3;
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 22px 42px rgba(0, 35, 90, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s var(--ease);
}

.site-header.lnb-open .desktop-lnb {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.desktop-lnb__inner {
  width: min(1120px, calc(100% - 60px));
  margin: 0 auto;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
}

.desktop-lnb__group {
  min-width: 0;
}

.desktop-lnb__title {
  padding-bottom: 6px;
  display: block;
  color: #071e44;
  border-bottom: none;
  font-size: 15px;
  font-weight: 850;
  transition: color var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover);
}

.desktop-lnb__links {
  padding-top: 6px;
  display: grid;
  gap: 9px;
}

.desktop-lnb__links a {
  color: #5f6876;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  transition: color var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.desktop-lnb__links a:hover,
.desktop-lnb__links a:focus-visible,
.desktop-lnb__title:hover,
.desktop-lnb__title:focus-visible {
  color: var(--red);
}

.desktop-lnb__links a:hover,
.desktop-lnb__links a:focus-visible {
  transform: translateX(3px);
}

.desktop-nav .nav-strength span {
  position: absolute;
  top: 55px;
  left: 50%;
  padding: 2px 8px 3px;
  color: #fff;
  border-radius: 3px;
  background: #000;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  transform: translateX(-50%);
}

.header-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
}

.header-utility a {
  min-width: 120px;
  padding: 11px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 8px 20px rgba(0, 86, 224, .2);
  font-size: 13px;
  line-height: 1;
  transition: background-color var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover), box-shadow var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.header-utility a:hover,
.header-utility a:focus-visible {
  color: #fff;
  border-color: var(--red-deep);
  background: var(--red-deep);
  box-shadow: 0 10px 24px rgba(0, 62, 165, .28);
  transform: translateY(-2px);
}

.header-utility a:focus-visible {
  outline: 3px solid rgba(0, 86, 224, .25);
  outline-offset: 3px;
}

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

.hero {
  --hero-transition-duration: 900ms;
  --hero-zoom-duration: 7400ms;
  position: relative;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  color: #fff;
  background: #1c1c1c;
}

.hero__slides,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slides {
  z-index: 0;
}

.hero__slide {
  z-index: 0;
  opacity: 0;
  background-image: var(--hero-image-desktop);
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: opacity var(--hero-transition-duration) ease;
}

.hero__slide.is-active {
  z-index: 2;
  opacity: 1;
}

.hero__slide.is-leaving {
  z-index: 1;
  opacity: 0;
}

.hero__slide.is-active,
.hero__slide.is-leaving {
  animation: hero-continuous-zoom var(--hero-zoom-duration) linear both;
}

.hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .26) 0%, rgba(0, 0, 0, .08) 46%, rgba(0, 0, 0, .04) 100%);
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 54%;
  left: 30px;
  width: calc(100% - 60px);
  max-width: 760px;
  min-height: 340px;
  transform: translateY(calc(-50% + 22px));
}

.hero__message {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .32s ease,
    visibility 0s linear .32s;
}

.hero__message.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.hero__message > .hero__eyebrow,
.hero__message > h1,
.hero__message > .primary-button {
  opacity: 0;
  translate: 0 26px;
}

.hero__message.is-active > .hero__eyebrow,
.hero__message.is-active > h1,
.hero__message.is-active > .primary-button {
  animation: hero-text-rise 1.2s cubic-bezier(.22, 1, .36, 1) both;
}

.hero__message.is-active > .hero__eyebrow {
  animation-delay: .14s;
}

.hero__message.is-active > h1 {
  animation-delay: .62s;
}

.hero__message.is-active > .primary-button {
  animation-delay: 1.1s;
}

.hero__eyebrow {
  margin-bottom: 28px;
  font-family: "NexenTire", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}

.hero h1 {
  font-size: var(--type-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.primary-button {
  width: 260px;
  height: 60px;
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 12px;
  background: var(--red);
  box-shadow: 0 5px 10px rgba(32, 32, 32, 0.18);
  font-size: 18px;
  font-weight: 700;
  transition: background var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover), box-shadow var(--motion-hover) var(--motion-ease-hover);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-deep);
  box-shadow: 0 15px 34px rgba(0, 62, 165, .28);
  transform: translateY(-2px);
}

.primary-button:active {
  transform: translateY(0) scale(.98);
}

.hero__controls {
  position: absolute;
  z-index: 3;
  bottom: 92px;
  left: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  transition: color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: #07182e;
  background: rgba(255, 255, 255, .9);
  transform: scale(1.08);
}

.hero-arrow svg,
.carousel-arrow svg,
.outline-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arrow svg {
  width: 28px;
  height: 28px;
}

.hero-dots {
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-dots button {
  position: relative;
  width: 44px;
  height: 44px;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transform: translate(-50%, -50%);
  transition: width .2s, background .2s;
}

.hero-dots button.is-active::before {
  width: 11px;
  height: 11px;
  background: #fff;
}

.hero-dots::after {
  content: "";
  order: -1;
  width: 0;
}

.section {
  position: relative;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  position: relative;
  z-index: 2;
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-heading h2 {
  font-size: var(--type-section-title);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.03em;
}

.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}

.section-heading p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #555;
  font-size: var(--type-body);
  line-height: 1.65;
}

.section-kicker {
  margin-bottom: 18px;
  display: block;
  color: var(--red);
  font-family: "NexenTire", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.company-intro {
  padding: 132px 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 112, 239, .1), transparent 30%),
    linear-gradient(135deg, #f4f8ff 0%, #fff 54%, #f3f7fc 100%);
}

.company-intro__inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 86px;
}

.company-intro__copy h2 {
  font-size: var(--type-section-title-large);
  line-height: 1.28;
  letter-spacing: -.045em;
}

.company-intro__copy h2 em,
.customer-hub__heading h2 em {
  color: var(--red);
  font-style: normal;
}

.company-intro__copy p {
  margin-top: 30px;
  color: #5b6472;
  font-size: var(--type-body);
  line-height: 1.85;
}

.company-intro__links {
  overflow: hidden;
  border: 1px solid rgba(15, 48, 85, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 24px 60px rgba(51, 76, 108, .1);
  backdrop-filter: blur(10px);
}

.company-intro__links a {
  position: relative;
  min-height: 132px;
  padding: 31px 76px 28px 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #e7edf5;
  transition: color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover);
}

.company-intro__links a:last-child {
  border-bottom: 0;
}

.company-intro__links a > span {
  position: absolute;
  top: 36px;
  left: 32px;
  color: #85a3c7;
  font-family: "NexenTire", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.company-intro__links strong {
  font-size: 22px;
  letter-spacing: -.03em;
}

.company-intro__links small {
  margin-top: 9px;
  color: #6f7884;
  font-size: 14px;
}

.company-intro__links i {
  position: absolute;
  top: 50%;
  right: 34px;
  color: var(--red);
  font-size: 22px;
  font-style: normal;
  transform: translateY(-50%);
  transition: transform var(--motion-hover) var(--motion-ease-hover);
}

.company-intro__links a:hover,
.company-intro__links a:focus-visible {
  color: var(--red);
  background: #f2f7ff;
}

.company-intro__links a:hover i,
.company-intro__links a:focus-visible i {
  transform: translate(5px, -50%);
}

.customer-hub {
  padding: 138px 30px;
  color: #fff;
  background:
    radial-gradient(circle at 6% 0, rgba(32, 131, 255, .3), transparent 34%),
    linear-gradient(135deg, #07182e 0%, #102a49 62%, #0a1b31 100%);
}

.customer-hub__inner {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  align-items: center;
  gap: 80px;
}

.customer-hub .section-kicker {
  color: #78b6ff;
}

.customer-hub__heading h2 {
  font-size: var(--type-section-title-large);
  line-height: 1.3;
  letter-spacing: -.04em;
}

.customer-hub__heading h2 em {
  color: #76b6ff;
}

.customer-hub__heading p {
  margin-top: 28px;
  color: rgba(255, 255, 255, .68);
  font-size: var(--type-body-small);
  line-height: 1.8;
}

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

.customer-hub__grid a {
  position: relative;
  min-height: 190px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  transition: border-color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.customer-hub__grid a:hover,
.customer-hub__grid a:focus-visible {
  border-color: rgba(123, 185, 255, .7);
  background: rgba(40, 127, 231, .17);
  transform: translateY(-3px);
}

.customer-hub__grid a > span {
  position: absolute;
  top: 26px;
  left: 28px;
  color: #75b7ff;
  font-family: "NexenTire", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.customer-hub__grid strong {
  font-size: 23px;
  letter-spacing: -.03em;
}

.customer-hub__grid small {
  margin-top: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.customer-hub__icon {
  position: absolute;
  top: 24px;
  right: 27px;
  width: 22px;
  height: 22px;
  color: #8fc4ff;
  transition: color var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.customer-hub__grid a:hover .customer-hub__icon,
.customer-hub__grid a:focus-visible .customer-hub__icon {
  color: #fff;
  transform: scale(1.08);
}

.customer-hub__grid .customer-hub__estimate {
  border-color: rgba(112, 181, 255, .42);
  background: linear-gradient(135deg, rgba(0, 107, 230, .7), rgba(20, 93, 181, .5));
}

.solution {
  min-height: 0;
  padding: 111px 0 110px;
  overflow: hidden;
  background: #fff;
}

.solution-viewport {
  width: min(1680px, calc(100% - 80px));
  margin: 35px auto 0;
  padding: 30px 0 40px;
  overflow: visible;
}

.business-list::-webkit-scrollbar {
  display: none;
}

.solution-track {
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solution-card {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .07);
  transform: translateZ(0);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.solution-card:hover,
.solution-card:focus-visible {
  box-shadow: 0 8px 18px rgba(0, 35, 87, .14);
  transform: translate3d(0, -6px, 0) scale(1.008);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 12%, rgba(0, 0, 0, .12) 38%, rgba(0, 0, 0, .82) 100%);
}

.solution-card__copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 28px 28px;
  text-align: center;
}

.solution-card__category {
  margin-bottom: 13px;
  display: block;
  color: rgba(255, 255, 255, .72);
  font-family: "NexenTire", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.solution-card h3 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.solution-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.55;
}

.rental {
  min-height: 1073px;
  padding: 74px 0 80px;
  overflow: hidden;
  background: #fff;
}

.rental-carousel {
  width: min(var(--content-width), calc(100% - 60px));
  margin: 70px auto 0;
  overflow: visible;
}

.rental-track {
  display: flex;
  overflow: hidden;
  border-radius: 24px;
}

.rental-card {
  position: relative;
  width: 100%;
  height: 580px;
  flex: 0 0 100%;
  overflow: hidden;
  color: #fff;
  border-radius: 24px;
  background-image: var(--desktop);
  background-position: center;
  background-size: cover;
  transform: translateX(calc(var(--rental-index, 0) * -100%));
  transition: transform .6s var(--ease);
}

.rental-card::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .2), transparent);
}

.rental-card__copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 92px;
  width: 400px;
  transform: translateY(-50%);
}

.rental-card h3 {
  font-size: 38px;
  line-height: 1.25;
}

.rental-card p {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.rental-card p span {
  position: relative;
  padding-left: 21px;
  display: block;
}

.rental-card p span::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67a6ff;
}

.carousel-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: #fff;
  background: #111;
  transform: scale(1.07);
}

.carousel-arrow:active {
  transform: scale(.96);
}

.carousel-arrow svg {
  width: 26px;
}

.rental-dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.rental-dots button {
  position: relative;
  width: 44px;
  height: 44px;
}

.rental-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5d5d5;
  transform: translate(-50%, -50%);
  transition: width var(--motion-fast) ease, height var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.rental-dots button.is-active::before {
  width: 11px;
  height: 11px;
  background: #000;
}

.soft-background {
  background:
    radial-gradient(circle at 50% 7%, rgba(0, 86, 224, .11), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #f7f8fb 47%, #f2f7ff 100%);
}

.reason {
  min-height: 1072px;
  padding: 148px 30px 100px;
}

.reason .stats-sticky {
  margin-top: 101px;
}

.business {
  min-height: 0;
  padding: 148px 30px 110px;
}

.business-list {
  width: min(1240px, 100%);
  margin: 69px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.business-card {
  min-width: 0;
  padding: 16px 16px 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .36));
  text-align: center;
  box-shadow: 0 12px 32px rgba(86, 101, 128, .045);
  transition:
    transform var(--motion-base) var(--motion-ease-emphasized),
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}

.business-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform .55s var(--motion-ease-emphasized);
}

.business-card:focus-within {
  border-color: rgba(0, 86, 224, .18);
  box-shadow: 0 22px 48px rgba(0, 45, 122, .11);
  transform: translateY(-6px);
}

.business-card:focus-within img {
  transform: scale(1.025);
}

@media (hover: hover) and (pointer: fine) {
  .business-card:hover {
    border-color: rgba(0, 86, 224, .18);
    box-shadow: 0 22px 48px rgba(0, 45, 122, .11);
    transform: translateY(-6px);
  }

  .business-card:hover img {
    transform: scale(1.025);
  }
}

.business-card h3 {
  margin-top: 28px;
  font-size: var(--type-card-title);
  line-height: 1.3;
}

.business-card p {
  min-height: 82px;
  margin: 17px 26px 0;
  color: #777;
  font-size: 15px;
  line-height: 1.75;
}

.business-card a {
  height: 64px;
  margin: 26px -16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ebedf0;
  background: rgba(255, 255, 255, .72);
  font-weight: 700;
  transition: color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover);
}

.business-card a:hover,
.business-card a:focus-visible {
  color: #fff;
  background: #000;
}

.reference {
  min-height: 0;
  padding: 148px 30px 90px;
  background: #fff;
  overflow: hidden;
}

.reference-wrap {
  width: min(var(--content-width), 100%);
  margin: 49px auto 0;
}

.reference-ticker {
  position: relative;
  width: 100%;
  padding: 16px 0 28px;
  overflow: hidden;
  scrollbar-width: none;
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.reference-ticker::-webkit-scrollbar {
  display: none;
}

.reference-ticker__track {
  display: flex;
  width: max-content;
  animation: reference-ticker-scroll var(--ticker-duration, 72s) linear infinite;
  animation-play-state: paused;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reference-ticker.is-in-view:not(.is-page-hidden) .reference-ticker__track {
  animation-play-state: running;
  will-change: transform;
}

.reference-ticker.is-in-view.is-hover-paused .reference-ticker__track,
.reference-ticker.is-in-view:hover .reference-ticker__track,
.reference-ticker.is-in-view:focus-within .reference-ticker__track {
  animation-play-state: paused;
  will-change: auto;
}

.reference-ticker__group {
  display: flex;
  flex: none;
  gap: 24px;
  padding-right: 24px;
}

.reference-card {
  flex: 0 0 clamp(280px, 28vw, 342px);
  min-width: 0;
}

.reference-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 42, 62, .035);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.reference-card a:hover,
.reference-card a:focus-visible {
  border-color: rgba(0, 62, 165, .35);
  box-shadow: 0 16px 36px rgba(12, 42, 62, .08);
  transform: translateY(-6px);
}

.reference-card .gallery-board__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  background: #e8f3ef;
  overflow: hidden;
}

.reference-card .gallery-board__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.reference-card a:hover .gallery-board__thumb img,
.reference-card a:focus-visible .gallery-board__thumb img {
  transform: scale(1.05);
}

.reference-card .gallery-board__content {
  min-height: 170px;
  padding: 22px 24px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.reference-card .gallery-board__meta-line {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: .82rem;
  font-weight: 800;
}

.reference-card .gallery-board__meta-line em {
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0056e0;
  border-radius: 4px;
  background: #edf3ff;
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
}

.reference-card .gallery-board__meta-line time,
.reference-card .gallery-board__meta-line span {
  color: #64748b;
  font-size: .82rem;
  font-weight: 700;
}

.reference-card .gallery-board__meta-line time + span::before {
  width: 1px;
  height: 9px;
  margin-right: 8px;
  display: inline-block;
  background: #cbd5e1;
  content: "";
  vertical-align: middle;
}

.reference-card .gallery-board__content strong {
  display: -webkit-box;
  color: #111827;
  overflow: hidden;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.42;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reference-card .gallery-board__excerpt {
  margin-top: 14px;
  display: -webkit-box;
  color: #52616f;
  overflow: hidden;
  font-size: .88rem;
  font-weight: 580;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.reference-card .gallery-board__placeholder,
.reference-empty {
  display: grid;
  place-items: center;
  color: #64748b;
}

.reference-card .gallery-board__placeholder {
  height: 100%;
}

.reference-empty {
  width: min(520px, calc(100vw - 40px));
  min-height: 320px;
  border: 1px dashed #dbe7fa;
  border-radius: 12px;
  background: #f8fbfa;
}

@keyframes reference-ticker-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes hero-continuous-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.065);
  }
}

@keyframes hero-text-rise {
  from {
    opacity: 0;
    translate: 0 26px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

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

  .reference-ticker__track {
    animation-duration: calc(var(--ticker-duration, 72s) * 1.15);
  }

  .hero__message,
  .mobile-menu,
  .mobile-lnb:not([hidden]),
  .motion-ready [data-reveal],
  .motion-ready .site-header__inner {
    animation: none;
    transition-duration: .22s;
    transition-delay: 0s;
  }

  .hero__message > .hero__eyebrow,
  .hero__message > h1,
  .hero__message > .primary-button {
    animation: none;
    opacity: 1;
    translate: 0 0;
  }
}

.outline-button {
  width: 200px;
  height: 52px;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: color var(--motion-hover) var(--motion-ease-hover), background var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover);
}

.outline-button svg {
  width: 18px;
}

.outline-button:hover,
.outline-button:focus-visible {
  color: #fff;
  border-color: #000;
  background: #000;
}

.stats-sticky {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.stat-card__visual {
  min-width: 0;
  min-height: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eef5;
}

.stat-card__visual--wide {
  aspect-ratio: 3 / 2;
}

.stat-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.stat-card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: box-shadow var(--motion-base) ease;
}

@media (min-width: 1101px) {
  .home-page .site-header {
    padding-inline: max(var(--page-gutter), calc((100vw - var(--wide-width)) / 2));
  }

  .home-page .hero__content {
    left: max(var(--page-gutter), calc((100vw - var(--wide-width)) / 2));
    width: min(760px, calc(100% - (max(var(--page-gutter), calc((100vw - var(--wide-width)) / 2)) * 2)));
  }

  .home-page .hero__controls {
    left: max(42px, calc((100vw - var(--wide-width)) / 2));
  }

  .home-page .customer-hub__inner {
    grid-template-columns: .72fr 1.28fr;
    gap: 64px;
  }

  .home-page .company-intro__inner {
    gap: 80px;
  }

  .home-page .customer-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .customer-hub__grid a {
    min-height: 210px;
    padding: 28px 24px;
  }

  .home-page .solution-viewport {
    width: min(var(--media-width), calc(100% - 80px));
    margin-top: 40px;
    padding-block: 24px 32px;
  }

  .home-page .rental,
  .home-page .business {
    min-height: 0;
  }

  .home-page .rental {
    padding-bottom: 64px;
  }

  .home-page .rental-carousel,
  .home-page .business-list {
    margin-top: 64px;
  }

  .home-page .business {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .home-page .reason {
    padding-top: 72px;
    padding-bottom: 112px;
  }

  .home-page .reason .stats-sticky {
    margin-top: 72px;
  }

  .home-page .reference {
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .home-page .reference-wrap {
    margin-top: 48px;
  }

  .home-page .customer-hub {
    padding-block: 132px;
  }

  .home-page .stats-sticky {
    width: min(var(--content-width), 100%);
  }

  .stat-card {
    height: 390px;
  }

  .stat-card__visual,
  .stat-card__visual--wide {
    aspect-ratio: auto;
  }

  .stat-card__visual img {
    object-fit: cover;
    object-position: center top;
  }

  .stat-card__visual--wide img {
    object-position: center;
  }
}

.stat-card__content {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 54px 41px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-card__content::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleY(.25);
  transform-origin: center;
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) var(--motion-ease-emphasized);
}

.stat-card.is-process-current {
  box-shadow: 0 30px 72px rgba(0, 45, 122, .16);
}

.stat-card.is-process-current .stat-card__content::before {
  opacity: .5;
  transform: scaleY(1);
}

.stat-card span {
  color: var(--red);
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.stat-card strong {
  margin-top: 18.5px;
  display: block;
  font-size: 44.5px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.stat-card strong small {
  font-size: 25.97px;
}

.stat-card h3 {
  margin-top: 27.8px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.stat-card--traffic {
  color: #fff;
  background: linear-gradient(145deg, #07101f, #152e52);
}

.stat-card--sites {
  color: #fff;
  background: linear-gradient(145deg, #0056e0, #003486);
}

.stat-card--sites span,
.stat-card--growth span {
  color: inherit;
}

.stat-card--growth {
  color: #111;
  background: linear-gradient(145deg, #fff, #eef5ff);
}

.footer {
  position: relative;
  color: #fff;
  background: #000;
}

.footer-inquiry {
  width: 100%;
  height: 560px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(0, 15, 40, .9), rgba(0, 34, 84, .58)),
    #151515 url("/assets/images/callback-cta-customer-consulting-fullwidth-v2.webp") center / cover no-repeat;
}

.page-service-detail .footer-inquiry {
  padding: 0 !important;
}

.footer-inquiry__inner {
  width: min(var(--wide-width), calc(100% - 60px));
  height: 100%;
  margin: 0 auto;
  padding: 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-inquiry__copy {
  width: min(540px, 100%);
}

.footer-inquiry h2 {
  font-size: var(--type-section-title-large);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.04em;
}

.footer-inquiry h2 em {
  color: var(--red);
  font-style: normal;
}

.footer-inquiry__copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.75;
}

.inquiry-links {
  width: min(440px, 100%);
  margin-top: 0;
  display: grid;
  gap: 8px;
}

.inquiry-links a {
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(0, 20, 55, .56);
  backdrop-filter: blur(8px);
  transition: transform var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover), background-color var(--motion-hover) var(--motion-ease-hover);
}

.inquiry-links a:hover,
.inquiry-links a:focus-visible {
  border-color: rgba(255, 255, 255, .7);
  transform: translateX(-4px);
}

.inquiry-links a.is-primary {
  border-color: transparent;
  background: linear-gradient(145deg, #0b69ff, #003a99);
}

.inquiry-links span {
  display: grid;
  gap: 4px;
}

.inquiry-links strong {
  font-size: 20px;
  line-height: 1.2;
}

.inquiry-links small {
  font-size: 10px;
  font-weight: 700;
}

.inquiry-links svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
}

.footer-main {
  width: min(var(--wide-width), calc(100% - 60px));
  margin: 0 auto;
  padding: 74px 0 88px;
}

.footer-brandline {
  padding-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #282828;
}

.footer-brandline img {
  width: 245px;
}

.footer-brandline p {
  font-size: 12px;
  font-weight: 700;
}

.footer-brandline > a {
  padding: 10px 25px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 7px;
  font-size: 13px;
  transition: color var(--motion-hover) var(--motion-ease-hover), background-color var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.footer-brandline > a:hover,
.footer-brandline > a:focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-2px);
}

.footer-columns {
  padding: 38px 0;
  display: grid;
  grid-template-columns: .95fr 1.15fr .9fr;
  gap: 75px;
  border-bottom: 1px solid #282828;
}

.footer-about > p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.footer-about small {
  margin-top: 16px;
  display: block;
  color: #777;
  font-size: 10px;
}

.footer-about img {
  width: 220px;
  margin-top: 68px;
}

.footer h3 {
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.footer-company dl {
  margin-top: 28px;
  display: grid;
  gap: 15px;
  font-size: 12px;
}

.footer-company dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.footer-company dt {
  color: #aaa;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.footer-links h3 {
  margin-bottom: 25px;
}

.footer-links a {
  margin-top: 16px;
  display: block;
  font-size: 12px;
  transition: color var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.footer-links a:first-of-type {
  color: var(--red);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #aaa;
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  gap: 28px;
}

.footer-bottom a {
  transition: color var(--motion-hover) var(--motion-ease-hover);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-bottom .privacy {
  color: var(--red);
}

.footer-bottom b {
  padding: 10px 20px;
  color: #fff;
  border: 1px solid #666;
  border-radius: 7px;
  transition: color var(--motion-hover) var(--motion-ease-hover), background-color var(--motion-hover) var(--motion-ease-hover), border-color var(--motion-hover) var(--motion-ease-hover);
}

.footer-bottom a:hover b,
.footer-bottom a:focus-visible b {
  border-color: var(--red);
  background: var(--red);
}

.chat-widget {
  position: fixed;
  z-index: 980;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  transition: opacity .2s, transform .2s;
}

.chat-widget.is-over-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.chat-hint {
  position: relative;
  width: 335px;
  min-height: 84px;
  padding: 20px 42px 18px 24px;
  display: grid;
  gap: 5px;
  color: #111;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
  text-align: left;
  transition: transform var(--motion-hover) var(--motion-ease-hover), box-shadow var(--motion-hover) var(--motion-ease-hover);
}

.chat-hint:hover,
.chat-hint:focus-visible {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
  transform: translateY(-2px);
}

.chat-hint strong {
  font-size: 13px;
}

.chat-hint span {
  position: relative;
  padding-left: 12px;
  color: #777;
  font-size: 11px;
}

.chat-hint span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4b80ff;
}

.chat-hint i {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #ddd;
  font-style: normal;
  font-size: 14px;
}

.chat-hint.is-hidden {
  display: none;
}

.quick-menu-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.quick-menu-button {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  transition: transform var(--motion-hover) var(--motion-ease-hover), box-shadow var(--motion-hover) var(--motion-ease-hover), filter var(--motion-hover) var(--motion-ease-hover);
}

.quick-menu-button:hover,
.quick-menu-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
  filter: brightness(.96);
}

.quick-menu-button::before {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  padding: 7px 10px;
  color: #fff;
  border-radius: 6px;
  opacity: 0;
  background: rgba(17, 17, 17, .92);
  content: attr(data-label);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity var(--motion-hover) var(--motion-ease-hover), transform var(--motion-hover) var(--motion-ease-hover);
}

.quick-menu-button:hover::before,
.quick-menu-button:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.quick-menu-button--kakao {
  color: #191919;
  background: #fee500;
}

.quick-menu-button--phone {
  background: var(--red);
}

.quick-menu-button--blog {
  background: #03c75a;
}

.quick-menu-button--inquiry {
  background: #171717;
}

.quick-menu-button svg {
  width: 29px;
  fill: currentColor;
}

.mobile-contact-bar {
  display: none;
}

/* Lightweight reveal system: opacity/individual transforms avoid layout work. */
.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 var(--reveal-distance, 28px);
  scale: var(--reveal-scale, .985);
  transition:
    opacity .58s ease-out var(--reveal-delay, 0ms),
    translate var(--motion-reveal) var(--motion-ease-emphasized) var(--reveal-delay, 0ms),
    scale var(--motion-reveal) var(--motion-ease-emphasized) var(--reveal-delay, 0ms),
    color var(--motion-hover) var(--motion-ease-hover),
    background-color var(--motion-hover) var(--motion-ease-hover),
    border-color var(--motion-hover) var(--motion-ease-hover),
    box-shadow var(--motion-hover) var(--motion-ease-hover),
    filter var(--motion-hover) var(--motion-ease-hover),
    transform var(--motion-hover) var(--motion-ease-hover);
  will-change: opacity, translate, scale;
}

.motion-ready [data-reveal="left"] {
  translate: -34px 0;
  scale: 1;
}

.motion-ready [data-reveal="right"] {
  translate: 34px 0;
  scale: 1;
}

.motion-ready [data-reveal="fade"] {
  translate: 0 0;
  scale: 1;
}

.motion-ready [data-reveal="process"] {
  --reveal-distance: 36px;
  --reveal-scale: .992;
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  will-change: auto;
}

.motion-ready .site-header__inner {
  opacity: 0;
  translate: 0 -14px;
  transition: opacity .48s ease-out, translate .62s var(--ease);
}

.motion-ready.is-page-ready .site-header__inner {
  opacity: 1;
  translate: 0 0;
}

@keyframes mobile-lnb-enter {
  from {
    opacity: 0;
    translate: 0 -8px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 180px 1fr 190px;
    gap: 12px;
    padding: 0 22px;
  }

  .brand {
    width: 180px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav > a {
    font-size: 13px;
  }

  .header-utility {
    font-size: 12px;
  }

  .header-utility a {
    min-width: 108px;
    padding: 10px 16px;
    font-size: 12px;
  }

}

@media (min-width: 1101px) and (max-width: 1180px) {
  .home-page .solution-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 72px;
    --type-hero: clamp(36px, 4.5vw, 44px);
    --type-section-title: clamp(28px, 4vw, 40px);
    --type-section-title-large: clamp(30px, 4.2vw, 42px);
    --type-card-title: 22px;
    --type-body: clamp(14px, 1.6vw, 16px);
    --type-body-small: clamp(13px, 1.5vw, 15px);
  }

  .desktop-nav,
  .desktop-lnb,
  .header-utility {
    display: none;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 148px;
  }

  .brand-logo--desktop {
    display: none;
  }

  .brand-logo--mobile {
    display: block;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
  }

  .menu-toggle:focus {
    outline: none;
  }

  .menu-toggle:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
  }

  .menu-toggle span {
    width: 31px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .32s var(--ease), opacity .2s;
  }

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

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

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

  .mobile-menu {
    position: fixed;
    z-index: 995;
    inset: 0;
    display: block;
    overflow-y: auto;
    opacity: 0;
    background: #fff;
    transform: translateX(100%);
    transition:
      transform .42s var(--ease),
      opacity .28s ease,
      visibility 0s linear .42s;
    visibility: hidden;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .mobile-menu__inner {
    min-height: 100%;
    padding: 102px 20px 18px;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav {
    display: block;
  }

  .mobile-nav-group {
    border-bottom: 1px solid #edf0f4;
  }

  .mobile-nav-toggle {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
  }

  .mobile-nav-toggle i {
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transition: transform .22s var(--ease);
    transform: rotate(45deg) translate(-2px, 2px);
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    color: var(--red);
  }

  .mobile-nav-toggle[aria-expanded="true"] i {
    transform: rotate(225deg) translate(-1px, 1px);
  }

  .mobile-lnb {
    margin: 0 -4px 12px;
    padding: 13px 18px 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
    border-radius: 10px;
    background: #f3f7fd;
  }

  .mobile-lnb[hidden] {
    display: none;
  }

  .mobile-lnb:not([hidden]) {
    animation: mobile-lnb-enter .28s var(--ease) both;
  }

  .mobile-lnb a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #566173;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mobile-lnb a::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9cb9e7;
  }

  .mobile-shop-link {
    margin-top: auto;
    padding: 30px 0 24px;
    min-height: 44px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-inquiry {
    position: relative;
    min-height: 114px;
    padding: 18px 58px 18px 20px;
    display: grid;
    align-content: center;
    gap: 9px;
    color: var(--red);
    border-radius: 8px;
    background: #eef5ff;
  }

  .mobile-inquiry strong {
    font-size: 16px;
  }

  .mobile-inquiry span {
    color: #888;
    font-size: 13px;
    line-height: 1.65;
  }

  .mobile-inquiry i {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dbe9ff;
    font-style: normal;
    transform: translateY(-50%);
  }

  .hero {
    height: 100svh;
    min-height: 0;
  }

  .hero__slide {
    background-position: 53% center;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .14) 40%, rgba(0, 0, 0, .42));
  }

  .hero__content {
    top: 56%;
    right: clamp(24px, 5vw, 48px);
    left: clamp(24px, 5vw, 48px);
    width: auto;
    max-width: 680px;
    min-height: 340px;
    transform: translateY(calc(-50% + 72px));
  }

  .hero__eyebrow {
    width: min(100%, 560px);
    margin-bottom: 23px;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.45;
  }

  .hero h1 {
    width: min(100%, 680px);
    font-size: var(--type-hero);
    line-height: 1.18;
  }

  .primary-button {
    width: 220px;
    height: 52px;
    margin-top: 34px;
    border-radius: 10px;
    font-size: 15px;
  }

  .hero__controls {
    bottom: 24px;
    left: clamp(20px, 5vw, 48px);
    gap: 6px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-dots {
    gap: 0;
  }

  .mobile-only {
    display: initial;
  }

  .section-heading h2 {
    font-size: var(--type-section-title);
    line-height: 1.3;
  }

  .section-heading p {
    margin-top: 20px;
    font-size: var(--type-body);
    line-height: 1.68;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .company-intro {
    padding: 88px 20px;
  }

  .company-intro__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .company-intro__copy {
    text-align: center;
  }

  .company-intro__copy h2 {
    font-size: var(--type-section-title-large);
    line-height: 1.32;
  }

  .company-intro__copy p {
    margin-top: 22px;
    font-size: var(--type-body);
    line-height: 1.7;
  }

  .company-intro__copy p br {
    display: none;
  }

  .company-intro__links {
    border-radius: 17px;
  }

  .company-intro__links a {
    min-height: 102px;
    padding: 22px 53px 20px 67px;
  }

  .company-intro__links a > span {
    top: 28px;
    left: 21px;
    font-size: 10px;
  }

  .company-intro__links strong {
    font-size: 18px;
  }

  .company-intro__links small {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.45;
  }

  .company-intro__links i {
    right: 21px;
    font-size: 18px;
  }

  .customer-hub {
    padding: 88px 20px;
  }

  .customer-hub__inner {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .customer-hub__heading {
    text-align: center;
  }

  .customer-hub__heading h2 {
    font-size: var(--type-section-title-large);
    line-height: 1.32;
  }

  .customer-hub__heading p {
    margin-top: 21px;
    font-size: var(--type-body-small);
    line-height: 1.7;
  }

  .customer-hub__heading p br {
    display: none;
  }

  .customer-hub__grid {
    gap: 8px;
  }

  .customer-hub__grid a {
    min-height: 153px;
    padding: 20px 16px;
    border-radius: 13px;
  }

  .customer-hub__grid a > span {
    top: 18px;
    left: 17px;
    font-size: 9px;
  }

  .customer-hub__grid strong {
    font-size: 17px;
  }

  .customer-hub__grid small {
    margin-top: 7px;
    font-size: 10px;
    line-height: 1.45;
  }

  .customer-hub__icon {
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
  }

  .solution {
    min-height: 0;
    padding: 88px 0 76px;
  }

  .solution-viewport {
    width: calc(100% - 36px);
    margin: 11px auto 0;
  }

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

  .solution-card {
    width: 100%;
    height: 360px;
    border-radius: 15px;
  }

  .solution-card__copy {
    padding: 0 16px 24px;
  }

  .solution-card h3 {
    font-size: 18px;
  }

  .solution-card p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .rental {
    min-height: 0;
    padding: 76px 0 64px;
  }

  .rental .section-heading p {
    padding: 0 24px;
  }

  .rental-carousel {
    width: calc(100% - 94px);
    margin-top: 45px;
  }

  .rental-track {
    border-radius: 18px;
  }

  .rental-card {
    height: 470px;
    border-radius: 18px;
    background-image: var(--mobile);
  }

  .rental-card::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .3) 62%, rgba(0, 0, 0, .05));
  }

  .rental-card__copy {
    top: 50%;
    right: 18px;
    left: 18px;
    width: auto;
    text-align: center;
  }

  .rental-card h3 {
    font-size: 22px;
  }

  .rental-card p {
    width: max-content;
    max-width: 100%;
    margin: 18px auto 0;
    gap: 7px;
    text-align: left;
    font-size: 13px;
    line-height: 1.5;
  }

  .rental-card p span {
    padding-left: 17px;
  }

  .rental-card p span::before {
    top: .55em;
    width: 6px;
    height: 6px;
  }

  .carousel-controls {
    width: calc(100% + 66px);
    margin-top: 12px;
    margin-left: -33px;
    justify-content: space-between;
    gap: 0;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-arrow svg {
    width: 22px;
  }

  .reason {
    min-height: 0;
    padding: 80px 18px;
  }

  .reason .section-heading p {
    padding: 0 24px;
  }

  .reason .stats-sticky {
    margin-top: 55px;
  }

  .business {
    min-height: 0;
    padding: 80px 0;
    overflow: hidden;
  }

  .business .section-heading p {
    padding: 0 48px;
  }

  .business-list {
    width: 100%;
    margin-top: 42px;
    padding: 20px calc((100vw - 280px) / 2) 24px;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .business-card {
    width: 280px;
    flex: 0 0 280px;
    padding: 14px 14px 28px;
    scroll-snap-align: center;
  }

  .business-card img {
    height: 175px;
  }

  .business-card h3 {
    margin-top: 24px;
    font-size: 22px;
  }

  .business-card p {
    min-height: 90px;
    margin: 17px 12px 0;
    font-size: 13px;
    line-height: 1.65;
  }

  .business-card a {
    height: 48px;
    margin: 20px -14px 0;
    color: #fff;
    border-radius: 8px;
    background: #000;
    font-size: 14px;
  }

  .reference {
    min-height: 0;
    padding: 80px 18px;
  }

  .reference-wrap {
    margin-top: 38px;
  }

  .reference-ticker {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 16px 18px 24px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reference-ticker__group {
    gap: 12px;
    padding-right: 12px;
  }

  .reference-card {
    flex-basis: min(78vw, 300px);
  }

  .reference-card .gallery-board__content {
    min-height: 155px;
    padding: 16px;
  }

  .reference-card .gallery-board__content strong {
    font-size: .98rem;
  }

  .reference-card .gallery-board__excerpt {
    margin-top: 8px;
    font-size: .82rem;
    -webkit-line-clamp: 1;
  }

  .reference-card .gallery-board__meta-line {
    margin-bottom: 8px;
    font-size: .74rem;
  }

  .outline-button {
    width: 180px;
    height: 46px;
    margin-top: 38px;
    font-size: 12px;
  }

  .stats-sticky {
    gap: 20px;
  }

  .stat-card {
    width: 100%;
    height: auto;
    grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
    border-radius: 15px;
    transform: none !important;
    opacity: 1 !important;
  }

  .stat-card__content {
    padding: 31px 34px;
  }

  .stat-card span {
    font-size: 13px;
  }

  .stat-card strong {
    margin-top: 6px;
    font-size: 39px;
    line-height: 1.25;
  }

  .stat-card strong small {
    font-size: 17px;
  }

  .stat-card h3 {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer {
    padding-top: 0;
  }

  .footer-inquiry {
    width: 100%;
    min-height: 0;
    height: auto;
    background:
      linear-gradient(180deg, rgba(0, 15, 40, .12), rgba(0, 28, 70, .5)) 62% top / 100% 260px no-repeat,
      url("/assets/images/callback-cta-customer-consulting-fullwidth-v2.webp") 62% top / auto 260px no-repeat,
      #07182e;
  }

  .footer-inquiry__inner {
    width: 100%;
    min-height: 0;
    padding: 292px 18px 32px;
    display: block;
  }

  .footer-inquiry h2 {
    font-size: var(--type-section-title);
    line-height: 1.35;
  }

  .footer-inquiry__copy p {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.65;
  }

  .inquiry-links {
    width: 100%;
    margin-top: 30px;
    gap: 10px;
  }

  .inquiry-links a {
    height: 72px;
    padding: 0 19px;
    border-radius: 12px;
  }

  .inquiry-links strong {
    font-size: 22px;
  }

  .inquiry-links small {
    font-size: 9px;
  }

  .inquiry-links svg {
    width: 39px;
    height: 39px;
    padding: 8px;
  }

  .footer-main {
    width: calc(100% - 36px);
    padding: 58px 0 12px;
  }

  .footer-brandline {
    padding-bottom: 30px;
    display: block;
  }

  .footer-brandline img {
    width: 244px;
  }

  .footer-brandline p,
  .footer-brandline > a {
    display: none;
  }

  .footer-columns {
    padding: 27px 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-about > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-about small {
    margin-top: 14px;
    font-size: 9px;
  }

  .footer-about img {
    width: 200px;
    margin-top: 30px;
  }

  .footer-company,
  .footer-links {
    padding-top: 30px;
    border-top: 1px solid #282828;
  }

  .footer-company dl > div {
    grid-template-columns: 90px 1fr;
  }

  .footer-links {
    gap: 26px;
  }

  .footer-bottom {
    padding-top: 23px;
    display: grid;
    gap: 30px;
    font-size: 10px;
  }

  .footer-bottom > div {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-bottom > a {
    display: none;
  }

  .chat-widget {
    right: 34px;
    bottom: 30px;
  }

  .chat-hint {
    display: none;
  }

  .quick-menu-button {
    width: 58px;
    height: 58px;
  }

  .quick-menu-button svg {
    width: 25px;
  }

  .home-page .solution {
    padding-block: 80px 72px;
  }

  .home-page .solution-viewport {
    margin-top: 20px;
    padding-block: 24px 28px;
  }

  .home-page .rental {
    padding-block: 72px 64px;
  }

  .home-page .rental-carousel {
    margin-top: 44px;
  }

  .home-page .business {
    padding-block: 72px;
  }

  .home-page .business .section-heading p {
    padding-inline: 8px;
  }

  .home-page .business-list {
    margin-top: 42px;
  }

  .home-page .reason {
    padding-block: 72px 84px;
  }

  .home-page .reason .section-heading p,
  .home-page .rental .section-heading p {
    padding-inline: 12px;
  }

  .home-page .reason .stats-sticky {
    margin-top: 48px;
  }

  .home-page .reference {
    padding-block: 72px 84px;
  }

  .home-page .reference-wrap {
    margin-top: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .home-page .customer-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-list {
    width: calc(100% - 40px);
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
  }

  .business-card {
    width: auto;
    min-width: 0;
    flex: none;
  }

}

@media (max-width: 540px) {
  .home-page .customer-hub__grid {
    grid-template-columns: 1fr;
  }

  .solution-track {
    grid-template-columns: 1fr;
  }

  .home-page .solution-card {
    height: clamp(330px, 90vw, 400px);
  }

  .home-page .rental-carousel {
    width: calc(100% - 36px);
    margin-top: 40px;
  }

  .home-page .rental-card {
    height: clamp(420px, 115vw, 470px);
  }

  .hero__controls {
    bottom: 88px;
  }

  .chat-widget {
    right: 18px;
    bottom: 18px;
  }

  .quick-menu-actions {
    flex-direction: row;
    gap: 8px;
  }

  .quick-menu-button {
    width: 52px;
    height: 52px;
  }

  .quick-menu-button::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .stat-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .home-page .stat-card__content {
    height: auto;
    min-height: 210px;
    padding: 28px 24px;
  }

  .stat-card__visual {
    height: auto;
  }
}

@media (max-width: 768px) {
  .home-page .customer-hub__grid .customer-hub__estimate {
    grid-column: 1 / -1;
  }

  .hero__slide {
    background-image: var(--hero-image-mobile);
    background-position: center;
  }
}

@media (max-width: 420px) {
  .footer-company dd,
  .footer-company a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  body.home-page--root {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .home-page--root .chat-widget {
    right: 12px;
    bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .home-page--root .quick-menu-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .home-page--root .quick-menu-button {
    width: 44px;
    height: 44px;
  }

  .home-page--root .quick-menu-button svg {
    width: 19px;
  }

  .home-page--root .quick-menu-button::before {
    display: none;
  }

  .home-page--root .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    color: #ffffff;
    box-shadow: 0 -8px 24px rgba(0, 24, 64, .18);
  }

  .home-page--root .mobile-contact-bar a {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: inherit;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .home-page--root .mobile-contact-bar__phone {
    background: var(--red-deep);
  }

  .home-page--root .mobile-contact-bar__phone strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .home-page--root .mobile-contact-bar__mobile {
    background: var(--red);
  }
}

/* Relocated Footer Policy Links */
.footer-policy-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.footer-policy-links a {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: #ffffff;
}

.footer-policy-links .privacy {
  color: #0056e0;
  font-weight: 850;
}
