/* ===== UNF SERVICE PAGE COMMON STYLES v12 — BRIGHT & FRIENDLY ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

:root {
  --serif: 'Roboto', 'Hiragino Sans', 'Yu Gothic', YuGothic, sans-serif;
  --sans: 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
  --dark: #0e0e0e;
  --gold: #b8974a;
  --gold-light: #d4b06a;
  --gold-pale: #f5ede0;
  --cream: #f7f4ef;
  --cream2: #faf8f5;
  --sky: #eef4fb;
  --sky2: #ddeaf8;
  --warm: #fff8f0;
  --border: #e8e4de;
  --border2: #d4cfc8;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent-blue: #3a7bd5;
  --accent-teal: #2a9d8f;
  --header-h: 96px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.09); }
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
}
.header-logo img { width: 44px; height: 44px; object-fit: contain; }
.header-logo-text { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); }
.header-nav ul { display: flex; gap: 28px; padding-right: 340px; }
.header-nav ul li a { font-size: 14px; letter-spacing: 0.1em; color: var(--muted); transition: color 0.3s; }
.header-nav ul li a:hover { color: var(--dark); }
.nav-contact-btn {
  position: fixed;
  top: 0; right: 0;
  height: var(--header-h);
  padding: 0 40px;
  background: var(--dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-contact-btn:hover { background: #333; }
.nav-about-btn {
  position: fixed;
  top: 0;
  right: 179px;
  height: var(--header-h);
  padding: 0 36px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-about-btn:hover { background: var(--cream); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.header-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  gap: 16px;
  z-index: 99;
}
.header-nav.open ul { flex-direction: column; padding-right: 0; gap: 16px; }
.header-nav.open .nav-about-btn,
.header-nav.open .nav-contact-btn {
  position: static;
  height: auto;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
  justify-content: center;
}
.header-nav.open .nav-contact-btn { background: var(--dark); color: #fff; }

/* ===== HERO ===== */
.svc-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--dark);
  margin-top: var(--header-h);
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.06);
  transition: transform 10s ease;
}
.svc-hero:hover .svc-hero-bg { transform: scale(1.0); }
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.78) 0%, rgba(14,14,14,0.3) 60%, rgba(14,14,14,0.6) 100%);
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 72px;
  color: #fff;
  max-width: 700px;
}
.svc-hero-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.2s forwards;
}
.svc-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.4s forwards;
}
.svc-hero-sub {
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.7s forwards;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 20px 80px;
  font-size: 12px;
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb span { margin: 0 10px; color: #ccc; }

/* ===== MAIN ===== */
.svc-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 80px 120px;
}

/* ===== SECTION BLOCK ===== */
.svc-block {
  margin-bottom: 96px;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.svc-block.fade-in {
  opacity: 0;
  transform: translateY(32px);
}
.svc-block.fade-in.visible { opacity: 1; transform: none; }
.svc-block-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.svc-block > h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--text);
}
.svc-block > p {
  font-size: 16px;
  line-height: 2.0;
  color: #444;
  margin-bottom: 18px;
}
.svc-block > p strong { color: var(--text); font-weight: 700; }

/* ===== HIGHLIGHT BOX — カラーバリアント ===== */
.highlight-box {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.highlight-item {
  flex: 1;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: #fff;
  transition: background 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
}
.highlight-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.highlight-item:hover::after { transform: scaleX(1); }
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: var(--warm); transform: translateY(-3px); }
.highlight-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.highlight-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  line-height: 1.6;
}

/* ===== DIVIDER ===== */
.svc-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 48px 0;
  border-radius: 2px;
}

/* ===== STRENGTHS GRID ===== */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.strength-card {
  padding: 36px 28px;
  background: var(--cream2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.strength-card:hover::before { transform: scaleX(1); }
.strength-card:hover { background: var(--warm); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(184,151,74,0.12); }
.strength-card .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.strength-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.5;
}
.strength-card p { font-size: 14px; color: #555; line-height: 1.9; margin: 0; }

/* ===== CONTENTS TABLE ===== */
.contents-table {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.contents-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.contents-row:last-child { border-bottom: none; }
.contents-row:hover { background: var(--sky); }
.contents-label {
  flex-shrink: 0;
  width: 180px;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-right: 1px solid var(--border);
  background: var(--cream2);
  display: flex;
  align-items: center;
}
.contents-body {
  flex: 1;
  padding: 20px 28px;
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  display: flex;
  align-items: center;
}

/* ===== FLOW ===== */
.flow-list { margin-top: 40px; }
.flow-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: background 0.2s, padding-left 0.3s;
  border-radius: 4px;
}
.flow-item:last-child { border-bottom: none; }
.flow-item:hover { background: var(--sky); padding-left: 12px; }
.flow-step {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
.flow-item:hover .flow-step { background: var(--gold); color: #fff; transform: scale(1.08); }
.flow-body h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.flow-body p { font-size: 14px; color: #555; line-height: 1.9; margin: 0; }

/* ===== CASE ===== */
.case-box {
  background: linear-gradient(135deg, var(--warm) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 44px 44px;
  margin-top: 40px;
  border-radius: 0 8px 8px 0;
  transition: box-shadow 0.3s;
}
.case-box:hover { box-shadow: 0 8px 32px rgba(184,151,74,0.1); }
.case-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  background: var(--dark);
  color: #fff;
  padding: 4px 14px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.case-box h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.5;
}
.case-box p { font-size: 15px; color: #555; line-height: 1.9; }
.case-results { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.case-result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #333;
  padding: 14px 18px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  transition: background 0.2s, transform 0.2s;
}
.case-result-item:hover { background: var(--gold-pale); transform: translateX(4px); }
.case-result-item::before { content: "→"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== PLAN CARDS ===== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.plan-card {
  background: #fff;
  padding: 44px 36px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.plan-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.plan-card:hover::after { transform: scaleX(1); }
.plan-card:hover { background: var(--warm); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(184,151,74,0.14); }
.plan-card .plan-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.plan-card .plan-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.plan-card .plan-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-card .plan-price span { font-size: 14px; color: var(--muted); }
.plan-card .plan-desc { font-size: 14px; color: #555; line-height: 1.9; margin-top: 16px; }
.plan-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.plan-card ul li {
  font-size: 14px;
  color: #444;
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.plan-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ===== MERIT LIST ===== */
.merit-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.merit-item {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.merit-item:hover { background: var(--sky); transform: translateX(4px); box-shadow: 0 4px 20px rgba(58,123,213,0.08); }
.merit-num {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  border-right: 1px solid var(--border);
  padding: 28px 0;
  background: var(--gold-pale);
}
.merit-body {
  flex: 1;
  padding: 28px 32px;
}
.merit-body h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.merit-body p { font-size: 14px; color: #555; line-height: 1.9; margin: 0; }

/* ===== BADGE / TAG ===== */
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.badge-gold { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold-light); }
.badge-dark { background: var(--dark); color: #fff; }
.badge-sky { background: var(--sky2); color: var(--accent-blue); }

/* ===== ACCENT CALLOUT ===== */
.callout {
  background: linear-gradient(135deg, var(--warm) 0%, var(--gold-pale) 100%);
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.callout strong { color: var(--dark); }

/* ===== STAT BAR ===== */
.stat-bar {
  background: var(--dark);
  padding: 56px 80px;
  display: flex;
  gap: 0;
  justify-content: center;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em { font-style: normal; color: var(--gold-light); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}

/* ===== CTA ===== */
.svc-cta {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 100%);
  padding: 100px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,151,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.svc-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(184,151,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.svc-cta-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.svc-cta h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
.svc-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  line-height: 2;
}
.svc-cta-btn-img {
  display: inline-block;
  max-width: 400px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
}
.svc-cta-btn-img img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.svc-cta-btn-img:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(184,151,74,0.35); }
.svc-cta-btn-img:hover img { transform: scale(1.03); }

/* ===== FOOTER ===== */
.site-footer {
  background: #0e0e0e;
  padding: 52px 32px 36px;
  color: rgba(255,255,255,0.6);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.footer-logo img { width: 32px; height: 32px; object-fit: contain; }
.footer-logo span { font-family: var(--serif); font-size: 14px; font-weight: 700; }
.footer-address { font-size: 11px; letter-spacing: 0.05em; }
.footer-sns a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-sns a:hover { color: #fff; }
.footer-copy { font-size: 11px; letter-spacing: 0.1em; }

/* ===== PAGE TOP ===== */
.page-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s, background 0.3s, transform 0.3s;
  z-index: 50;
}
.page-top.visible { opacity: 1; }
.page-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.anim-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.anim-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-left.visible, .anim-right.visible, .anim-up.visible, .anim-scale.visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ===== SECTION LABEL ACCENT ===== */
.section-accent-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.section-accent-line::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .svc-hero-content { padding: 0 40px 56px; }
  .svc-main { padding: 40px 40px 80px; }
  .breadcrumb { padding: 16px 40px; }
  .stat-bar { padding: 40px 40px; flex-wrap: wrap; gap: 32px; }
  .stat-item { border-right: none; min-width: 140px; }
  .nav-about-btn, .nav-contact-btn { display: none; }
  .hamburger { display: flex; }
  .header-nav { display: none; }
}

@media (max-width: 768px) {
  /* HEADER */
  .header-inner { padding: 0 20px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .nav-about-btn, .nav-contact-btn { display: none; }

  /* HERO */
  .svc-hero { height: 50vh; min-height: 320px; }
  .svc-hero-content { padding: 0 20px 36px; }
  .svc-hero-title { font-size: clamp(26px, 7vw, 40px); }
  .svc-hero-sub { font-size: 13px; }

  /* BREADCRUMB */
  .breadcrumb { padding: 14px 20px; font-size: 11px; }

  /* MAIN */
  .svc-main { padding: 28px 20px 60px; }
  .svc-block { margin-bottom: 56px; }
  .svc-block > h2 { font-size: clamp(20px, 5.5vw, 28px); }
  .svc-block > p { font-size: 14px; }

  /* HIGHLIGHT BOX */
  .highlight-box { flex-direction: column; border-radius: 8px; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .highlight-item:last-child { border-bottom: none; }

  /* STRENGTH GRID */
  .strength-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .strength-card { padding: 24px 20px; }

  /* PLAN GRID */
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-card { padding: 28px 20px; }
  .plan-card .plan-price { font-size: 28px; }

  /* MERIT LIST */
  .merit-num { width: 52px; font-size: 22px; padding: 20px 0; }
  .merit-body { padding: 20px 16px; }
  .merit-body h4 { font-size: 15px; }

  /* CONTENTS TABLE */
  .contents-row { flex-direction: column; }
  .contents-label { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .contents-body { padding: 14px 16px; font-size: 14px; }

  /* FLOW */
  .flow-item { gap: 16px; padding: 20px 0; }
  .flow-step { width: 48px; height: 48px; font-size: 9px; }
  .flow-body h4 { font-size: 16px; }
  .flow-body p { font-size: 13px; }

  /* CASE BOX */
  .case-box { padding: 24px 16px; }
  .case-box h3 { font-size: 17px; }
  .case-box p { font-size: 13px; }

  /* STAT BAR */
  .stat-bar { padding: 36px 20px; flex-wrap: wrap; gap: 24px; }
  .stat-item { border-right: none; min-width: 45%; }

  /* CTA */
  .svc-cta { padding: 60px 20px; }
  .svc-cta h2 { font-size: clamp(22px, 5.5vw, 32px); }
  .svc-cta p { font-size: 13px; margin-bottom: 32px; }

  /* FOOTER */
  .site-footer { padding: 40px 20px 28px; }

  /* CALLOUT */
  .callout { padding: 16px 18px; font-size: 14px; }

  /* DIVIDER */
  .svc-divider { margin: 32px 0; }
}
