/* ============================================================
   누수엔드 — 전국 누수탐지 전문 플랫폼
   Design System: Hybrid — Dark Hero + Cool White Body
   (A안: #F4F7FB 배경 + 아쿠아 잉크 #0E7490, WCAG AAA 검증)
   다크 원본 백업: _backup_dark_theme/style.css
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Light body */
  --bg: #F4F7FB;
  --bg-2: #E9EFF8;
  --bg-3: #0D1B3E;            /* 다크 밴드 (히어로·푸터·CTA) */
  --panel: #FFFFFF;
  --panel-solid: #FFFFFF;
  --white: #ffffff;
  --navy: #0B1526;            /* 제목 */
  --navy-soft: #26324A;
  --text: #26324A;
  --text-mut: #46536E;
  --text-dim: #5F6C89;
  /* Accents — light용 잉크 버전 */
  --aqua: #0E7490;
  --aqua-bright: #22D3EE;     /* 다크 밴드 위 전용 */
  --aqua-soft: #E3F4F9;
  --aqua-deep: #155E75;
  --blue: #1D4ED8;
  --gold: #8A6100;            /* 텍스트용 브론즈 */
  --gold-deco: #E0A83A;       /* 장식용 골드 */
  --gold-deep: #6E4E00;
  --gold-soft: #FBF3E0;
  --line: rgba(13, 27, 62, .13);
  --line-2: rgba(13, 27, 62, .26);
  --card: #FFFFFF;
  --radius: 20px;
  --radius-sm: 13px;
  --shadow: 0 16px 40px rgba(13, 27, 62, .10);
  --shadow-soft: 0 6px 18px rgba(13, 27, 62, .07);
  --glow-aqua: 0 8px 26px rgba(14, 116, 144, .28);
  --grad-aqua: linear-gradient(120deg, #0E7490 0%, #1D4ED8 100%);
  --grad-aqua-dark: linear-gradient(120deg, #22D3EE 0%, #4F7CFF 100%);
  --grad-gold: linear-gradient(135deg, #F0C86A 0%, #D99A1E 100%);
  --font: 'Noto Sans KR', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

::selection { background: rgba(14,116,144,.25); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #B9C6DB; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--aqua); }

/* ============================================================
   EMERGENCY TOP BAR
   ============================================================ */
.emergency-bar {
  background: linear-gradient(90deg, #0D1B3E, #0E7490 50%, #0D1B3E);
  color: #fff; font-size: 12.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 32px; letter-spacing: .3px;
}
.emergency-bar .eb-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7DEEFF;
  box-shadow: 0 0 8px #7DEEFF; animation: pulse 1.6s infinite;
}
.emergency-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 900; }

/* ============================================================
   SCROLL PROGRESS + TO TOP
   ============================================================ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-aqua);
  z-index: 2000; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(14,116,144,.5);
}
#to-top {
  position: fixed; right: 20px; bottom: 84px; z-index: 890;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-2);
  box-shadow: var(--shadow-soft); color: var(--aqua);
  display: grid; place-items: center; font-size: 19px; font-weight: 900;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: .3s;
}
#to-top.show { opacity: 1; pointer-events: auto; transform: none; }
#to-top:hover { background: var(--aqua-soft); box-shadow: var(--glow-aqua); }
@media (min-width: 721px) { #to-top { bottom: 24px; } }

/* ============================================================
   HEADER — 2상태: 히어로 위(투명+흰텍스트) / 스크롤(흰배경+다크텍스트)
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(13,27,62,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 42px; height: 42px; position: relative; flex: none;
  filter: drop-shadow(0 0 12px rgba(34,211,238,.4));
}
.logo-text-wrap { line-height: 1.2; }
.logo-name { font-size: 21px; font-weight: 900; letter-spacing: -.5px; color: #fff; transition: color .3s; }
.logo-name em { font-style: normal; color: var(--aqua-bright); transition: color .3s; }
.logo-tag { font-size: 10.5px; color: rgba(255,255,255,.55); letter-spacing: 2.5px; font-weight: 500; transition: color .3s; }
.header.scrolled .logo-name { color: var(--navy); }
.header.scrolled .logo-name em { color: var(--aqua); }
.header.scrolled .logo-tag { color: var(--text-dim); }

.gnb { display: flex; gap: 34px; }
.gnb a {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.88);
  position: relative; padding: 6px 0; transition: color .25s;
}
.gnb a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 0;
  background: var(--grad-aqua-dark); border-radius: 2px; transition: width .3s;
}
.gnb a:hover, .gnb a.active { color: var(--aqua-bright); }
.gnb a:hover::after, .gnb a.active::after { width: 100%; }
.header.scrolled .gnb a { color: var(--text); }
.header.scrolled .gnb a:hover, .header.scrolled .gnb a.active { color: var(--aqua); }
.header.scrolled .gnb a::after { background: var(--grad-aqua); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-aqua); color: #fff;
  font-size: 15px; font-weight: 800; padding: 11px 22px;
  border-radius: 999px; box-shadow: var(--glow-aqua);
  transition: transform .25s, box-shadow .25s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,116,144,.4); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.header.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 106px 0 auto 0; z-index: 999;
  background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(13,27,62,.12);
  padding: 14px 24px 26px; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: .3s;
}
.mobile-nav.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav a { padding: 13px 6px; font-size: 16px; font-weight: 700; color: var(--text); border-bottom: 1px solid rgba(13,27,62,.08); }
.mobile-nav a:last-child { border: none; }

/* ============================================================
   HERO — 다크 유지 (영상+보케)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
  background: radial-gradient(110% 85% at 50% 0%, #0d1e42 0%, #070d1d 55%, #04070f 100%);
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video-wrap video, .hero-video-wrap .hero-fallback {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-fallback { background: radial-gradient(110% 80% at 50% 0%, #0e2450 0%, #070d1d 60%, #04070f 100%); }
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(75% 60% at 50% 42%, rgba(6,13,31,.12) 0%, rgba(6,13,31,.6) 100%),
    linear-gradient(180deg, rgba(6,13,31,.55) 0%, rgba(6,13,31,.22) 45%, var(--bg) 99%);
}
#water-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(34,211,238,.4); border-radius: 999px;
  padding: 8px 20px; font-size: 13.5px; font-weight: 700; color: #52E4FF;
  background: rgba(10, 22, 48, .6); backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--aqua-bright);
  box-shadow: 0 0 10px var(--aqua-bright); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.8);} }

.hero h1 {
  font-size: clamp(38px, 6.2vw, 76px); font-weight: 900; line-height: 1.18;
  letter-spacing: -1.5px; color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.55);
}
.hero h1 .aqua {
  background: linear-gradient(120deg, #52e4ff 5%, #22d3ee 45%, #4f7cff 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .gold {
  background: linear-gradient(120deg, #f7d98c 10%, #f0b445 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  margin: 24px auto 0; max-width: 640px;
  font-size: clamp(15.5px, 1.8vw, 19px); color: #C9D6EE; font-weight: 400;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-sub strong { color: #52E4FF; font-weight: 700; }

/* Hero search + autocomplete (다크 글래스 유지) */
.hero-search-wrap { position: relative; max-width: 620px; margin: 42px auto 0; }
.hero-search-wrap .hero-search { margin: 0; }
.hero-search {
  display: flex; gap: 10px;
  background: rgba(8, 15, 33, .82); border: 1.5px solid rgba(34,211,238,.35);
  border-radius: 999px; padding: 8px 8px 8px 26px;
  backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,.5);
  transition: border-color .3s, box-shadow .3s;
}
.hero-search:focus-within { border-color: var(--aqua-bright); box-shadow: 0 8px 30px rgba(34,211,238,.35), 0 18px 50px rgba(0,0,0,.5); }
.hero-search input {
  flex: 1; background: none; border: none; outline: none;
  font-family: inherit; font-size: 16.5px; color: #fff; min-width: 0;
}
.hero-search input::placeholder { color: #6e7c9f; }
.hero-search button {
  background: var(--grad-aqua-dark); color: #04121f; font-weight: 900; font-size: 15.5px;
  padding: 14px 30px; border-radius: 999px; flex: none;
  transition: transform .25s, box-shadow .25s;
}
.hero-search button:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(34,211,238,.4); }

.search-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 50;
  background: #0c1936; border: 1px solid rgba(120,170,255,.3); border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.5); overflow: hidden; display: none; text-align: left;
}
.search-suggest.show { display: block; }
.search-suggest button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 13px 22px; font-size: 15px; font-weight: 600; color: #eef4fd;
  border-bottom: 1px solid rgba(120,170,255,.08); transition: .15s; text-align: left;
}
.search-suggest button:last-child { border-bottom: none; }
.search-suggest button:hover, .search-suggest button.hl { background: rgba(34,211,238,.12); color: #52E4FF; }
.search-suggest .ss-region { margin-left: auto; font-size: 12px; color: #6e7c9f; font-weight: 600; }

.hero-quick { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.hero-quick button {
  font-size: 13.5px; font-weight: 700; color: rgba(238,244,253,.88);
  border: 1px solid rgba(120,170,255,.3); border-radius: 999px; padding: 7px 17px;
  background: rgba(10,20,44,.6); backdrop-filter: blur(6px); transition: .25s;
}
.hero-quick button:hover { color: #04121f; background: var(--aqua-bright); border-color: var(--aqua-bright); box-shadow: 0 6px 22px rgba(34,211,238,.4); }

/* Hero stats (다크 글래스 유지) */
.hero-stats {
  margin: 64px auto 0; max-width: 880px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat-card {
  background: rgba(10, 19, 42, .68); border: 1px solid rgba(120,170,255,.14);
  border-radius: var(--radius-sm); padding: 22px 12px 18px;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,.45); box-shadow: 0 8px 30px rgba(34,211,238,.3); }
.stat-num {
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; color: #fff;
  letter-spacing: -1px; line-height: 1.1;
}
.stat-num .unit { font-size: .55em; color: var(--aqua-bright); margin-left: 2px; }
.stat-label { margin-top: 6px; font-size: 13px; color: #a9b8d8; font-weight: 600; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #6e7c9f; font-size: 11.5px; letter-spacing: 2.5px; font-weight: 600;
}
.scroll-hint .mouse {
  width: 24px; height: 38px; border: 1.5px solid #6e7c9f; border-radius: 13px;
  position: relative; background: rgba(8,15,33,.4);
}
.scroll-hint .mouse::after {
  content: ''; position: absolute; top: 7px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 7px; border-radius: 2px; background: var(--aqua-bright);
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translateY(0);} 100% { opacity: 0; transform: translateY(12px);} }

/* ============================================================
   SECTION COMMONS — 라이트
   ============================================================ */
section { position: relative; }
.section { padding: 110px 0; }
.section.alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 900; letter-spacing: 3.5px;
  color: var(--aqua); margin-bottom: 18px;
  background: var(--aqua-soft); border: 1px solid rgba(14,116,144,.28);
  padding: 7px 18px; border-radius: 999px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px;
  color: var(--navy); line-height: 1.28;
}
.section-title .gold { color: var(--gold); }
.section-title .aqua {
  background: linear-gradient(120deg, #0E7490 10%, #1D4ED8 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-desc { margin-top: 18px; font-size: 16.5px; color: var(--text-mut); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); padding: 26px 0; overflow: hidden;
}
.trust-track { display: flex; gap: 60px; width: max-content; animation: marquee 30s linear infinite; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--navy-soft); white-space: nowrap; }
.trust-item svg { flex: none; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.why-card::before {
  content: ''; position: absolute; top: -40%; right: -30%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(14,116,144,.1) 0%, transparent 70%);
  transition: opacity .4s; opacity: 0;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(14,116,144,.45); box-shadow: 0 20px 48px rgba(13,27,62,.14); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--aqua-soft); border: 1px solid rgba(14,116,144,.25); margin-bottom: 22px;
}
.why-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-mut); }

/* ============================================================
   KOREA MAP (Tile Cartogram) — 라이트
   ============================================================ */
.map-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%); }
.map-wrap {
  display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 44px; align-items: start;
}
.map-board {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  padding: 40px 30px; box-shadow: var(--shadow);
  perspective: 1100px;
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 12px; max-width: 560px; margin: 0 auto;
  transform-style: preserve-3d;
}
.map-tile {
  aspect-ratio: 1; border-radius: 18px; position: relative;
  background: linear-gradient(160deg, #F2F7FD 0%, #E2ECF8 100%);
  border: 1px solid rgba(13,27,62,.16);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  cursor: pointer; transition: transform .35s cubic-bezier(.2,.7,.3,1.4), border-color .3s, box-shadow .3s, background .3s;
  transform-style: preserve-3d;
}
.map-tile .t-name { font-size: clamp(13px, 1.6vw, 17px); font-weight: 800; color: var(--navy); }
.map-tile .t-count { font-size: clamp(10px, 1.1vw, 12px); color: var(--text-mut); font-weight: 600; }
.map-tile:hover {
  transform: translateZ(30px) scale(1.06);
  border-color: var(--aqua); box-shadow: 0 18px 36px rgba(14,116,144,.24);
  background: linear-gradient(160deg, #E8F6FB 0%, #CFEAF4 100%);
}
.map-tile:hover .t-count { color: var(--aqua); }
.map-tile.selected {
  transform: translateZ(38px) scale(1.08);
  border-color: var(--aqua-deep); box-shadow: 0 22px 44px rgba(14,116,144,.32);
  background: var(--grad-aqua);
}
.map-tile.selected .t-name, .map-tile.selected .t-count { color: #fff; }
.map-tile.live::after {
  content: ''; position: absolute; top: 9px; right: 9px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold-deco); box-shadow: 0 0 8px var(--gold-deco);
  animation: pulse 2s infinite;
}
.map-legend { margin-top: 26px; display: flex; justify-content: center; gap: 26px; font-size: 12.5px; color: var(--text-mut); font-weight: 600; }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; }
.lg-dot.gold { background: var(--gold-deco); box-shadow: 0 0 6px rgba(224,168,58,.7); }
.lg-dot.aqua { background: var(--aqua); box-shadow: 0 0 6px rgba(14,116,144,.5); }

/* Region panel */
.region-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  padding: 34px 30px; box-shadow: var(--shadow); position: sticky; top: 100px;
  min-height: 420px; display: flex; flex-direction: column;
}
.rp-region { font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; }
.rp-region .cnt { font-size: 15px; color: var(--aqua); font-weight: 800; margin-left: 8px; }
.rp-sub { font-size: 13.5px; color: var(--text-mut); margin-top: 6px; margin-bottom: 20px; }
.rp-live { margin-bottom: 18px; display: flex; flex-direction: column; gap: 10px; }
.rp-live a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--gold-soft);
  border: 1px solid rgba(138,97,0,.4); border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 15px; font-weight: 800; color: var(--gold);
  transition: .25s;
}
.rp-live a:hover { background: #F6E8C6; transform: translateX(4px); box-shadow: 0 8px 20px rgba(138,97,0,.15); }
.rp-live a .arrow { font-size: 18px; }
.rp-chips { display: flex; flex-wrap: wrap; gap: 8px; overflow-y: auto; max-height: 300px; padding-right: 4px; }
.rp-chips button {
  font-size: 13px; font-weight: 700; color: var(--navy-soft);
  border: 1px solid rgba(13,27,62,.18); background: var(--bg);
  padding: 7px 14px; border-radius: 999px; transition: .22s;
}
.rp-chips button:hover, .rp-chips button.on { background: var(--aqua); border-color: var(--aqua); color: #fff; }
.rp-chips button.has-live { border-color: rgba(138,97,0,.4); color: var(--gold); background: var(--gold-soft); }
.rp-chips button.has-live:hover { background: var(--gold-deco); border-color: var(--gold-deco); color: #201503; }
.rp-cta {
  margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.rp-cta .rp-call {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--grad-aqua); color: #fff; font-weight: 800; font-size: 16px;
  border-radius: var(--radius-sm); padding: 15px; transition: .25s;
}
.rp-cta .rp-call:hover { box-shadow: var(--glow-aqua); transform: translateY(-2px); }
.rp-cta .rp-join {
  text-align: center; font-size: 13.5px; color: var(--text-mut); font-weight: 600;
}
.rp-cta .rp-join a { color: var(--gold); font-weight: 800; border-bottom: 1px dashed rgba(138,97,0,.5); }

/* ============================================================
   SERVICES (equipment tabs) — 라이트
   ============================================================ */
.svc-wrap { display: grid; grid-template-columns: 380px minmax(0,1fr); gap: 40px; align-items: stretch; }
.svc-tabs { display: flex; flex-direction: column; gap: 12px; }
.svc-tab {
  text-align: left; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 22px; transition: .3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.svc-tab .st-title { font-size: 17px; font-weight: 800; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.svc-tab .st-num { font-size: 12px; font-weight: 800; color: var(--aqua); letter-spacing: 1px; }
.svc-tab .st-desc { font-size: 13.5px; color: var(--text-mut); margin-top: 6px; max-height: 0; overflow: hidden; opacity: 0; transition: .35s; }
.svc-tab:hover { border-color: rgba(14,116,144,.4); }
.svc-tab.on { border-color: var(--aqua); background: linear-gradient(120deg, #EFF9FC, #FFFFFF); box-shadow: var(--glow-aqua); }
.svc-tab.on .st-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
.svc-stage {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 430px;
  background: var(--bg-2);
}
.svc-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06); transition: opacity .6s, transform 1.2s;
}
.svc-stage img.show { opacity: 1; transform: scale(1); }
.svc-stage .svc-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 46px 30px 26px;
  background: linear-gradient(0deg, rgba(11,21,38,.9) 0%, transparent 100%);
}
.svc-cap h4 { font-size: 21px; font-weight: 800; color: #fff; }
.svc-cap p { font-size: 14px; color: rgba(255,255,255,.88); margin-top: 5px; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-line { position: relative; max-width: 900px; margin: 0 auto; }
.process-line::before {
  content: ''; position: absolute; left: 29px; top: 10px; bottom: 10px; width: 2.5px;
  background: linear-gradient(180deg, var(--aqua) 0%, rgba(14,116,144,.08) 100%);
  border-radius: 2px;
}
.p-step { position: relative; padding: 0 0 44px 92px; }
.p-step:last-child { padding-bottom: 0; }
.p-dot {
  position: absolute; left: 0; top: 0; width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--aqua);
  display: grid; place-items: center; font-size: 20px; font-weight: 900; color: var(--aqua);
  box-shadow: 0 0 0 7px rgba(14,116,144,.08), var(--shadow-soft);
}
.p-step h4 { font-size: 19px; font-weight: 800; color: var(--navy); padding-top: 6px; }
.p-step h4 .tm { font-size: 12.5px; color: var(--gold); font-weight: 800; margin-left: 10px; letter-spacing: .5px; }
.p-step p { margin-top: 7px; font-size: 14.5px; color: var(--text-mut); max-width: 560px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item {
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--bg-2);
  box-shadow: var(--shadow-soft);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 18px 14px;
  background: linear-gradient(0deg, rgba(11,21,38,.88), transparent);
  font-size: 14px; font-weight: 700; color: #fff;
  transform: translateY(8px); opacity: 0; transition: .35s;
}
.gal-item:hover .gal-cap { transform: none; opacity: 1; }

/* ============================================================
   SELF DIAGNOSIS — 라이트 카드
   ============================================================ */
.diag-wrap {
  max-width: 780px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 26px; padding: 44px 40px;
  box-shadow: var(--shadow);
}
.diag-q { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(13,27,62,.09); }
.diag-q:last-of-type { border-bottom: none; }
.diag-q .q-text { font-size: 16px; font-weight: 600; color: var(--text); }
.diag-q .q-text .q-no { color: var(--aqua); font-weight: 900; margin-right: 10px; }
.toggle { position: relative; width: 56px; height: 30px; flex: none; }
.toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 2; margin: 0; }
.toggle .tr {
  position: absolute; inset: 0; border-radius: 999px; background: #E2EAF5;
  border: 1px solid rgba(13,27,62,.18); transition: .3s;
}
.toggle .tr::after {
  content: ''; position: absolute; top: 3px; left: 4px; width: 22px; height: 22px;
  border-radius: 50%; background: #9AA9C4; transition: .3s;
}
.toggle input:checked + .tr { background: var(--aqua); border-color: var(--aqua-deep); }
.toggle input:checked + .tr::after { left: 28px; background: #fff; box-shadow: 0 2px 8px rgba(14,116,144,.4); }

.diag-result { margin-top: 30px; text-align: center; }
.diag-gauge { position: relative; width: 210px; margin: 0 auto 8px; }
.diag-gauge svg { width: 100%; display: block; }
.diag-gauge .gauge-val {
  position: absolute; left: 0; right: 0; bottom: 8px; font-size: 34px; font-weight: 900; color: var(--navy);
}
.diag-msg { font-size: 16.5px; font-weight: 800; color: var(--aqua); min-height: 28px; }
.diag-sub { font-size: 13.5px; color: var(--text-mut); margin-top: 6px; }
.diag-call {
  display: none; margin: 22px auto 0; max-width: 320px;
  align-items: center; justify-content: center; gap: 9px;
  background: var(--grad-gold); color: #3A2A02; font-weight: 900; font-size: 16px;
  border-radius: var(--radius-sm); padding: 15px 20px; transition: .25s;
}
.diag-call.show { display: flex; }
.diag-call:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217,154,30,.4); }

/* ============================================================
   COST CALCULATOR — 라이트 패널 + 다크 결과카드
   ============================================================ */
.calc-wrap {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: stretch;
}
.calc-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: 26px;
  padding: 36px 34px; box-shadow: var(--shadow);
}
.calc-group { margin-bottom: 26px; }
.calc-group:last-child { margin-bottom: 0; }
.calc-label { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.calc-label .no { color: var(--aqua); }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip-row button {
  font-size: 14px; font-weight: 700; color: var(--navy-soft);
  border: 1.5px solid rgba(13,27,62,.2); background: var(--bg);
  padding: 10px 20px; border-radius: 999px; transition: .2s;
}
.chip-row button.on { background: var(--grad-aqua); border-color: transparent; color: #fff; box-shadow: var(--glow-aqua); }
.chip-row button:hover:not(.on) { border-color: var(--aqua); }
.calc-result {
  background: linear-gradient(160deg, #0D1B3E 0%, #10306B 100%);
  border: 1px solid rgba(120,170,255,.3);
  border-radius: 26px; padding: 38px 32px; color: #fff;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.calc-result::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(34,211,238,.3), transparent 70%);
}
.cr-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.72); letter-spacing: 1px; }
.cr-price {
  font-size: clamp(30px, 3.6vw, 42px); font-weight: 900; margin: 12px 0 4px;
  color: #fff; letter-spacing: -1px; line-height: 1.15;
}
.cr-price .won { font-size: .5em; font-weight: 700; color: #7de5ff; }
.cr-note { font-size: 12.5px; color: rgba(255,255,255,.62); }
.cr-detail { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); font-size: 13.5px; color: rgba(255,255,255,.88); display: flex; flex-direction: column; gap: 7px; }
.cr-detail span { display: flex; justify-content: space-between; }
.cr-call { margin-top: auto; padding-top: 22px; }
.cr-call a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--grad-aqua-dark); color: #04121f; font-weight: 900; font-size: 16.5px;
  border-radius: var(--radius-sm); padding: 15px; transition: .25s;
}
.cr-call a:hover { box-shadow: 0 0 32px rgba(34,211,238,.5); transform: translateY(-2px); }

/* ============================================================
   REVIEWS CAROUSEL — 라이트
   ============================================================ */
.rev-strip { overflow: hidden; position: relative; padding: 6px 0 10px; }
.rev-strip::before, .rev-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.rev-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.rev-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.rev-track { display: flex; gap: 18px; width: max-content; animation: marquee 46s linear infinite; }
.rev-strip:hover .rev-track { animation-play-state: paused; }
.rev-card {
  width: 340px; flex: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--shadow-soft);
}
.rev-stars { color: #D99A1E; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.rev-text { font-size: 14.5px; color: var(--text); line-height: 1.6; min-height: 88px; }
.rev-meta { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(13,27,62,.1); display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-mut); font-weight: 700; }
.rev-meta .rv-region { color: var(--aqua); }

/* ============================================================
   PARTNER SECTION — 다크 밴드 유지
   ============================================================ */
.partner-band {
  position: relative; border-radius: 30px; overflow: hidden;
  border: 1px solid rgba(224,168,58,.35);
  background: var(--bg-3);
  box-shadow: var(--shadow);
}
.partner-bg { position: absolute; inset: 0; }
.partner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.partner-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(9,17,40,.95) 25%, rgba(9,17,40,.55) 100%); }
.partner-inner { position: relative; z-index: 2; padding: 70px 60px; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 40px; align-items: center; }
.partner-inner h3 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; color: #fff; line-height: 1.3; letter-spacing: -.8px; }
.partner-inner h3 .gold { color: #F5C76E; }
.partner-inner .p-desc { margin-top: 16px; font-size: 15.5px; color: rgba(255,255,255,.88); max-width: 480px; }
.partner-feats { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.partner-feats li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.92); }
.partner-feats .chk {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: rgba(245,199,110,.15); border: 1px solid rgba(245,199,110,.55);
  display: grid; place-items: center; color: #F5C76E; font-size: 12px; font-weight: 900;
}
.partner-cta-box {
  background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; text-align: center; box-shadow: var(--shadow);
}
.partner-cta-box .pc-title { font-size: 18px; font-weight: 800; color: var(--navy); }
.partner-cta-box .pc-sub { font-size: 13.5px; color: var(--text-mut); margin: 8px 0 22px; }
.btn-gold {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-gold); color: #3A2A02; font-weight: 900; font-size: 16px;
  border-radius: var(--radius-sm); padding: 16px; width: 100%; transition: .25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217,154,30,.45); }
.btn-line {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 11px;
  border: 1.5px solid rgba(14,116,144,.45); color: var(--aqua); font-weight: 800; font-size: 15px;
  border-radius: var(--radius-sm); padding: 14px; width: 100%; transition: .25s;
}
.btn-line:hover { background: var(--aqua-soft); border-color: var(--aqua); }

/* ============================================================
   FAQ — 라이트
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-soft);
}
.faq-item.open { border-color: rgba(14,116,144,.45); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 21px 26px; text-align: left; font-size: 16.5px; font-weight: 700; color: var(--navy);
}
.faq-q .fq-icon { flex: none; color: var(--aqua); font-size: 20px; transition: transform .35s; font-weight: 400; }
.faq-item.open .fq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.7,.3,1); }
.faq-a p { padding: 0 26px 22px; font-size: 14.5px; color: var(--text-mut); }

/* ============================================================
   FINAL CTA — 다크 밴드 유지
   ============================================================ */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 130px 0;
  background: radial-gradient(80% 90% at 50% 100%, #10306B 0%, var(--bg-3) 75%);
}
.final-cta .fc-bg { position: absolute; inset: 0; }
.final-cta .fc-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.final-cta .fc-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 50%, rgba(13,27,62,.5), rgba(13,27,62,.92) 95%); }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(30px, 4.6vw, 52px); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.25; }
.final-cta h2 .aqua { color: #52E4FF; }
.final-cta p { margin-top: 18px; font-size: 17px; color: #C9D6EE; }
.fc-btns { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fc-btns .fc-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-aqua-dark); color: #04121f; font-size: 19px; font-weight: 900;
  padding: 19px 44px; border-radius: 999px; box-shadow: 0 8px 30px rgba(34,211,238,.4); transition: .25s;
}
.fc-btns .fc-call:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 46px rgba(34,211,238,.55); }
.fc-btns .fc-find {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(34,211,238,.5); color: #52E4FF; font-size: 17px; font-weight: 800;
  padding: 18px 38px; border-radius: 999px; background: rgba(8,15,33,.5); transition: .25s;
}
.fc-btns .fc-find:hover { background: rgba(34,211,238,.12); }

/* ============================================================
   FOOTER — 다크 유지
   ============================================================ */
.footer { border-top: 1px solid rgba(120,170,255,.14); background: #081128; padding: 64px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer h5 { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 18px; }
.footer-brand .logo-name { color: #fff; }
.footer-brand p { font-size: 13.5px; color: #8b98b8; margin-top: 14px; max-width: 300px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: #a9b8d8; transition: color .25s; }
.footer ul a:hover { color: #52E4FF; }
.footer .f-tel { font-size: 24px; font-weight: 900; color: #52E4FF; letter-spacing: .5px; }
.footer .f-tel-label { font-size: 12px; color: #8b98b8; margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: #8b98b8;
}

/* Floating call button (mobile) */
.float-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  display: none; align-items: center; gap: 9px;
  background: var(--grad-aqua); color: #fff; font-weight: 900; font-size: 16px;
  padding: 15px 24px; border-radius: 999px; box-shadow: 0 10px 30px rgba(14,116,144,.4);
  animation: floatPulse 2.4s infinite;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(14,116,144,.4); }
  50% { box-shadow: 0 10px 40px rgba(14,116,144,.6); }
}

/* ============================================================
   SUB PAGES — 다크 서브히어로 + 라이트 본문
   ============================================================ */
.subhero {
  position: relative; padding: 170px 0 90px; text-align: center; overflow: hidden;
  background: radial-gradient(90% 120% at 50% -10%, #10306B 0%, var(--bg-3) 55%, var(--bg-3) 100%);
}
.subhero h1 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 900; color: #fff; letter-spacing: -1px; }
.subhero h1 .aqua { color: #52E4FF; }
.subhero p { margin-top: 16px; font-size: 16.5px; color: #C9D6EE; }
/* 서브페이지 헤더는 항상 흰 배경(.scrolled 고정) → 다크 텍스트 자동 적용 */

/* find page */
.find-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.find-filter button {
  font-size: 14px; font-weight: 700; color: var(--navy-soft);
  border: 1px solid rgba(13,27,62,.2); border-radius: 999px; padding: 9px 20px;
  background: var(--white); transition: .25s; box-shadow: var(--shadow-soft);
}
.find-filter button.on, .find-filter button:hover { background: var(--aqua); border-color: var(--aqua); color: #fff; }
.co-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.co-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-soft);
}
.co-card:hover { transform: translateY(-6px); border-color: rgba(14,116,144,.45); box-shadow: 0 20px 48px rgba(13,27,62,.14); }
.co-badge {
  position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .5px;
}
.co-badge.live { background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(138,97,0,.45); }
.co-badge.ready { background: var(--aqua-soft); color: var(--aqua); border: 1px solid rgba(14,116,144,.35); }
.co-region { font-size: 12.5px; font-weight: 800; color: var(--aqua); letter-spacing: 1px; }
.co-name { font-size: 20px; font-weight: 800; color: var(--navy); }
.co-desc { font-size: 13.5px; color: var(--text-mut); flex: 1; }
.co-meta { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text); }
.co-meta span { display: flex; gap: 8px; align-items: center; }
.co-actions { margin-top: 18px; display: flex; gap: 9px; }
.co-actions a {
  flex: 1; text-align: center; font-size: 14px; font-weight: 800; padding: 11px 8px;
  border-radius: 11px; transition: .25s;
}
.co-actions .a-call { background: var(--grad-aqua); color: #fff; }
.co-actions .a-call:hover { box-shadow: var(--glow-aqua); }
.co-actions .a-site { border: 1px solid rgba(14,116,144,.4); color: var(--aqua); }
.co-actions .a-site:hover { background: var(--aqua-soft); }
.co-empty {
  border: 1.5px dashed rgba(138,97,0,.45); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 40px 26px; text-align: center; color: var(--text-mut); font-size: 14px;
  transition: .3s; background: var(--gold-soft);
}
.co-empty:hover { border-color: var(--gold); background: #F6E8C6; box-shadow: var(--shadow-soft); }
.co-empty strong { color: var(--gold); font-size: 17px; }

/* guide page */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .3s; box-shadow: var(--shadow-soft);
}
.g-card:hover { transform: translateY(-6px); border-color: rgba(14,116,144,.4); box-shadow: 0 20px 48px rgba(13,27,62,.14); }
.g-card .g-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.g-card .g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.g-card:hover .g-img img { transform: scale(1.07); }
.g-card .g-body { padding: 24px 24px 28px; }
.g-card h4 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 9px; }
.g-card p { font-size: 14px; color: var(--text-mut); }

.cost-table-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.cost-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
.cost-table th {
  background: var(--aqua-soft); color: var(--navy); font-size: 14px; font-weight: 800;
  padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line);
}
.cost-table td { padding: 15px 18px; font-size: 14.5px; color: var(--text); border-bottom: 1px solid rgba(13,27,62,.08); }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table td.price { color: var(--gold); font-weight: 800; white-space: nowrap; }
.cost-note { max-width: 860px; margin: 16px auto 0; font-size: 12.5px; color: var(--text-dim); }

/* partner page */
.pt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pt-step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: .3s; position: relative;
  box-shadow: var(--shadow-soft);
}
.pt-step:hover { transform: translateY(-6px); border-color: rgba(138,97,0,.45); box-shadow: 0 16px 40px rgba(138,97,0,.12); }
.pt-step .ps-no {
  width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid rgba(138,97,0,.45);
  display: grid; place-items: center; font-size: 18px; font-weight: 900; color: var(--gold);
}
.pt-step h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.pt-step p { font-size: 13.5px; color: var(--text-mut); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap { grid-template-columns: 1fr; }
  .region-panel { position: static; min-height: 0; }
  .svc-wrap { grid-template-columns: 1fr; }
  .svc-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 6px; }
  .svc-tab { min-width: 220px; }
  .partner-inner { grid-template-columns: 1fr; padding: 50px 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .co-grid, .guide-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-steps { grid-template-columns: repeat(2, 1fr); }
  .calc-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .gnb, .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }
  .emergency-bar { font-size: 11px; padding: 0 10px; }
  .hero { padding: 110px 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 46px; }
  .hero-search { flex-direction: column; border-radius: 22px; padding: 14px; gap: 12px; }
  .hero-search input { padding: 4px 8px; text-align: center; }
  .hero-search button { width: 100%; }
  .section { padding: 76px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .map-board { padding: 22px 14px; }
  .map-grid { gap: 8px; }
  .gal-grid { grid-template-columns: 1fr; }
  .diag-wrap { padding: 30px 22px; }
  .diag-q { flex-direction: row; }
  .co-grid, .guide-grid, .benefit-grid { grid-template-columns: 1fr; }
  .pt-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .float-call { display: flex; }
  .process-line::before { left: 22px; }
  .p-dot { width: 46px; height: 46px; font-size: 16px; }
  .p-step { padding-left: 70px; padding-bottom: 36px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-panel { padding: 26px 20px; }
  .rev-card { width: 280px; }
}
