/* ============================================
   진정서·탄원서·반성문 작성 랜딩페이지 - 프리미엄 다크 디자인
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Poppins:wght@300;400;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #1a1f3a;
  --bg-tertiary: #2d1b4e;
  --bg-light: #1e293b;
  --bg-card: rgba(255,255,255,0.04);

  --accent-primary: #00d9ff;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #fbbf24;
  --accent-pink: #ec4899;
  --accent-green: #10b981;
  --accent-red: #ef4444;

  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --gradient-bg: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b4e 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  --gradient-button: linear-gradient(135deg, #00d9ff 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #00d9ff 0%, #7c3aed 50%, #ec4899 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-neon: 0 0 20px rgba(0,217,255,0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-weight: 600; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--accent-secondary); }
ul { list-style: none; padding: 0; }

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: var(--shadow-neon);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,217,255,0.7);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,39,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.seal-yoon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon);
}

.header-seal {
  width: 40px;
  height: 40px;
}

.seal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 4px;
}

.seal-char {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 500;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,39,0.88) 0%,
    rgba(26,31,58,0.75) 50%,
    rgba(45,27,78,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem;
  max-width: 850px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0,217,255,0.15);
  border: 1px solid rgba(0,217,255,0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 auto 2.5rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   Section Backgrounds
   ============================================ */
.specialty-section { background: var(--bg-secondary); }
.target-section { background: var(--bg-primary); }
.process-section { background: var(--bg-secondary); }
.appeal-section { background: var(--bg-primary); }
.fee-section { background: var(--bg-secondary); }
.docs-section { background: var(--bg-primary); }
.faq-section { background: var(--bg-secondary); }
.review-section { background: var(--bg-primary); }
.profile-section { background: var(--bg-secondary); }
.local-section { background: var(--bg-primary); }

/* ============================================
   Agency Grid (진정서 기관별)
   ============================================ */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.agency-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-base);
}

.agency-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,217,255,0.3);
  box-shadow: var(--shadow-neon);
}

.agency-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.agency-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.agency-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.agency-list {
  list-style: none;
  padding: 0;
}

.agency-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.agency-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* ============================================
   Compare Box (진정서 vs 고소장)
   ============================================ */
.compare-box {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.compare-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.compare-title i { color: var(--accent-primary); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.compare-col {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.petition-col {
  background: rgba(0,217,255,0.06);
  border: 1px solid rgba(0,217,255,0.2);
}

.goso-col {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
}

.compare-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.petition-col h4 i { color: var(--accent-primary); }
.goso-col h4 i { color: var(--accent-secondary); }

.compare-col ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compare-col ul li:last-child { border-bottom: none; }

.compare-col ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  top: 0.55rem;
}

.petition-col ul li::before { color: var(--accent-primary); }
.goso-col ul li::before { color: var(--accent-secondary); }

.compare-note {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--accent-tertiary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
}

.compare-note i { margin-top: 0.2rem; flex-shrink: 0; }

/* ============================================
   Target Grid
   ============================================ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.target-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-base);
}

.target-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,217,255,0.3);
}

.target-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,217,255,0.1);
  border: 1px solid rgba(0,217,255,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.target-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.target-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Process Timeline
   ============================================ */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
  opacity: 0.4;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon);
  z-index: 1;
}

.step-content {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.step-duration {
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================
   Appeal Stage Grid (탄원서 전략)
   ============================================ */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stage-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition-base);
}

.stage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,217,255,0.3);
}

.highlight-card {
  border-color: rgba(0,217,255,0.3);
  background: linear-gradient(135deg, rgba(0,217,255,0.06) 0%, rgba(124,58,237,0.06) 100%);
  box-shadow: var(--shadow-neon);
}

.stage-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gradient-button);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.stage-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.stage-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stage-target {
  font-size: 0.82rem;
  color: var(--accent-tertiary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.stage-list {
  margin-bottom: 1rem;
}

.stage-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.stage-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 0.75rem;
  top: 0.45rem;
}

.stage-tip {
  background: rgba(0,217,255,0.06);
  border: 1px solid rgba(0,217,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.stage-tip i { color: var(--accent-primary); flex-shrink: 0; margin-top: 0.1rem; }

/* ============================================
   Caution Box (탄원서 주의사항)
   ============================================ */
.caution-box {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.caution-box h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.caution-box h3 i { color: var(--accent-tertiary); }

.caution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.caution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}

.caution-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.caution-bad {
  background: rgba(239,68,68,0.15);
  color: var(--accent-red);
  border: 1px solid rgba(239,68,68,0.3);
}

.caution-good {
  background: rgba(16,185,129,0.15);
  color: var(--accent-green);
  border: 1px solid rgba(16,185,129,0.3);
}

.caution-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Fee Grid
   ============================================ */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.fee-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-base);
}

.fee-card:hover {
  border-color: rgba(0,217,255,0.3);
  transform: translateY(-3px);
}

.fee-type {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fee-desc p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.fee-desc ul li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fee-desc ul li:last-child { border-bottom: none; }

.fee-desc ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 900;
}

.fee-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}

.fee-note i { color: var(--accent-primary); }

/* ============================================
   Docs Columns
   ============================================ */
.docs-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.docs-col h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
  font-size: 1rem;
}

.docs-list {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.docs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.docs-list li i {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: rgba(0,217,255,0.3);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-icon {
  color: var(--accent-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  font-size: 0.9rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   Review Grid
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.review-stars {
  color: var(--accent-tertiary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.review-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Profile Card
   ============================================ */
.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.profile-seal {
  flex-shrink: 0;
}

.profile-seal-icon {
  width: 80px;
  height: 80px;
}

.profile-seal-icon .seal-grid {
  padding: 8px;
  gap: 2px;
}

.profile-seal-icon .seal-char {
  font-size: 18px;
}

.profile-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.profile-title {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.profile-career {
  margin-bottom: 1.25rem;
}

.profile-career li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}

.profile-career li i {
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.profile-message {
  background: rgba(0,217,255,0.06);
  border-left: 3px solid var(--accent-primary);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* ============================================
   CTA Section (고정 컴포넌트)
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 100%);
  padding: 5rem 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-header {
  margin-bottom: 2.5rem;
}

.cta-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-base);
  text-decoration: none;
}

.contact-card:hover {
  background: rgba(0,217,255,0.1);
  border-color: rgba(0,217,255,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-button);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-text {
  text-align: left;
}

.contact-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.contact-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.cta-notice {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   Local Section
   ============================================ */
.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.local-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.local-card h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--accent-primary);
}

.local-card ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.local-card ul li:last-child { border-bottom: none; }

.local-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

/* ============================================
   Footer (고정 컴포넌트)
   ============================================ */
.footer {
  background: #060914;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col-left {
  flex: 1;
  min-width: 260px;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0;
}

.brand-link {
  font-size: 0.82rem;
  color: var(--accent-primary);
}

.footer-social-card {
  margin-top: 1rem;
}

.footer-social-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  background: rgba(0,217,255,0.15);
  transform: translateY(-2px);
}

.sns-naver { color: #03C75A; }
.sns-facebook { color: #1877F2; }
.sns-twitter { color: #1da1f2; }
.sns-instagram { color: #E1306C; }
.sns-youtube { color: #FF0000; }

.footer-info {
  flex: 1;
  min-width: 260px;
}

.footer-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.footer-info a {
  color: var(--accent-primary);
}

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-since {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   Sticky CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 200;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: all;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  white-space: nowrap;
  transition: var(--transition-base);
}

.sticky-phone {
  background: var(--gradient-button);
  color: #fff;
}

.sticky-online {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.sticky-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hero { min-height: 100vh; }
  .hero-content { padding: 5rem 1.5rem 4rem; }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-card {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .profile-career li { justify-content: flex-start; }

  .process-timeline::before { left: 28px; }
  .step-num { width: 44px; height: 44px; font-size: 0.85rem; }

  .stage-grid { grid-template-columns: 1fr; }

  .sticky-cta { bottom: 1rem; left: 1rem; right: 1rem; transform: none; }
  .sticky-btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
}
