:root{
    --site_width:1440px;
    /* --color_primary:#d4b886; */
    --color_primary:#e7dbc0;
    /* --color_primary:#82C3D5; */
    --color_secondary:#FD8B69;
    --header_height:82px;
    --scroll_h:64px;
    --bg:#ffffff;
    --bg_soft:#CDC6BE;
    --line:#e8efe8;
    --txt:#0f172a;
    --muted:#64748b;
    --radius:16px;
    --shadow:0 8px 22px rgba(2,6,23,.06);
    --shadow2:0 10px 28px rgba(2,6,23,.08);
}
*,*::before,*::after{box-sizing:border-box;}html,body{margin:0;padding:0;}
body{font-family:"Pretendard Variable",Pretendard,-apple-system,BlinkMacSystemFont,system-ui,Roboto,"Helvetica Neue","Segoe UI","Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol",sans-serif;color:#111;line-height:1.5;word-break:keep-all;}a{color:inherit;text-decoration:none;}a:hover,a:focus,a:active{text-decoration:none;}a:focus-visible,button:focus-visible,input:focus-visible,
textarea:focus-visible,select:focus-visible{outline:2px solid var(--color_primary);outline-offset:2px;}ul,ol{margin:0;padding:0;list-style:none;}img{vertical-align:middle;border:0;max-width:100%;height:auto;}
button{background:none;border:0;cursor:pointer;font:inherit;color:inherit;}
table{border-collapse:collapse;border-spacing:0;}
input,textarea,select{font-family:inherit;}::placeholder{color:#abb4bd;opacity:1;}::-webkit-input-placeholder{color:#abb4bd;}:-ms-input-placeholder{color:#abb4bd;}i{font-style:normal;}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   SITE NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header_height, 80px);
  background: #fff;
  /* box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: background .3s, box-shadow .3s; */
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.12);
}
.nav-inner {
  max-width: var(--site_width, 1440px);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* PC 메뉴 */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a2e;
  border-radius: 0;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color_secondary);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav-link:hover {
  color: var(--color_secondary);
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* 햄버거 버튼 */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px 8px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-ham span {
  display: block;
  height: 2px;
  width: 100%;
  background: #1a1a2e;
  border-radius: 2px;
  transition: background .2s;
}
.nav-ham:hover {
  background: rgba(255,255,255,.12);
}

/* ── 전체 메뉴 드로어 ── */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.nav-drawer.is-open {
  pointer-events: auto;
}
.nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .35s;
}
.nav-drawer.is-open .nav-drawer__overlay {
  opacity: 1;
}
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.nav-drawer__logo img {
  height: 36px;
  width: auto;
}
.nav-drawer__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: #555;
  transition: background .2s;
}
.nav-drawer__close:hover { background: #f3f4f6; }

.nav-drawer__list {
  flex: 1;
  padding: 16px 0;
  list-style: none;
  margin: 0;
}
.nav-drawer__list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  border-bottom: 1px solid #f7f7f7;
  transition: background .18s, color .18s;
}
.nav-drawer__list li a:hover {
  background: #f9fafb;
  color: #2ecc71;
}
.nav-drawer__list li a span {
  font-size: .75rem;
  font-weight: 400;
  color: #aaa;
  min-width: 22px;
}
.nav-drawer__footer {
  padding: 24px 32px 32px;
  border-top: 1px solid #f0f0f0;
}
.nav-drawer__footer p {
  font-size: .85rem;
  color: #888;
  margin: 0 0 12px;
}
.nav-drawer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2ecc71;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .2s;
}
.nav-drawer__cta:hover {
  background: #27ae60;
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header_height, 80px));
  min-height: 540px;
  overflow: hidden;
}
.hero-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,12,30,.55) 0%, rgba(5,12,30,.30) 60%, rgba(5,12,30,.55) 100%),
    linear-gradient(105deg, rgba(5,12,30,.72) 0%, transparent 60%);
  z-index: 1;
  transition: background .35s ease;
}
.hero.hero--first-active .hero-overlay {
  background:
    linear-gradient(to bottom, rgba(5,12,30,.18) 0%, rgba(5,12,30,.06) 60%, rgba(5,12,30,.18) 100%),
    linear-gradient(105deg, rgba(5,12,30,.18) 0%, transparent 60%);
}

/* 콘텐츠 래퍼 */
.hero-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--site_width, 1440px);
  width: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 80px;
  gap: 0;
}

/* 태그라인 */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253,139,105,.18);
  border: 1px solid rgba(253,139,105,.45);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}
.hero-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color_secondary);
  box-shadow: 0 0 0 3px rgba(253,139,105,.3);
  flex-shrink: 0;
}
.hero-tag__text {
  font-size: .8rem;
  font-weight: 700;
  color: #ffd0bf;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* 메인 타이틀 */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.32;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.hero-title__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-title__logo {
  height: .9em;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.hero-title em {
  font-style: normal;
  color: var(--color_secondary);
}

/* 설명 */
.hero-desc {
  font-size: clamp(.92rem, 1.3vw, 1.08rem);
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 700px;
  white-space: nowrap;
}

/* CTA 버튼 그룹 */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--color_secondary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(253,139,105,.4);
  transition: background .22s, transform .22s, box-shadow .22s;
  letter-spacing: .01em;
}
.hero-cta:hover {
  background: #e5724e;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(253,139,105,.5);
  color: #fff;
}
.hero-cta--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  transition: border-color .22s, background .22s;
}
.hero-cta--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* 스크롤 인디케이터 */
.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--site_width, 1440px);
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll__line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,.35);
  display: block;
}

/* 페이지네이션 — 오른쪽 세로 중앙 */
.hero-pagination {
  position: absolute !important;
  z-index: 3;
  right: 40px !important;
  top: 50% !important;
  bottom: auto !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width: auto !important;
}
.hero-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  background: rgba(255,255,255,.45);
  opacity: 1;
  margin: 0 !important;
  transition: background .3s, height .3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--color_secondary);
  height: 48px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-ham  { display: flex; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 24px; }
  .hero-tag { margin-bottom: 20px; }
  .hero-title { margin-bottom: 18px; }
  .hero-desc { margin-bottom: 28px; }
  .hero-cta { padding: 14px 28px; font-size: .95rem; }
  .hero-scroll { display: none; }
  .hero-pagination { right: 16px !important; }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.sec {
  padding: 100px 0;
}
.sec-inner {
  max-width: var(--site_width, 1440px);
  margin: 0 auto;
  padding: 0 80px;
}
.sec-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color_secondary);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.sec-title em {
  font-style: normal;
  color: var(--color_secondary);
}
.sec-desc {
  font-size: 1.05rem;
  color: var(--muted, #64748b);
  margin: 0 0 56px;
  max-width: 520px;
  line-height: 1.7;
}
.sec-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 16px 36px;
  background: var(--color_secondary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(253,139,105,.35);
  transition: background .22s, transform .22s;
}
.sec-cta:hover {
  background: #e5724e;
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   SECTION 1 : 서비스 리스트
   ============================================================ */
.sec-service {
  background: #f9fafb;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #f0ece8;
  cursor: default;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-item:hover {
  border-color: var(--color_secondary);
  box-shadow: 0 12px 32px rgba(253,139,105,.15);
  transform: translateY(-6px);
}
.service-item__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ece8;
}
.service-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.service-item:hover .service-item__img img {
  transform: scale(1.04);
}
.service-item__body {
  padding: 24px 28px 28px;
  flex: 1;
}
.service-item__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.service-item__body p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.service-item__arrow {
  font-size: .85rem;
  color: #d0cac4;
  flex-shrink: 0;
  transition: color .25s, transform .25s;
}
.service-item:hover .service-item__arrow {
  color: var(--color_secondary);
  transform: translateX(4px);
}

/* ============================================================
   SECTION 2 : 신뢰와 전문성
   ============================================================ */
.sec-expertise {
  background: #fff;
}
.sec-expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 40px;
  padding: 0;
}
.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  color: #1a1a2e;
  line-height: 1.65;
}
.expertise-list li i {
  color: var(--color_secondary);
  font-size: .85rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.sec-expertise__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise-bg-card {
  width: 220px; height: 220px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--color_secondary) 0%, #fbb99a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(253,139,105,.35);
}
.expertise-bg-card i {
  font-size: 3rem;
  color: #fff;
}
.expertise-bg-card p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.expertise-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: 0 8px 24px rgba(2,6,23,.1);
  font-size: .85rem;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
}
.expertise-badge i {
  color: var(--color_secondary);
}
.expertise-badge--1 { top: 8%; left: -4%; }
.expertise-badge--2 { bottom: 8%; right: -4%; }

/* ============================================================
   SECTION 3 : 신뢰 카드
  background: #fff9f7;
}
/* ============================================================
   FEAT SECTION (소비자만족지수 1위)
   ============================================================ */
.sec-feat {
  background: #f9fafb;
  padding: 100px 0;
}
.sec-feat__inner {
  max-width: var(--site_width, 1440px);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.sec-feat__badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color_secondary);
  background: rgba(253,139,105,.1);
  border: 1.5px solid rgba(253,139,105,.25);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 22px;
}
.sec-feat__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a2e;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}
.sec-feat__title strong {
  font-weight: 900;
  display: block;
}
.sec-feat__sub {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}
.sec-feat__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sec-feat__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eef0f4;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sec-feat__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(253,139,105,.13);
  border-color: rgba(253,139,105,.3);
}
.sec-feat__item-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(253,139,105,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color_secondary);
  flex-shrink: 0;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.sec-feat__item:hover .sec-feat__item-ico {
  background: var(--color_secondary);
  color: #fff;
}
.sec-feat__item-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.sec-feat__item-body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
/* ===== MAIN BANNER ===== */
.main-banner {
  position: relative;
  height: 250px;
  background: #0d1c18;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.main-banner__img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
}
.main-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
}
.main-banner__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d1c18 10%, transparent 70%);
  z-index: 1;
}
.main-banner__content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: var(--site_width, 1440px);
  margin: 0 auto;
  width: 100%;
}
.main-banner__label {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color_secondary);
  margin: 0 0 10px;
}
.main-banner__slogan {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}
.main-banner__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  margin: 0 0 24px;
  line-height: 1.7;
}
.main-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color_secondary);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(253,139,105,.4);
  transition: background .22s, transform .22s;
  text-decoration: none;
}
.main-banner__cta:hover { background: #e5724e; transform: translateY(-2px); color: #fff; }
@media (max-width: 1100px) {
  .sec-feat__inner { grid-template-columns: 1fr; gap: 48px; }
  .sec-feat__right { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sec-feat { padding: 72px 0; }
  .sec-feat__inner { padding: 0 24px; }
  .main-banner { height: auto; padding: 56px 0; }
  .main-banner__content { padding: 0 24px; }
  .main-banner__img { width: 100%; opacity: .25; }
}

/* ============================================================
   SECTION 3 : 이용 방법 (Circle design)
   ============================================================ */
.sec-how {
  background: #f9fafb;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  position: relative;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 28px 40px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(253,139,105,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.how-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(253,139,105,.5);
  z-index: 1;
}
.how-step__circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color_secondary) 0%, #ffb08a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(253,139,105,.28);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}
.how-step:hover .how-step__circle {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 18px 42px rgba(253,139,105,.42);
}
.how-step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-step__num {
  display: inline-block;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--color_secondary);
  background: rgba(253,139,105,.1);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.how-step__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.4;
}
.how-step__body p {
  font-size: .87rem;
  color: var(--muted, #64748b);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SECTION : 간병 후기 (Reviews Swiper)
   ============================================================ */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sec-head .sec-title {
  margin-bottom: 0;
}
.sec-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted, #64748b);
  text-decoration: none;
  letter-spacing: .04em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.sec-more:hover {
  color: var(--color_secondary);
  border-bottom-color: var(--color_secondary);
}
.sec-reviews {
  background: #fff;
}
.reviews-swiper {
  overflow: hidden;
  position: relative;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eef0f4;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.review-card__thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.review-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card__body {
  padding: 20px;
}
.review-card__body h3 {
  font-size: .95rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__body p {
  font-size: .84rem;
  color: var(--muted, #64748b);
  line-height: 1.7;
  margin: 0;
}
.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  color: #1a1a2e;
}
.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after {
  font-size: .75rem;
  font-weight: 900;
}
.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: var(--color_secondary);
  border-color: var(--color_secondary);
  color: #fff;
}

/* ============================================================
   SECTION : SNS 후기 (Review 섹션 내 연속 표시)
   ============================================================ */
.sns-swiper-wrap {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #eef0f4;
}
.sns-swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 52px;
}
.sns-swiper .swiper-slide {
  height: 190px;
}
.sns-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef0f4;
  padding: 20px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
}
.sns-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(253,139,105,.12);
  border-color: rgba(253,139,105,.25);
}
.sns-card__stars {
  color: #fbbf24;
  font-size: .85rem;
  letter-spacing: 2px;
}
.sns-card__text {
  font-size: .83rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.sns-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--muted, #64748b);
  border-top: 1px solid #f3f4f6;
  padding-top: 10px;
}
.sns-card__name {
  font-weight: 700;
  color: #1a1a2e;
}
.sns-card__region::before {
  content: '·';
  margin-right: 4px;
}
.sns-swiper .swiper-button-prev,
.sns-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  color: #1a1a2e;
}
.sns-swiper .swiper-button-prev::after,
.sns-swiper .swiper-button-next::after {
  font-size: .75rem;
  font-weight: 900;
}
.sns-swiper .swiper-button-prev:hover,
.sns-swiper .swiper-button-next:hover {
  background: var(--color_secondary);
  border-color: var(--color_secondary);
  color: #fff;
}
.no-data {
  text-align: center;
  color: var(--muted, #64748b);
  font-size: .95rem;
  padding: 40px 0;
}
.no-data a {
  color: var(--color_secondary);
  text-decoration: underline;
}

/* ============================================================
   SECTION : 네이버 블로그
   ============================================================ */
.sec-blog {
  background: #f9fafb;
}
.blog-swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 52px;
}
.blog-swiper .swiper-slide {
  height: auto;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef0f4;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-sizing: border-box;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.blog-card__body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card__body h3 {
  font-size: .88rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.blog-card__body p {
  font-size: .78rem;
  color: var(--muted, #64748b);
  line-height: 1.65;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
}
.blog-card__date {
  font-size: .72rem;
  color: #9ca3af;
  letter-spacing: .04em;
}
.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  color: #1a1a2e;
}
.blog-swiper .swiper-button-prev::after,
.blog-swiper .swiper-button-next::after {
  font-size: .75rem;
  font-weight: 900;
}
.blog-swiper .swiper-button-prev:hover,
.blog-swiper .swiper-button-next:hover {
  background: var(--color_secondary);
  border-color: var(--color_secondary);
  color: #fff;
}

/* RESPONSIVE — sections */
@media (max-width: 1024px) {
  .sec-expertise__inner { grid-template-columns: 1fr; gap: 48px; }
  .sec-expertise__visual { max-width: 320px; margin: 0 auto; }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sec { padding: 72px 0; }
  .sec-inner { padding: 0 24px; }
  .service-list { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .how-step:not(:last-child)::after { display: none; }
  .how-step__circle { width: 100px; height: 100px; font-size: 1.8rem; margin-bottom: 20px; }
}
