@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --pricebar-height: 128px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", Helvetica, sans-serif;
  background: #f5f5f7;
}

/* Language Toggle */
.lang-toggle-wrap {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  color: #000;
  transform: scale(1.1);
}

.lang-toggle-wrap .divider {
  color: #eee;
  font-size: 12px;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 100vw;
  background-color: #F5F5F7;
  overflow-x: hidden;
  padding-bottom: var(--pricebar-height);
}

/* Hero */
.hero {
  height: 100vh;
  width: 100%;
  background: #0a1f44 url('/images/main_bg.png') center/cover no-repeat;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero .main-canviz {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.hero .main-yellowknife {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

section {
  padding: 0;
  width: 100%;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px;
}

.bullet-item {
  position: relative;
  padding-left: 12px;
  line-height: 1.5;
}

.bullet-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
}

.core-value,
.features,
.tech-spec,
.price-table,
.procedure,
.contact,
.reference,
.license {
  text-align: center;
  background-color: #F5F5F7;
}

.performance {
  background-color: #fff;
}

.performance .inner {
  padding: 36px 20px 140px 20px;
}

.section-title {
  color: #0031EA;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 8px;
}

.section-subtitle {
  color: #000;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
  padding-bottom: 40px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 16px 0 0 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0 0 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-3 .card {
  min-height: 212px;
}

.grid-3 .card p {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

.card {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 24px;
  text-align: left;
}


.card .svg-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.card h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  padding: 0 0 12px 0;
}

.card p {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  word-break: keep-all;
  margin-bottom: 8px;
}

.big-screenshot {
  width: 100%;
  max-width: 1280px;
  border-radius: 28px;
  overflow: hidden;
}

sup {
  font-size: 8px;
  vertical-align: super;
  margin-left: 1px;
  color: #888;
}

/* 카드 */
.core-value .inner {
  padding: 64px 20px 0 20px;
}

.core-value .grid-5 .card {
  padding: 24px;
  min-height: 188px;
}

.core-value .grid-5 .card img {
  margin-bottom: 16px;
}

.core-value .grid-5 .card p {
  padding-left: 0;
  text-indent: 0;
  word-break: keep-all;
}

.tech-spec .inner {
  padding: 100px 20px 0 20px;
}

.tech-spec .tech-spec-title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  padding: 0 0 20px 0;
}

.tech-spec .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tech-spec .grid-3 .card {
  display: grid;
  grid-template-columns: 1fr 64px;
  grid-template-rows: auto 1fr;
}

.tech-spec .grid-3 .card h3 {
  grid-column: 1 / -1;
}

.tech-spec .grid-3 .card .card-text {
  display: flex;
  flex-direction: column;
}

.tech-spec .grid-3 .card .svg-icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.tech-stack .inner {
  padding: 40px 20px 64px 20px;
}

.tech-stack .tech-stack-title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  padding: 0 0 20px 0;
}

.tech-stack .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-stack .card {
  display: flex;
  flex-direction: column;
}

.tech-stack .card h3 {
  line-height: 1.2;
  word-break: keep-all;
}

.tech-stack .bullet-item {
  line-height: 1.4;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}


.grid-3 .card {
  min-height: 212px;
}

.card {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 24px;
  text-align: left;
}

.features .inner {
  padding: 100px 20px 0 20px;
}

.features .grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 0 0;
}

.features .grid-4 .card {
  display: grid;
  grid-template-columns: 1fr 64px;
}

.features .grid-4 .card .card-text {
  display: flex;
  flex-direction: column;
}

.features .grid-4 .card .card-text a {
  margin-bottom: 8px;
}

.features .grid-4 .card h3 {
  grid-column: 1 / -1;
  width: 100%;
  word-break: keep-all;
}

.features .grid-4 .card .svg-icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.features .grid-4 .card a {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}


.performance-spec-title {
  padding: 0 0 20px 0;
}

/* GRID */
.perf-grid {
  display: grid;
  grid-template-columns: 1fr 216px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "update fps loading"
    "widget fps memory";
}

.perf-item {
  border-radius: 28px;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 28px;
  padding: 32px 28px;
}

.perf-item .label {
  min-width: 20%;
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  word-break: keep-all;
}


.perf-item .value {
  text-align: left;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  word-break: keep-all;
}

.perf-item .sub {
  color: #808080;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  word-break: keep-all;
}

/* 위치 지정 */
.perf-item:nth-child(1) {
  grid-area: update;
}

.perf-item:nth-child(2) {
  grid-area: loading;
}

.perf-item:nth-child(3),
.perf-item.frame-rate {
  grid-area: fps;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.perf-item.frame-rate .label {
  color: #404040;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding-top: 24px;
}

.perf-item.frame-rate .value,
.perf-item.frame-rate .sub {
  color: #A4A4A4;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.perf-grid .frame-rate .value .frame-rate-count {
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.perf-item:nth-child(4) {
  grid-area: widget;
}

.perf-item:nth-child(5) {
  grid-area: memory;
}

.perf-item:nth-child(1) .value {
  background: linear-gradient(90deg, #A767F3 0%, #FE41ED 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 10-16ms */
.perf-item:nth-child(2) .value {
  background: linear-gradient(90deg, #FE33A3 0%, #E3612B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3-5초 */
.perf-item:nth-child(3) .value {
  background: linear-gradient(137deg, #0075FF 0%, #933CFF 74.2%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.perf-item:nth-child(4) .value {
  background: linear-gradient(90deg, #FE33A3 0%, #E3612B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.perf-item:nth-child(5) .value {
  background: linear-gradient(90deg, #A767F3 0%, #FE41ED 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-procedure {
  background: white;
  width: 100%;
}

.price-procedure .inner {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.procedure-section-title,
.price-section-title {
  color: #000;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
}

.package-name {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.big-price {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  background: linear-gradient(135deg, #2169ff, #cc4aff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.vat {
  color: #808080;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-left: 12px;
}

.include-box,
.option-box {
  margin-bottom: 32px;
  padding: 32px;
  background: #f5f5f7;
  border-radius: 28px;
}

.include-box h3,
.option-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.include-box ul,
.option-box ul {
  list-style: none;
}

.option-box ul li,
.include-box ul li {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

.timeline {
  position: relative;
  padding-left: 90px;
  padding-top: 40px;
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: -65px;
  top: 40px;
  bottom: -72px;
  width: 4px;
  background: linear-gradient(180deg, #aa66f2, #e042ba);
  z-index: 0;
}

.step {
  position: relative;
  margin-bottom: 32px;
}

.step-circle {
  position: absolute;
  left: -90px;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #aa66f2, #e042ba);
  border-radius: 20px;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px white;
  z-index: 1;
}

.step-content {
  width: 100%;
  background-color: #fff;
  border-radius: 28px;
  display: flex;
  min-height: 164px;
  padding: 24px 32px 32px 28px;
  flex-direction: column;
  align-items: flex-start;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  word-break: keep-all;
  white-space: normal;
  width: 100%;
}

.step-content ul {
  list-style: none;
  font-size: 18px;
  line-height: 2;
}

.step-content ul li {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

.price-side {
  flex: 1;
  padding: 36px 40px 60px 20px;
  position: relative;
}

.procedure-side {
  flex: 1;
  border-radius: 36px 0 0 36px;
  background: #f5f5f7;
  padding: 36px 20px 0 40px;
  position: relative;
}

.procedure-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background: #f5f5f7;
}

.contact {
  background-color: #fff;
}

.contact .inner {
  padding: 76px 20px 220px 20px;
}

.contact .section-title,
.contact .section-subtitle {
  text-align: left;
}

.contact .grid-2 .card {
  background-color: #F5F5F5;
  border-radius: 28px;
  gap: 20px;
}

.sales-contact .items {
  display: flex;
  justify-content: left;
  gap: 48px;
  flex-wrap: wrap;
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.sales-contact .item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sales-contact .item img {
  width: 64px;
  height: 64px;
}

.sales-contact .item span {
  color: #404040;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.reference .section-subtitle,
.reference .section-title {
  text-align: left;
}

.reference-row {
  display: grid;
  grid-template-columns: 2fr auto 0.5fr;
  align-items: center;
}

.ref-text {
  justify-self: start;
}

.logos {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 200px;
}

.logos img {
  height: 80px;
}

.license {
  background: #fff;
}

.license .inner {
  padding: 76px 20px 196px 20px;
}

.license .section-subtitle,
.license .section-title {
  text-align: center;
}

.license .grid-3 {
  gap: 16px;
}

.license .card {
  background: #f5f5f5;
}

.specifications {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.specifications-list {
  line-height: 1.6;
  padding-left: 20px;
}

.sub-list {
  list-style: none;
  padding-left: 0;
  margin-top: 6px;
}

.sub-list li {
  display: flex;
  margin-bottom: 4px;
}

.sub-list .num {
  width: 24px;
  flex-shrink: 0;
}

.sub-list .text {
  flex: 1;
}

.signal-list {
  list-style: none;
  padding-left: 0;
  margin-top: 6px;
}

.signal-list li {
  display: flex;
  margin-bottom: 4px;
}

.signal-list .num {
  width: 24px;
  flex-shrink: 0;
}

.signal-list .text {
  flex: 1;
}

.price-bar {
  position: fixed;
  bottom: 0;
  z-index: 100;
  width: 100%;
  height: var(--pricebar-height);
  background: white;
  border-top: 1px solid #ddd;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.price-bar.show {
  transform: translateY(0);
}

.price-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
}


.price {
  background: linear-gradient(135deg, #2169ff, #cc4aff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

.price-bar .price-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-bar>.price-group .vat {
  color: #808080;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.price-bar .price-group .product-name {
  color: #404040;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.btn {
  display: inline-flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #0AF;
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
}

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

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.custom-indicator-container {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.indicator-capsule {
  display: flex;
  width: 120px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #BCBCBC 0%, #A3A3A3 100%);
  border-radius: 50px;
  position: relative;
  border: none;
  /* 왼쪽 위에는 흰색 광택, 오른쪽 아래에는 약간의 어두운 대비를 줌 */
  box-shadow:
    -1px -1px 0px 0px #ffffff,
    /* 왼쪽 위 흰색 테두리 효과 */
    1px 1px 0px 0px #ffffff;
}

.dot {
  width: 8px;
  height: 8px;
  background: #888;
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    inset 2px 2px 4px rgba(0, 0, 0, 0.3),
    1px 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dot.active {
  background: #000;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.5),
    inset 0 0 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.dot:hover {
  background: #666;
}

@media (max-width: 432px) {}

@media (max-width: 600px) {
  .price-bar {
    height: auto;
  }

  .price-bar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .price-group {
    display: flex;
    flex-direction: column;
  }

  .price {
    font-size: 20px;
    font-weight: 700;
  }

  .vat {
    font-size: 12px;
  }

  .price-bar .price-group .product-name {
    font-size: 14px;
  }

  .price-bar .btn {
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .features .grid-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .core-value .grid-5 {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .procedure-section-title,
  .price-section-title {
    font-size: 40px;
  }
}

@media (max-width:768px) {
  .indicator-capsule {
    gap: 6px;
    padding: 6px 10px;
    width: 60px;
  }

  .dot {
    width: 4px;
    height: 4px;
  }

  .perf-grid {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    height: auto;
  }

  .perf-item,
  .perf-item:nth-child(1),
  .perf-item:nth-child(2),
  .perf-item:nth-child(3),
  .perf-item:nth-child(4),
  .perf-item:nth-child(5),
  .perf-item.frame-rate {
    flex-direction: row !important;
    padding: 20px;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    min-height: 62px;
  }

  .perf-item:nth-child(3) {
    text-align: left;
  }

  .perf-item:nth-child(3) .value {
    font-size: 22px;
  }

  .perf-item.frame-rate {
    padding: 20px;
  }

  .perf-item.frame-rate br {
    display: none;
  }

  .perf-item .label {
    min-width: 85px;
    font-size: 14px;
    text-align: left;
  }

  .perf-item .value {
    display: flex;
    justify-content: left;
    min-width: 140px;
    height: auto;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    margin: 0;
    gap: 10px;
  }

  .perf-item .sub {
    font-size: 13px;
    line-height: 1;
    white-space: normal;
    word-break: keep-all;
  }

  .perf-item.frame-rate .label {
    font-size: 14px;
    text-align: left;
  }

  .perf-grid .frame-rate .value .frame-rate-text,
  .perf-grid .frame-rate .value .frame-rate-count {
    font-size: 22px;
  }

  .tech-spec .grid-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .tech-spec .grid-3 .card {
    padding: 24px;
    min-height: 100px;
  }

  .tech-spec .grid-3 .card h3 {
    font-size: 18px;
  }

  .tech-spec .grid-3 .card .card-text {
    font-size: 14px;
  }

  .tech-spec .grid-3 .card .svg-icon {
    width: 48px;
    height: 48px;
  }

  .tech-stack .grid-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .tech-stack .grid-3 .card {
    padding: 24px;
    min-height: 100px;
  }

  .tech-stack .grid-3 .card h3 {
    font-size: 18px;
  }

  .tech-stack .grid-3 .card .card-text {
    font-size: 14px;
  }

  .tech-stack .grid-3 .card .svg-icon {
    width: 48px;
    height: 48px;
  }

  .performance .inner {
    padding: 20px;
  }

  .specifications {
    color: #808080;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
}

@media (max-width: 1024px) {
  .inner {
    padding: 20px;
  }

  .section-subtitle {
    font-size: 40px;
    line-height: 1.2;
  }

  .price-bar {
    flex-direction: column;

  }

  .price-procedure {
    padding-top: 40px;
  }

  .price-procedure .inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .price-side {
    padding: 20px 0;
  }

  .procedure-side {
    border-radius: 32px;
    padding: 32px;
    margin-right: 0;
  }

  .procedure-side::after {
    display: none;
  }

  .step-content {
    min-width: 100%;
    padding: 24px;
  }

  .logos {
    flex-direction: column;
    gap: 32px;
  }

  .reference-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .ref-text {
    justify-self: center;
  }

  .perf-grid {
    display: grid;
    gap: 16px;
  }

  .perf-item {
    padding: 20px;
  }

  .perf-item .label {
    font-size: 14px;
  }

  .perf-item .value {
    font-size: 22px;
    font-weight: 700;
    word-break: keep-all;
  }

  .perf-item .sub {
    font-size: 13px;
  }

  .grid-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  /* 1~3번째 카드: 한 줄에 3개가 들어감 (6 / 3 = 2칸씩 차지) */
  .grid-5 .card:nth-child(1),
  .grid-5 .card:nth-child(2),
  .grid-5 .card:nth-child(3) {
    grid-column: span 2;
  }

  /* 4~5번째 카드: 한 줄에 2개가 들어감 (6 / 2 = 3칸씩 차지) */
  .grid-5 .card:nth-child(4),
  .grid-5 .card:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 1148px) {
  .sales-contact .items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
  }

  .sales-contact .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
  }

  .sales-contact .item svg {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }

  .sales-contact .item span {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    word-break: break-all;
    text-align: left;
  }
}


@media (min-width: 1280px) {
  .features .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1200px) {
  .perf-grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 12px;
  }

  .perf-item {
    padding: 24px 16px;
    gap: 12px;
  }

  .perf-item .sub {
    position: static;
    display: block;
    margin-top: 4px;
  }
}