/*======================================================================
  main.optimized.css
  - ThemeWagon Bootstrap 5 랜딩페이지용 메인 CSS 정리본
  - 그누보드/에티테마 기능영역과 충돌을 줄이기 위해 기존 클래스 유지
  - 섹션별 주석, 모바일/태블릿/PC 반응형 보강 포함

  [섹션 구성]
  01. Variables / Font / Color
  02. Base / Reset / Common
  03. Header / Topbar / Branding
  04. Navigation
  05. Page Title / Section Common
  06. Hero
  07. Services
  08. Testimonials
  09. Process
  10. Contact / Form / Kakao
  11. FAQ / Service Details
  12. Footer / Mobile Fixed CTA
  13. Final Responsive Optimization Overrides
======================================================================*/

/*--------------------------------------------------------------
# 01. Variables / Font / Color
--------------------------------------------------------------*/

/* 기본 폰트 설정 */
:root {
  --default-font: "Noto Sans KR", "Roboto", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Noto Sans KR", "Montserrat", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
  --nav-font: "Noto Sans KR", "Open Sans", "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", sans-serif;
}

/* 
  사이트 전체 공통 컬러
  여기서 수정하면 전체 섹션 색상이 함께 변경됨
*/
:root { 
  --background-color: #ffffff;
  --default-color: #374151;
  --heading-color: #0f172a;

  --accent-color: #1d4ed8;
  
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}
/* 
  내비게이션 전용 컬러
  메뉴 영역만 별도로 제어할 때 사용
*/
:root {
  --nav-color: #222222; /* 기본 메뉴 글자색 */
  --nav-hover-color: #106eea; /* 메뉴 hover / active 색상 */
  --nav-mobile-background-color: #ffffff; /* 모바일 메뉴 배경색 */
  --nav-dropdown-background-color: #ffffff; /* 드롭다운 배경색 */
  --nav-dropdown-color: #222222; /* 드롭다운 메뉴 글자색 */
  --nav-dropdown-hover-color: #106eea; /* 드롭다운 hover 색상 */
}

/*--------------------------------------------------------------
# 배경 프리셋
# 섹션에 클래스만 추가해서 재사용
--------------------------------------------------------------*/

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* 부드러운 스크롤 이동 */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# 02. Base / Reset / Common
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  word-break: keep-all;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  word-break: keep-all;
  line-height: 1.4;
}

/* 본문 한글 가독성 보정 */
p,
li,
span,
a,
button,
input,
textarea,
select,
label {
  word-break: keep-all;
}

/* 이미지 반응형 안정화 */
img {
  max-width: 100%;
  height: auto;
}


/*--------------------------------------------------------------
# 03. Header / Topbar / Branding
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

/* 상단바 */
.header .topbar {
  background-color: var(--accent-color);
  height: 36px; /* ↓ 40 → 36 */
  padding: 0;
  font-size: 13px; /* ↓ */
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .header .topbar {
    height: 32px;
    font-size: 12px;
  }

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 12px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 16px; /* ↓ */
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

/* 로고 영역 */
.header .branding {
  background-color: var(--background-color);
  min-height: 56px; /* ↓ 60 → 56 */
  padding: 8px 0;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

/* 로고 이미지 */
.header .logo img {
  max-height: 30px; /* ↓ 36 → 30 */
  margin-right: 6px;
}

/* 로고 텍스트 핵심 수정 */
.header .logo h1 {
  font-size: 22px; /* ↓ 30 → 22 (핵심) */
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  white-space: nowrap; /* 줄바꿈 방지 */
}

/* 태블릿 */
@media (max-width: 992px) {
  .header .logo h1 {
    font-size: 20px;
  }

  .header .logo img {
    max-height: 28px;
  }
}

/* 모바일 */
@media (max-width: 576px) {
  .header .branding {
    min-height: 50px;
    padding: 6px 0;
  }

  .header .logo h1 {
    font-size: 18px;
  }

  .header .logo img {
    max-height: 26px;
  }
}

/* 스크롤시 */
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
/*--------------------------------------------------------------
# 04. Navigation
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 14px 12px; /* ↓ 18x15 → 14x12 */
    font-size: 14px;   /* ↓ 15 → 14 */
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    line-height: 1.2;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 4px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 8px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 12px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.08);
  }

  .navmenu .dropdown ul li {
    min-width: 180px; /* ↓ 200 → 180 */
  }

  .navmenu .dropdown ul a {
    padding: 9px 18px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 11px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px; /* ↓ 28 → 24 */
    line-height: 0;
    margin-right: 6px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 56px 16px 16px 16px; /* 헤더 축소에 맞춤 */
    padding: 8px 0;
    margin: 0;
    border-radius: 10px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 18px;
    font-family: var(--nav-font);
    font-size: 15px; /* ↓ 17 → 15 */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    line-height: 1.35;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    width: 28px;   /* ↓ 30 → 28 */
    height: 28px;  /* ↓ 30 → 28 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    flex-shrink: 0;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 8px 16px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.04);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 28px; /* ↓ 32 → 28 */
    top: 14px;
    right: 14px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* 초소형 모바일 추가 */
@media (max-width: 575px) {
  .navmenu ul {
    inset: 52px 12px 12px 12px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 14px;
    padding: 9px 16px;
  }

  .mobile-nav-toggle {
    font-size: 22px;
    margin-right: 4px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    font-size: 26px;
    top: 12px;
    right: 12px;
  }
}


/*--------------------------------------------------------------
# AOS Delay Reset on Mobile
--------------------------------------------------------------*/
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# 05. Page Title / Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--heading-color);
  background-color: #ffffff;
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
  word-break: keep-all;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
}

.page-title .breadcrumbs ol li {
  color: var(--default-color);
  line-height: 1.5;
  word-break: keep-all;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 8px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  padding-right: 8px;
  color: rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# 05-1. Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  margin: 0;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--accent-color);
  line-height: 1.2;
}

.section-title p {
  margin: 12px 0 0;
  font-size: 30px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.4;
  word-break: keep-all;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .page-title {
    padding: 20px 0;
  }

  .page-title h1 {
    font-size: 21px;
  }

  .page-title .breadcrumbs ol {
    font-size: 12px;
    margin-top: 6px;
  }

  section,
  .section {
    padding: 50px 0;
  }

  .section-title {
    padding-bottom: 36px;
  }

  .section-title h2 {
    font-size: 11px;
    padding: 5px 14px;
  }

  .section-title p {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.35;
  }
}

@media (max-width: 575.98px) {
  .page-title h1 {
    font-size: 19px;
  }

  .section-title {
    padding-bottom: 30px;
  }

  .section-title p {
    font-size: 21px;
  }
}

/*--------------------------------------------------------------
# 06. Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 78vh;
  position: relative;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(0, 0, 0, 0.34) 35%,
    rgba(0, 0, 0, 0.18) 65%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

/* 배지 */
.hero-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  word-break: keep-all;
  backdrop-filter: blur(4px);
}

/* 제목 */
.hero h1 {
  margin: 0 0 18px;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  word-break: keep-all;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  color: #00ff22;
}

/* 본문 */
.hero .hero-desc {
  margin: 0 0 26px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* 신뢰 포인트 */
.hero-trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 30px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  word-break: keep-all;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.hero-trust-item i {
  flex-shrink: 0;
  font-size: 16px;
  color: #93c5fd;
}

/* 버튼 */
.hero-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-get-started,
.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn-get-started {
  color: #ffffff;
  background: var(--accent-color);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero .btn-get-started:hover {
  color: #ffffff;
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero .btn-watch-video {
  gap: 8px;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe6f5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
  background: #ffffff;
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

/* 태블릿 */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 90px 0 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .hero-desc {
    font-size: 17px;
    margin-bottom: 22px;
  }

  .hero-trust-list {
    align-items: center;
  }

  .hero-trust-item {
    justify-content: center;
  }

  .hero-btn-wrap {
    justify-content: center;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .hero {
    padding: 78px 0 50px;
  }

  .hero-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.32;
    margin-bottom: 14px;
  }

  .hero .hero-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero .hero-desc br {
    display: none;
  }

  .hero-trust-list {
    gap: 8px;
    margin-bottom: 24px;
    align-items: flex-start;
  }

  .hero-trust-item {
    font-size: 14px;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-btn-wrap {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 7px;
  }

  .hero .btn-watch-video i {
    font-size: 16px;
  }
}

/* 초소형 */
@media (max-width: 480px) {
  .hero {
    padding: 72px 0 46px;
  }

  .hero-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero .hero-desc {
    font-size: 14px;
  }

  .hero-trust-item {
    font-size: 13px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    min-width: 124px;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero .btn-watch-video i {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# 07. Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  padding: 42px 26px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.services .service-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* 아이콘 */
.services .service-item .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 1;
}

/* 제목 */
.services .service-item h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--heading-color);
  word-break: keep-all;
  transition: color 0.3s ease;
}

/* 설명 */
.services .service-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #555555;
  word-break: keep-all;
}

/* hover */
.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .services .service-item {
    padding: 36px 22px;
  }

  .services .service-item .icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .services .service-item .icon i {
    font-size: 22px;
  }

  .services .service-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .services .service-item p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 767.98px) {
  .services .service-item {
    padding: 30px 18px;
    border-radius: 14px;
  }

  .services .service-item .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .services .service-item .icon i {
    font-size: 20px;
  }

  .services .service-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .services .service-item p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .services .service-item {
    padding: 26px 16px;
  }

  .services .service-item .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .services .service-item .icon i {
    font-size: 18px;
  }

  .services .service-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .services .service-item p {
    font-size: 13px;
    line-height: 1.6;
  }
}
/*--------------------------------------------------------------
# 08. Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: color-mix(in srgb, var(--background-color), transparent 35%);
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  padding: 10px 12px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto 8px;
}

.testimonials .testimonial-item h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  word-break: keep-all;
}

.testimonials .testimonial-item h4 {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  word-break: keep-all;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
  font-size: 14px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-size: 24px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  position: relative;
  left: -4px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  position: relative;
  right: -4px;
  top: 8px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px;
  font-size: 15px;
  line-height: 1.8;
  font-style: normal;
  word-break: keep-all;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  position: relative;
  margin-top: 24px;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: color-mix(in srgb, var(--default-color), transparent 55%);
  opacity: 0.6;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

/* 데스크탑 */
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 78%;
  }
}

/* 태블릿 */
@media (max-width: 991.98px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 88px;
    height: 88px;
    border-width: 5px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 19px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 13px;
    margin-bottom: 13px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
    line-height: 1.75;
    width: 90%;
  }

  .testimonials .swiper-pagination {
    margin-top: 20px;
  }
}

/* 모바일 */
@media (max-width: 767.98px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .testimonial-item {
    padding: 8px 8px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 78px;
    height: 78px;
    border-width: 4px;
    margin-bottom: 10px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
    margin: 8px 0 4px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .testimonials .testimonial-item .stars {
    margin-bottom: 12px;
  }

  .testimonials .testimonial-item .stars i {
    font-size: 13px;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 20px;
  }

  .testimonials .testimonial-item p {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .testimonials .swiper-pagination {
    margin-top: 18px;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* 초소형 */
@media (max-width: 575.98px) {
  .testimonials {
    padding: 52px 0;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 17px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  .testimonials .testimonial-item p {
    font-size: 13px;
    line-height: 1.65;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}


/*--------------------------------------------------------------
# 09. Process Section
--------------------------------------------------------------*/
.process .process-item {
  background-color: var(--surface-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px 20px 26px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  height: 100%;
}

.process .process-item:hover {
  transform: translateY(-6px);
}

/* 아이콘 */
.process .process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  transition: 0.3s;
}

.process .process-item:hover .process-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* STEP 배지 */
.process .process-step {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* 텍스트 */
.process .process-content h4 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.4;
  word-break: keep-all;
}

.process .process-content span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1.5;
  word-break: keep-all;
}

.process .process-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  word-break: keep-all;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .process .process-item {
    padding: 28px 18px 24px;
  }

  .process .process-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    font-size: 28px;
  }

  .process .process-step {
    top: 14px;
    left: 14px;
    padding: 5px 11px;
    font-size: 11px;
  }

  .process .process-content h4 {
    font-size: 19px;
  }

  .process .process-content span {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .process .process-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 767.98px) {
  .process .process-item {
    padding: 24px 16px 20px;
    border-radius: 14px;
  }

  .process .process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
    font-size: 26px;
  }

  .process .process-step {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 10px;
  }

  .process .process-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .process .process-content span {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .process .process-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .process .process-item {
    padding: 22px 14px 18px;
    border-radius: 12px;
  }

  .process .process-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    font-size: 22px;
  }

  .process .process-step {
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    font-size: 9px;
  }

  .process .process-content h4 {
    font-size: 16px;
  }

  .process .process-content span {
    font-size: 12px;
  }

  .process .process-content p {
    font-size: 13px;
    line-height: 1.55;
  }
}

/*--------------------------------------------------------------
# 10. Contact Section / Form / Kakao
--------------------------------------------------------------*/
.contact-section {
  padding: 50px 0;
  background: #f7f8fa;
}

.contact-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-wrap {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.contact-left,
.contact-right {
  display: flex;
}

.contact-left {
  width: 40%;
}

.contact-right {
  width: 60%;
}

.contact-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
  justify-content: center;
  gap: 20px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  font-size: 18px;
  color: #2f67f6;
  background: #eef4ff;
  border-radius: 50%;
}

.contact-text h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  word-break: keep-all;
}

.contact-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  word-break: keep-all;
}

/* Kakao */
.kakao-box h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
  color: #111827;
  word-break: keep-all;
}

.kakao-consult-box {
  display: block;
  padding: 20px;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  background-color: #1d4ed8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.22);
  transition: 0.3s ease;
}

.kakao-consult-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.32);
}

.kakao-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.kakao-icon {
  display: block;
  width: 26px;
  height: auto;
}

.kakao-header h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.kakao-sub-title {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}

.kakao-step-card {
  margin-bottom: 15px;
  padding: 15px 15px 15px 25px;
  text-align: left;
  background: #ffffff;
  border-radius: 12px;
}

.kakao-step-card h5 {
  margin-bottom: 8px;
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #1d4ed8;
  border-bottom: 1px solid #f0f0f0;
}

.kakao-step-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kakao-step-card ul li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #444;
  word-break: keep-all;
}

.kakao-step-card ul li strong {
  position: absolute;
  left: 0;
  font-weight: 800;
  color: #1d4ed8;
}

.kakao-step-card ul li.sub-item {
  padding-left: 30px;
  font-size: 13px;
  color: #666;
}

.kakao-step-card ul li.sub-item::before {
  content: "-";
  position: absolute;
  left: 18px;
  color: #999;
}

.kakao-btn-action {
  display: block;
  width: 80%;
  max-width: 320px;
  margin: 12px auto 0;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.kakao-bottom-text {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  word-break: keep-all;
}

/* Form */
.contact-form {
  height: 100%;
}

.form-grid {
  display: grid;
  gap: 8px;
}

.form-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  word-break: keep-all;
}

.form-control,
.form-select {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  font-size: 13.5px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #2f67f6;
  box-shadow: 0 0 0 3px rgba(47, 103, 246, 0.08);
}

.form-textarea {
  height: 70px;
  min-height: 70px;
  padding: 8px 10px;
  resize: none;
}

.field-error {
  min-height: 12px;
  margin-top: 1px;
  font-size: 12px;
}

.privacy-box {
  margin-top: 6px;
  margin-bottom: 8px;
}

.privacy-box h5 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.privacy-box h5 span {
  color: #ef4444;
}

.privacy-text {
  height: 46px;
  margin-bottom: 10px;
  padding: 8px 10px;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.agree-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  word-break: keep-all;
}

.agree-check input {
  width: 15px;
  height: 15px;
  margin: 0;
}

.submit-btn {
  display: block;
  width: 80%;
  max-width: 320px;
  height: 44px;
  margin: 10px auto 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #4d73f8 0%, #3055d6 100%);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

.product-name-wrap {
  display: block !important;
  margin-bottom: 16px;
}

#product_name_auto.form-control {
  width: 100%;
  background: #f8fafc;
  color: #111827;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199.98px) {
  .contact-left {
    width: 42%;
  }

  .contact-right {
    width: 58%;
  }

  .contact-card {
    padding: 20px;
  }

  .kakao-box h3 {
    font-size: 25px;
  }
}

@media (max-width: 991.98px) {
  .contact-wrap {
    flex-direction: column;
    gap: 16px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-card {
    padding: 20px 18px;
  }

  .contact-info-card {
    gap: 18px;
  }

  .kakao-box h3 {
    font-size: 24px;
  }

  .kakao-header h4 {
    font-size: 20px;
  }

  .kakao-btn-action,
  .submit-btn {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 42px 0;
  }

  .contact-section .container {
    padding: 0 14px;
  }

  .contact-wrap {
    gap: 14px;
  }

  .contact-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .contact-info-card {
    gap: 16px;
  }

  .contact-info-item {
    gap: 10px;
    margin-bottom: 12px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .contact-text h4 {
    font-size: 15px;
  }

  .contact-text p {
    font-size: 13px;
  }

  .kakao-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .kakao-consult-box {
    padding: 16px;
    border-radius: 14px;
  }

  .kakao-header h4 {
    font-size: 18px;
  }

  .kakao-sub-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .kakao-step-card {
    padding: 14px 14px 14px 18px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .kakao-step-card h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .kakao-step-card ul li {
    font-size: 13px;
    padding-left: 18px;
  }

  .kakao-step-card ul li.sub-item {
    padding-left: 26px;
    font-size: 12.5px;
  }

  .kakao-step-card ul li.sub-item::before {
    left: 16px;
  }

  .kakao-btn-action {
    padding: 10px 14px;
    font-size: 14px;
  }

  .kakao-bottom-text {
    font-size: 11px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 12.5px;
  }

  .form-control,
  .form-select {
    height: 40px;
    font-size: 13px;
  }

  .form-textarea {
    height: 78px;
    min-height: 78px;
  }

  .privacy-box h5 {
    font-size: 13px;
  }

  .privacy-text {
    height: 52px;
    font-size: 11.5px;
  }

  .agree-check {
    font-size: 13px;
    align-items: flex-start;
  }

  .submit-btn {
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .contact-section {
    padding: 36px 0;
  }

  .contact-section .container {
    padding: 0 12px;
  }

  .contact-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .contact-text h4 {
    font-size: 14px;
  }

  .contact-text p {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .kakao-box h3 {
    font-size: 20px;
  }

  .kakao-icon {
    width: 22px;
  }

  .kakao-header h4 {
    font-size: 17px;
  }

  .kakao-sub-title {
    font-size: 12px;
  }

  .kakao-step-card {
    padding: 12px 12px 12px 16px;
  }

  .kakao-step-card h5 {
    font-size: 13px;
  }

  .kakao-step-card ul li {
    font-size: 12.5px;
  }

  .kakao-step-card ul li.sub-item {
    font-size: 12px;
    padding-left: 24px;
  }

  .kakao-btn-action,
  .submit-btn {
    font-size: 13px;
  }

  .form-control,
  .form-select {
    height: 38px;
    padding: 0 9px;
    font-size: 12.5px;
  }

  .form-textarea {
    padding: 8px 9px;
  }

  .privacy-text {
    font-size: 11px;
    line-height: 1.35;
  }

  .agree-check {
    gap: 6px;
    font-size: 12.5px;
  }

  .agree-check input {
    width: 14px;
    height: 14px;
  }
}

/*--------------------------------------------------------------
# Mobile Form Tight Fix
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .contact-card {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .form-grid {
    gap: 2px;
  }

  .form-group {
    margin-bottom: 6px;
  }

  .form-group label {
    width: 90%;
    margin: 0 auto 3px;
    font-size: 12px;
    line-height: 1.3;
  }

  .form-control,
  .form-select,
  .form-textarea {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .form-control,
  .form-select {
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 8px;
  }

  .form-textarea {
    height: 56px;
    min-height: 56px;
    padding: 8px 10px;
  }

  .field-error {
    display: none;
    width: 90%;
    margin: 3px auto 0;
    font-size: 11px;
    line-height: 1.3;
  }

  .field-error:not(:empty) {
    display: block;
  }

  .privacy-box {
    width: 80%;
    margin: 8px auto 8px;
  }

  .privacy-box h5 {
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.3;
  }

  .privacy-text {
    height: 42px;
    margin-bottom: 6px;
    padding: 7px 9px;
    font-size: 10.5px;
    line-height: 1.3;
  }

  .privacy-text p {
    margin-bottom: 2px !important;
  }

  .agree-check {
    gap: 5px;
    font-size: 12px;
    line-height: 1.25;
  }

  .agree-check input {
    width: 13px;
    height: 13px;
    margin: 0;
  }

  .loading,
  .error-message,
  .sent-message {
    width: 80%;
    margin: 6px auto 0;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
  }

  .submit-btn {
    width: 80%;
    max-width: none;
    height: 38px;
    margin: 8px auto 0;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .contact-card {
    padding: 12px 10px;
  }

  .form-group {
    margin-bottom: 5px;
  }

  .form-group label {
    width: 90%;
    margin-bottom: 3px;
    font-size: 11.5px;
  }

  .form-control,
  .form-select {
    height: 34px;
    font-size: 11.5px;
  }

  .form-textarea {
    height: 52px;
    min-height: 52px;
  }

  .privacy-box {
    width: 80%;
    margin: 7px auto;
  }

  .submit-btn {
    height: 36px;
    margin-top: 7px;
    font-size: 12.5px;
  }
}

/*--------------------------------------------------------------
# Contact Custom
--------------------------------------------------------------*/

/* 성공 메시지 녹색 박스 */
.sent-message {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

/* select 우측 아이콘 */
.select-wrap {
  position: relative;
  width: 100%;
}

.select-wrap .form-select {
  width: 100%;
  padding-right: 38px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.select-wrap::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #6b7280;
  pointer-events: none;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .select-wrap {
    width: 90%;
    margin: 0 auto;
  }
}


/* ========================================
   Contact 여백 확장 (답답함 해결)
======================================== */

/* PC */
.contact-card {
  padding: 40px !important;
}

/* 내부 폼 여백 */
.contact-form {
  padding: 10px 5px;
}

/* 각 입력 간격 */
.form-group {
  margin-bottom: 14px;
}

/* 모바일 */
@media (max-width: 768px) {
  .contact-card {
    padding: 26px 18px !important;
  }

  .contact-form {
    padding: 8px 0;
  }

  .form-group {
    margin-bottom: 12px;
  }
}


/*--------------------------------------------------------------
# 11. Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# 11-1. FAQ Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

/* 제목 */
.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 34px 0 0;
  cursor: pointer;
  display: block;
  word-break: keep-all;
  color: #111;
  transition: color 0.3s ease;
}

/* 내용 */
.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding-top 0.3s ease;
}

.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  word-break: keep-all;
  overflow: visible; /* 중요 */
}

/* 토글 */
.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  color: #666;
}

/* 열림 상태 */
.faq .faq-container .faq-item.faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.faq .faq-container .faq-item.faq-active h3 {
  color: #ffffff !important;
}

.faq .faq-container .faq-item.faq-active .faq-content {
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-item.faq-active .faq-content p {
  color: rgba(255,255,255,0.92);
}

.faq .faq-container .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991.98px) {
  .faq .faq-container .faq-item {
    padding: 18px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 15px;
    margin-right: 30px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 13px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 20px;
    right: 18px;
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .faq .faq-container .faq-item {
    padding: 16px 40px 16px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 12px;
    line-height: 1.65;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 17px;
    right: 15px;
    font-size: 12px;
  }

  .faq .faq-container .faq-item.faq-active .faq-content {
    padding-top: 8px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .faq .faq-container .faq-item {
    padding: 14px 38px 14px 14px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 13px;
    line-height: 1.35;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 11px;
    line-height: 1.55;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 15px;
    right: 13px;
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# 12. Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.78);
  background-color: #020617;
  font-size: 14px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.sitename {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1;
  word-break: keep-all;
}

.footer .footer-top {
  padding-top: 56px;
  padding-bottom: 24px;
}

.footer .footer-about,
.footer .footer-links,
.footer .footer-contact {
  margin-bottom: 30px;
}

.footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.footer .social-links a:hover {
  color: #ffffff;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 17px;
  font-weight: 800;
  padding-bottom: 12px;
  margin-bottom: 10px;
  color: #ffffff;
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.2s;
}

.footer .footer-links ul a:hover {
  color: #ffffff;
}

.footer .footer-about p,
.footer .footer-contact p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# 12. Mobile Fixed CTA Bar
# 모바일 하단 고정 상담바: PC 숨김 / 모바일 출력
--------------------------------------------------------------*/

/* PC에서는 숨김 */
.m-fixed-bottom-bar {
  display: none !important;
}

/* 모바일에서만 출력 */
@media (max-width: 768px) {
  .m-fixed-bottom-bar {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 999999 !important;

    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    gap: 10px !important;
  }

  .m-fixed-bottom-bar .m-fixed-item {
    flex: 1 !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
  }

  .m-fixed-bottom-bar .call-btn {
    background: #1d4ed8 !important;
    color: #fff !important;
  }

  .m-fixed-bottom-bar .kakao-btn {
    background: #fee500 !important;
    color: #111 !important;
  }

  .m-fixed-bottom-bar .kakao-btn img {
    width: 28px !important;
    height: 28px !important;
  }

  body {
    padding-bottom: 86px !important;
  }
}
/* =========================
   스크롤 TOP 버튼
   PC/모바일 전체 숨김
========================= */
#scroll-top,
.scroll-top {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* 카드 전체 */
.contact-card {
  padding: 32px !important;
}

/* 모바일 */
@media (max-width: 768px) {
  .contact-card {
    padding: 24px !important;
  }
}

.footer-info {
  text-align: center;
  line-height: 1.7;
}

/* 상호 */
.footer-company {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

/* 나머지 줄 */
.footer-copy,
.footer-biz,
.footer-address {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

/* =========================
   Footer 세로 압축
========================= */

#footer {
  padding: 40px 0 20px;
}

#footer .footer-top {
  padding-bottom: 20px;
}

#footer .row.gy-4 {
  --bs-gutter-y: 1.2rem;
}

#footer .footer-about .sitename {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

#footer .footer-contact p,
#footer .footer-links ul li,
#footer .col-lg-4 p {
  margin-bottom: 6px;
  line-height: 1.5;
  font-size: 15px;
}

#footer .footer-links h4,
#footer .col-lg-4 h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

#footer .footer-links ul {
  padding: 0;
  margin: 0;
}

#footer .social-links {
  margin-top: 12px;
  gap: 10px;
}

#footer .social-links a {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

#footer .copyright {
  margin-top: 20px !important;
  padding-top: 15px;
  padding-bottom: 0;
}

#footer .footer-info {
  margin: 0;
  line-height: 1.8;
}

#footer .footer-company {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

#footer .footer-biz,
#footer .footer-address,
#footer .footer-copy {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 15px;
}

/* 모바일 */
@media (max-width: 768px) {

  #footer {
    padding: 30px 0 15px;
  }

  #footer .footer-company {
    font-size: 24px;
  }

  #footer .footer-contact p,
  #footer .footer-links ul li,
  #footer .footer-biz,
  #footer .footer-address,
  #footer .footer-copy {
    font-size: 14px;
  }

  #footer .footer-links h4,
  #footer .col-lg-4 h4 {
    margin-bottom: 8px;
  }

}

/*--------------------------------------------------------------
# 13. Final Responsive Optimization Overrides
# 기존 클래스 유지 + 모바일/태블릿 안정화 보강
--------------------------------------------------------------*/
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.gnuboard-main {
  background: #ffffff;
}

@media (max-width: 1199.98px) {
  .header .container,
  .section .container,
  .footer .container {
    max-width: 100%;
  }

  .mobile-nav-active .navmenu > ul {
    max-height: calc(100vh - 90px);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: 620px;
  }

  .section-title p {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .header .topbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header .topbar .social-links a {
    margin-left: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 46px;
  }

  .section,
  section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .services .service-item,
  .process .process-item,
  .contact-card {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  .footer {
    padding-bottom: 96px;
  }

  #footer .footer-top {
    padding-top: 34px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header .topbar .contact-info i.ms-4 {
    margin-left: 10px !important;
  }

  .header .topbar .contact-info i a {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .section-title p {
    font-size: 20px;
  }

  .m-fixed-bottom-bar {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    gap: 8px !important;
  }

  .m-fixed-bottom-bar .m-fixed-item {
    height: 52px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  .header .topbar .contact-info i:first-child {
    display: none !important;
  }

  .hero h1 {
    font-size: 24px;
  }

  .m-fixed-bottom-bar .m-fixed-item {
    height: 50px !important;
    font-size: 12px !important;
  }
}
