/* 디자인 토큰 및 기본 설정 */
:root {
  --brand: #e21e2b;
  --primary: #0c4a6e;
  --ink: #0f172a;
  --text: #1f2937;
  --muted: #64748b;
  --bg: #ffffff;
  --line: #e5e7eb;
  --shadow: 0 2px 20px 0 rgba(2, 6, 23, 0.06);
  --radius: 16px;
  --radius-lg: 20px;
  --space: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --container: 1280px;
  --faq-container: 1072px;
  --grayscale--950: #0e121b;
  --text-color--text-alternate: #ffffff;
}

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

body {
  font-family: "Pretendard", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
}

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

a:hover {
  color: inherit;
}

.navbar-menu-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: 1rem;
  display: flex;
}

/* 전역 레이아웃 유틸리티 */
.main__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
}

.faq__container {
  max-width: var(--faq-container);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: #f9fafb;
}

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

.hidden {
  display: none;
}

/* 버튼 스타일 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  border-radius: 5rem !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  text-align: center;
  transition: background-position 0.3s ease;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.4);
  background-color: transparent;
  line-height: inherit !important;
}

.btn__arrow {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 0.25rem;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn:focus {
  box-shadow: none !important;
}

.btn.is-small {
  padding: 0.5625rem 1.5rem;
  font-size: 0.875rem;
}



.btn:hover {
  background-image: linear-gradient(0deg, var(--grayscale--950) 40%, #6d7a97);
  color: var(--text-color--text-alternate);
}

.btn--primary {
  background-image: linear-gradient(180deg, var(--grayscale--950) 40%, #6d7a97);
  color: var(--text-color--text-alternate);
}

.btn--primary:hover {
  background-image: linear-gradient(0deg, var(--grayscale--950) 40%, #6d7a97);
}

.btn.is-secondary {
  border: 1px solid #e3e8ef;
  background-color: #fff;
  color: #111729;
  background-image: none;
}

.btn--ghost {
  background-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(4px);
  border: 0.5px solid;
  border-image-source: linear-gradient(
    rgba(255, 255, 255, 0.51) 0%,
    rgba(157, 226, 205, 0.8) 15%,
    rgba(157, 226, 205, 0.76) 85%,
    rgba(255, 255, 255, 0.64) 100%
  );
  border-radius: 5rem;
  padding: 0.6875rem 1.5rem;
  box-shadow: inset 0 -1px 18px rgba(255, 255, 255, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.06);
  color: var(--grayscale--950);
  background-image: none;
  transform-style: preserve-3d;
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  border-image-source: linear-gradient(
    rgba(255, 255, 255, 0.6) 0%,
    rgba(157, 226, 205, 0.7) 15%,
    rgba(157, 226, 205, 0.6) 85%,
    rgba(255, 255, 255, 0.5) 100%
  );
  transition: all 0.2s ease;
  background-image: none;
  color: var(--grayscale--950);
}

/* 카드 컴포넌트 */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--space-lg);
}

.card--row {
  display: flex;
  align-items: flex-start;
  gap: var(--space);
}

/* 헤더 */
.header-wrap {
  width: 100%;
  max-width: var(--container);
  background: transparent;
  z-index: 100;
  transition: all 0.3s ease;
  margin: 0 auto;
}

/* 메인 페이지에서만 투명 헤더 적용 */
.header-wrap:not(.page-header-wrap) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
}

.header-wrap:not(.page-header-wrap).scrolled {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space) 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space);
}

.site-header__logo img {
  height: 32px;
}

.nav {
  display: none;
  flex-direction: column;
  gap: var(--space);
}

.nav__group {
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.nav__link {
  font-size: 0.875rem;
  color: var(--muted);
}

.nav__button {
  font-size: 0.875rem;
  color: var(--text);
  background: transparent;
  border: none;
  position: relative;
}

.nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 160px;
  padding: var(--space);
  z-index: 50;
}

.nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu li + li {
  margin-top: var(--space);
}

.nav__menu a {
  color: var(--text);
  display: block;
  font-size: 0.875rem;
}

.nav--open {
  display: flex;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space);
}

.site-header__toggle {
  background: none;
  border: none;
  display: block;
  padding: var(--space);
}

.site-header--menu-open .nav {
  display: flex;
}

@media (min-width: 768px) {
  .nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__group {
    flex-direction: row;
    gap: var(--space-lg);
  }

  .site-header__toggle {
    display: none;
  }
}

/* Page Hero with Full-Bleed Background */
.page-hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../image/heroOverlay.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

.page-hero::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 70vh;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  order: 2;
}

.hero__text {
  max-width: 100%;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tablet Device */
.hero__device {
  position: relative;
  width: 100%;
}

.tablet {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #1f2937;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.tablet__screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.tablet__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
}

.floating-icon__circle {
  width: 36px;
  height: 36px;
  /* background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0; */
}

.floating-icon__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* Floating Icon Positions */
.floating-icon--1 {
  top: 0;
  right: 4%;
  animation-delay: 0s;
}

.floating-icon--2 {
  top: 30%;
  left: -6%;
  animation-delay: 1s;
}

.floating-icon--3 {
  bottom: 35%;
  right: -10%;
  animation-delay: 2s;
}

.floating-icon--4 {
  bottom: 15%;
  left: -14%;
  animation-delay: 3s;
}

.floating-icon--5 {
  bottom: -5%;
  right: 24%;
  animation-delay: 4s;
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .hero__buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .tablet {
    max-width: 600px;
  }

  .floating-icon {
    padding: 1rem 1.25rem;
  }

  .floating-icon__label {
    display: block;
  }
}

@media (max-width: 767px) {
  body:has(.page-hero) {
    padding-top: 60px;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: 90vh;
  }

  .hero__title {
    font-size: 2rem;
  }

  .page-hero::before {
    background-attachment: scroll;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .floating-icon__label {
    display: none;
  }

  .floating-icon {
    padding: 0.75rem;
  }

  .floating-icon__circle {
    width: 36px;
    height: 36px;
  }
}

/* Benefits */
.benefits {
  background: #ffffff;
  padding: 100px 0;
}

.benefits__header {
  text-align: center;
  max-width: 800px;
  padding: 0 0 80px 0;
  margin: 0 auto;
  border-bottom: 1px solid #eee;
}

.benefits__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.benefits__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}

.benefits__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.benefits__description strong {
  color: var(--primary);
  font-weight: 600;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
}

.benefits__cta{
  margin-top: 3rem;
}

.benefit-item {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(14, 94, 243, 0.1);
}

.benefit-item__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(14, 94, 243, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-item__icon {
  background: var(--primary);
  transform: scale(1.1);
}

.benefit-item:hover .benefit-item__icon svg {
  stroke: white;
}

.benefit-item__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.benefit-item__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive Design for Benefits */
@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .benefit-item {
    padding: 48px 32px;
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 32px;
  }

  .benefit-item {
    padding: 40px 24px;
  }

  .benefits__title {
    font-size: 3rem;
  }
}

@media (max-width: 639px) {
  .benefits {
    padding: 80px 0;
  }

  .benefits__header {
    margin-bottom: 60px;
  }

  .benefits__title {
    font-size: 2rem;
  }

  .benefits__description {
    font-size: 1rem;
  }

  .benefit-item {
    padding: 32px 20px;
  }

  .benefit-item__icon {
    width: 64px;
    height: 64px;
  }

  .benefit-item__title {
    font-size: 1.125rem;
  }

  .benefit-item__description {
    font-size: 0.875rem;
  }
}

/* Process */
.process {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 120px 0;
  position: relative;
}

.process__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.process__header {
  position: sticky;
  top: 120px;
  padding-right: 40px;
}

.process__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.process__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}

.process__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.process__step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.process__step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(14, 94, 243, 0.3);
  position: relative;
  z-index: 3;
}

.process__step-content {
  padding: 0;
}

.process__step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process__step-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.process__step-icon {
  width: 60px;
  height: 60px;
  background: rgba(14, 94, 243, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.process__step:hover .process__step-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.process__step:hover .process__step-icon svg {
  fill: white !important;
}

.process__step:hover .process__step-icon svg path {
  fill: white !important;
}

/* Responsive Design for Process */
@media (max-width: 1024px) {
  .process__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process__header {
    position: static;
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 80px 0;
  }

  .process__layout {
    gap: 40px;
  }

  .process__title {
    font-size: 2rem;
  }

  .process__description {
    font-size: 1rem;
  }

  .process__cards {
    gap: 24px;
  }

  .process__step {
    grid-template-columns: 60px 1fr 48px;
    gap: 16px;
    padding: 24px;
  }

  .process__step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .process__step-title {
    font-size: 1.125rem;
  }

  .process__step-description {
    font-size: 0.875rem;
  }

  .process__step-icon {
    width: 48px;
    height: 48px;
  }
}

/* Solutions */
.solutions {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.solutions__wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 6vw, 20px);
  position: relative;
  z-index: 2;
}

.solutions__header {
  text-align: center;
  margin-bottom: 80px;
}

.solutions__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.solutions__heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

.solutions__container {
  position: relative;
  margin-bottom: 60px;
}

.solutions-swiper {
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.solutions-swiper * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.solutions-swiper:hover .solutions__cursor {
  opacity: 1;
  visibility: visible;
}

.solutions__card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  will-change: transform;
}

.solutions__card:hover {
  transform: translateY(-8px);
}

.solutions__image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.solutions__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.solutions__card:hover .solutions__image img {
  transform: scale(1.05);
}

.solutions__content {
  background: #f9f9f9;
  padding: 32px 24px;
}

.solutions__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.solutions__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* 커스텀 원형 커서 - 글래스모피즘 스타일 */
.solutions__cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.solutions__cursor.dragging {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(25px) saturate(200%);
}

/* 페이지네이션 */
.solutions-pagination {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: -60px !important;
  width: auto !important;
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
}

.solutions-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgb(148, 163, 184);
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
  position: relative !important;
  left: auto !important;
}

.solutions-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.2);
}

.solutions__cta {
  text-align: center;
  margin-top: 100px;
}

/* 반응형 디자인 */
@media (min-width: 768px) {
  .solutions__image {
    height: 280px;
  }

  .solutions__content {
    padding: 40px 32px;
  }

  .solutions__title {
    font-size: 1.5rem;
  }

  .solutions__description {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .solutions {
    padding: 80px 0;
  }

  .solutions__heading {
    font-size: 2rem;
  }

  .solutions__cursor {
    display: none;
  }

  .solutions-swiper {
    cursor: grab;
  }
}

/* 터치 기기에서 커서 숨김 */
@media (pointer: coarse) {
  .solutions__cursor {
    display: none;
  }

  .solutions-swiper {
    cursor: grab;
  }
}

/* Responsive Design for Solutions */
@media (max-width: 768px) {
  .solutions {
    padding: 80px 0;
  }

  .solutions__heading {
    font-size: 2rem;
  }

  .solutions__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solutions__image {
    min-height: 250px;
  }

  .solutions__content {
    padding: 40px 32px;
  }

  .solutions__title {
    font-size: 1.5rem;
  }

  .solutions__description {
    font-size: 1rem;
  }

  .solutions__nav {
    display: none;
  }
}

.solutions__dot--active {
  background: var(--primary);
}

.solutions__arrows {
  display: flex;
  justify-content: center;
  gap: var(--space);
  margin-top: var(--space);
}

.solutions__arrow {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
}

/* 솔루션 섹션 제목 */
.solutions__heading {
  text-align: center;
}

@media (min-width: 1024px) {
  .solutions__card {
    flex-basis: 32%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .solutions__card {
    flex-basis: 60%;
  }
}

@media (max-width: 767px) {
  .solutions__card {
    flex-basis: 85%;
  }
}

/* FAQ */
.faq {
  background: #ffffff;
  padding: 80px 0 120px;
}

.faq__header {
  text-align: center;
  margin-bottom: 80px;
}

.faq__heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.faq__description {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0;
}

.faq__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq__category {
  background: #ffffff;
}

.faq__category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.faq__item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item-button {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq__item-button:hover {
  color: var(--primary);
}

.faq__question {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-right: 16px;
  flex: 1;
}

.faq__icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item-button[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__panel.active {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq__answer {
  padding-top: 0;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }

  .faq__heading {
    font-size: 2rem;
  }

  .faq__categories {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq__category-title {
    font-size: 1.25rem;
  }

  .faq__item-button {
    padding: 20px 0;
  }

  .faq__question {
    font-size: 0.95rem;
  }
}

/* CTA */
.section-cta {
  padding: 0.5rem 0.5rem 0;
  background-color: #fff;
}

.container-large {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-box-wrap {
  background: linear-gradient(rgb(255 255 255 / 65%), rgb(255 255 255 / 65%)),
    url(../image/Closing-visual.png);
  background-position: 50%;
  background-size: cover;
  border-radius: 0.75rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.cta-content-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
  z-index: 2;
}

.section-head.is-cta-head {
  justify-content: flex-start;
  align-items: center;
  max-width: 41.7rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.cta__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.cta__description {
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
  .section-cta {
    padding: 4px;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cta-box-wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .cta-content-wrap {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .cta__heading {
    font-size: 2rem;
  }

  .cta__description {
    font-size: 1rem;
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .btn {
    width: 100%;
  }
}

/* CTA 내부 요소 */
.cta__heading,
.cta__desc {
  text-align: center;
}

.cta__desc {
  margin-top: var(--space);
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

.cta__buttons {
  display: flex;
  gap: var(--space);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1d29 0%, #2d3748 50%, #1a202c 100%);
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.footer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 29, 41, 0.95) 0%, rgba(45, 55, 72, 0.9) 50%, rgba(26, 32, 44, 0.95) 100%);
  z-index: 1;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer__info-divider {
  color: rgba(255, 255, 255, 0.3);
}

.footer__terms {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer__terms-link {.footer__top
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.footer__terms-link:hover {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer__menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.5rem;
}

.footer__menu-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__menu-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.footer__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__menu-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer__menu-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
  .footer__top {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  
  .footer__menus {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  
  .footer__bottom {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center !important;
  }
  
  .footer__info-line {
    flex-direction: column !important;
    gap: 8px !important;
  }
  
  .footer__terms {
    flex-direction: column !important;
    gap: 12px !important;
  }
}
