@charset "UTF-8";

/* ================================
   Main
================================ */
main {
  /* 1. 레이아웃 및 위치 (Positioning & Layout) */
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 769px) {
  main {
    background-image: url("../img/home.jpg");
  }
}

main h1 {
  font-size: clamp(16px, 2vw, 2rem);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Main -> .dummy (마커 텍스트 공통 스타일) */
main .dummy {
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left center;
  text-transform: uppercase;
  font-family: "Mark Pro", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #aeaeae;
  letter-spacing: 0.1em;
}

/* Main -> .dummy 개별 위치 */
main #t01 {
  /* 1. 위치 (Positioning) */
  position: absolute;
  top: 20%;
  left: 68px;
}

main #t02 {
  /* 1. 위치 (Positioning) */
  position: absolute;
  top: 50%;
  left: 68px;
}

main #t03 {
  /* 1. 위치 (Positioning) */
  position: absolute;
  bottom: 10%;
  left: 68px;
}

main #t04 {
  /* 1. 위치 (Positioning & Transform) */
  position: absolute;
  top: 50%;
  right: 68px;
  transform: rotate(90deg) translateY(50%);
  transform-origin: right center;
}

/* Main -> .textbox */
main .textbox {
  /* 1. 타이포그래피 (Typography) */
  text-align: center;
}

/* Main -> h2 (메인 제목) */
main h2 {
  /* 1. 박스 모델 */
  margin-bottom: 3rem;
  overflow: hidden; /* .char 애니메이션을 숨기기 위해 유지 */
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(32px, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: 0em;
}

/* Main -> h2 .char (글자 애니메이션) */
main h2 .char {
  /* 1. 레이아웃 및 위치 */
  display: inline-block; /* span은 원래 inline이라 transform이 안 먹히므로 inline-block으로 변경 */

  /* 초기 상태 */
  transform: translateY(
    100%
  ); /* 초기 상태: 자기 높이(100%)만큼 아래로 내려가 있어서 안 보임 */
  opacity: 0; /* 부드러운 등장을 위해 투명도도 0으로 시작 */

  /* 애니메이션 */
  animation: revealUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; /* 애니메이션 적용: 이름, 지속시간, 부드러운 가속도 커브, 끝나면 마지막 상태 유지 */

  /* 기타 */
  white-space: pre; /* 띄어쓰기가 무시되지 않도록 설정 */
}

/* Main -> @keyframes revealUp */
@keyframes revealUp {
  to {
    /* 최종 상태 */
    transform: translateY(0); /* 최종 상태: 원래 위치(0)로 돌아오고, */
    opacity: 1; /* 불투명해짐 */
  }
}

/* Main -> h4 (서브 제목) */
main h4 {
  /* 1. 박스 모델 */
  margin-bottom: 2rem;

  /* 2. 타이포그래피 */
  font-size: clamp(16px, 2vw, 2.6rem);
  font-weight: 400;
}

main .mobile {
  display: none;
}

main .pc {
  display: none;
}

main p {
  font-size: clamp(14px, 2vw, 1.7rem);
}

/* ================================
   Differ
================================ */

/* Differ -> .title */
.differ .title {
  /* 1. 박스 모델 */
  margin-bottom: 10rem;
}

/* Differ -> .downbox (카드 컨테이너) */
.differ .downbox {
  /* 1. 레이아웃 및 위치 */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* Differ -> .card (개별 카드) */
.differ .card {
  /* 1. 레이아웃 및 위치 */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  /* 2. 타이포그래피 */
  text-transform: uppercase;
  text-align: center;
}

/* Differ -> svg (공통 아이콘 스타일) */
.differ svg {
  /* 1. 박스 모델 */
  width: 100%;
  height: auto;
  max-width: 12rem;
  margin-bottom: 7rem;
}

/* Differ -> .rowline (구분선 - HTML 구조에 따라 위치) */
.differ .rowline {
  display: none;
}

/* Differ -> h4 (카드 제목) */
.differ h4 {
  /* 1. 박스 모델 */
  margin-bottom: 2.8rem;
  line-height: 1.2em;

  /* 2. 타이포그래피 */
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(20px, 2vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Differ -> Clock Animation (시계) */
/* 1. 회전 동작 정의 (0도 -> 360도) */
@keyframes rotateClock {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 2. 바늘에 적용 */
.differ .clock-hand {
  /* 1. 레이아웃 및 위치 */
  transform-origin: 60px 60px; /* SVG 좌표상 중심점 (60, 60)을 회전축으로 설정 */
  stroke: var(--main);
  /* 2. 애니메이션 */
  animation: rotateClock 4s linear infinite; /* 4초 동안, 일정한 속도로(linear), 무한 반복 */
}

/* Differ -> Arrow Animation (화살표) */
/* --- 1. 공통 설정 (타이밍 동기화) --- */
.differ .arrow-body,
.differ .arrow-head {
  /* 1. 애니메이션 */
  animation-duration: 1.8s; /* 둘이 똑같은 시간, 똑같은 속도 곡선으로 움직여야 붙어 보입니다 */
  animation-timing-function: cubic-bezier(
    0.25,
    1,
    0.5,
    1
  ); /* 시작은 빠르게, 끝은 부드럽게 (자연스러운 느낌) */
  animation-iteration-count: infinite;
  stroke: var(--main);
}

/* --- 2. 몸통(선)이 길어지는 애니메이션 --- */
@keyframes bodyGrow {
  0% {
    transform: scaleX(0); /* 길이 0에서 시작 */
    opacity: 0;
  }
  10% {
    opacity: 1;
  } /* 시작하자마자 나타남 */

  70% {
    transform: scaleX(1); /* 원래 길이로 쭉 늘어남 */
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0; /* 다 늘어난 상태에서 사라짐 (반복을 위해) */
  }
}

.differ .arrow-body {
  /* 1. 레이아웃 및 위치 */
  transform-box: fill-box;
  transform-origin: left center; /* ★핵심: 변형의 기준점을 선의 '왼쪽 끝'으로 설정 */

  /* 2. 애니메이션 */
  animation-name: bodyGrow;
}

/* --- 3. 머리가 이동하는 애니메이션 --- */
@keyframes headMove {
  0% {
    transform: translateX(
      -55px
    ); /* 선의 길이(약 55px)만큼 왼쪽으로 당겨진 상태에서 시작 */
    opacity: 0;
  }
  10% {
    opacity: 1;
  }

  70% {
    transform: translateX(
      0
    ); /* 원래 위치(0)로 이동 -> 몸통이 늘어나는 것과 딱 맞음 */
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0; /* 같이 사라짐 */
  }
}

.differ .arrow-head {
  /* 1. 애니메이션 */
  animation-name: headMove;
}

/* Differ -> Up Animation (성장 그래프) */
/* 애니메이션 정의: 아래에서 위로 자라남 */
@keyframes growUp {
  0% {
    stroke-dashoffset: 60; /* 선의 길이만큼 오프셋을 주어 완전히 숨김 */
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0; /* 오프셋을 0으로 만들어 선이 꽉 차게 보임 */
    opacity: 1;
  }
}

.differ .up-animation {
  /* 1. 박스 모델 */
  stroke-dasharray: 60; /* 가장 긴 선(약 55px)보다 넉넉하게 잡음 */
  stroke-dashoffset: 60; /* 시작은 숨겨진 상태로 */
  stroke: var(--main);
  /* 2. 애니메이션 */
  animation: growUp 2s ease-out infinite; /* 1.5초 동안 무한 반복, ease-out으로 끝부분 부드럽게 */
}

/* ================================
   happy
================================ */
.happy {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  padding-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.happy .dummy {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(10px, 2vw, 2rem);
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 2;
}

.happy p {
  font-size: clamp(11px, 2vw, 2.2rem);
  color: #fff;
  line-height: 1.3em;
  letter-spacing: -0.02em;
  z-index: 2;
}

.happy .textbox {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.happy h2 {
  text-align: center;
  font-weight: 400;
  z-index: 2;
}

.happy #t01 {
  position: absolute;
  top: 50%;
  left: 5.5rem;
  transform: rotate(-90deg) translateX(-40%);
  transform-origin: left center;
  text-transform: uppercase;
}

.happy #t02 {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  text-transform: uppercase;
}

.happy #t03 {
  position: absolute;
  top: 50%;
  right: 5.5rem;
  transform: rotate(90deg) translateX(40%);
  transform-origin: right center;
  text-transform: uppercase;
}

.happy .mobile {
  display: none;
}

/* ================================
   trust
================================ */
/* 섹션 전체 설정 */
.trust {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

/* 슬라이드 개별 박스 설정 */
.trust .swiper-slide {
  /* [핵심] 너비를 화면의 60% 정도로 설정해서 양옆이 잘려 보이게 함 */
  width: 60vw;
  max-width: 90rem;
  /* 가운데가 아닌 애들은 투명하게 처리 */
  opacity: 0.2;
  transition: opacity 0.4s ease; /* 부드럽게 밝기 변화 */
  display: flex;
  flex-direction: column; /* 세로 방향 정렬 */
  justify-content: center; /* 수직(Vertical) 중앙 정렬 */
}

/* [핵심] 가운데 활성화된 슬라이드만 밝게 */
.trust .swiper-slide-active {
  opacity: 1;
}

/* 내부 요소 스타일 (기존 스타일 유지 및 보완) */
.trust .contentbox {
  padding: 0 4rem; /* 내부 여백 */
}

.trust .circle {
  width: 2rem;
  height: 2rem;
  background-color: #ff0000; /* 248 레드 */
  border-radius: 50%;
  margin-bottom: 2rem;
}

.trust h2 {
  font-size: clamp(24px, 3vw, 3.8rem);
  line-height: 1.3em;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  word-break: keep-all;
}

.trust .sub {
  display: block;
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(14px, 2vw, 1.8rem);
  color: #808285;
  margin-bottom: 5.6rem;
  font-weight: 500;
}

.trust p {
  font-size: clamp(15px, 2vw, 2.4rem);
  color: #fff;
  line-height: 1.6em;
}

/* --- 컨트롤러 스타일 (좌측 하단) --- */
.trust-controls {
  position: absolute;
  bottom: 8rem;
  left: 68px; /* 화면 비율에 맞춰 위치 조정 */
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* 네비게이션 화살표 박스 */
.trust-controls .nav-btns {
  display: flex;
  border: 1.4px solid #c4c4c4;
  width: 74px;
  height: 38px;
}

.trust-controls .swiper-button-prev,
.trust-controls .swiper-button-next {
  position: static; /* 기본 absolute 해제 */
  width: 50%;
  height: 100%;
  margin: 0;
  color: #c4c4c4;
}
.trust-controls .swiper-button-prev::after,
.trust-controls .swiper-button-next::after {
  font-size: clamp(11px, 2vw, 1.4rem); /* 화살표 크기
  fo 조절 */
  font-weight: 700;
}
.trust-controls .swiper-button-prev {
  border-right: 1.4px solid #c4c4c4;
}

/* 페이지네이션 (숫자) */
.trust .trust-controls .custom-pagination {
  color: #c4c4c4;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(11px, 2vw, 1.4rem);
  font-weight: 500;
}
.trust-controls .current {
  color: #fff;
  font-weight: bold;
}
.trust-controls .bar {
  width: 30px;
  height: 1px;
  background-color: #c4c4c4;
  display: block;
}
/* ================================
   start
================================ */
.start {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.start .dummy {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(10px, 2vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.start .line {
  content: "";
  width: 80px;
  height: 0.6px;
  background-color: #fff;
}

.start .box01 {
  display: flex;
  gap: 20rem;
  position: absolute;
  top: 30px;
  left: 68px;
}

.start .box02 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 68px;
  gap: 3.2rem;
}

.start .box03 {
  display: flex;
  gap: 21rem;
  position: absolute;
  right: 68px;
  bottom: 70px;
  transform: rotate(90deg);
  transform-origin: right center;
}

.start .box04 {
  display: flex;
  gap: 65rem;
  position: absolute;
  left: 68px;
  bottom: 30px;
}

.start h2 {
  font-family: "Mark Pro", sans-serif;
  font-weight: 500;
  font-size: 48rem;
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #f5f5f5;
}

.start span {
  color: var(--main);
}
/* ================================
   renewal
================================ */

.renewal {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(/img/bg-red.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.renewal .title {
  margin-bottom: 7rem;
}

.renewal .downbox {
  display: flex;
  gap: 2rem;
}

.renewal .topbox {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.renewal .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 43rem;
  height: 55rem;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 3rem 4rem 3rem 4rem;
}

.renewal .top {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  color: #000;
  padding: 0.52rem 2rem;
  margin-bottom: 1.2rem;
  background-color: #ff9226;
  border-radius: 99px;
}

.renewal .pricebox {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.renewal h4 {
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 2.2rem);
}

.renewal .price {
  font-family: "Roboto";
  font-size: clamp(22px, 2vw, 3rem);
  line-height: 1.4em;
  font-weight: 500;
  color: #fff;
  margin-right: 0.7rem;
}

.renewal .vat {
  color: #777;
  margin-top: auto;
  font-size: clamp(10px, 2vw, 1.2rem);
  margin-left: 5px;
  transform: translateY(-20%);
  font-weight: 500;
}

.renewal .pricebox h3 {
  font-family: "Roboto";
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(32px, 2vw, 4.7rem);
  font-weight: 500;
  line-height: 0em;
}

.renewal .contentbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 2.3rem 0;
  border-bottom: 1px solid #333;
}

.renewal .pricebox + .contentbox {
  border-top: 1px solid #333;
}

.renewal .p14bold {
  width: 10.5rem;
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
}

.renewal .p14medium {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 400;
}

.renewal p {
  color: #d9d9d9;
}

.renewal h2 {
  margin-bottom: 0;
}

.renewal li {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 400;
  color: #d9d9d9;
  position: relative;
  padding-left: 0.6rem;
}

.renewal li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-50%);
  border-radius: 50%;
}

.renewal li + li {
  margin-top: 0.6rem;
}

.renewal #basic {
  background-color: #ddef82;
}

.renewal #standard {
  background-color: #badcfc;
}

.renewal #premium {
  background-color: #962f81;
}

/* ================================
  office
================================ */
.office {
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
}

.office .img-box {
  position: relative;
  width: 100%;
  height: 80%;
}

.office img {
  display: block;
  width: 100%;
  height: 100%;
}

.office .dummy {
  font-size: clamp(7px, 2vw, 1.2rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: absolute;
  top: 19%;
  left: 5%;
  transform: rotate(90deg);
  transform-origin: right center;
  z-index: 99;
}

.office .rightbox {
  display: inline-block;
  position: absolute;
  top: 5%;
  right: 2%;
  font-size: clamp(14px, 3vw, 4.75rem);
  font-weight: 400;
  color: #fff;
  font-family: "Mark Pro", sans-serif;
}

.office h2 {
  font-family: "Mark Pro", sans-serif;
  position: absolute;
  left: 8%;
  bottom: -6%;
  font-size: clamp(22px, 6vw, 6.9rem);
  font-weight: 400;
  margin-bottom: 0;
}

.office .big {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(30px, 6vw, 9.9rem);
}

/* ================================
   explan
================================ */
.explan {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  align-items: center;
}

.explan .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 4rem;
}

.explan .title {
  text-align: left;
  padding-top: 10rem;
}

.explan .title .line {
  margin-left: 0;
}

.explan .title img {
  width: 100%;
  height: auto;
  max-width: 23rem;
  margin-top: 9rem;
}

.explan .google {
  width: 100%;
  height: auto;
  max-width: 60rem;
  display: flex;
  justify-content: center;
}

/* ================================
   Free (무료 혜택 섹션)
================================ */
.free {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  align-items: center; /* 수직 중앙 정렬 */
}

/* wrap 안에 제목과 downbox가 모두 있으므로, wrap의 display: flex는 그대로 둡니다. */
.free .wrap {
  display: flex;
  flex-direction: column;
}

.free .downbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.free .contentbox {
  /* 기존 설정 유지 */
  padding: 3rem;
  width: 100%; /* grid가 1fr로 너비를 제어 */
  height: 23rem;
  box-sizing: border-box; /* 패딩이 너비를 늘리지 않게 */

  /* [핵심 2] 우측 보더만 추가 */
  border-right: 1px solid rgba(255, 255, 255, 0.3);

  /* [핵심 3] 두 번째 줄부터 상단 보더를 추가 (4열 뒤) */
  /* 모든 컨텐츠 박스에 기본적으로 보더를 줍니다. */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* 2. 각 줄의 마지막 요소 (4, 8번째)의 우측 보더 제거 */
.free .contentbox:nth-child(4n) {
  border-right: none;
}

/* 3. 첫 번째 줄(1~4번)의 상단 보더 제거 */
.free .contentbox:nth-child(-n + 4) {
  border-top: none;
}

/* --- 나머지 스타일은 유지 --- */
.free img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 40px;
  margin-bottom: 4rem;
}

.free h4 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 1.6rem;
}

.free h2 {
  margin-bottom: 0;
}

.free.swiper {
  width: 100%;
  height: auto;
}

.free .swiper-pagination {
  display: none;
}

.free p {
  font-size: clamp(13px, 2vw, 1.6rem);
}

/* ================================
   process
================================ */
.process {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  align-items: center; /* 수직 중앙 정렬 */
}

.process .wrap {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.process .topbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.process .title {
  text-align: left;
  margin-bottom: 0;
}

.process .title .line {
  margin-left: 0;
}

.process .controller {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.process .current-step,
.process .total-step {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(10px, 2vw, 1.2rem);
  letter-spacing: 0.03em;
  line-height: 1.5em;
  color: #c4c4c4;
}

.process .downbtn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.process .number {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(12px, 2vw, 1.6rem);
  line-height: 1.5em;
  font-weight: 700;
  color: var(--main);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.process .downbtn .line {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #c4c4c4;
}

.process .upbtn {
  display: flex;
}

.process .upbtn img {
  width: 100%;
  height: auto;
  max-width: 38px;
}

.process h4 {
  margin-bottom: 1.8rem;
}

.process .right-next-slide {
  transform: translatex(-2px);
}

.process .downbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process .downbox img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1.8rem;
}

.process .card {
  width: 30rem;
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #555;
  border-radius: 50%;
  text-align: center;
  flex-shrink: 0;
  padding-bottom: 2.5rem;
}

.process .downbox span {
  font-family: "Mark Pro", sans-serif;
  font-size: clamp(11px, 2vw, 1.3rem);
  line-height: 1.5em;
  letter-spacing: 0.03em;
  color: var(--main);
}

/* 슬라이드 컨테이너: 넘치는 부분 숨김 */
.process .slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* 슬라이드 트랙: 실제 움직이는 부분 */
.process .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 200%; /* 4개씩 2페이지이므로 200% */
}

/* 각 슬라이드 아이템: 카드와 화살표 포함 */
.process .slide-item {
  width: 12.5%; /* 전체 8개 아이템 중 하나 (100% / 8) */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  gap: 2.8rem;
  padding-right: 2.8rem;
}

.process #white {
  border: none;
  background-color: #fff;
}

.process #white .number,
.process #white h4,
.process #white p {
  color: #000;
}

.process .swiper-pagination {
  display: none;
}

/* ================================
   contact
================================ */
.contact {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .downbox {
  display: flex;
  justify-content: center;
}

.contact .card {
  padding: 5rem 5rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #c4c4c4;
  border-right: none;
}

.contact .card:last-of-type {
  border-right: 1px solid #c4c4c4;
}

.contact .card p {
  width: 35rem;
  text-align: center;
}

.contact .icon {
  width: 100%;
  height: auto;
  max-width: 40px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.contact a {
  font-size: clamp(12px, 2vw, 1.4rem);
  font-weight: 700;
  background-color: var(--main);
  border-radius: 99px;
  padding: 2rem 3rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 1.5rem;
  width: 19.2rem;
}

.contact .right {
  width: 100%;
  height: auto;
  max-width: 1rem;
}
