/* Noto Sans KR — font 폴더 */
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("font/NotoSansKR-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("font/NotoSansKR-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("font/NotoSansKR-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("font/NotoSansKR-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans KR";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("font/NotoSansKR-ExtraBold.ttf") format("truetype");
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: rgba(37, 99, 235, 0.12);
  --red: #e53935;
  --red-hover: #d32f2f;
  --kakao: #fee500;
  --kakao-ink: #3c1e1e;
  --bg: #eef4fb;
  --bg-card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --gradient-end: #1a237e;
  /* 은은한 하늘·파랑 톤 그라데이션 */
  --sky-page: linear-gradient(180deg, #f8fcff 0%, #eef6ff 38%, #e6f0fa 72%, #eef2f7 100%);
  --sky-section-a: linear-gradient(180deg, #f7fbff 0%, #e0f0ff 48%, #e8f2fc 100%);
  --sky-section-b: linear-gradient(165deg, #f2f8ff 0%, #d8ecfc 45%, #e5f0f8 100%);
  --sky-section-c: linear-gradient(180deg, #f5f9ff 0%, #e8f2fc 100%);
  --sky-section-d: linear-gradient(180deg, #f0f7ff 0%, #dceefa 55%, #e2eff7 100%);
  --sky-cta: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 22%, #60a5fa 55%, #2563eb 82%, #1a237e 100%);
  /* 히어로: 은은한 하늘색 그라데이션 (CTA보다 밝고 부드럽게) */
  --sky-hero-soft: linear-gradient(
    165deg,
    #feffff 0%,
    #f0f9ff 22%,
    #e3f2fd 48%,
    #d9ecfc 72%,
    #d0e7f8 100%
  );
  --sky-footer: linear-gradient(180deg, #fbfdff 0%, #f0f6fc 100%);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--sky-page);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 720px;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted);
  font-weight: 500;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.hide-sm {
  display: none;
}

.show-sm {
  display: none;
}

@media (min-width: 640px) {
  .hide-sm {
    display: inline;
  }
}

@media (max-width: 639px) {
  .show-sm {
    display: inline;
  }
}

/* Header — 반투명 + 블러 (스크롤 시 히어로가 비쳐 보임) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 44px;
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
}

nav.nav-desktop {
  flex-wrap: wrap;
  justify-content: center;
}

nav.nav-desktop a[href^="#"] {
  color: rgba(15, 23, 42, 0.78);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

nav.nav-desktop a[href^="#"]:hover {
  color: #0f172a;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  nav.nav-desktop {
    gap: 2rem;
  }

  .menu-toggle {
    display: none;
  }
}

.header-cta {
  gap: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: #0f172a;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 1.25rem 1.25rem;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile:not([hidden]) {
  display: block;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile a {
  font-weight: 500;
  padding: 0.5rem 0;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-phone {
  background: var(--red);
  color: #fff;
}

.btn-phone:hover {
  background: var(--red-hover);
}

.btn-kakao {
  background: var(--kakao);
  color: var(--kakao-ink);
}

.btn-kakao:hover {
  filter: brightness(0.95);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}

.btn-xl {
  padding: 1rem 1.5rem;
  font-size: 1.0625rem;
  border-radius: 12px;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: #f8fafc;
}

.text-kakao-dark {
  color: #ca8a04;
}

/* Hero — 은은한 하늘색 그라데이션 */
main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--sky-hero-soft);
  /* 하단 pill 위·아래 바운스 시 잘리지 않도록 여유 */
  padding: 2.5rem 0 5.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 6rem;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-title,
.hero-lead {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.65);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: clamp(0.875rem, 2.8vw, 1.0625rem);
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 1.5rem;
  box-shadow: var(--shadow);
  max-width: 100%;
}

/* 상단 뱃지: 모바일에서 글자 축소 + 한 줄 유지 */
.hero-badge-text {
  white-space: nowrap;
}

@media (max-width: 639px) {
  .hero-badge {
    font-size: clamp(0.68rem, 2.9vw, 0.82rem);
    padding: 0.32rem 0.55rem;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
  }

  .hero-badge .icon-sm {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
  }
}

.hero-title {
  font-size: clamp(1.875rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.32;
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(1.125rem, 3.2vw, 1.375rem);
  color: var(--muted);
  margin: 0 0 1.75rem;
  line-height: 1.55;
}

.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 640px) {
  .hero-card {
    padding: 2rem;
  }
}

.hero-card-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hero-phone {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.hero-phone .label {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.phone-big {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 800;
  color: #ea580c;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* 링크 래퍼 — 상하 움직임은 main.js에서 .hero-pill-surface에 transform 적용 */
.hero-pill-bottom {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 0 0 28px;
  max-width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.hero-pill-surface {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  background: #fff;
  border: 2px solid #2563eb;
  border-radius: 999px;
  font-size: clamp(1rem, 3vw, 1.1875rem);
  font-weight: 700;
  font-family: inherit;
  color: #1d4ed8;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 6px 16px rgba(15, 23, 42, 0.07);
  transform-origin: center center;
  transition: border-color 0.25s ease, filter 0.2s ease;
  will-change: transform;
}

.hero-pill-bottom:hover .hero-pill-surface {
  border-color: #1e40af;
  filter: brightness(1.03);
}

.hero-pill-bottom:focus-visible .hero-pill-surface {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

/* strong은 부모 color 애니메이션 상속 (별도 animation 제거) */
.hero-pill-bottom .hero-pill-highlight {
  font-weight: 800;
}

/* PC·모바일 공통: 한 줄 (가로 나열 + nowrap) */
.hero-pill-surface--multiline {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  line-height: 1.3;
  padding: 0.7rem 1.35rem;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
}

.hero-pill-surface--multiline .hero-pill-line {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
  text-align: center;
}

.hero-pill-line--with-icon {
  gap: 0.35rem;
}

.hero-pill-surface--multiline .hero-pill-line--with-icon .icon-sm {
  flex-shrink: 0;
}

/* 모바일: 한 줄 유지 + 글자 크기 확대 */
@media (max-width: 639px) {
  .hero-pill-surface.hero-pill-surface--multiline {
    font-size: clamp(0.88rem, 4.5vw, 1.08rem);
    padding: 0.55rem 0.85rem;
    gap: 0.28rem;
    max-width: min(100%, calc(100vw - 2rem));
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-pill-surface.hero-pill-surface--multiline::-webkit-scrollbar {
    display: none;
  }

  .hero-pill-surface--multiline .hero-pill-line--with-icon .icon-sm {
    width: 1rem;
    height: 1rem;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--sky-section-b);
}

/* 짝수 흐름: 강점·진행과정·후기 — 은은한 스카이 대신 흰 배경 */
.section.section--stripe-white {
  background: #fff;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.section-stats {
  background: #fff;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

/* 서비스·FAQ (기본 섹션) */
section#services,
section#faq {
  background: var(--sky-section-c);
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

/* 카운트 종료 시 숫자 한 번 살짝 강조 */
@keyframes stat-num-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.stat-num.stat-num--done {
  animation: stat-num-pop 0.55s ease;
}

@media (prefers-reduced-motion: reduce) {
  .stat-num.stat-num--done {
    animation: none;
  }
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Features */
.feature-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.area-note {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Services */
.service-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
}

.service-visual {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.service-visual .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-body {
  padding: 1.25rem;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.service-body p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Process */
.section-process:not(.section--stripe-white) {
  background: var(--sky-section-a);
  border-top: 1px solid rgba(186, 230, 253, 0.5);
  border-bottom: 1px solid rgba(186, 230, 253, 0.45);
}

.section-process.section--stripe-white {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.process-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-line {
  display: none;
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 32px;
    left: calc(50% + 2.5rem);
    right: calc(-50% + 2.5rem);
    height: 2px;
    background: var(--border);
    z-index: 0;
  }

  .process-step:last-child .process-line {
    display: none;
  }
}

.process-circle-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 1rem;
}

.process-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.process-circle svg {
  width: 28px;
  height: 28px;
}

.process-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing */
.section-pricing {
  background: var(--sky-section-d);
}

.pricing-box {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list span {
  color: var(--primary);
  font-weight: 700;
}

.pricing-note {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}

/* Reviews */
.section-reviews:not(.section--stripe-white) {
  background: linear-gradient(180deg, #e8f4fc 0%, #ddeaf5 50%, #e5eef8 100%);
}

.section-reviews.section--stripe-white {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

/* 고객 후기: 가로 캐러셀 (모바일 1장 / PC 4장 노출, 2초마다 한 칸 이동 — JS) */
.review-carousel {
  margin: 0;
  touch-action: pan-y;
}

.review-carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* 좌우로 넘어가는 슬라이드가 보이도록 가장자리 은은한 그라데이션 */
.review-carousel-viewport::before,
.review-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.25rem;
  z-index: 1;
  pointer-events: none;
}

.review-carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), transparent);
}

.review-carousel-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), transparent);
}

.review-carousel-track {
  position: relative;
  display: flex;
  gap: 1rem;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* 접근성: 애니메이션 줄이기 — 슬라이드는 유지, 이동만 즉시 점프 */
.review-carousel--reduced-motion .review-carousel-track {
  transition: none;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-card .quote {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(37, 99, 235, 0.28);
  margin-bottom: 0.25rem;
}

.review-card .stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card > p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text);
}

.review-card footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}

.review-card footer strong {
  display: block;
  margin-bottom: 0.25rem;
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.75rem;
}

.before-after {
  margin-top: 3rem;
}

.before-after-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.before-after-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ba-card {
  margin: 0;
  text-align: center;
}

.ba-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  background: var(--border);
}

.ba-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff;
}

.ba-placeholder.before {
  background: linear-gradient(135deg, #64748b, #475569);
}

.ba-placeholder.after {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.ba-card figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  padding-top: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Final CTA */
.cta-final {
  position: relative;
  padding: 4rem 0;
  background: var(--sky-cta);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
}

.cta-final h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
}

.cta-lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  opacity: 0.92;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .cta-btns {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    max-width: none;
  }
}

.cta-tagline {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--sky-footer);
  border-top: 1px solid rgba(186, 230, 253, 0.4);
  padding: 3rem 0 0;
}

.site-footer.pb-fab {
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .site-footer.pb-fab {
    padding-bottom: 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (max-width: 767px) {
  .site-footer .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .site-footer .footer-brand {
    display: inline-block;
  }

  .site-footer .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer h4 {
    text-align: center;
  }

  .site-footer .footer-links {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--primary);
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-btn:hover {
  transform: scale(1.05);
}

.fab-phone {
  background: var(--red);
}

.fab-kakao {
  background: var(--kakao);
  color: var(--kakao-ink);
}

@media (min-width: 1024px) {
  .fab {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
