/* =========================================================
   맑음 air care — 새집증후군 랜딩
   Design tokens resolved from the Claude Design mockup
   (accent #2E9BD6 · 라이트 그레이 · 고운돋움 · radius 24 · 둥근 · 그림자 카드 · 여유)
   ========================================================= */

:root {
  --accent: #2E9BD6;
  --accent2: #6FB48B;

  --paper: #F6F7F9;   /* 라이트 그레이 */
  --alt: #ECEEF1;
  --nav: rgba(246, 247, 249, 0.85);

  --ink: #16303D;
  --ink-2: #3E5763;
  --muted: #4B6472;
  --muted-2: #5B7280;
  --soft: #7B929E;
  --faint: #9FB2BD;

  --card-bd: 1px solid transparent;              /* 카드: 그림자 */
  --card-sh: 0 10px 30px rgba(20, 48, 61, 0.09);

  --radius: 24px;
  --btn: 12px;                                    /* 버튼: 둥근 */

  --hfont: 'Gowun Dodum', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --bfont: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --hw: 800;

  --pad: 128px;        /* section vertical padding (density: 여유) */
  --rcols: repeat(3, 1fr);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--bfont);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }
::placeholder { color: var(--faint); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Layout helpers ---------- */
.container { max-width: 1180px; margin: 0 auto; }
.section { padding: var(--pad) 24px; }
.section--alt { background: var(--alt); }
.section--reviews { background: linear-gradient(180deg, var(--alt), var(--paper)); }

.eyebrow {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
h1, h2 {
  font-family: var(--hfont);
  font-weight: var(--hw);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}
.h-lead {
  max-width: 720px;
}
.h-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--btn);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 30%, transparent);
}
.btn--primary:hover { box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 40%, transparent); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid #E1E9ED;
}
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 16px 26px; font-size: 16px; box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 32%, transparent); }

/* ---------- Card ---------- */
.card {
  background: #fff;
  border: var(--card-bd);
  box-shadow: var(--card-sh);
  border-radius: var(--radius);
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 48, 61, 0.07);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand__logo {
  width: 32px; height: 32px; border-radius: 8px;
  object-fit: contain; display: inline-block;
}
.brand__dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 50%, #fff), var(--accent));
  display: inline-block;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}
.brand__name {
  font-family: var(--hfont);
  font-size: 21px;
  font-weight: var(--hw);
  letter-spacing: -0.02em;
}
.brand__sub {
  font-size: 12px; font-weight: 600; color: var(--soft);
  letter-spacing: -0.01em; margin-left: 2px;
  align-self: flex-end; padding-bottom: 3px;
}
.nav__right { display: flex; align-items: center; gap: 30px; }
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 15px; font-weight: 600; color: var(--muted);
}
.nav__links a { white-space: nowrap; }
.nav__links a:hover { color: var(--accent); }

/* ---------- HERO ---------- */
.hero { padding: 26px 24px 0; }
.hero__stage {
  position: relative;
  border-radius: calc(var(--radius) + 12px);
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(20, 48, 61, 0) 45%, rgba(15, 40, 55, 0.30)),
    radial-gradient(120% 90% at 78% 8%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 46%),
    radial-gradient(90% 70% at 12% 100%, rgba(111, 180, 139, 0.30), rgba(111, 180, 139, 0) 55%),
    linear-gradient(120deg, #cfe8f6 0%, #eaf5fb 42%, #f3efe6 72%, #dcefe4 100%);
}
/* soft "sunlight through window" beams */
.hero__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.55) 52%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(102deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.35) 70%, rgba(255, 255, 255, 0) 76%);
  pointer-events: none;
}
.hero__scene {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(46%, 520px);
  opacity: 0.9;
  pointer-events: none;
}
/* 실제 배경 사진이 로드되면 장식용 창/광선은 숨김 */
.hero__stage.has-photo::before,
.hero__stage.has-photo .hero__scene { display: none; }
.hero__badge {
  position: absolute;
  top: 30px; right: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: calc(var(--radius) - 4px);
  padding: 13px 18px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 12px 30px rgba(20, 48, 61, 0.18);
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}
.hero__badge-score {
  font-family: var(--hfont); font-size: 22px; font-weight: var(--hw); color: var(--accent);
}
.hero__badge-stars { font-size: 13px; color: #F5A623; letter-spacing: 1px; }
.hero__badge-meta { font-size: 12px; font-weight: 600; color: var(--muted-2); }
.hero__card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 42px 44px;
  max-width: 640px;
  box-shadow: 0 20px 50px rgba(20, 48, 61, 0.16);
}
.pill-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: color-mix(in srgb, var(--accent) 75%, #000);
  font-size: 13px; font-weight: 700;
  padding: 7px 13px; border-radius: var(--btn);
  margin-bottom: 20px;
}
.pill-tag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); display: inline-block; }
.hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.hero__title span { color: var(--accent); }
/* 앞 문구("새집의 설렘은 그대로,")는 기본 먹색으로 — 뒤 타이핑 문구만 강조색 */
.hero__title .hero__title-lead { color: var(--ink); }
/* 타이프라이터 (유해물질은 0으로 …) */
.hero__type { display: inline; }
.hero__type-text { color: var(--accent); }
.hero__caret {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 6px;
  background: var(--accent);
  vertical-align: -0.1em;
  border-radius: 2px;
  animation: caret-blink 1.05s steps(1) infinite;
}
@keyframes caret-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__caret { animation: none; }
}
.hero__desc {
  font-size: 18px; line-height: 1.65; color: var(--muted);
  margin: 0 0 28px; font-weight: 500;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- STATS ---------- */
.stats { padding: 44px 24px 10px; }
.stats__grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { text-align: center; padding: 24px 12px; }
.stat__num {
  font-family: var(--hfont); font-size: 32px; font-weight: var(--hw);
  letter-spacing: -0.03em; color: var(--ink);
}
.stat__num small { font-size: 17px; color: var(--soft); font-weight: 700; }
.stat__num--accent { color: var(--accent); }
.stat__num--accent small { color: inherit; }
.stat__num--accent2 { color: var(--accent2); }
.stat__label { font-size: 14px; font-weight: 600; color: var(--soft); margin-top: 4px; }

/* ---------- PROBLEM ---------- */
.tox-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.tox { padding: 26px 24px; }
.tox__tag {
  font-size: 13px; font-weight: 700;
  display: inline-block; padding: 4px 10px; border-radius: 8px; margin-bottom: 14px;
}
.tox__tag--red { color: #C9553E; background: #FBECE8; }
.tox__tag--amber { color: #B77A1E; background: #FBF3E4; }
.tox__tag--accent { color: color-mix(in srgb, var(--accent) 75%, #000); background: color-mix(in srgb, var(--accent) 12%, #fff); }
.tox__name { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.tox__code { font-size: 13px; color: var(--faint); font-weight: 600; margin-bottom: 10px; }
.tox__desc { font-size: 14.5px; line-height: 1.6; color: var(--muted-2); margin: 0; }

.symptoms {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  background: var(--alt); border-radius: var(--radius); padding: 18px 22px;
}
.symptoms__label { font-size: 14px; font-weight: 700; color: var(--muted); }
.symptoms__sep { width: 1px; height: 16px; background: #D5E2E8; }
.chip {
  background: #fff; border: 1px solid #E6EDF1; border-radius: var(--btn);
  padding: 8px 15px; font-size: 14px; font-weight: 600; color: var(--ink);
}

/* ---------- PROCESS ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 22px;
}
.step { padding: 30px 26px; }
.step__num {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent); font-weight: 800; font-size: 19px; margin-bottom: 18px;
}
.step__num--accent2 {
  background: color-mix(in srgb, var(--accent2) 16%, #fff);
  color: var(--accent2);
}
.step__title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.step__desc { font-size: 15px; line-height: 1.65; color: var(--muted-2); margin: 0; }

.method-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; }
.method {
  background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 38px 40px;
}
.method__eyebrow { font-size: 13px; font-weight: 700; color: color-mix(in srgb, var(--accent) 55%, #fff); margin-bottom: 14px; }
.method__title { font-family: var(--hfont); font-size: 26px; font-weight: var(--hw); letter-spacing: -0.02em; margin-bottom: 20px; }
.method__list { display: flex; flex-direction: column; gap: 16px; }
.method__item { display: flex; gap: 14px; }
.method__check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 26%, transparent);
  color: color-mix(in srgb, var(--accent) 55%, #fff);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}
.method__item p { margin: 0; font-size: 15.5px; line-height: 1.6; color: #D4E3EA; }
.method__item b { color: #fff; }

.result { padding: 32px 34px; }
.result__label { font-size: 13px; font-weight: 700; color: var(--soft); margin-bottom: 6px; }
.result__title { font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.result__title span { color: var(--accent2); }
.bar-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.bar-row--before { color: #C9553E; }
.bar-row--after { color: #4E9A6E; }
.bar { height: 12px; border-radius: 999px; }
.bar--before-track { background: #F3E3DF; margin-bottom: 20px; }
.bar--after-track { background: #E3F0E8; margin-bottom: 22px; }
.bar__fill { height: 100%; border-radius: 999px; }
.bar__fill--before { width: 92%; background: #E07A5F; }
.bar__fill--after { width: 12%; background: var(--accent2); }
/* 스크롤 진입 시 0 → 목표폭으로 차오르는 애니메이션 (JS가 트리거) */
.bar__fill, .dist-row__fill { transition: width 1.1s cubic-bezier(0.22, 0.61, 0.36, 1); }
@media (prefers-reduced-motion: reduce) {
  .bar__fill, .dist-row__fill { transition: none; }
}
.result__note {
  font-size: 13px; font-weight: 600; color: var(--soft);
  background: var(--alt); border-radius: 12px; padding: 12px 14px; line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case__media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 380px;
}
.case__ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(255,255,255,0.7), rgba(255,255,255,0) 50%),
    linear-gradient(140deg, #e6f2f8 0%, #f1f7f4 55%, #e3eff5 100%);
  color: var(--soft);
}
.case__ph svg { width: 52px; height: 52px; opacity: 0.65; }
.case__ph-label { font-size: 13.5px; font-weight: 700; }
.case__badge {
  position: absolute; top: 14px; right: 14px;
  background: #fff; border-radius: 12px; padding: 8px 13px;
  box-shadow: 0 6px 16px rgba(20, 48, 61, 0.16);
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
}
.case__badge--row { flex-direction: row; align-items: center; gap: 6px; }
.case__badge-label { font-size: 11px; font-weight: 700; color: var(--soft); }
.case__badge-num { font-family: var(--hfont); font-size: 19px; font-weight: 800; color: var(--accent2); line-height: 1; }
.case__badge-ok { font-size: 15px; color: var(--accent2); }
.case__badge-okt { font-size: 13px; font-weight: 800; color: var(--ink); }
.case__caption { padding: 16px 4px 0; }
.case__title { font-size: 16px; font-weight: 800; }
.case__sub { font-size: 13.5px; color: var(--soft); font-weight: 600; margin-top: 3px; }
.cases__note { text-align: center; font-size: 13px; color: var(--faint); margin: 22px 0 0; }

/* ---------- REVIEWS ---------- */
.rating-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 16px; margin-bottom: 34px; }
.rating-score {
  padding: 34px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.rating-score__num { font-family: var(--hfont); font-size: 66px; font-weight: var(--hw); letter-spacing: -0.04em; line-height: 1; }
.rating-score__stars { font-size: 20px; color: #F5A623; letter-spacing: 3px; margin: 10px 0 8px; }
.rating-score__meta { font-size: 15px; font-weight: 600; color: var(--soft); }
.rating-dist { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.dist-row { display: flex; align-items: center; gap: 12px; }
.dist-row__label { width: 46px; font-size: 13px; font-weight: 700; color: var(--soft); }
.dist-row__track { flex: 1; height: 9px; border-radius: 999px; background: #EEF3F5; overflow: hidden; }
.dist-row__fill { display: block; height: 100%; border-radius: 999px; background: var(--accent); }
.dist-row__fill--2 { background: color-mix(in srgb, var(--accent) 55%, #fff); }
.dist-row__fill--3 { background: #C7D6DD; }
.dist-row__pct { width: 40px; text-align: right; font-size: 13px; font-weight: 700; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter {
  background: #fff; color: var(--muted-2); border: 1px solid #E1E9ED;
  padding: 10px 18px; border-radius: var(--btn);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.filter:hover { border-color: #B9CDD6; color: var(--ink); }
.filter.is-active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

.reviews-grid { display: grid; grid-template-columns: var(--rcols); gap: 16px; }
.review { padding: 26px; display: flex; flex-direction: column; }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.review__who { display: flex; flex-direction: column; line-height: 1.35; }
.review__name { font-size: 15px; font-weight: 800; }
.review__meta { font-size: 12.5px; color: var(--soft); font-weight: 600; }
.review__rating { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review__stars { font-size: 14px; color: #F5A623; letter-spacing: 1px; }
.review__date { font-size: 12.5px; color: #A9BAC3; font-weight: 600; }
.review__text { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 16px; font-weight: 500; }
.review__photo {
  width: 100%; height: 150px; border-radius: 14px; margin-bottom: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(140deg, #dfeef6, #e7f2ec);
  color: var(--soft); font-size: 12.5px; font-weight: 700;
}
.review__photo svg { width: 26px; height: 26px; opacity: 0.6; }
/* 실제 후기 사진이 로드되면 아이콘/라벨은 숨김 */
.review__photo.has-photo { color: transparent; }
.review__photo.has-photo svg { display: none; }
.review__foot { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.tag {
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: color-mix(in srgb, var(--accent) 75%, #000);
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: var(--btn);
}
.verified { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--accent2); }

/* ---------- PRICING ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { padding: 34px 32px; display: flex; flex-direction: column; }
.plan--featured {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  position: relative; box-shadow: 0 24px 50px rgba(20, 48, 61, 0.22);
}
.plan__flag {
  position: absolute; top: 20px; right: 24px;
  background: var(--accent2); color: #fff; font-size: 12px; font-weight: 800;
  padding: 5px 12px; border-radius: var(--btn);
}
.plan__name { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.plan__size { font-size: 14px; color: var(--soft); font-weight: 600; margin-bottom: 20px; }
.plan--featured .plan__size { color: #9FC4D5; }
.plan__price { font-family: var(--hfont); font-size: 34px; font-weight: var(--hw); letter-spacing: -0.03em; margin-bottom: 22px; }
.plan__price small { font-size: 17px; color: var(--soft); font-weight: 400; }
.plan--featured .plan__price small { color: #9FC4D5; }
.plan__feats { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--muted); font-weight: 500; margin-bottom: 26px; }
.plan--featured .plan__feats { color: #D4E3EA; }
.plan__feats .hi { color: color-mix(in srgb, var(--accent) 55%, #fff); }
.plan__feats b { color: #fff; }
.plan__cta {
  margin-top: auto; text-align: center; display: block;
  padding: 14px; border-radius: 14px; font-weight: 700; font-size: 15px;
  background: var(--alt); color: var(--ink);
}
.plan__cta--primary { background: var(--accent); color: #fff; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: transparent; border: none; cursor: pointer; text-align: left;
}
.faq__q-text { font-size: 16.5px; font-weight: 700; color: var(--ink); }
.faq__icon {
  font-size: 24px; font-weight: 400; color: var(--accent); flex-shrink: 0;
  transition: transform 0.2s;
}
.faq.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 26px 24px; font-size: 15.5px; line-height: 1.7; color: var(--muted); font-weight: 500; }

/* ---------- CONTACT ---------- */
.contact-card {
  border-radius: calc(var(--radius) + 10px);
  padding: 54px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  background: linear-gradient(150deg, var(--accent), color-mix(in srgb, var(--accent) 76%, #000));
  box-shadow: 0 30px 60px color-mix(in srgb, var(--accent) 28%, transparent);
}
.contact-info { color: #fff; }
.contact-info__eyebrow { font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.9); margin-bottom: 14px; }
.contact-info__title { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em; margin: 0 0 18px; }
.contact-info__desc { font-size: 17px; line-height: 1.7; color: rgba(255, 255, 255, 0.9); margin: 0 0 26px; font-weight: 500; }
.contact-perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: #fff; }
.perk__dot {
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 34px; }
.form { display: flex; flex-direction: column; gap: 14px; }
/* 허니팟(스팸봇 트랩): 화면 밖으로 숨김 — display:none 은 일부 봇이 건너뛰므로 사용 안 함 */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--muted); }
.field input {
  border: 1px solid #E1E9ED; border-radius: 12px; padding: 13px 15px;
  font-size: 15px; outline: none; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent); }
.field input[type="date"] { color: var(--ink); min-height: 49px; }
.field input[type="date"]::-webkit-calendar-picker-indicator { cursor: pointer; opacity: .55; }
.field-row { display: flex; gap: 12px; }
.field-row .field { flex: 1; }
/* 지역: 시/도 셀렉트 + 동네 입력 */
.field-select {
  border: 1px solid #E1E9ED; border-radius: 12px; padding: 13px 15px;
  font-size: 15px; outline: none; width: 100%; min-height: 49px;
  background: #fff; color: var(--ink); cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent); }
.region-row { display: flex; gap: 10px; }
.region-row .field-select { flex: 1; min-width: 0; }
.field-select:disabled { background: var(--alt); color: var(--soft); cursor: not-allowed; }
.form__submit {
  margin-top: 6px; background: var(--accent); color: #fff; border: none;
  padding: 16px; border-radius: 14px; font-weight: 800; font-size: 16px; cursor: pointer;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 30%, transparent);
}
.form__fine { font-size: 12px; color: var(--faint); text-align: center; margin: 2px 0 0; line-height: 1.5; }
.form-success {
  display: none;
  flex-direction: column; align-items: center; text-align: center; padding: 30px 10px;
}
.form-success__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent2) 16%, #fff); color: var(--accent2);
  display: flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 18px;
}
.form-success__title { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--muted-2); line-height: 1.6; margin: 0 0 22px; }
.form-success__reset {
  background: var(--alt); color: var(--ink); border: none;
  padding: 12px 22px; border-radius: 12px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.contact-form-wrap.is-submitted .form { display: none; }
.contact-form-wrap.is-submitted .form-success { display: flex; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #fff; padding: 54px 24px 40px; }
.footer__top {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px;
}
.footer__brand { max-width: 320px; }
.footer__brand-row { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer__brand-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(150deg, color-mix(in srgb, var(--accent) 50%, #fff), var(--accent));
  display: inline-block;
}
.footer__brand-name { font-family: var(--hfont); font-size: 20px; font-weight: var(--hw); }
.footer__desc { font-size: 14px; line-height: 1.7; color: #9FB8C4; margin: 0; }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 13px; font-weight: 800; color: #6E8896; margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: #C7D6DD; }
.footer__col a:hover { color: #fff; }
.footer__phone { font-family: var(--hfont); font-size: 22px; font-weight: var(--hw); }
.footer__hours { font-size: 14px; color: #9FB8C4; }
.footer__kakao {
  margin-top: 6px; background: var(--accent); color: #fff;
  padding: 11px 18px; border-radius: var(--btn); font-weight: 700; font-size: 14px;
  display: inline-block; width: fit-content;
}
.footer__legal {
  max-width: 1180px; margin: 34px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: #6E8896;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: var(--accent); color: #fff;
  padding: 15px 24px; border-radius: var(--btn);
  font-weight: 800; font-size: 15px;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 45%, transparent);
  display: flex; align-items: center; gap: 8px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  :root { --pad: 96px; }
  .nav__links { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .tox-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr 1fr; }
  .rating-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 34px; padding: 40px; }
}

@media (max-width: 620px) {
  .hero__stage { min-height: 560px; padding: 20px; }
  .hero__card { padding: 30px 26px; }
  .hero__scene { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .tox-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; }
  .contact-card { padding: 30px 22px; }
  .footer__cols { gap: 36px; }
}

/* =========================================================
   CTA — 에어 리플 + 호버 리프트
   ========================================================= */
/* 리플을 담는 컨테이너 (버튼 안으로 clip) */
.btn--primary,
.plan__cta--primary,
.form__submit {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sticky-cta {                 /* 이미 position:fixed — position은 유지, clip만 추가 */
  overflow: hidden;
  isolation: isolate;
}
/* 부드러운 전환 (.btn 에는 이미 있음) */
.plan__cta,
.form__submit,
.sticky-cta {
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

/* 호버: 살짝 떠오름 + 그림자 bloom */
.btn--primary:hover,
.plan__cta--primary:hover,
.form__submit:hover,
.sticky-cta:hover {
  transform: translateY(-3px);
}
.btn--primary:hover,
.btn--lg:hover {
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent) 46%, transparent);
}
.plan__cta--primary:hover {
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 42%, transparent);
}
.form__submit:hover {
  box-shadow: 0 18px 34px color-mix(in srgb, var(--accent) 42%, transparent);
}
.sticky-cta:hover {
  box-shadow: 0 22px 44px color-mix(in srgb, var(--accent) 52%, transparent);
}

/* 누르는 순간: 살짝 눌림 (호버 뒤에 정의 → active 우선) */
.btn--primary:active,
.plan__cta--primary:active,
.form__submit:active,
.sticky-cta:active {
  transform: translateY(-1px);
}

/* 에어 리플 — 딱딱한 원이 아니라 부드럽게 번지는 공기 파동 */
.cta-ripple {
  position: absolute;
  z-index: -1;                /* 텍스트 아래, 버튼 배경 위 (isolation 덕분) */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.9;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.28) 42%,
    rgba(255, 255, 255, 0) 70%);
  animation: cta-ripple 0.62s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes cta-ripple {
  to { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover, .plan__cta--primary:hover, .form__submit:hover, .sticky-cta:hover,
  .btn--primary:active, .plan__cta--primary:active, .form__submit:active, .sticky-cta:active {
    transform: none;
  }
  .cta-ripple { display: none; }
}
