/* ----------------------------- 
   기본 세팅 
----------------------------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif KR', serif;
  color: #222;
  overflow-x: hidden;
  background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

/* 공통 래퍼 */
.inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 공통 섹션 */
.section {
  padding: 80px 0;
}

.sec-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

/* -----------------------------
   HEADER (XD 상단 바)
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #f5f5f5;          /* 연한 회색 배경 */
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}

.header-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 로고: SVG 이미지 */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 28px;                 /* 필요하면 26~32px 사이로 조절 */
  display: block;
}

/* 우측 메뉴 */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  color: #111;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav a:hover {
  text-decoration: underline;
}

/* 마지막 빨간 메뉴 */
.nav a.nav-accent {
  color: #e53935;
  font-weight: 600;
}

/* 페이지 상단 여백 보정 */
#wrap {
  padding-top: 60px;
}

/* -----------------------------
   1섹션 HERO
   - 전체 배경이미지
   - 왼쪽 카드형 폼
------------------------------ */
.hero {
  position: relative;
  min-height: 420px;
  padding: 80px 0;
  /* 배경 이미지 경로: /event07/img/hero-bg.jpg */
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
}

.hero-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 260px;
}

/* XD처럼 왼쪽에 둥근 흰 카드 */
.hero-form-box {
  width: 420px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 30px 34px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* 제목/본문 폰트 튜닝 */
.hero-title {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 22px;
  color: #444;
}

/* hero 내 다른 텍스트 블록은 현재 사용 안 함 */
.hero-left { display: none; }

/* 폼 기본 */
.hero-form {
  margin-top: 4px;
}

.hero-form .form-row {
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
}

.textarea {
  min-height: 100px;
  resize: vertical;
}

/* 개인정보 동의 영역 */
.agree {
  margin-top: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* [보기] 버튼을 텍스트 링크처럼 보이게 */
.agree-link,
.privacy-open.agree-link {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 12px;
  color: #1e73d9;
  text-decoration: underline;
  cursor: pointer;
  line-height: 1;
}

/* 파란 버튼 (XD 느낌) */
.btn-submit,
.btn-submit-main {
  width: 100%;
  padding: 13px 0;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #1e73d9;
}

.btn-submit:hover,
.btn-submit-main:hover {
  opacity: .9;
}

/* ============================
   2섹션 : 이런 상황인가요 + 퀵메뉴
============================ */
/* ============================
   2섹션 : 이런 상황인가요
   (XD 레이아웃 그대로)
============================ */

.trouble {
  background:#fff;
  padding:120px 0 110px;
}

.trouble-inner {
  text-align:center;
}

/* --- 상단 SOS + 텍스트 --- */
.trouble-head {
  margin-bottom:90px;
}

.trouble-sos {
  margin-bottom:20px;
  display:flex;
  justify-content:center;
}

.trouble-sos img {
  width:38px;
  height:38px;
}

/* 제목 폰트 톤 정리 */
.trouble-title {
  font-family:'Noto Serif KR', serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.02em;
  margin:0 0 14px;
  color:#111;
}

.trouble-line {
  width:40px;
  height:2px;
  margin:0 auto 18px;
  background:#111;
}

/* 설명 문구 톤 정리 */
.trouble-sub {
  font-family:'Noto Serif KR', serif;
  font-size:19px;
  font-weight:400;
  line-height:1.6;
  color:#333;
  margin:0;
}

/* --- 아이콘 4개 (디자인 수정) --- */
.trouble-grid {
  display:flex;
  justify-content:space-between;   /* 양 끝까지 꽉 채우기 */
  align-items:flex-start;
  gap:40px;                        /* 아이콘 사이 간격 */
  flex-wrap:nowrap;
}

.trouble-item {
  flex:1 1 0;                      /* 가로폭을 4등분해서 꽉 채움 */
  max-width:260px;                 /* 너무 넓어지지 않게 상한만 잡기 */
  text-align:center;
}

/* 원형 안에 아이콘 */
.trouble-icon {
  width:200px;                     /* 원 크기 */
  height:200px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#f4f4f4;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 0 0 1px #ddd inset;
}

.trouble-icon img {
  display:block;
  width:50%;       /* 아이콘 크기 조정 */
  height:auto;
}

/* 아이콘 아래 라벨 */
.trouble-item p {
  font-family:'Noto Serif KR', serif;
  font-size:16px;
  line-height:1.5;
  font-weight:600;
  color:#222;
  margin:8px 0 0;
}


/* ============================
   PC 퀵메뉴 (오른쪽 고정)
============================ */

.trouble-quick {
  position:fixed;
  right:40px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:16px;
  z-index:90;
}

.quick-btn img {
  display:block;
  width:96px;
  height:auto;
}

/* ============================
   반응형 (태블릿/모바일)
============================ */

@media (max-width: 1200px) {
  .trouble-quick {
    right:20px;
  }
}

@media (max-width: 1024px) {
  .trouble {
    padding:90px 0 80px;
  }

  .trouble-grid {
    gap:40px;
    flex-wrap:wrap;
  }

  .trouble-item {
    width:45%;
  }

  .trouble-icon {
    width:150px;
    height:150px;
  }

  /* 퀵메뉴를 섹션 안으로 */
  .trouble-quick {
    position:static;
    transform:none;
    margin-top:40px;
    flex-direction:row;
    justify-content:center;
  }

  .quick-btn img {
    width:90px;
  }
}

@media (max-width: 640px) {
  .trouble {
    padding:70px 0 70px;
  }

  .trouble-title {
    font-size:22px;
  }

  .trouble-grid {
    gap:40px;
  }

  .trouble-item {
    width:100%;
  }

  .trouble-icon {
    width:140px;
    height:140px;
  }

  .quick-btn img {
    width:80px;
  }
}


/* -----------------------------
   3섹션 : 왜 바른금융케어일까
------------------------------ */

.section.why {
  background:#f3f7ff;              /* 하늘색 배경 */
  padding:110px 0 120px;
}

.section.why .inner {
  text-align:center;
}

/* 상단 헤더 영역 */
.why-head {
  margin-bottom:60px;
}

/* 메달 SVG 아이콘 */
.why-badge img {
  width:52px;
  height:auto;
  margin:0 auto 18px;
  display:block;
}

/* 제목 : 왜 바른금융케어일까? */
.section.why .sec-title {
  font-family:'Noto Serif KR', serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:14px;
  color:#111;
}

/* ‘바른’만 파란색 */
.section.why .sec-title span {
  color:#1e73d9;
}

/* 제목 아래 가는 선 */
.why-line {
  width:40px;
  height:2px;
  margin:0 auto 18px;
  background:#222;
}

/* 설명 문장 */
.why-desc {
  font-family:'Noto Serif KR', serif;
  font-size:19px;
  line-height:1.6;
  color:#333;
  margin:0;
}

/* 카드 레이아웃 */
.why-grid {
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

/* 카드 자체 */
.why-item {
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,0.05);
}

/* 카드 상단 이미지 */
.why-img img {
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* 카드 안 텍스트 영역 (전부 중앙정렬) */
.why-body {
  padding:24px 26px 30px;
  text-align:center;
}

/* 1단계 / 2단계 / 3단계 라벨 */
.why-step {
  display:block;
  margin-bottom:10px;
  font-family:'Noto Serif KR', serif;
  font-size:14px;
  font-weight:600;
  color:#1e73d9;
}

/* 카드 제목 */
.why-body h3 {
  font-family:'Noto Serif KR', serif;
  font-size:18px;
  font-weight:700;
  margin:0 0 10px;
  color:#111;
}

/* 카드 본문 */
.why-body p {
  font-family:'Noto Serif KR', serif;
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin:0;
}

/* 3섹션 반응형 */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section.why {
    padding:80px 0 90px;
  }
  .why-grid {
    grid-template-columns:1fr;
  }
}
/* ===========================
   ABOUT SECTION
=========================== */
.about {
  background:#ffffff;          /* 완전 화이트 */
  padding:120px 0;
}

.about-inner {
  display:flex;
  align-items:center;
  gap:80px;
}

/* 왼쪽 텍스트 영역 */
.about-text {
  flex:1;
}

/* 1번: BAREUN FINANCIAL CARE */
.about-small {
  font-family:'Noto Serif KR', serif;
  font-size:13px;
  font-weight:500;
  color:#16B6E5;
  letter-spacing:0.18em;
  text-transform:uppercase;
  margin-bottom:24px;
}

/* 큰 제목 */
.about-title {
  font-family:'Noto Serif KR', serif;
  font-size:32px;
  font-weight:700;
  line-height:1.6;
  letter-spacing:-0.03em;
  margin:0 0 34px;
  color:#111;
}

/* 본문 전체 폭 제한 */
.about-desc-wrap {
  max-width:460px;
}

/* 2번: 본문 문단 */
.about-desc {
  font-family:'Noto Serif KR', serif;
  font-size:16px;
  line-height:1.9;
  letter-spacing:-0.01em;
  color:#000000;
  margin:0 0 16px;
}

/* 오른쪽 이미지 */
.about-img {
  flex:1;
  text-align:right;
}

.about-img img {
  display:block;
  width:100%;
  max-width:560px;
  margin-left:auto;
  object-fit:cover;
  border-radius:0;
}

/* 반응형 */
@media (max-width:1024px) {
  .about-inner {
    flex-direction:column;
    gap:40px;
  }
  .about-text,
  .about-img {
    text-align:center;
  }
  .about-img img {
    margin:0 auto;
  }
}





/* GREETING */
.greeting-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.greeting-text {
  flex: 1 1 50%;
}

.greeting-text p {
  font-size: 18px;
  line-height: 1.7;
}

.greeting-photo {
  flex: 1 1 50%;
}

.greeting-photo img {
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===========================
   진행 프로세스 섹션 (이렇게 진행됩니다)
=========================== */
.section.flow {
  background:#f3f7ff;
  padding:110px 0 120px;
}

.flow-inner {
  text-align:center;
}

/* 상단 헤더 */
.flow-head {
  margin-bottom:60px;
}

/* 위쪽 작은 SVG 배지 */
.flow-badge img {
  width:60px;
  height:auto;
  margin:0 auto 18px;
  display:block;
}

/* 제목 */
.flow-title {
  font-family:'Noto Serif KR', serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:#111;
}

/* 아이콘 4개 레이아웃 */
.flow-grid {
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:nowrap;
}

/* 개별 아이템 */
.flow-item {
  flex:1 1 0;
}

/* 동그란 아이콘 영역 */
.flow-icon {
  width:230px;
  height:230px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#f6f6f6;
  border:1px solid #dcdcdc;
  display:flex;
  align-items:center;
  justify-content:center;
}

.flow-icon img {
  width:55%;
  height:auto;
  display:block;
}

/* 아이콘 아래 큰 제목 */
.flow-name {
  font-family:'Noto Serif KR', serif;
  font-size:17px;
  font-weight:600;
  margin:0 0 10px;
  color:#111;
}

/* 설명 텍스트 */
.flow-text {
  font-family:'Noto Serif KR', serif;
  font-size:16px;
  line-height:1.8;
  color:#444;
  margin:0;
}

/* 반응형 */
@media (max-width:1024px) {
  .flow-grid {
    flex-wrap:wrap;
    justify-content:center;
  }
  .flow-item {
    flex:0 0 45%;
    margin-bottom:40px;
  }
}

@media (max-width:640px) {
  .section.flow {
    padding:80px 0 90px;
  }
  .flow-item {
    flex:0 0 100%;
  }
  .flow-icon {
    width:210px;
    height:210px;
  }
}


/* ===========================
   고객후기 섹션 (기본)
=========================== */
.section.review {
  background:#ffffff;
  padding:110px 0 120px;
}

.review-inner {
  max-width:1150px;
  margin:0 auto;
}

/* 상단 아이콘 + 제목 */
.review-head {
  text-align:center;
  margin-bottom:40px;
}

.review-badge img {
  width:56px;
  height:auto;
  margin:0 auto 14px;
  display:block;
}

.review-title {
  font-family:'Noto Serif KR', serif;
  font-size:32px;
  font-weight:700;
  letter-spacing:-0.03em;
  color:#111;
}

/* 후기 카드 리스트 */
.review-list {
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* 개별 후기 카드 */
.review-item {
  border:1px solid #dcdcdc;
  background:#ffffff;
  padding:18px 24px 20px;
}

/* 이름 라인 */
.review-name {
  font-family:'Noto Serif KR', serif;
  font-size:15px;
  font-weight:700;
  margin:0 0 10px;
  color:#111;
}

/* 본문 텍스트 */
.review-text {
  font-family:'Noto Serif KR', serif;
  font-size:14px;
  line-height:1.9;
  color:#333;
  margin:0;
}

/* 하단 안내 문구 */
.review-notice {
  margin-top:18px;
  font-family:'Noto Serif KR', serif;
  font-size:12px;
  line-height:1.7;
  color:#777;
}

/* 반응형 */
@media (max-width:640px) {
  .section.review {
    padding:80px 0 90px;
  }
  .review-item {
    padding:16px 18px 18px;
  }
}



/* ===========================
   하단 상담 CTA 섹션
=========================== */
.section.last-cta {
  position:relative;
  padding:120px 0 140px;
  color:#fff;
  text-align:center;
  background:url('../img/last-cta-bg.jpg') center center / cover no-repeat;
}

.section.last-cta::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,16,48,0.70);
  z-index:0;
}

.last-cta-inner {
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  padding:0 20px;
}

/* 아이콘 */
.last-cta-icon img {
  width:60px;
  height:auto;
  margin:0 auto 24px;
  display:block;
}

/* 제목 */
.last-cta-title {
  font-family:'Noto Serif KR', serif;
  font-size:28px;
  line-height:1.7;
  font-weight:700;
  letter-spacing:-0.03em;
  margin:0 0 22px;
}

.last-cta-title span {
  color:#ff4b4b;
}

/* 서브 카피 */
.last-cta-sub {
  font-family:'Noto Serif KR', serif;
  font-size:15px;
  line-height:1.9;
  margin:0 0 40px;
}

/* 폼 전체 */
.last-cta-form {
  max-width:820px;
  margin:0 auto;
}

/* 한 줄에 두 개 */
.last-cta-row {
  display:flex;
  gap:18px;
  margin-bottom:14px;
}

.last-cta-row.full {
  flex-direction:column;
}

/* 인풋 공통 */
.last-cta-input,
.last-cta-textarea {
  background:#ffffff;
  border-radius:4px;
  border:0;
  font-size:14px;
  color:#222;
}

.last-cta-input::placeholder,
.last-cta-textarea::placeholder {
  color:#999;
}

/* 위 두 개 인풋 */
.last-cta-input {
  flex:1;
  padding:12px 16px;
}

/* 문의사항 */
.last-cta-textarea {
  width:100%;
  min-height:180px;
  padding:14px 16px;
  resize:vertical;
}

/* 버튼 */
.last-cta-btn {
  margin-top:18px;
  width:100%;
  padding:15px 0;
  border-radius:4px;
  border:0;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  background:#ff3131;
  color:#fff;
}

.last-cta-btn:hover {
  opacity:0.92;
}

/* 반응형 */
@media (max-width:768px) {
  .section.last-cta {
    padding:90px 0 100px;
  }
  .last-cta-title {
    font-size:22px;
  }
  .last-cta-sub {
    font-size:14px;
  }
  .last-cta-row {
    flex-direction:column;
  }
}
/* ===========================
   배너 섹션 (단순한 피해호소로는...)
=========================== */
.section.mid-banner {
  position:relative;
  padding:70px 0;
  color:#fff;
  text-align:center;
  background:url('../img/mid-banner-bg.jpg') center center / cover no-repeat;
}

.section.mid-banner::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:0;
}

.mid-banner-inner {
  position:relative;
  z-index:1;
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}

/* 메인 문구 */
.mid-banner-title {
  font-family:'Noto Serif KR', serif;
  font-size:26px;
  font-weight:700;
  letter-spacing:-0.03em;
  margin:0 0 12px;
}

.mid-banner-title span {
  color:#ff4040;
}

/* 서브문구 */
.mid-banner-sub {
  font-family:'Noto Serif KR', serif;
  font-size:15px;
  line-height:1.8;
  margin:0;
}

/* 반응형 */
@media (max-width:768px) {
  .section.mid-banner {
    padding:50px 0;
  }
  .mid-banner-title {
    font-size:20px;
  }
  .mid-banner-sub {
    font-size:14px;
  }
}


/* ======================
      FOOTER
====================== */
.site-footer {
  background:#f8f8f8;
  padding:40px 0;
  border-top:1px solid #ececec;
}

.footer-inner {
  width:100%;
  max-width:1120px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:0 20px;
  box-sizing:border-box;
}

/* LEFT */
.footer-left {
  display:block;
}

.footer-logo {
  margin-bottom:12px;
}

.footer-logo img {
  height:28px;
}

/* 회사 정보 */
.footer-info {
  font-size:13px;
  color:#555;
  line-height:1.7;
}

.footer-info .company-name {
  font-weight:600;
  margin-bottom:5px;
}

.footer-info .copyright {
  margin-top:10px;
  color:#999;
  font-size:12px;
}

/* RIGHT 메뉴 */
.footer-right {
  display:flex;
  gap:35px;
  margin-top:5px;
}

.footer-right a {
  color:#333;
  font-size:14px;
  text-decoration:none;
}

.footer-right a:hover {
  color:#0b6cff;
}


/* 모바일 */
@media (max-width:768px) {
  .footer-inner {
    flex-direction:column;
    gap:25px;
    align-items:flex-start;
  }

  .footer-right {
    gap:20px;
  }
}


/* ======================
   팝업 (기본은 정중앙)
====================== */
#popup-layer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}

.popup-wrap {
  width: 100%;
  max-width: 460px;
  text-align: center;
}

/* 이미지 */
.popup-img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}

/* 녹색 바 + 닫기버튼 영역 */
.popup-close-hit {
  background: #007a5a;
  padding: 10px 0;
  border-radius: 0 0 16px 16px;
}

.popup-close {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
}

/* PC에서 오른쪽으로 살짝 이동 */
@media (min-width: 1024px) {
  #popup-layer {
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 110px;
    padding-right: calc(50% - 230px);
  }
}

/* 개인정보 처리방침 레이어 */
#privacy-info {
  position: relative;
  width: 500px;
  max-width: 96%;
  background: #fff;
}

#privacy-info .title {
  padding: 0 20px;
  height: 40px;
  color: #fff;
  background: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

#privacy-info .title .b-close {
  background:none;
  border:0;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

#privacy-info .content {
  height: 350px;
  overflow-y: auto;
  padding: 20px;
  line-height: 1.6;
  font-size: 14px;
}

/* -----------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 0;
    background-position: center right;
  }

  .hero-inner {
    justify-content: center;
  }

  .hero-form-box {
    width: 100%;
    max-width: 440px;
  }

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

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

  .greeting-inner {
    flex-direction: column;
  }

  .bottom-form {
    flex-direction: column;
    align-items: center;
  }

  .bottom-form .form-input,
  .bottom-form .btn-submit {
    width: 100%;
    max-width: 360px;
  }
}

/* =======================
   MOBILE DESIGN (<=640px)
======================= */
@media (max-width: 640px) {

  /* 공통 컨테이너 */
  .inner {
    max-width: 100%;
    padding: 0 16px;
  }

  /* 헤더 */
  .header {
    height: 60px;
  }
  .header-inner {
    height: 54px;
    padding: 0 14px;
  }
  .logo img {
    height: 22px;
  }
  .nav {
    gap: 16px;
    font-size: 12px;
  }

  /* HERO 영역 */
  .hero {
    padding: 30px 0 40px;
    background-position: center right;
  }
  .hero-inner {
    justify-content: center;
  }
  .hero-form-box {
    width: 92%;
    max-width: 420px;
    margin: 0 auto;
    padding: 22px 18px 24px;
    border-radius: 18px;
  }
  .hero-title {
    font-size: 20px;
    line-height: 1.5;
  }
  .hero-desc {
    font-size: 12px;
  }
  .form-input {
    font-size: 13px;
  }
  .btn-submit-main {
    font-size: 14px;
  }

  /* 2섹션 */
  .trouble {
    padding: 50px 0 50px;
  }
  .trouble-head {
    margin-bottom: 32px;
  }
  .trouble-title {
    font-size: 18px;
  }
  .trouble-sub {
    font-size: 13px;
  }
  .trouble-grid {
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trouble-item {
    width: 48%;
    max-width: 160px;
    margin: 0 auto;
  }
  .trouble-icon {
    width: 120px;
    height: 120px;
  }
  .trouble-item p {
    font-size: 13px;
  }

  /* 퀵메뉴 섹션 아래 */
  .trouble-quick {
    position: static;
    transform: none;
    margin-top: 30px;
    flex-direction: row;
    justify-content: center;
  }
  .quick-btn img {
    width: 76px;
  }

  /* 3섹션 */
  .section.why {
    padding: 60px 0 65px;
  }
  .section.why .sec-title {
    font-size: 20px;
  }
  .why-desc {
    font-size: 13px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-img img {
    height: 180px;
  }

  /* ABOUT 섹션 – 기본 모바일(이후 아래에서 한 번 더 오버라이드됨) */
  .about {
    padding: 70px 0;
  }
  .about-inner {
    flex-direction: column;
    gap: 24px;
  }
  .about-text,
  .about-img {
    text-align: center;
  }
  .about-title {
    font-size: 22px;
  }
  .about-desc-wrap {
    max-width: none;
  }
  .about-desc {
    font-size: 13px;
  }
  .about-img img {
    max-width: 320px;
    margin: 0 auto;
  }

  /* 진행 프로세스 */
  .section.flow {
    padding: 60px 0 70px;
  }
  .flow-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .flow-item {
    flex: 0 0 48%;
  }
  .flow-icon {
    width: 140px;
    height: 140px;
  }
  .flow-name {
    font-size: 14px;
  }
  .flow-text {
    font-size: 13px;
  }

  /* 고객후기 */
  .section.review {
    padding: 60px 0 70px;
  }
  .review-inner {
    padding: 0 16px;
  }
  .review-item {
    padding: 14px 14px 16px;
  }
  .review-name {
    font-size: 13px;
  }
  .review-text {
    font-size: 12px;
  }

  /* 하단 상담 CTA */
  .section.last-cta {
    padding: 60px 0 70px;
  }
  .last-cta-inner {
    padding: 0 16px;
  }
  .last-cta-title {
    font-size: 20px;
  }
  .last-cta-sub {
    font-size: 11px;
  }
  .last-cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .last-cta-input,
  .last-cta-textarea {
    font-size: 13px;
  }
  .last-cta-btn {
    font-size: 14px;
  }

  /* 중간 배너 */
  .section.mid-banner {
    padding: 40px 0;
  }
  .mid-banner-title {
    font-size: 18px;
  }
  .mid-banner-sub {
    font-size: 11px;
  }

  /* 푸터 */
  .site-footer {
    padding: 24px 0 30px;
  }
  .footer-inner {
    max-width: 100%;
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-logo img {
    height: 22px;
  }
  .footer-info {
    font-size: 11px;
  }
  .footer-info .copyright {
    font-size: 11px;
  }
  .footer-right {
    gap: 18px;
  }
  .footer-right a {
    font-size: 12px;
  }
}


/* ============================
   HERO 제목/본문 폰트 재세팅
============================ */

/* PC 기본 */
.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.hero-desc {
  font-family: 'Noto Serif KR', serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 20px;
}

/* 화면 넓을 때는 제목만 살짝 키우기 */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 28px;
  }
}

/* HERO 버튼 폰트 스타일 */
.btn-submit,
.btn-submit-main {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1;
}
/* ============================
   모바일 하단 퀵메뉴
============================ */
.mobile-quick-bar {
  display: none; /* 기본은 숨김 (PC) */
}

@media (max-width: 900px) {

  /* 기존 섹션 안 퀵메뉴는 모바일에서 숨김 */
  .trouble-quick {
    display: none;
  }

  .mobile-quick-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 12px;
    background: #ffcc00;
    box-sizing: border-box;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.15);
  }

  .mobile-quick-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-quick-btn img {
    max-width: 80%;
    height: auto;
    display: block;
  }

  /* 하단 바에 가려지지 않게 */
  body {
    padding-bottom: 70px;
  }
}

/* ============================
   고객후기 레이아웃 (중간 버전)
============================ */

.section.review .review-list {
  margin: 0;
  padding: 0;
}

.section.review .review-item {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  background: #fff;
  padding: 24px 32px;
  box-sizing: border-box;
}

/* 카드들 사이 간격 */
.section.review .review-item + .review-item {
  margin-top: 18px;
}

/* 이름 */
.section.review .review-name {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

/* 후기 내용 */
.section.review .review-text,
.section.review .review-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: none;
  width: 100%;
  white-space: normal;
}

.section.review .review-notice {
  margin-top: 18px;
  font-size: 12px;
  color: #888;
  text-align: left;
}

/* 모바일에서 패딩만 줄이기 */
@media (max-width: 768px) {
  .section.review .review-item {
    padding: 18px 16px;
  }
}

/* ============================
   고객후기 섹션 – Figma 레이아웃 맞추기
============================ */

.section.review .review-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 40px;
  box-sizing: border-box;
}

.section.review .review-list {
  margin: 24px 0 0;
  padding: 0;
}

.section.review .review-item {
  border: 1px solid #707070;
  border-radius: 4px;
  background: #fff;
  padding: 24px 40px;
  box-sizing: border-box;
  width: 100%;
}

.section.review .review-item + .review-item {
  margin-top: 16px;
}

.section.review .review-name {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
}

.section.review .review-text,
.section.review .review-item p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  max-width: none;
  width: 100%;
  white-space: normal;
}

.section.review .review-notice {
  margin-top: 18px;
  font-size: 12px;
  color: #888;
  text-align: left;
}

@media (max-width: 768px) {
  .section.review .review-inner {
    padding: 40px 10px 30px;
  }

  .section.review .review-item {
    padding: 18px 16px;
  }
}

/* ============================
   🔥 최종 오버라이드 – PC 폭/글자 크기
============================ */

.section.review .review-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section.review .review-item {
  padding: 24px 40px;
}

.section.review .review-name {
  font-size: 21px;
  font-weight: bold;
}

.section.review .review-text {
  font-size: 15px;
}
/* ============================
   진행됩니다 섹션 – 모바일 2열 배치
============================ */
@media (max-width: 640px) {
  .section.flow {
    padding: 60px 0 70px;
  }

  .flow-grid {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
  }

  /* 한 줄에 2개씩 */
  .flow-item {
    flex: 0 0 calc(50% - 12px);
    margin-bottom: 0;
  }

  .flow-icon {
    width: 140px;
    height: 140px;
  }
  .flow-name {
    font-size: 14px;
  }
  .flow-text {
    font-size: 12px;
  }
}
/* ============================
   모바일 고객후기 스타일 재조정
============================ */
@media (max-width: 640px) {

  .section.review {
    padding: 40px 0 50px;
  }

  .section.review .review-inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 12px;
  }

  .section.review .review-item {
    padding: 12px 14px 14px;
    border-radius: 4px;
  }

  .section.review .review-name {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .section.review .review-text,
  .section.review .review-item p {
    font-size: 12px;
    line-height: 1.6;
  }

  .section.review .review-notice {
    font-size: 11px;
    line-height: 1.6;
    margin-top: 14px;
  }
}
/* ============================
   모바일 – 인트로 글자 왼쪽 정렬 + 폭 조정
============================ */
@media (max-width: 640px) {

  .section.intro,
  .intro-wrap,
  .intro-text-box {
    text-align: left !important;
  }

  .intro-text-box {
    max-width: 340px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .intro-text-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .intro-text-box h2,
  .intro-text-box h3 {
    text-align: left !important;
    line-height: 1.4;
  }
}

/* ============================
   모바일 ABOUT – 사진 위, 글 아래 왼쪽 정렬
============================ */
@media (max-width: 640px) {

  .about {
    padding: 70px 0;
  }

  /* 위에 사진, 아래 텍스트 – 세로 배치 */
  .about-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* 사진은 화면 가로 꽉 차게 */
  .about-img {
    width: 100%;
    text-align: center;
  }
  .about-img img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* 텍스트 박스 폭을 줄이고 왼쪽 정렬 */
  .about-text {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .about-small,
  .about-title,
  .about-desc-wrap,
  .about-desc {
    text-align: left;
  }

  .about-title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .about-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
  }
}
