/* ==========================================================================
   더킹홈케어 출장마사지 (THE KING LUXURY HOME CARE) - Official Stylesheet
   Design Style: Royal Obsidian & Champagne Gold Theme
   Benchmark: Queens Therapy, AllCarePick, K-GoldenTherapy, PlatWhite
   ========================================================================== */

:root {
  --bg: #070a12;
  --bg-subtle: #0a0f1d;
  --bg-card: #0e1526;
  --bg-card-hover: #141e34;
  --bg-card-alt: #121a2d;
  
  --border: #1e293b;
  --border-focus: #334155;
  --border-gold: rgba(234, 179, 8, 0.28);
  --border-gold-hover: rgba(250, 204, 21, 0.6);

  --gold-300: #fef08a;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --gold-700: #a16207;
  --gold-gradient: linear-gradient(135deg, #fef08a 0%, #facc15 35%, #eab308 70%, #ca8a04 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fffbeb 0%, #fef08a 35%, #facc15 70%, #eab308 100%);
  
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-gradient: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);

  --sky-400: #38bdf8;
  --emerald-400: #34d399;

  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-main: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-serif: "Cormorant Garamond", "Gowun Batang", "Noto Serif KR", Georgia, serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(234, 179, 8, 0.18);
  --shadow-rose: 0 10px 30px rgba(244, 63, 94, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --container: 1140px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: -0.015em;
  position: relative;
}

/* Ambient Royal Background Lighting */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(circle at 50% 0%, rgba(234, 179, 8, 0.08) 0%, rgba(244, 63, 94, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 179, 8, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7, 10, 18, 0.96);
  border-bottom-color: rgba(234, 179, 8, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1e293b, #0e1526);
  border: 1px solid var(--gold-500);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 0 16px rgba(234, 179, 8, 0.25);
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.brand__name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand__sub {
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__desktop {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  transition: var(--transition);
}

.nav__link:hover, .nav__link.active {
  color: var(--gold-400);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.2s ease;
  border-radius: 1px;
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
  transition: var(--transition);
}

.header__tel-btn:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.45);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px;
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav__link:hover {
  background: var(--bg-card);
  border-left-color: var(--gold-400);
  color: var(--gold-400);
}

.mobile-nav__actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ──────────────────────────────────────────────────────────
   BUTTONS & COMMON COMPONENTS
   ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #0b0f19;
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.28);
}

.btn--gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.btn--kakao {
  background: #fee500;
  color: #191919;
  box-shadow: 0 6px 20px rgba(254, 229, 0, 0.2);
}

.btn--kakao:hover {
  background: #fada00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(254, 229, 0, 0.35);
}

.btn--outline {
  background: rgba(14, 21, 38, 0.8);
  color: var(--text-main);
  border: 1px solid var(--border-gold);
}

.btn--outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.btn--rose {
  background: var(--rose-gradient);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.btn--rose:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

/* ──────────────────────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────────────────────── */
.hero {
  padding: 60px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(14, 21, 38, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero__title {
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  word-break: keep-all;
}

.hero__title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero__desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
  word-break: keep-all;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
}

.hero__stat-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-400);
}

.hero__stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Right Visual Card */
.hero__visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(160deg, #111a2e 0%, #0c1322 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
}

.visual-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.visual-card__title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.visual-card__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.visual-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(7, 10, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  font-size: 13px;
}

.feature-pill__icon {
  font-size: 16px;
  color: var(--gold-400);
}

.feature-pill__text strong {
  color: var(--text-main);
  display: block;
  font-size: 13px;
}

.feature-pill__text span {
  color: var(--text-dim);
  font-size: 11px;
}

.visual-card__callbox {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(14, 21, 38, 0.9));
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.visual-card__call-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.visual-card__call-number {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   NO-PREPAYMENT TRUST BANNER (선입금 사기 예방 특별 고지)
   ────────────────────────────────────────────────────────── */
.trust-banner {
  margin: 16px 0 54px;
}

.trust-banner__inner {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12) 0%, rgba(14, 21, 38, 0.95) 45%, rgba(234, 179, 8, 0.12) 100%);
  border: 1px solid rgba(244, 63, 94, 0.4);
  border-left: 6px solid var(--rose-500);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trust-banner__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.trust-banner__title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-banner__badge {
  padding: 6px 12px;
  background: var(--rose-500);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 900;
}

.trust-banner__title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.trust-banner__title span {
  color: var(--gold-400);
}

.trust-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-point {
  display: flex;
  gap: 12px;
}

.trust-point__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.trust-point strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trust-point p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────────
   COURSES & PRICING SECTION
   ────────────────────────────────────────────────────────── */
.section-courses {
  padding: 80px 0;
  background: var(--bg-subtle);
  position: relative;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

.course-card--vip {
  border-color: var(--gold-500);
  background: linear-gradient(165deg, #162035 0%, #0f172a 100%);
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.15);
}

.course-card--vip:hover {
  border-color: var(--gold-400);
  box-shadow: 0 15px 40px rgba(234, 179, 8, 0.3);
}

.course-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: rgba(234, 179, 8, 0.15);
  color: var(--gold-300);
  border: 1px solid var(--border-gold);
}

.course-card--vip .course-card__tag {
  background: var(--gold-gradient);
  color: #0b0f19;
  border: none;
}

.course-card__num {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.course-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.course-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 42px;
}

.course-card__rates {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.rate-row__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.rate-row__price {
  font-size: 19px;
  font-weight: 900;
  color: var(--gold-400);
}

.course-card--vip .rate-row__price {
  color: var(--gold-300);
}

.course-card__btn {
  margin-top: auto;
  width: 100%;
}

.courses-bottom-notice {
  background: rgba(14, 21, 38, 0.6);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.courses-bottom-notice strong {
  color: var(--gold-400);
}

/* ──────────────────────────────────────────────────────────
   PREMIUM BENEFITS (WHY THE KING?)
   ────────────────────────────────────────────────────────── */
.section-benefits {
  padding: 80px 0;
  background: var(--bg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.benefit-card__num {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-500);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.benefit-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.benefit-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────────
   HOW IT WORKS (4 STEPS)
   ────────────────────────────────────────────────────────── */
.section-steps {
  padding: 80px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
}

.step-card__num {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  padding: 4px 10px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.step-card__title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   LOCATIONS & SERVICE AREA (SEO & REGIONAL SILO)
   ────────────────────────────────────────────────────────── */
.section-area {
  padding: 80px 0;
  background: var(--bg);
}

.area-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.area-tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 800;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
  outline: none;
}

.area-tab-btn.active, .area-tab-btn:hover {
  background: var(--gold-gradient);
  color: #0b0f19;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.area-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  margin-bottom: 32px;
}

.area-content-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.area-content-box__title {
  font-size: 22px;
  font-weight: 800;
}

.area-content-box__desc {
  font-size: 13px;
  color: var(--text-muted);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.area-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.area-chip strong {
  color: var(--gold-400);
}

/* Places Guide (Benchmark AllCarePick) */
.places-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.place-guide-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.place-guide-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.place-guide-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────
   REVIEWS (USER VOICES)
   ────────────────────────────────────────────────────────── */
.section-reviews {
  padding: 80px 0;
  background: var(--bg-subtle);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.review-card__stars {
  color: var(--gold-400);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 18px;
  word-break: keep-all;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.review-card__author strong {
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────
   FAQ (ACCORDION)
   ────────────────────────────────────────────────────────── */
.section-faq {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

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

.faq-summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-400);
  transition: transform 0.2s ease;
}

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

.faq-content {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Distributed Page FAQ Accordion Styles */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main) !important;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  user-select: none;
  font-family: inherit;
}

.faq-item__question span {
  color: var(--text-main);
}

.faq-item__question:hover,
.faq-item.active .faq-item__question,
.faq-item.active .faq-item__question span {
  color: var(--gold-400) !important;
}

.faq-item__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-400) !important;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: var(--gold-300) !important;
}

.faq-item__answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item__answer p {
  color: var(--text-muted) !important;
  margin: 0;
}

.faq-item.active .faq-item__answer {
  display: block;
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  background: var(--bg-card);
}

/* ──────────────────────────────────────────────────────────
   QUICK ESTIMATE / CONTACT FORM
   ────────────────────────────────────────────────────────── */
.section-contact {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(234, 179, 8, 0.06) 0%, transparent 60%), var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
}

.form-label span {
  color: var(--gold-400);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-textarea {
  height: 90px;
  padding: 12px 16px;
  resize: vertical;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer {
  background: #04070c;
  border-top: 1px solid var(--border);
  padding: 54px 0 120px;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.8;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.footer__brand-title span {
  color: var(--gold-400);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__links a:hover {
  color: var(--gold-400);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ──────────────────────────────────────────────────────────
   MOBILE FLOATING ACTION BAR (CONVERSION OPTIMIZED)
   ────────────────────────────────────────────────────────── */
.floating-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, calc(100% - 24px));
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 179, 8, 0.2);
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition);
}

.floating-btn--tel {
  background: var(--gold-gradient);
  color: #0b0f19;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.floating-btn--tel:active {
  transform: scale(0.97);
}

.floating-btn--kakao {
  background: #fee500;
  color: #191919;
}

.floating-btn--kakao:active {
  transform: scale(0.97);
}

.floating-btn--sms {
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn--sms:active {
  transform: scale(0.97);
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--gold-400);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE MEDIA QUERIES
   ────────────────────────────────────────────────────────── */
@media (max-width: 1140px) {
  .nav__desktop {
    gap: 10px;
  }
  .nav__link {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .course-grid, .benefit-grid, .review-grid, .places-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-banner__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__links {
    align-items: flex-start;
  }
}

/* ──────────────────────────────────────────────────────────
   THERAPIST & MODEL SHOWCASE GALLERY
   ────────────────────────────────────────────────────────── */
.section-gallery {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold);
}

.model-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #080d19;
}

.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.model-card:hover .model-card__img {
  transform: scale(1.05);
}

.model-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(10, 15, 26, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-300);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.model-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 10, 18, 0.95) 100%);
  pointer-events: none;
}

.model-card__body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
}

.model-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-card__subtitle {
  font-size: 12px;
  color: var(--gold-400);
  font-weight: 600;
}

.model-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__desktop, .header__tel-btn {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .course-grid, .benefit-grid, .review-grid, .places-guide-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-box {
    padding: 24px 18px;
  }
  .area-content-box {
    padding: 24px 18px;
  }
  .hero {
    padding: 36px 0 48px;
  }
  .section-courses, .section-benefits, .section-steps, .section-area, .section-reviews, .section-faq, .section-contact {
    padding: 56px 0;
  }
}

/* ==========================================================================
   pSEO Distribution Pages & Hub Specific Styles
   ========================================================================== */
.trust-banner {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.12) 0%, rgba(244, 63, 94, 0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-banner__icon {
  font-size: 38px;
  flex-shrink: 0;
}
.trust-banner__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 6px;
}
.trust-banner__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 640px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.highlight-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.highlight-card__icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--gold-400);
  margin-top: 2px;
}
.highlight-card__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
}

.service-list-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
}
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .service-list-grid {
    grid-template-columns: 1fr;
  }
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.service-item__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-chips-wrapper {
  margin: 32px 0;
}
.area-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  transition: var(--transition);
}
.area-chip:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.area-chip--active {
  border-color: var(--gold-500);
  background: rgba(234, 179, 8, 0.15);
  color: var(--gold-300);
  font-weight: 800;
}
.area-chip--hub {
  border-color: var(--rose-500);
  color: var(--rose-400);
  background: rgba(244, 63, 94, 0.1);
  font-weight: 800;
}

.seo-article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px 0;
}
.seo-article-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.seo-article-card__body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Floating Sticky Action Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}
.sticky-btn {
  flex: 1;
  max-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}
.sticky-btn--phone {
  background: var(--gold-gradient);
  color: #070a12;
  box-shadow: var(--shadow-gold);
}
.sticky-btn--phone:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
}
.sticky-btn--kakao {
  background: #fee500;
  color: #191919;
}
.sticky-btn--kakao:hover {
  background: #fada0a;
  transform: translateY(-2px);
}
.sticky-btn--form {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.sticky-btn--form:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-400);
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb-nav a {
  color: var(--gold-400);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-nav a:hover {
  text-decoration: underline;
  color: var(--gold-300);
}
