@charset "UTF-8";
/*
AUTH : ssooya
VERSION : version 2
*/
/**********
펑션
***********/
/**********
텍스트 자간
***********/
/**********
텍스트 말줄임
***********/
/**********
아이콘
***********/
html {
  font-size: 10px;
}

:root {
  --color-black: #151515;
  --color-white: #ffffff;
  --color-primary: #3f50ff;
  --color-sub: #989491;
  --color-line: #eeeeee;
  --color-surface: #fafafa;
  --color-surface-strong: #f5f5f5;
  --space-page: clamp(20px, 6.25vw, 120px);
  --section-y: clamp(50px, 7.8vw, 150px);
  --radius-card: 30px;
  --font-base: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (max-width: 760px) {
  :root {
    --space-page: 20px;
    --section-y: 50px;
    --radius-card: 30px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #151515;
  background: #fff;
  font-family: var(--font-base);
  letter-spacing: -0.04em;
  word-break: keep-all;
}
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }
}

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

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

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

.section {
  position: relative;
  overflow: hidden;
}
.section-inner {
  width: min(1680px, 100% - var(--space-page) * 2);
  margin-inline: auto;
}
@media (max-width: 760px) {
  .section-inner {
    width: calc(100% - 40px);
  }
}
.section-title {
  font-size: clamp(20px, 2.604vw, 50px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}
@media (max-width: 760px) {
  .section-title {
    font-size: 20px;
  }
}

.surface-gray {
  background: #f5f5f5;
}
.surface-light {
  background: #fafafa;
}

.card-dark {
  color: #fff;
  background: linear-gradient(136deg, #050505 0%, #303030 100%);
}

.card-black {
  background: #151515;
}

.muted {
  color: #989491;
}

.desktop-only {
  display: block;
}

.mobile-copy,
.mobile-heading {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 30px var(--space-page) 0;
  pointer-events: none;
}
@media (max-width: 760px) {
  .site-header {
    padding: 0 20px 0;
    background-color: #fff;
  }
}

.nav-pill {
  width: min(500px, 100vw - 40px);
  height: 54px;
  margin-inline: auto;
  padding: 12px 12px 12px 15px;
  border-radius: 12px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
@media (max-width: 760px) {
  .nav-pill {
    display: none;
  }
}

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

@media (max-width: 760px) {
  main {
    padding-top: 56px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
}
.nav-actions .ic.ic-shop {
  background: url("../assets/icon-arrow-white.svg") no-repeat center/cover;
  width: 15px;
  height: 16px;
}

.btn {
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.btn-light {
  color: #151515;
  background: #fff;
  font-weight: 500;
}
.btn-primary {
  color: #fff;
  background: #3f50ff;
}

.mobile-nav {
  display: none;
}
@media (max-width: 760px) {
  .mobile-nav {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  .mobile-brand {
    background: url("../assets/logo-mobile.svg") no-repeat center/cover;
    width: 29px;
    height: 30px;
  }
}
@media (max-width: 760px) {
  .mobile-brand img {
    display: none;
  }
}

@media (max-width: 760px) {
  .mobile-menus {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mobile-menus a {
    display: block;
  }
  .mobile-menus .inquiry-btn {
    background: url("../assets/header-inquiry.svg") no-repeat center/cover;
    width: 20px;
    height: 20px;
  }
  .mobile-menus .mall-btn {
    background: url("../assets/header-mall.svg") no-repeat center/cover;
    width: 21px;
    height: 20px;
  }
}

.hero {
  padding-top: 50px;
  background: #fff;
}
@media (max-width: 760px) {
  .hero {
    padding-top: 0;
  }
}
.hero-copy {
  padding-top: 64px;
}
@media (max-width: 760px) {
  .hero-copy {
    padding-top: 50px;
  }
}
.hero h1 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.hero .lead {
  width: min(826px, 100%);
  margin-top: 30px;
  color: #989491;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 760px) {
  .hero .lead {
    margin-top: 30px;
    font-size: 14px;
  }
}

.eyebrow {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 400;
}

.text-link {
  display: inline-block;
  margin-top: 70px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 760px) {
  .text-link {
    margin-top: 30px;
    font-size: 14px;
  }
}

.process-rail {
  width: min(100%, 1820px);
  margin: 70px 0 150px 50px;
  gap: 10px;
  display: block;
  position: relative;
  align-items: stretch;
  height: 724px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-y;
}
.process-rail::-webkit-scrollbar {
  display: none;
}
.process-rail .process-intro {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 445px;
  height: 550px;
  min-height: 0;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
}
.process-rail .process-intro .muted {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: 0;
  padding: 50px 0 0 50px;
}
.process-rail .process-intro h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.process-rail .process-intro p:last-of-type {
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}
.process-rail .slide-hint {
  display: none;
}
.process-rail.is-dragging {
  cursor: grabbing;
}
.process-rail .process-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 724px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
}
.process-rail .process-slider:focus-visible {
  outline: 3px solid rgba(63, 80, 255, 0.55);
  outline-offset: 6px;
  border-radius: 30px;
}
.process-rail .process-slider.is-dragging {
  cursor: grabbing;
}
.process-rail .process-track {
  display: block;
  width: 100%;
  height: 100%;
  transform: none !important;
  transition: none;
}
.process-rail .process-card,
.process-rail .process-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.process-rail .process-card-feature {
  flex-basis: 733px;
}
.process-rail .process-slide {
  position: absolute;
  top: 0;
  height: 724px;
  flex: none;
  transition: left 0.62s cubic-bezier(0.4, 0, 0.2, 1), width 0.62s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.62s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, width;
  -webkit-user-drag: none;
  user-select: none;
}
.process-rail .process-slide[data-state=past] {
  opacity: 0.34;
}
.process-rail .process-slide[data-state=next] {
  opacity: 0.72;
}
.process-rail .process-slide[data-state=active], .process-rail .process-slide.is-active {
  opacity: 1;
}
.process-rail .process-slide:not(.is-active) .process-text {
  opacity: 0;
  visibility: hidden;
}
.process-rail .process-slide img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-select: none;
}
.process-rail .process-slide .process-text {
  display: grid;
  position: relative;
  grid-template-columns: max-content max-content minmax(280px, 1fr);
  align-items: start;
  column-gap: 24px;
  min-height: 144px;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease 0.04s, visibility 0s linear 0.04s;
}
.process-rail .process-slide .process-text b {
  grid-column: 1;
  justify-self: start;
  color: #989491;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
}
.process-rail .process-slide .process-text h3 {
  grid-column: 2;
  justify-self: start;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}
.process-rail .process-slide .process-text p {
  grid-column: 3;
  justify-self: end;
  max-width: 366px;
  color: #989491;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.process-rail .process-slide.is-active .process-text {
  opacity: 1;
  visibility: visible;
}
.process-rail .process-slide .process-nav {
  display: none !important;
}
.process-rail.is-transitioning .process-slide .process-text {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: none !important;
}
.process-rail:not(.is-transitioning) .process-slide.is-active .process-text {
  opacity: 1 !important;
  visibility: visible !important;
}
.process-rail .process-nav-fixed {
  position: absolute;
  top: 562px;
  z-index: 7;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #151515;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.process-rail .process-nav-fixed:hover, .process-rail .process-nav-fixed:focus-visible {
  opacity: 1;
  transform: scale(1.04);
  outline: none;
}
.process-rail .process-nav-fixed:disabled {
  cursor: default;
  opacity: 0.22;
  pointer-events: none;
  transform: none;
}
.process-rail .process-nav-fixed--prev {
  left: calc(var(--process-active-left, 455px) - 88px);
}
.process-rail .process-nav-fixed--next {
  left: calc(var(--process-active-left, 455px) + var(--process-active-width, 733px) + 40px);
}

.services {
  padding-block: var(--section-y);
}
.services .service-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.375fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.services .service-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services .service-right {
  justify-content: flex-end;
}
.services .floating-title {
  text-align: right;
  margin-bottom: auto;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 760px) {
  .services .floating-title {
    text-align: left;
    position: static;
  }
}
.services .glass-card {
  min-height: 500px;
  padding: 50px 30px 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .services .glass-card {
    padding: 40px 26px 0;
    min-height: 0;
    gap: 64px;
  }
}
.services .glass-card.bottom-space {
  padding-bottom: 18px;
}
.services .glass-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.services .glass-card p {
  letter-spacing: -0.02em;
  color: #989491;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1600px) {
  .services .glass-card p {
    font-size: 16px;
  }
}
.services .glass-card p.mobile-text {
  display: none;
}
@media (max-width: 760px) {
  .services .glass-card p.web-text {
    display: none;
  }
  .services .glass-card p.mobile-text {
    display: block;
  }
}
.services .glass-card img {
  width: 100%;
  aspect-ratio: 1672/941;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.services .core-service {
  min-height: 1030px;
  padding: 50px 0 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .services .core-service {
    min-height: 100%;
  }
}
.services .core-service .service-header {
  padding: 0 40px;
}
@media (max-width: 1600px) {
  .services .core-service .service-header {
    padding: 0 32px;
  }
}
@media (max-width: 760px) {
  .services .core-service .service-header {
    padding: 0 15px 0 0;
  }
}
.services .core-service .tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 20px;
  border-radius: 100px;
  background: #fff;
  color: #151515;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}
.services .core-service .title-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 760px) {
  .services .core-service .title-area {
    gap: 5px;
  }
}
.services .core-service .title-area .ic.ic-star {
  background: url("../assets/star.svg") no-repeat center/cover;
  width: 20px;
  height: 20px;
}
@media (max-width: 760px) {
  .services .core-service .title-area .ic.ic-star {
    width: 10px;
    height: 10px;
  }
}
.services .core-service h2 {
  font-size: 36px;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}
.services .core-service p {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.services .core-service p.mobile-text {
  display: none;
}
@media (max-width: 1600px) {
  .services .core-service p {
    font-size: 16px;
  }
}
@media (max-width: 760px) {
  .services .core-service p.web-text {
    display: none;
  }
  .services .core-service p.mobile-text {
    display: block;
    font-size: 13px;
  }
}
.services .core-service .img-box {
  padding-left: 110px;
  padding-top: 88px;
  display: flex;
}
.services .core-service .img-box img {
  right: 0;
  bottom: 0;
  width: 660px;
}

.edge {
  padding-block: var(--section-y);
}
.edge-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.edge-main, .edge-card {
  min-height: 500px;
  border-radius: 30px;
  padding: 50px;
}
@media (max-width: 1600px) {
  .edge-main, .edge-card {
    padding: 50px 36px;
  }
}
.edge-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.edge-main h3 {
  font-size: 40px;
  color: #fff;
  line-height: 1.45;
  font-weight: 500;
}
.edge-main span {
  color: #989491;
}
.edge-main img {
  width: 48px;
  align-self: flex-end;
}
.edge-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.edge-card-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.edge-card .edge-icon {
  display: none;
}
.edge-card h3 {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
}
.edge-card p,
.edge-card small {
  color: #989491;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media (max-width: 1600px) {
  .edge-card p,
  .edge-card small {
    font-size: 18px;
  }
}
.edge-card small {
  text-align: right;
}

.banner-card {
  margin-top: 100px;
  min-height: 500px;
  padding: 100px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: #151515;
  display: flex;
  align-items: center;
}
.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.banner-card div {
  position: relative;
  z-index: 1;
}
.banner-card h3 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #fff;
}
.banner-card p {
  margin-top: 100px;
  color: #989491;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}

.benefit-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.benefit {
  min-height: 310px;
  padding: 50px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1600px) {
  .benefit {
    padding: 40px 36px;
  }
}
.benefit .img-box {
  height: 100px;
  display: flex;
  align-items: flex-start;
}
.benefit img {
  width: auto;
  margin-bottom: 0;
}
.benefit h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 1600px) {
  .benefit h3 {
    font-size: 22px;
  }
}
.benefit p {
  margin-top: 10px;
  color: #989491;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
@media (max-width: 1600px) {
  .benefit p {
    font-size: 18px;
  }
}
.benefit-dark {
  background: #151515;
  color: #fff;
  justify-content: space-between;
  align-items: stretch;
  text-align: right;
}
.benefit-dark h3 {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 1600px) {
  .benefit-dark h3 {
    font-size: 22px;
  }
}
.benefit-dark span {
  display: block;
  width: 50px;
  height: 3px;
  background: #989491;
}

.contact {
  padding-block: var(--section-y);
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(420px, 700px) 1fr;
  align-items: center;
  gap: min(10vw, 60px);
}
.contact-copy h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 700;
}
.contact-copy p {
  letter-spacing: -0.02em;
  margin-top: 20px;
  color: #989491;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}
.contact .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  padding: 10px 25px;
  border-radius: 21px 21px 21px 0;
  background: #151515;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.contact .img-box {
  display: flex;
}
.contact .img-box .contact-image {
  width: 100%;
  height: 475px;
  object-fit: cover;
  border-radius: 50px;
}
@media (max-width: 760px) {
  .contact .img-box .contact-image {
    display: none;
  }
}
.contact .img-box .contact-image-mobile {
  display: none;
  border-radius: 30px;
}
@media (max-width: 760px) {
  .contact .img-box .contact-image-mobile {
    display: block;
  }
}

.footer {
  background: #eee;
  padding: 100px var(--space-page);
}
.footer-inner {
  width: min(1680px, 100%);
  margin-inline: auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
  border-bottom: 1px solid #989491;
}
.footer-top img {
  width: 165px;
  height: 40px;
  object-fit: contain;
}
.footer .switches {
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.footer .switches span {
  width: 40px;
  height: 20px;
  border-radius: 100px;
  background: #989491;
  position: relative;
}
.footer .switches span::after {
  content: "";
  position: absolute;
  top: -2.5px;
  right: 0;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #989491;
}
.footer .switches .on {
  background: #151515;
}
.footer .switches .on::after {
  left: 0;
  right: auto;
  border-color: #151515;
}
.footer .switches.is-collapsed .on {
  background: #989491;
}
.footer .switches.is-collapsed .on::after {
  left: auto;
  right: 0;
  border-color: #989491;
}
.footer address {
  margin-top: 50px;
}
.footer address[hidden] {
  display: none !important;
}
.footer address {
  color: #989491;
  font-size: 18px;
  line-height: 1.5;
  font-style: normal;
}
.footer address span + span::before,
.footer address strong + span::before {
  content: "　|　";
  color: #ccc;
  font-weight: 400;
}
.footer p {
  margin-top: 70px;
  color: #989491;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .services .service-layout {
    grid-template-columns: 1fr;
  }
  .services .service-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services .service-right {
    display: block;
  }
  .services .right-title {
    text-align: left;
    margin-bottom: 30px;
  }
  .services .core-service {
    min-height: 760px;
  }
  .edge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 760px) {
  .desktop-only,
  .desktop-copy,
  .desktop-heading {
    display: none;
  }
  .mobile-copy {
    display: block;
  }
  .mobile-heading {
    display: inline;
  }
  .process-rail {
    width: 100%;
    margin: 50px 0 0;
    padding: 0 0 0 20px;
    gap: 10px;
    display: flex;
    height: auto;
    overflow: hidden;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .process-rail {
    padding-bottom: 50px;
  }
}
@media (max-width: 760px) {
  .process-rail .process-intro {
    position: relative;
    z-index: 5;
    flex: 0 0 max(260px, 100vw - 60px);
    width: max(260px, 100vw - 60px);
    height: auto;
    min-height: 0;
    padding: 50px 30px;
    box-shadow: 18px 0 24px rgba(255, 255, 255, 0.88);
    transform: translateX(calc(var(--process-mobile-offset, 0px) * -1));
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-direction: column;
    justify-content: center;
  }
  .process-rail .process-intro .process-info {
    align-self: center;
  }
  .process-rail .process-intro .muted {
    font-size: 14px;
  }
  .process-rail .process-intro h2 {
    font-size: 20px;
  }
  .process-rail .process-intro p:last-of-type {
    font-size: 12px;
  }
  .process-rail .slide-hint {
    display: block;
    font-size: 16px;
    position: absolute;
    right: 30px;
    bottom: 50px;
    color: #fff;
  }
  .process-rail .process-slider,
  .process-rail .process-track {
    display: contents;
  }
  .process-rail .process-card,
  .process-rail .process-card-feature,
  .process-rail .process-slide,
  .process-rail .process-slide.is-active {
    position: relative;
    top: auto;
    left: auto !important;
    width: max(260px, 100vw - 60px) !important;
    height: auto;
    flex: 0 0 max(260px, 100vw - 60px);
    flex-basis: max(260px, 100vw - 60px);
    gap: 20px;
    padding-bottom: 50px;
    transform: translateX(calc(var(--process-mobile-offset, 0px) * -1));
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .process-rail .process-card,
  .process-rail .process-card-feature,
  .process-rail .process-slide,
  .process-rail .process-slide.is-active {
    padding-bottom: 0;
    gap: 0;
  }
}
@media (max-width: 760px) {
  .process-rail .process-slide:not(.is-active) {
    opacity: 0.62;
  }
  .process-rail .process-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 30px;
  }
  .process-rail .process-slide .process-text, .process-rail .process-slide.is-active .process-text {
    display: block;
    min-height: 0;
    padding: 20px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .process-rail .process-slide .process-text b, .process-rail .process-slide.is-active .process-text b {
    font-size: 14px;
    margin-right: 10px;
  }
  .process-rail .process-slide .process-text h3, .process-rail .process-slide.is-active .process-text h3 {
    display: inline;
    font-size: 16px;
  }
  .process-rail .process-slide .process-text p, .process-rail .process-slide.is-active .process-text p {
    margin-top: 20px;
    font-size: 12px;
  }
  .process-rail .process-nav-fixed {
    display: none !important;
  }
  .services,
  .edge,
  .contact {
    padding-block: 50px;
  }
  .services .service-layout,
  .services .service-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .services .service-side {
    order: 3;
  }
  .services .right-title {
    order: -1;
    margin-bottom: 10px;
  }
  .services .glass-card {
    min-height: auto;
    padding: 30px 25px;
    border-radius: 10px;
  }
  .services .glass-card h3 {
    font-size: 16px;
  }
  .services .glass-card p {
    font-size: 13px;
  }
  .services .glass-card img {
    display: none;
  }
  .services .core-service {
    padding: 25px 0 0 15px;
    border-radius: 10px;
    order: 2;
    min-height: 0;
  }
  .services .core-service .img-box {
    padding: 25px 0 0 33px;
  }
  .services .core-service .tag {
    font-size: 14px;
    padding: 2px 10px;
  }
  .services .core-service h2 {
    font-size: 18px;
  }
  .services .core-service p {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: -0.06em;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    line-break: anywhere;
    white-space: normal;
  }
  .services .core-service p br {
    display: initial;
  }
  .services .core-service img {
    width: 330px;
    left: 35px;
    bottom: -18px;
  }
  .edge-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .edge-main {
    min-height: 300px;
    padding: 50px 30px;
  }
  .edge-main h3 {
    font-size: 20px;
    line-height: 1.3;
  }
  .edge-main img {
    width: 38px;
  }
  .edge-card {
    min-height: 105px;
    padding: 30px;
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .edge-card.mobile-reverse .edge-card-title {
    order: 2;
  }
}
@media (max-width: 760px) {
  .edge-card .edge-icon {
    display: none;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .edge-card .edge-icon {
    display: inline-flex;
  }
}
@media (max-width: 760px) {
  .edge-card h3 {
    font-size: 16px;
  }
  .edge-card p {
    font-size: 13px;
  }
  .edge-card small {
    display: none;
  }
  .banner-card {
    margin-top: 30px;
    min-height: 300px;
    padding: 70px 30px;
    align-items: stretch;
    justify-content: space-between;
  }
}
@media (max-width: 760px) and (max-width: 760px) {
  .banner-card .card-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 760px) {
  .banner-card img {
    opacity: 0.2;
    width: 170%;
    left: -65%;
    max-width: none;
  }
  .banner-card h3 {
    font-size: 18px;
  }
  .banner-card p {
    margin-top: 0;
    font-size: 13px;
  }
  .benefit-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .benefit {
    min-height: auto;
    padding: 30px;
    border-radius: 30px;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .benefit .img-box {
    height: auto;
  }
  .benefit img {
    width: 35px;
    height: 35px;
    object-fit: contain;
  }
  .benefit h3 {
    font-size: 16px;
  }
  .benefit p {
    font-size: 13px;
  }
  .benefit-dark {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 50px;
  }
  .benefit-dark h3 {
    font-size: 18px;
  }
  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .contact-copy {
    width: 100%;
  }
  .contact-copy h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  .contact-copy p {
    font-size: 14px;
  }
  .contact-copy p .mobile-enter {
    display: block;
  }
  .contact .cta {
    margin-top: 50px;
    padding: 10px 20px;
    font-size: 18px;
  }
  .contact-image {
    height: 200px;
    border-radius: 30px;
    object-position: 62% center;
  }
  .footer {
    padding: 30px 20px;
  }
  .footer-top {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .footer-top img {
    width: 100px;
    height: 24px;
  }
  .footer address {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 12px;
    color: #a6a6a6;
  }
  .footer address strong {
    color: #5a5d65;
  }
  .footer address span + span::before,
  .footer address strong + span::before {
    content: none;
  }
  .footer p {
    margin-top: 30px;
    font-size: 11px;
    color: #a6a6a6;
  }
}
.contact-page {
  min-height: 100vh;
  background: #fff;
}
.contact-page .contact-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  padding: 50px 100px 100px;
}
.contact-page .contact-hero .contact-visual {
  width: 100%;
  max-width: 1720px;
  height: 500px;
  overflow: hidden;
  border-radius: 30px;
  flex-shrink: 0;
}
.contact-page .contact-hero .contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.contact-page .contact-hero .contact-body {
  width: 100%;
  max-width: 1720px;
  display: flex;
  justify-content: center;
}
.contact-page .contact-hero .contact-form-wrap {
  width: 720px;
  max-width: 100%;
}
.contact-page .contact-hero .contact-form-wrap h1 {
  font-size: 50px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.contact-page .contact-hero .inquiry-form {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-page .contact-hero .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.contact-page .contact-hero .field-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-page .contact-hero .field-group label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  color: #151515;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.contact-page .contact-hero .field-group.is-required label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../assets/star_blue.svg") no-repeat center/contain;
  flex: 0 0 auto;
}
.contact-page .contact-hero .field-group input,
.contact-page .contact-hero .field-group textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #151515;
  border-radius: 0;
  background: transparent;
  color: #151515;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.04em;
  outline: none;
}
.contact-page .contact-hero .field-group input::placeholder,
.contact-page .contact-hero .field-group textarea::placeholder {
  color: rgba(204, 204, 204, 0.93);
}
.contact-page .contact-hero .field-group input {
  height: 50px;
}
.contact-page .contact-hero .field-group textarea {
  height: 150px;
  padding: 13px 0;
  resize: none;
}
.contact-page .contact-hero .field-group--wide {
  grid-column: 1/-1;
}
.contact-page .contact-hero .agreement-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-page .contact-hero .agreement-block strong {
  min-height: 24px;
  color: #151515;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.contact-page .contact-hero .agreement-check {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
  cursor: pointer;
}
.contact-page .contact-hero .agreement-check input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 0;
  border-radius: 3px;
  background: #3f50ff;
  flex: 0 0 auto;
  cursor: pointer;
}
.contact-page .contact-hero .agreement-check input::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 9px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.contact-page .contact-hero .agreement-check input:not(:checked) {
  border: 1px solid #d5d5d5;
  background: #fff;
}
.contact-page .contact-hero .agreement-check input:not(:checked)::after {
  opacity: 0;
}
.contact-page .contact-hero .agreement-check .terms-open {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.contact-page .contact-hero .form-actions {
  display: flex;
  align-items: flex-start;
}
.contact-page .contact-hero .submit-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  min-width: 0;
  border: 0;
  border-radius: 100px;
  padding: 12px 50px;
  background: #151515;
  color: rgba(255, 255, 255, 0.93);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  width: 191px;
}
.contact-page .contact-hero .submit-btn:disabled {
  background: #e5e5e5;
  cursor: default;
}
.contact-page .contact-hero .form-message {
  min-height: 24px;
  margin: -10px 0 0;
  color: #989491;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.contact-page .contact-hero .form-message[data-type=success] {
  color: #3f50ff;
}
.contact-page .contact-hero .form-message[data-type=error] {
  color: #eb4242;
}
@media (max-width: 760px) {
  .contact-page .contact-hero {
    gap: 50px;
    padding: 30px 20px 50px;
  }
  .contact-page .contact-hero .contact-visual {
    height: 200px;
    border-radius: 30px;
  }
  .contact-page .contact-hero .contact-form-wrap {
    width: 100%;
  }
  .contact-page .contact-hero .contact-form-wrap h1 {
    font-size: 30px;
    line-height: 1.1667;
    letter-spacing: -0.03em;
  }
  .contact-page .contact-hero .inquiry-form {
    margin-top: 30px;
  }
  .contact-page .contact-hero .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-page .contact-hero .field-group label {
    gap: 3px;
    min-height: 20px;
    font-size: 13px;
  }
  .contact-page .contact-hero .field-group.is-required label::after {
    width: 6px;
    height: 6px;
  }
  .contact-page .contact-hero .field-group input,
  .contact-page .contact-hero .field-group textarea {
    font-size: 13px;
    letter-spacing: -0.04em;
  }
  .contact-page .contact-hero .field-group input {
    height: 40px;
  }
  .contact-page .contact-hero .field-group textarea {
    height: 100px;
    padding: 13px 0;
  }
  .contact-page .contact-hero .agreement-block strong {
    min-height: 20px;
    font-size: 13px;
  }
  .contact-page .contact-hero .agreement-check {
    height: 50px;
    gap: 10px;
    font-size: 13px;
  }
  .contact-page .contact-hero .agreement-check input {
    width: 16px;
    height: 16px;
  }
  .contact-page .contact-hero .agreement-check input::after {
    left: 4px;
    top: 3px;
    width: 8px;
    height: 5px;
  }
  .contact-page .contact-hero .submit-btn {
    padding: 10px 40px;
    font-size: 13px;
  }
  .contact-page .contact-hero .form-message {
    min-height: 20px;
    margin-top: -5px;
    font-size: 13px;
  }
}

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

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 100px 100px;
}
.terms-modal[hidden] {
  display: none !important;
}
.terms-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.terms-modal__panel {
  position: relative;
  z-index: 1;
  width: 800px;
  height: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  outline: none;
}
.terms-modal__handle {
  display: none;
}
.terms-modal__body {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  gap: 10px;
  overflow: hidden;
}
.terms-modal__icon {
  width: 30px;
  height: 26px;
  flex: 0 0 auto;
  background: url("../assets/terms.svg") no-repeat center/30px 26px;
}
.terms-modal__main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.terms-modal__main h2 {
  color: #151515;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.terms-modal__scroll {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 30px;
  scrollbar-color: #5a5d65 #e8e8e8;
  scrollbar-width: thin;
}
.terms-modal__scroll::-webkit-scrollbar {
  width: 4px;
}
.terms-modal__scroll::-webkit-scrollbar-track {
  background: #e8e8e8;
}
.terms-modal__scroll::-webkit-scrollbar-thumb {
  background: #5a5d65;
}
.terms-modal__scroll p {
  margin: 0;
  white-space: pre-line;
  color: #989491;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.terms-modal__footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 20px 10px 0;
  border-top: 1px solid #e5e5e5;
}
.terms-modal__confirm {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: #3f50ff;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
}
@media (max-width: 760px) {
  .terms-modal {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }
  .terms-modal__backdrop {
    background: rgba(21, 21, 21, 0.3);
  }
  .terms-modal__panel {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 196px);
    gap: 30px;
    padding: 15px 20px 30px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 15px rgba(21, 21, 21, 0.1);
  }
  .terms-modal__handle {
    display: block;
    width: 40px;
    height: 5px;
    margin-inline: auto;
    border-radius: 100px;
    background: rgba(90, 93, 101, 0.2);
    flex: 0 0 auto;
  }
  .terms-modal__body {
    display: block;
    min-height: 0;
    overflow: hidden;
  }
  .terms-modal__icon {
    display: none;
  }
  .terms-modal__main {
    gap: 20px;
  }
  .terms-modal__main h2 {
    text-align: center;
    font-size: 18px;
    letter-spacing: -0.04em;
  }
  .terms-modal__scroll {
    max-height: min(390px, 100vh - 385px);
    padding-right: 0;
  }
  .terms-modal__scroll p {
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: -0.04em;
  }
  .terms-modal__footer {
    justify-content: center;
    padding: 20px 10px 0;
  }
  .terms-modal__confirm {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}

.submit-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 100px 100px;
}
.submit-modal[hidden] {
  display: none !important;
}
.submit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.submit-modal__panel {
  position: relative;
  z-index: 1;
  width: 437px;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
  border-radius: 15px;
  background: #fff;
  outline: none;
}
.submit-modal__handle {
  display: none;
}
.submit-modal__body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.submit-modal__icon, .submit-modal__spacer {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}
.submit-modal__icon {
  position: relative;
}
.submit-modal__icon::before {
  content: "i";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #3f50ff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
}
.submit-modal__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 0;
}
.submit-modal__content h2 {
  margin: 0;
  color: #151515;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.submit-modal__content p {
  margin: 0 0 10px;
  color: #989491;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.submit-modal__time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #151515;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.submit-modal__time::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1.5px solid #989491;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #989491 1px, transparent 2px);
}
.submit-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 20px 10px 0;
  border-top: 1px solid #e5e5e5;
}
.submit-modal__home, .submit-modal__confirm {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  white-space: nowrap;
  cursor: pointer;
}
.submit-modal__home {
  color: #989491;
  font-weight: 500;
}
.submit-modal__confirm {
  color: #3f50ff;
  font-weight: 700;
}
@media (max-width: 760px) {
  .submit-modal {
    align-items: flex-end;
    padding: 0;
  }
  .submit-modal__backdrop {
    background: rgba(21, 21, 21, 0.3);
  }
  .submit-modal__panel {
    width: 100%;
    min-height: 222px;
    gap: 30px;
    padding: 15px 20px 30px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 0 15px rgba(21, 21, 21, 0.1);
  }
  .submit-modal__handle {
    display: block;
    width: 40px;
    height: 5px;
    margin-inline: auto;
    border-radius: 100px;
    background: rgba(90, 93, 101, 0.2);
  }
  .submit-modal__body {
    display: block;
    text-align: center;
  }
  .submit-modal__icon, .submit-modal__spacer {
    display: none;
  }
  .submit-modal__content {
    align-items: center;
    gap: 20px;
  }
  .submit-modal__content h2 {
    font-size: 18px;
    letter-spacing: -0.04em;
  }
  .submit-modal__content p {
    margin: 0 0 0;
    font-size: 13px;
    letter-spacing: -0.04em;
  }
  .submit-modal__time {
    gap: 5px;
    font-size: 13px;
    letter-spacing: -0.03em;
  }
  .submit-modal__time::before {
    width: 12px;
    height: 12px;
  }
  .submit-modal__footer {
    gap: 40px;
    padding: 20px 10px 0;
  }
  .submit-modal__home, .submit-modal__confirm {
    flex: 1 1 0;
    text-align: center;
    font-size: 14px;
  }
}

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

.agreement-check input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 0;
  border-radius: 3px;
  background: #3f50ff;
  flex: 0 0 auto;
  cursor: pointer;
}
.agreement-check input::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 9px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.agreement-check input:not(:checked) {
  border: 1px solid #d5d5d5;
  background: #fff;
}
.agreement-check input:not(:checked)::after {
  opacity: 0;
}
.agreement-check .terms-open {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.floating-chat {
  position: fixed;
  right: 50px;
  bottom: 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}
.floating-chat__panel, .floating-chat__button {
  pointer-events: auto;
}
.floating-chat__panel {
  width: 400px;
  min-height: 482px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
  padding: 30px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.floating-chat.is-step2 .floating-chat__panel {
  min-height: 633px;
}
.floating-chat.is-open .floating-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-chat__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.floating-chat__back {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 0;
  border: 0;
  background: transparent;
  color: #151515;
  font-size: 26px;
  line-height: 20px;
  font-weight: 300;
  cursor: pointer;
}
.floating-chat__back img {
  width: 20px;
  height: 20px;
  display: block;
}
.floating-chat__back:disabled {
  opacity: 0.3;
  cursor: default;
}
.floating-chat__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.floating-chat__brand img {
  width: 36px;
  height: 36px;
}
.floating-chat__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 30px;
  line-height: 13px;
  cursor: pointer;
}
.floating-chat__close img {
  width: 16px;
  height: 16px;
}
.floating-chat__title {
  margin: 0;
  padding: 10px 20px;
  border-radius: 15px 15px 0 15px;
  background: #151515;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
}
.floating-chat__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.floating-chat__item {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 15px 15px 15px 0;
  background: #fff;
  color: #151515;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  border: 0;
  cursor: pointer;
}
.floating-chat__item .icon {
  margin-right: 10px;
}
.floating-chat__item span {
  width: 20px;
  text-align: center;
}
.floating-chat__item b {
  font-weight: 700;
}
.floating-chat__form, .floating-chat__fields {
  width: 100%;
}
.floating-chat__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.floating-chat__form[hidden] {
  display: none;
}
.floating-chat__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-chat__field {
  position: relative;
  width: 100%;
  display: block;
}
.floating-chat__field input,
.floating-chat__field textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #151515;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.floating-chat__field input::placeholder,
.floating-chat__field textarea::placeholder {
  color: transparent;
  opacity: 1;
}
.floating-chat__field input:focus,
.floating-chat__field textarea:focus {
  box-shadow: 0 0 0 2px rgba(63, 80, 255, 0.18);
}
.floating-chat__field input {
  height: 43px;
  padding: 12px 18px;
}
.floating-chat__field textarea {
  height: 98px;
  padding: 12px 18px;
  resize: none;
}
.floating-chat__field.has-value .floating-chat__placeholder, .floating-chat__field:focus-within .floating-chat__placeholder {
  opacity: 0;
  visibility: hidden;
}
.floating-chat__placeholder {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 1;
  max-width: calc(100% - 36px);
  overflow: hidden;
  color: #8f8f8f;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.floating-chat__placeholder em {
  color: #6d3eec;
  font-style: normal;
}
.floating-chat__placeholder em.is-optional {
  color: #8f8f8f;
}
.floating-chat__agree {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  color: #151515;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.04em;
  cursor: pointer;
}
.floating-chat__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 154px;
  height: 48px;
  padding: 0 50px;
  border: 0;
  border-radius: 12px;
  background: #151515;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
}
.floating-chat__submit:disabled {
  min-width: 205px;
  background: #d8d8d8;
  color: #8f8f8f;
  cursor: default;
}
.floating-chat__message {
  position: absolute;
  bottom: 4px;
  left: 20px;
  min-height: 20px;
  margin: 0;
  color: #989491;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.floating-chat__message[data-type=error] {
  color: #eb4242;
}
.floating-chat__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
}
.floating-chat__button img {
  width: 32px;
  height: 30px;
  max-width: none;
}
@media (max-width: 760px) {
  .floating-chat {
    right: 20px;
    bottom: 20px;
  }
  .floating-chat::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(21, 21, 21, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .floating-chat.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  .floating-chat__panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: auto;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    gap: 25px;
    padding: 30px 20px;
    border-radius: 30px 30px 0 0;
    transform: translateY(100%);
  }
  .floating-chat.is-step2 .floating-chat__panel {
    min-height: auto;
  }
  .floating-chat.is-open .floating-chat__panel {
    transform: translateY(0);
  }
  .floating-chat__head {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .floating-chat__brand {
    font-size: 16px;
  }
  .floating-chat__brand img {
    width: 30px;
    height: 30px;
  }
  .floating-chat__close {
    width: 14px;
    height: 13px;
    font-size: 28px;
    line-height: 11px;
  }
  .floating-chat__title {
    padding: 12px 20px;
    font-size: 16px;
  }
  .floating-chat__items {
    gap: 10px;
  }
  .floating-chat__item {
    padding: 12px 15px;
    font-size: 14px;
  }
  .floating-chat__field input,
  .floating-chat__field textarea {
    font-size: 14px;
  }
  .floating-chat__placeholder {
    font-size: 14px;
  }
  .floating-chat__agree {
    gap: 10px;
    font-size: 14px;
  }
  .floating-chat__submit {
    height: 48px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
