@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-black: #000000;
  --color-lightblue: #111a3d;
  --color-purple: #4c40f7;
  --color-white: #ffffff;
  --color-darkgray: #525971;
  --color-dark: #070e2a;
  --color-blue: #199eb3;
  --color-gray: #999999;
  --color-header: #3f4b79;
  --color-accent: #57b6ff;
  --cube-color-1st: #636777;
  --cube-color-2nd: #565a68;
  --cube-color-3rd: #616a80;
  --cube-color-4th: #515d7a;
  --cube-color-5th: #636c82;
  --cube-color-6th: #5c6375;
  --font-size-xsmall: 14px;
  --font-size-normal: clamp(16px, 1.2vw, 20px);
  --font-size-small: clamp(14px, 1vw, 18px);
  --font-size-medium: clamp(18px, 1.5vw, 24px);
  --font-size-large: clamp(20px, 2vw, 30px);
  --font-size-xlarge: clamp(30px, 4vw, 50px);
  --font-size-xxlarge: clamp(36px, 5vw, 80px);
  --radius-full: 999px;
}

html {
  scrollbar-gutter: stable overlay;
}
body {
  width: 100%;
  overflow-x: hidden;
  line-height: 1.5;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-family: "Nanum Square Neo", "Noto Sans KR", "Montserrat", "Paperlogy-8ExtraBold", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding-left: 0;
}
img {
  height: auto;
  display: block;
  width: 100%;
}
button {
  background: none;
  border: none;
}
.go-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-small);
  padding: 10px 20px;
  font-size: var(--font-size-medium);
  background-color: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-full);
  cursor: pointer;
}
.arrow-icon {
  width: 16px;
  height: 16px;
}
.header-wrapper {
  max-width: 100rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "NanumSquare";
}
.header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 로고 영역 스타일 */
.header-left .logo img {
  width: 140px;
  height: auto;
}
@media (max-width: 767px) {
  .header-left .logo img {
    width: 100px;
  }
}
/* 메뉴 영역 스타일 */
.header-right .main-menu ul {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-right .main-menu li {
  position: relative; /* a::after 정렬 보조 */
}
.header-right .main-menu a {
  text-decoration: none;
  color: var(--color-white);
  transition: color 0.3s;
  position: relative; /* ::after 기준 */
  padding: 4px 0; /* 밑줄과 간격 */
  display: inline-block;
}
/* underline 애니메이션 */
.header-right .main-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: var(--color-purple);
  transition: transform 0.3s ease;
}
/* hover 시 라인 나타남 */
.header-right .main-menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
/* active 메뉴 - 항상 라인 고정 */
.header-right .main-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.intro {
  background: url(../images/main_visual.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .scroll {
    display: none;
  }
}
.scroll-down {
  position: absolute;
  bottom: 80px;
  left: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.scroll-down .text {
  font-weight: 502;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(-90deg);
  margin-bottom: 30px;
}
.scroll-down svg {
  overflow: visible;
}
.scroll-down svg path {
  animation: arrow-bounce 2s infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@media (min-width: 992px) {
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
.blue-section {
  max-width: 100rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  max-width: 100rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .section {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
  }
}
.intro-title {
  position: relative;
  top: 40%;
  display: flex;
  flex-direction: column;
}
h1 {
  font-size: var(--font-size-xxlarge);
  font-family: "Paperlogy-8ExtraBold";
}
@media (max-width: 390px) {
  h1 {
    font-size: 23px !important;
  }
  h2 {
    font-size: 20px !important;
    line-height: 50px !important;
  }
}
@media (max-width: 320px) {
  h1 {
    font-size: 20px !important;
  }
  h2 {
    font-size: 18px !important;
    line-height: 50px !important;
  }
}
h2 {
  font-size: var(--font-size-xlarge);
  font-family: "Paperlogy-8ExtraBold";

}
h3 {
  font-size: var(--font-size-medium);
}
.blue-txt {
  color: var(--color-blue);
  font-weight: 800;
}
.about-txt {
  font-size: var(--font-size-large);
  line-height: 1.5em;
}
.btn-blue {
  height: 64px;
  line-height: 64px;
  border-radius: 100px;
  padding: 0 27px 0 30px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-transform: capitalize;
  display: inline-flex; /* flex로 */
  align-items: center;
  letter-spacing: -0.01em;
  color: var(--color-white);
  background-color: var(--color-purple);
  transition: 0.4s;
  z-index: 1;
  position: relative; /* 기준 */
  overflow: visible; /* 잘림 방지 */
  transform: translateY(50px);
}
.btn-blue span.icon {
  margin-left: 30px;
  position: relative; /* 기준 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* 화살표 위 */
}
.btn-blue .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 64px;
  height: 64px;
  background: var(--color-purple);
  border-radius: 50%;
  transition: transform 0.35s ease-out;
  z-index: -1; /* 아이콘 뒤 */
  pointer-events: none; /* hover 판정에 방해 안되도록 */
}
/* 애니메이션 적용될 때 */
/* 여러 번 통통 튀는 애니메이션 */
.btn-blue.animate {
  animation: bounceInSmooth 1.5s ease-out forwards;
}
@keyframes bounceInSmooth {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  40% {
    opacity: 1;
    transform: translateY(-20px) scale(1.05);
  }
  60% {
    transform: translateY(10px) scale(0.98);
  }
  75% {
    transform: translateY(-8px) scale(1.02);
  }
  85% {
    transform: translateY(4px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* Hover 상태 */
.btn-blue:hover {
  background: transparent;
}
.btn-blue:hover span.text {
  text-decoration: underline;
}
/* Hover 상태 */
.btn-blue:hover .icon::after {
  transform: translate(-50%, -50%) scale(1); /* hover 중에는 항상 1 유지 */
}
.btn-blue span.icon {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .justify-content-md-center {
    justify-content: center !important;
  }
}
.align-items-center {
  align-items: center !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-center {
  justify-content: center;
}
.d-flex {
  display: flex !important;
}
@media (max-width: 767px) {
  .d-flex {
    display: block !important;
    margin: 20px 0;
  }
}
.btn-blue {
  animation: bounceDown3x 1.5s ease-out;
}
@keyframes bounceDown3x {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  20% {
    transform: translateY(20px);
    opacity: 1;
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(5px);
  }
  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.animated-text {
  display: flex;
  gap: 2px;
}
.char {
  display: inline-block;
  transform: translateX(100px);
  opacity: 0;
}
.char.animate {
  animation: slideInChar 0.6s ease-out forwards;
}
@keyframes slideInChar {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-150 {
  margin-top: 150px;
}
.pt-150 {
  padding-top: 150px;
}
.pb-150 {
  padding-bottom: 150px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-20 {
  padding-left: 0.2em
}
.margin-20 {
  margin: 20px;
}
.margin-40 {
  margin: 10% 0;
}
.ico {
  width: 60px;
  height: auto;
}
.apart1 {
  background: var(--color-lightblue);
  width: 100%;
}
.apart2 {
  background: var(--color-dark);
  width: 100%;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns:  repeat(1, 1fr);
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.grid-merit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid-merit {
    grid-template-columns: repeat(1, 1fr);    
  }
  .margin-merit {
  margin-top: 0 !important;
  padding: 70px 20px  !important;
  }
  .margin-merit-end {
    margin-top: 0 !important;
    padding: 70px 20px 0 20px  !important;  
  }
}
.grid-sample {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 767px) {
  .grid-sample {
    grid-template-columns:  repeat(1, 1fr);
  }
}
.ico-title {
  font-size: var(--font-size-medium);
}
.radius-tlbr {
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.margin-merit {
  margin-top: 100px;
  padding: 20px 50px;
}
.margin-merit-end {
  margin-top: 100px;
  padding: 20px 50px;
}

.border-right {
  border-right: 1px solid #4b4b4b;
}
@media (max-width: 767px) {
  .border-right {
    border-right: none;
    border-bottom: 1px solid #4b4b4b;
  }
}
.container {
  position: relative;
  width: 100%;
  height: 70vh;
  perspective: 2000px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .container {
  height: 80vh;
  overflow: visible; 
  }
}
@media (max-width: 320px) {
  .container {
  height: 100vh;
  overflow: visible; 
  }
}
.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;      /* 이미지 1장 기준 */
  height: 600px;     /* 가로세로 비율 맞추기 */
  transform-style: preserve-3d;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60px;
  box-shadow: 0 10px 25px rgba(0,0,0,1.25);
}
@media (min-width: 768px) and (max-width: 1439px) {
  .slide {
    width: 600px;   
    height: 400px; 
  }
  .slide img {
    border-radius: 30px;
  }
}
@media (max-width: 767px) {
  .slide {
    width: 280px;   
    height: 350px;     
  }
  .slide img {
    border-radius: 20px;
  }
}
@media (max-width: 320px) {
  .slide {
    width: 260px;   
    height: 340px;     
  }
  .slide img {
    border-radius: 20px;
  }
}
/* 텍스트 오버레이 */
.service-header {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 2;
}
.service-title small {
  display: block;
  font-size: var(--font-size-xsmall);
  font-weight: 300;
}
.service-title strong {
  display: block;
  font-size: var(--font-size-xlarge);
  font-weight: bold;
  line-height: 50px;
}
.service-desc {
  font-size: var(--font-size-small);
}
/* 버튼 컨테이너 */
.buttons {
  position: absolute;
  bottom: 20px;          /* 슬라이드 하단 여백 */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}
@media  (max-width: 768px) {
  .buttons {
    bottom: 0 !important 
  }
}
/* 버튼 디자인 */
.nav-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.nav-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}
.nav-btn svg {
  stroke: #333; /* 화살표 색 */
  width: 24px;
  height: 24px;
}
/* 기존 absolute 위치 제거 */
.prev, .next {
  position: static;  /* 위치 초기화 */
  transform: none;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .service-header {
    padding: 10px 0 10px 10px;
  }
}
@media (max-width: 767px) {
  .card img {
    border-radius: 20px;
    width: 100%;
  }
  .service-header {
    display: block;
    padding: 0 10px 10px 0;
  }
  .service-title strong {
    line-height: 40px;
  }
}
footer {
  background: var(--color-black);
}
.footer {
  width: 100%;
  left: 0;
  top: 0;
  padding: 40px 0;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: var(--font-size-xsmall);
  color: var(--color-gray);
}
.process {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 60px 0 60px;
}
@media (max-width: 1023px) {
  .process {
    display: block;
  }
}
.step {
  min-width: 250px;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #aaa;
  border-radius: 999px;
  color: #fff;
  font-size: var(--font-size-normal);
  background: var(--color-dark);
}
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1em;
}
.arrow svg {
  stroke: #fff; /* 화살표 색상 */
  width: 28px;
  height: 28px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .step {
    min-width: 160px;
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .arrow svg {
    display: inline-block;
    transform: rotate(90deg);  
    margin: 1em 0;
  }
  .step {
    min-width: auto !important;
  }
}
.sample-wrapper {
  position: relative;
  display: inline-block;
}
.sample-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 128, 255, 0.2);
  filter: blur(30px);
  opacity: 0; /* 초기엔 안 보이게 */
  transition: opacity 0.3s ease;
  z-index: 0; /* 이미지 뒤로 보내기 */
  border-radius: 12px; /* 필요시 모서리 처리 */
}
.sample-wrapper:hover::before {
  opacity: 1; /* 마우스 오버 시 블러된 배경이 나타남 */
}
.sample-img {
  position: relative;
  z-index: 1;
  display: block;
}
@media (max-width: 320px) {
  .type {
    width: 280px !important;
  }
  .sample-img {
    width: 280px !important;
  }
}
@media (max-width: 767px) {
  .sub1-visual {
  background: url(../images/sub1_mobile.jpg) no-repeat !important;
  height: 250px !important;
  }
  .sub2-visual {
    background: url(../images/sub2_mobile.jpg) no-repeat !important;
    height: 250px !important;
  }
  .sub3-visual {
    background: url(../images/sub3_mobile.jpg) no-repeat  !important;
    height: 250px !important; 
  }
}
.sub1-visual {
  background: url(../images/sub1.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 400px;
}
.sub2-visual {
  background: url(../images/sub2.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 400px;
}
.sub3-visual {
  background: url(../images/sub3.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 400px;
}
.sub4-visual {
  background: url(../images/sub4.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
}
.sub-title {
  font-size: var(--font-size-xlarge);
  font-weight: 800;
}
@media (max-width: 767px) {
  .sub-title {
    font-size: var(--font-size-large);
    font-weight: 800;
  }
}
.sub-txt {
  font-size: var(--font-size-small);
}
.sub-gr {
  position: relative;
  top: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .sub-gr {
    top: 35% !important;
  }
}
.sub-section {
  max-width: 100rem;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.type {
  padding: 15px 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--color-darkgray);
  border-bottom: 1px solid var(--color-darkgray);
}
.type-gr {
  display: flex;
  gap: 20px;
}
.type-title {
  font-size: var(--font-size-medium);
  font-weight: 600;
}
.type-circle {
  background: var(--color-dark);
  width: 100px;
  padding: 5px;
  border: 2px solid var(--color-blue);
  border-radius: 40px;
  font-size: var(--font-size-xsmall);
  text-align: center;
}
.gap-50 {
  gap: 50px;
}
.gap-100 {
  gap: 100px;
}
.gap-150 {
  gap: 150px;
}
.solution {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr; /* 기본값: 모바일 (<=768px) */
  gap: 30px;
}
/* 태블릿 ~ 1440px */
@media (min-width: 768px) and (max-width: 1439px) {
  .solution {
    grid-template-columns: 50% 50%;
    gap: 30px;
  }
}
@media (min-width: 1441px) {
  .solution {
    grid-template-columns: 3fr 7fr;
    gap: 100px;
  }
}
.solution-left-wrapper {
  position: relative;
  display: inline-block;
}
.solution-left-wrapper img {
  display: block;
}
@media (max-width: 320px) {
  .solution-left-wrapper img {
  width: 280px;  
  }
  .price-box {
    min-width: 120px !important;
  }
}
.overlay-text {
  position: absolute;
  top: 5%;
  left: 5%;
  list-style: none; /* 기본 불릿 제거 */
  padding: 0;
  margin: 0;
}
.overlay-text li {
  padding: px 10px;
}
.overlay-text .en {
  font-size: var(--font-size-xsmall);
}
.overlay-text .kr {
  font-size: var(--font-size-large);
  font-weight: 600;
}
.solution-right {
  display: block;
}
.solution-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solution-right li {
  margin: 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
}
.solution-right .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1da1f2, #0f70c9);
  margin-right: 10px;
}
.price {
  display: grid;
  grid-template-columns: repeat(2, auto); /* 아이템 2개 가로 배치 */
  justify-content: center; /* 가로 중앙 정렬 */
  align-items: center;     /* 세로 정렬 */
  gap: 20px; 
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 320px) {
  .price {
    display: block;
  }
  .price-title {
    margin: 30px 0 10px 0
  }
  .price-box {
    width: 200px !important
  }
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-title {
  margin-bottom: 20px;
  font-size: var(--font-size-small);
  color: #ddd;
}
.price-box {
  padding: 20px 40px;
  border-radius: 999px; /* 완전 둥근 버튼 */
  font-size: var(--font-size-large);
  font-weight: 800;
  background: #3c4560; /* 기본 색상 */
  color: #fff;
  min-width: 300px;
}
@media (max-width: 1439px) {
  .price-box {
    min-width: 150px !important;
    font-size: var(--font-size-normal);
  }
}
/* 강조된 박스 */
.price-box.highlight {
  background: #fff;
  color: #000;
}
.features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .features {
    grid-template-columns: repeat(2, 1fr); 
  }
}
@media (min-width: 1440px) {
  .features {
    grid-template-columns: repeat(3, 1fr); 
  }
}
@media (max-width: 767px) {
  .feature.feature-title {
    display: none !important;
  }
}
.feature {
  padding: 60px 20px;
}
.feature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-large);
  font-weight: bold;
}
.feature h3 {
  font-size: var(--font-size-medium);
  margin: 10px 60px;
}
@media (max-width: 786px) {
  .feature h3 {
    margin: 10px 20px;
  }
  .feature p {
    margin: 10px 20px !important;
  }
  .solution-icon {
    margin: 30px 20px !important;
  }
}
.feature p {
  font-size: var(--font-size-xsmall);
  line-height: 1.5;
  margin: 10px 60px;
}
.solution-icon {
  width: 80px;
  font-size: 28px;
  margin: 46px 50px;
}
.cube1 {
  background: var(--cube-color-1st);
}

.cube2 {
  background: var(--cube-color-2nd);
}

.cube3 {
  background: var(--cube-color-3rd);
}

.cube4 {
  background: var(--cube-color-4th);
}

.cube5 {
  background: var(--cube-color-5th);
}

.cube6 {
  background: var(--cube-color-6th);
}
.contact {
  display: flex; /* flexbox 사용 */
  justify-content: center; /* 가로 중앙 */
  align-items: center; /* 세로 중앙 */
  height: 100vh; /* 화면 전체 높이 기준 중앙정렬 */
  text-align: center; /* 내부 텍스트도 가운데 정렬 */
}
.contact-title {
  font-size: var(--font-size-xlarge);
  font-weight: 800;
}
.contact-tele {
  font-size: var(--font-size-medium);
}
.contact div {
  max-width: 600px; /* 글자 영역 너무 넓어지지 않게 제한 */
}
.panel {
  border-radius: 12px;
  position: relative;
}
.panel-header {
  position: relative;
  background: var(--color-header);
  color: #e9f0ff;
  font-weight: 700;
  font-size: var(--font-size-small);
  padding: 16px 24px 16px 34px; /* 왼쪽 패딩 늘리기 */
  border-radius: 10px;
  width: 100%;
  margin: -10px 0 22px;
}
.panel-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  border-radius: 10px 0 0 10px;
  background: var(--color-accent);
}
/* 리스트 */
.bullets {
  margin: 0 0 22px;
  padding: 0 0 0 18px; /* 들여쓰기 최소 */
  list-style: none;
}
.bullets li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--color-accent);
  border-radius: 1px;
}
/* 버튼(기타 추가비용) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 2px solid rgba(87, 182, 255, 0.55);
  color: #e8f4ff;
  background: rgba(87, 182, 255, 0.08);
  backdrop-filter: blur(3px);
  cursor: default;
  user-select: none;
  font-size: var(--font-size-small);
  margin: 8px;
  font-weight: 600;
}
/* 하단 작은 불릿 */
.foot-notes {
  list-style: none;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}
.foot-notes li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0 0;
}
.foot-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
#topBtn {
  display: none; /* 기본 숨김 */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: #333;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
#topBtn:hover {
  transform: scale(1.1);
}
#topBtn svg {
  width: 30px;
  height: 30px;
}
/* 모바일 메뉴 스타일 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: black;
    width: 100%;
    height: 100%;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    z-index: 1000;
    padding: 0 1em;
	opacity: 0.9;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
	margin-top: 60px;
}
.mobile-menu li {
	color: white;
	border-bottom: 1px solid #5a5a5a;
	padding: 14px 0;
}
.mobile-menu a {
    text-decoration: none;
    font-size: var(--font-size-normal);
    color: #333;
}
.hamburger {
	cursor: pointer;
	width: 30px;
	height: 30px;
	flex-direction: column;
	justify-content: center;
	display: none;
    font-size: 2.5em;
    color: white;
	position: absolute;
	top: 20px;
	right: 20px;
}
.hamburger span {
  display: block;
  height: 4px;
  background-color: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.close-btn {
  color: white;
  font-size: 50px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 20px;
  user-select: none;
}
/* 스크롤 시 색상 변경 */
.hamburger.scrolled span {
  background-color: black;
}
/* 메뉴 열렸을 때 닫기 버튼 모양으로 변환 */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
/* 미디어쿼리로 모바일에서 햄버거 보이게 */
@media (max-width: 767px) {
    .header-right { display: none; } /* 기존 메뉴 숨김 */
    .hamburger { display: flex; }
}
/* 기본 상태 - 메뉴 안 링크 텍스트 */
#mobileMenu a {
  color: white; /* 기본 텍스트 색상 */
  text-decoration: none;
}
/* 메뉴 열렸을 때 링크 텍스트 색상 변경 */
#mobileMenu.open a {
  color: white; /* 슬라이드 메뉴 열릴 때 텍스트 색상 */
}
.que {
	font-weight: 600;
	color: #3c3c3c;
}
.ans {
	color: #3c3c3c;
}
.tele {
  color: var(--color-accent);
}
.blink {
  animation: blinkText 1s step-start infinite;
}
@keyframes blinkText {
  50% {
    opacity: 0;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
