/*
Theme Name: 지방선거 캠페인
Theme URI: https://cjsdks.com
Author: Election Campaign
Description: 지방선거 후보자 홈페이지 제작 전문 업체 사이트
Version: 3.0
*/

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

:root {
  --navy:       #0a1628;
  --navy-mid:   #112040;
  --blue:       #1a3a8f;
  --blue-light: #2952c4;
  --gold:       #b8964a;
  --gold-light: #d4ae6a;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --gray-light: #f1f3f8;
  --gray:       #8492a6;
  --text:       #1e2d40;
  --text-light: #4a5568;
  --border:     #e8ecf2;
  --red:        #c0392b;
  --shadow-sm:  0 2px 12px rgba(10,22,40,0.06);
  --shadow:     0 6px 28px rgba(10,22,40,0.10);
  --shadow-lg:  0 16px 56px rgba(10,22,40,0.14);
  --radius:     12px;
  --radius-lg:  20px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  color: var(--text); line-height: 1.7;
  background: var(--white); overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.sec      { padding: 108px 0; }
.sec-sm   { padding: 72px 0; }

/* ── Section Header ── */
.sec-head { text-align: center; margin-bottom: 72px; }
.sec-head .eyebrow {
  display: inline-block;
  color: var(--blue); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800;
  color: var(--navy); letter-spacing: -0.035em; line-height: 1.2;
}
.sec-head p {
  font-size: 1rem; color: var(--text-light);
  margin-top: 14px; line-height: 1.9; max-width: 560px; margin-inline: auto;
}
.rule {
  width: 40px; height: 2px;
  background: var(--gold); margin: 22px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1.5px solid transparent; letter-spacing: 0.01em;
}
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold {
  background: var(--gold); color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,150,74,0.35); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* ── D-Day Banner ── */
#dday-banner {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dday-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.dday-left { display: flex; align-items: center; gap: 20px; }
.dday-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light);
}
.dday-counter {
  display: flex; align-items: center; gap: 3px;
}
.dday-unit { text-align: center; min-width: 36px; }
.dday-unit span {
  font-size: 1.15rem; font-weight: 800; color: var(--white);
  font-variant-numeric: tabular-nums; display: block; line-height: 1;
}
.dday-unit small {
  font-size: 0.58rem; color: rgba(255,255,255,0.4);
  display: block; margin-top: 2px; letter-spacing: 0.05em;
}
.dday-sep { color: rgba(255,255,255,0.2); font-size: 0.9rem; padding: 0 1px 4px; }
.dday-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.dday-link {
  font-size: 0.78rem; font-weight: 600; color: var(--gold-light);
  border-bottom: 1px solid rgba(184,150,74,0.4);
  padding-bottom: 1px; transition: color 0.2s;
  white-space: nowrap;
}
.dday-link:hover { color: var(--white); }
@media(max-width:768px){
  .dday-desc { display: none; }
  .dday-inner { justify-content: space-between; }
}

/* ── Top Bar ── */
#topbar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem; color: var(--gray); padding: 8px 0;
}
#topbar .container { display: flex; justify-content: space-between; align-items: center; }
#topbar .tl { display: flex; align-items: center; gap: 20px; }
#topbar .tl-item { display: flex; align-items: center; gap: 6px; }
#topbar .tl-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }
#topbar .tr { display: flex; gap: 20px; align-items: center; }
#topbar .tr a { color: var(--gray); transition: color 0.2s; }
#topbar .tr a:hover { color: var(--navy); }
#topbar .tr .tel-link { color: var(--navy); font-weight: 700; font-size: 0.85rem; }

/* ── Header ── */
#hdr {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
#hdr.scrolled { box-shadow: var(--shadow); }
.hdr-in {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.9rem; font-weight: 900;
  letter-spacing: 0.05em; flex-shrink: 0;
}
.logo-txt .n { font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.logo-txt .s { font-size: 0.68rem; color: var(--gray); font-weight: 500; margin-top: 1px; }
nav#gnb { display: flex; align-items: center; gap: 0; }
nav#gnb a {
  padding: 8px 14px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-light); transition: color 0.2s;
}
nav#gnb a:hover, nav#gnb a.on { color: var(--navy); }
.hdr-cta { display: flex; align-items: center; gap: 14px; }
.hdr-tel {
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 6px; letter-spacing: 0.01em;
}
.hdr-tel svg { width:14px; height:14px; fill:var(--gold); flex-shrink:0; }
.btn-consult {
  background: var(--navy); color: var(--white);
  padding: 9px 20px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 700;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.btn-consult:hover { background: var(--blue); box-shadow: var(--shadow-sm); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all 0.25s; }

/* ── Mobile Nav ── */
.mob-nav {
  display: none; position: fixed; top: 0; right: -100%;
  width: 270px; height: 100vh; background: var(--white);
  box-shadow: -4px 0 30px rgba(10,22,40,0.12); z-index: 2000;
  transition: right 0.35s var(--ease); padding: 72px 28px 28px; overflow-y: auto;
}
.mob-nav.open { right: 0; }
.mob-nav a {
  display: block; padding: 13px 0; font-size: 0.95rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mob-nav a:hover { color: var(--navy); }
.mob-nav .mob-cta-link { color: var(--blue) !important; font-weight: 800; border: none; margin-top: 8px; }
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.45); z-index: 1999; }
.mob-overlay.open { display: block; }
.mob-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; font-size: 1.3rem; cursor: pointer;
  color: var(--navy); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
}
.mob-close:hover { background: var(--gray-light); }

/* ── Hero ── */
#hero {
  background: var(--navy);
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute; right: -200px; top: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,143,0.35) 0%, transparent 65%);
}
.hero-bg::after {
  content: '';
  position: absolute; left: -100px; bottom: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,74,0.08) 0%, transparent 65%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 120px 0 100px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 28px; height: 1px; background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-light);
}
h1.hero-h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem); font-weight: 900;
  color: var(--white); line-height: 1.15; letter-spacing: -0.04em;
  margin-bottom: 22px;
}
h1.hero-h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.95; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-divider {
  width: 100%; height: 1px; background: rgba(255,255,255,0.07);
  margin: 44px 0;
}
.hero-trust { display: flex; gap: 0; }
.trust-item {
  flex: 1; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-item .num {
  font-size: 1.8rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -0.03em;
}
.trust-item .num span { color: var(--gold-light); font-size: 1rem; }
.trust-item .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 5px; letter-spacing: 0.04em; }

/* Hero Right */
.hero-right { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px; width: 100%; max-width: 380px;
  backdrop-filter: blur(8px);
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.hc-dot { width: 8px; height: 8px; border-radius: 50%; }
.hc-dot.r { background: #ff5f57; }
.hc-dot.y { background: #febc2e; }
.hc-dot.g { background: #28c840; }
.hc-url {
  flex: 1; margin-left: 6px;
  background: rgba(255,255,255,0.05); border-radius: 4px;
  padding: 5px 10px; font-size: 0.68rem; color: rgba(255,255,255,0.3);
}
.hc-screen { display: flex; flex-direction: column; gap: 10px; }
.hc-nav {
  background: rgba(255,255,255,0.06); border-radius: 6px;
  height: 36px; display: flex; align-items: center; padding: 0 12px; gap: 8px;
}
.hc-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.hc-nav-line { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); }
.hc-hero-block {
  background: linear-gradient(135deg, rgba(26,58,143,0.5), rgba(10,22,40,0.7));
  border-radius: 8px; padding: 20px; border: 1px solid rgba(255,255,255,0.06);
}
.hc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.12); margin-bottom: 6px; }
.hc-line.lg { height: 10px; background: rgba(255,255,255,0.22); margin-bottom: 8px; }
.hc-line.sm { width: 55%; }
.hc-btn-row { display: flex; gap: 8px; margin-top: 14px; }
.hc-btn { height: 22px; border-radius: 4px; }
.hc-btn.p { width: 70px; background: var(--blue-light); opacity: 0.7; }
.hc-btn.o { width: 60px; background: transparent; border: 1px solid rgba(255,255,255,0.2); }
.hc-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.hc-card {
  background: rgba(255,255,255,0.05); border-radius: 6px;
  padding: 10px; border: 1px solid rgba(255,255,255,0.05);
}
.hc-card-icon { font-size: 1.1rem; margin-bottom: 6px; opacity: 0.6; }
.hc-card-line { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.1); }
.hero-badge {
  position: absolute; background: var(--white);
  border-radius: 10px; padding: 13px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge .bi { font-size: 1.3rem; }
.hero-badge .bt { font-size: 0.8rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.hero-badge .bs { font-size: 0.68rem; color: var(--gray); margin-top: 1px; }
.badge-tr { top: -16px; right: -16px; }
.badge-bl { bottom: -14px; left: -16px; }

/* ── Types ── */
#types { background: var(--off-white); }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.type-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all 0.25s var(--ease); cursor: default;
}
.type-card:hover {
  border-color: var(--navy); box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.type-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.type-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.type-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.type-badge {
  display: inline-block;
  border: 1px solid var(--border); color: var(--gray);
  font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ── Why ── */
#why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px; background: var(--off-white);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.why-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.why-num {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.05em;
}
.why-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }

.why-visual {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 52px 44px; position: relative; overflow: hidden;
}
.why-visual::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,143,0.5) 0%, transparent 70%);
}
.why-visual-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px;
}
.why-visual h3 {
  font-size: 1.8rem; font-weight: 900; color: var(--white);
  line-height: 1.25; letter-spacing: -0.03em; margin-bottom: 14px;
}
.why-visual p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.85; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 36px 0; }
.w-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); padding: 22px 18px; text-align: center;
}
.w-stat .n { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
.w-stat .n span { color: var(--gold-light); font-size: 1rem; }
.w-stat .l { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 5px; }

/* ── Services ── */
#services { background: var(--off-white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: all 0.25s var(--ease); position: relative;
}
.svc-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.svc-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.svc-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 11px; }
.svc-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.81rem; color: var(--text);
}
.svc-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 7px;
}

/* ── Process ── */
#process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%; height: 1px;
  background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.step-dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: all 0.25s var(--ease);
  position: relative;
}
.step:hover .step-dot { background: var(--navy); border-color: var(--navy); }
.step-n {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 0.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 0.88rem; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.step p { font-size: 0.75rem; color: var(--gray); line-height: 1.6; }

/* ── Portfolio ── */
#portfolio { background: var(--off-white); }
.port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.port-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.port-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.port-thumb {
  height: 190px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.port-thumb.t1 { background: linear-gradient(145deg, #0a1628, #1a3a8f); }
.port-thumb.t2 { background: linear-gradient(145deg, #1a1f5e, #3730a3); }
.port-thumb.t3 { background: linear-gradient(145deg, #7f1d1d, #991b1b); }
.port-thumb.t4 { background: linear-gradient(145deg, #064e3b, #047857); }
.port-thumb.t5 { background: linear-gradient(145deg, #451a03, #92400e); }
.port-thumb.t6 { background: linear-gradient(145deg, #1e1b4b, #3730a3); }
.port-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  font-size: 0.68rem; font-weight: 600; padding: 3px 10px;
  border-radius: 4px; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
}
.port-body { padding: 22px 24px; }
.port-type { font-size: 0.7rem; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.port-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.port-region { font-size: 0.78rem; color: var(--gray); margin-bottom: 14px; }
.port-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.port-tag {
  border: 1px solid var(--border); font-size: 0.68rem; color: var(--gray);
  padding: 3px 8px; border-radius: 4px;
}

/* ── Pricing ── */
#pricing { background: var(--white); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.rec-tag {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; font-weight: 700; padding: 4px 14px;
  border-radius: 0 0 8px 8px; letter-spacing: 0.08em; text-transform: uppercase;
}
.price-plan {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 8px;
}
.price-card:not(.featured) .price-plan { color: var(--gold); }
.price-card.featured .price-plan { color: rgba(255,255,255,0.45); }
.price-name { font-size: 1.2rem; font-weight: 900; margin-bottom: 20px; }
.price-card:not(.featured) .price-name { color: var(--navy); }
.price-card.featured .price-name { color: var(--white); }
.price-amt {
  font-size: 2.4rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em;
}
.price-card:not(.featured) .price-amt { color: var(--navy); }
.price-card.featured .price-amt { color: var(--white); }
.price-unit { font-size: 0.82rem; font-weight: 600; opacity: 0.55; }
.price-note { font-size: 0.72rem; opacity: 0.4; margin-top: 4px; }
.price-hr { height: 1px; background: currentColor; opacity: 0.08; margin: 24px 0; }
.price-desc { font-size: 0.82rem; opacity: 0.55; line-height: 1.75; margin-bottom: 24px; }
.pf-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.pf-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; }
.pf-ck { font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.price-card:not(.featured) .pf-ck { color: var(--navy); }
.price-card.featured .pf-ck { color: var(--gold-light); }
.price-card:not(.featured) .pf-row { color: var(--text); }
.price-card.featured .pf-row { color: rgba(255,255,255,0.78); }
.pf-row.off { opacity: 0.28; text-decoration: line-through; }
.price-btn { width: 100%; justify-content: center; padding: 14px; }
.price-card:not(.featured) .price-btn { background: var(--navy); color: var(--white); }
.price-card:not(.featured) .price-btn:hover { background: var(--blue); }
.price-card.featured .price-btn { background: var(--white); color: var(--navy); }
.price-card.featured .price-btn:hover { background: var(--off-white); }

/* ── Reviews ── */
#reviews { background: var(--off-white); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 28px; border: 1px solid var(--border);
  transition: all 0.25s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-stars { font-size: 0.75rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.review-text {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.9;
  margin-bottom: 22px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
}
.review-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.review-role { font-size: 0.72rem; color: var(--gray); margin-top: 1px; }

/* ── FAQ ── */
#faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--off-white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--navy); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 19px 24px; cursor: pointer; gap: 14px;
  font-size: 0.92rem; font-weight: 700; color: var(--navy);
}
.faq-arrow {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--gray); transition: all 0.3s;
}
.faq-item.open .faq-arrow { background: var(--navy); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-in { padding: 0 24px 20px; font-size: 0.85rem; color: var(--text-light); line-height: 1.9; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── CTA ── */
#cta {
  background: var(--navy); padding: 96px 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,143,0.4) 0%, transparent 65%);
}
#cta .container { position: relative; z-index: 1; text-align: center; }
#cta .eyebrow { color: var(--gold-light); margin-bottom: 16px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
#cta h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 900; color: var(--white); margin-bottom: 14px; letter-spacing: -0.03em; }
#cta p { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-bottom: 40px; line-height: 1.85; }
#cta .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-meta {
  display: flex; gap: 36px; justify-content: center;
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cta-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.35); font-weight: 500;
}
.cta-meta-item::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── Contact ── */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.03em; }
.contact-info > p { font-size: 0.87rem; color: var(--text-light); line-height: 1.85; margin-bottom: 32px; }
.c-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.c-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.2s;
}
.c-item:hover { border-color: var(--navy); }
.c-item .ci { font-size: 1.2rem; }
.c-item .ck { font-size: 0.7rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; letter-spacing: 0.04em; }
.c-item .cv { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.kakao-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FEE500; color: #3c1e1e; padding: 13px 22px;
  border-radius: 8px; font-weight: 700; font-size: 0.88rem;
  transition: all 0.2s;
}
.kakao-btn:hover { filter: brightness(0.95); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(254,229,0,0.35); }
.form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow);
}
.form-wrap h3 { font-size: 1.25rem; font-weight: 900; color: var(--navy); margin-bottom: 5px; }
.form-wrap .sub { font-size: 0.82rem; color: var(--gray); margin-bottom: 28px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.fg label em { color: var(--red); font-style: normal; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 7px; font-size: 0.88rem; color: var(--text);
  transition: border-color 0.2s; font-family: inherit; background: var(--white);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.06);
}
.fg textarea { resize: vertical; min-height: 105px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-agree { display: flex; align-items: flex-start; gap: 8px; margin: 12px 0; }
.form-agree input { width: 14px; height: 14px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.form-agree label { font-size: 0.77rem; color: var(--gray); cursor: pointer; }
.form-agree label a { color: var(--blue); }
.submit-btn { width: 100%; justify-content: center; padding: 15px; }

/* ── Footer ── */
#ftr { background: var(--navy); }
.ftr-top {
  padding: 60px 0 44px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ftr-brand-name { font-size: 1rem; font-weight: 800; color: var(--white); }
.ftr-brand-sub { font-size: 0.68rem; color: var(--gold-light); font-weight: 600; margin-top: 2px; }
.ftr-brand p { font-size: 0.78rem; line-height: 1.9; color: rgba(255,255,255,0.3); margin-top: 16px; }
.ftr-col h5 { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 16px; letter-spacing: 0.12em; text-transform: uppercase; }
.ftr-col ul { display: flex; flex-direction: column; gap: 9px; }
.ftr-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.ftr-col ul li a:hover { color: rgba(255,255,255,0.8); }
.ftr-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 10px;
}
.ftr-bottom a { color: rgba(255,255,255,0.3); }
.ftr-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── Floating ── */
.fab-wrap {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px; z-index: 500;
}
.fab {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: all 0.25s var(--ease);
  border: none; box-shadow: var(--shadow); text-decoration: none;
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab-ka { background: #FEE500; color: #3c1e1e; }
.fab-ph { background: var(--navy); color: var(--gold-light); }
.fab-up {
  background: var(--white); color: var(--navy);
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.fab-up.show { opacity: 1; pointer-events: all; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--navy); color: #fff; padding: 12px 24px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-lg);
  z-index: 9999; opacity: 0; transition: all 0.35s var(--ease); white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.ok { background: #065f46; }
.toast.err { background: #7f1d1d; }

/* ── Fade Up ── */
.fu { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fu.vis { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  nav#gnb, .hdr-cta { display: none; }
  .hamburger { display: flex; }
  .mob-nav { display: block; }
  .sec { padding: 72px 0; }
  .hero-in { padding: 100px 0 72px; }
  .svc-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .ftr-top { grid-template-columns: 1fr; gap: 28px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
  .form-wrap { padding: 28px 22px; }
  .fg-row { grid-template-columns: 1fr; }
  .cta-meta { flex-direction: column; align-items: center; gap: 12px; }
  #topbar .tr .tel-link { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .types-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 20px; }
  .trust-item { border: none; padding: 0; }
  .process-steps { grid-template-columns: 1fr; }
}
