/* ===== bloggosu.com — Public Pages CSS ===== */
/* Design: 신뢰·전문성 (Dark Navy + White, Clean Authority) */

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

/* --- CSS Variables --- */
:root {
  --navy-900: #0a1628;
  --navy-800: #0f2140;
  --navy-700: #152d50;
  --navy-600: #1a365d;
  --navy-500: #2a4a7f;
  --navy-400: #3d6098;
  --navy-300: #6b8cbe;
  --navy-200: #a3bfdb;
  --navy-100: #d4e2f0;
  --navy-50:  #eef3f9;

  --gold-500: #c9a84c;
  --gold-400: #d4b95e;
  --gold-300: #e0cc82;

  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-300: #c8cfd9;
  --gray-400: #8e99a9;
  --gray-500: #64708a;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;

  --green-500: #22c55e;
  --red-500: #ef4444;

  --font-heading: 'Playfair Display', 'Noto Sans KR', serif;
  --font-body: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --header-height: 72px;

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
  --shadow-md: 0 4px 16px rgba(10,22,40,0.10);
  --shadow-lg: 0 8px 32px rgba(10,22,40,0.14);
  --shadow-xl: 0 16px 48px rgba(10,22,40,0.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.text-center { text-align: center; }
.text-navy { color: var(--navy-600); }
.text-gold { color: var(--gold-500); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
  word-break: keep-all;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy-800);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--gold-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-800);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--navy-700);
  color: var(--white) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-primary {
  background: var(--navy-700);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-200);
}

.btn-outline:hover {
  border-color: var(--navy-700);
  background: var(--navy-50);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-white {
  background: var(--white);
  color: var(--navy-700);
}

.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(61,96,152,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--navy-200);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--navy-300);
  margin-top: 6px;
}

/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.feature-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--navy-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--navy-300);
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--navy-700);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
}

/* --- Stats Banner --- */
.stats-banner {
  background: var(--navy-800);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--navy-300);
  margin-top: 8px;
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-features {
  flex: 1;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--navy-600);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy-800);
  margin: 16px 0;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Case Study --- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.case-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.case-badge.law {
  background: var(--navy-50);
  color: var(--navy-600);
}

.case-badge.med {
  background: #ecfdf5;
  color: #059669;
}

.case-card h3 {
  margin-bottom: 12px;
}

.case-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.case-result-item {
  text-align: center;
}

.case-result-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-700);
}

.case-result-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* --- Contact Form --- */
.contact-section {
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--red-500);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 3px rgba(42,74,127,0.1);
  background: var(--white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364708a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--navy-200);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--navy-400);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--navy-400);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--navy-500);
}

/* --- Page Header (내부 페이지) --- */
.page-header {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: calc(var(--header-height) + 60px) 0 60px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--navy-200);
  font-size: 1.05rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }

  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .case-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-content { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.8rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .contact-form { padding: 24px; }
}

/* === 네비게이션 드롭다운 (Phase B.5) === */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  padding-top: 20px;
  min-width: 200px;
  z-index: 1000;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--navy-50);
  color: var(--navy-800);
}
.nav-dropdown-wrap:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-wrap:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* === 드롭다운 모바일 === */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--navy-50);
    border-radius: var(--radius-sm);
    padding: 4px 0;
    display: none;
  }
  .nav-dropdown-menu::before {
    display: none;
  }
  .nav-dropdown-wrap.open .nav-dropdown-menu {
    display: block;
  }
}

/* =============================================================
   Phase B.5 — 신규 블록 스타일
   site-engine 블록에 대응하는 CSS 추가
   ============================================================= */

/* --- 공통 유틸 --- */
.section-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 40px;
  line-height: 1.3;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.section-alt {
  background: var(--gray-50);
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
}
.hero-sub-page {
  padding: 100px 0 60px;
  min-height: auto;
}
.hero-sub-page .hero-content h1 {
  font-size: 2.5rem;
}
.required { color: var(--red-500); }

/* --- Comparison 블록 --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.comparison-col {
  padding: 32px;
  border-radius: var(--radius-lg);
}
.comparison-left {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.comparison-right {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
}
.comparison-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy-800);
}
.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
}
.comparison-icon {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.comparison-negative .comparison-icon {
  color: var(--red-500);
}
.comparison-positive .comparison-icon {
  color: var(--green-500);
}

/* --- Service Detail 블록 --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.service-detail-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s;
}
.service-detail-item:hover {
  box-shadow: var(--shadow-md);
}
.service-detail-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  color: var(--navy-600);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}
.service-detail-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.service-detail-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Quality Points 블록 --- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quality-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.quality-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.quality-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-700);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.quality-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.quality-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Channel Strategy 블록 --- */
.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.channel-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
}
.channel-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.channel-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 16px;
}
.channel-points {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.channel-points li {
  font-size: 0.92rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.channel-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* --- Process Steps 블록 (신규 .process-card) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
}
.process-card::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  font-size: 1.2rem;
}
.process-card:last-child::after {
  display: none;
}
.process-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.process-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Service Card 그리드 --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  text-decoration: none;
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-link {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 600;
}

/* --- Case Cards 블록 (신규 클래스) --- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
}
.case-header {
  padding: 28px 28px 0;
}
.case-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--navy-50);
  color: var(--navy-600);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.case-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-800);
}
.case-body {
  padding: 20px 28px 28px;
}
.case-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.case-metric {
  text-align: center;
}
.case-metric-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-500);
}
.case-metric-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.case-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Blog List 블록 --- */
.blog-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog-filter-btn {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  font-size: 0.88rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.blog-filter-btn:hover {
  border-color: var(--navy-300);
  color: var(--navy-700);
}
.blog-filter-btn.active {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-card-pinned {
  border-color: var(--gold-500);
}
.blog-card-pin {
  padding: 6px 12px;
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}
.blog-card-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}
.blog-card-body {
  padding: 20px;
}
.blog-card-category {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--navy-500);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-date {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}
.blog-pinned {
  margin-bottom: 24px;
}

/* --- Blog Content 블록 --- */
.blog-content-section .blog-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-700);
}
.blog-content-section .blog-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 40px 0 16px;
}
.blog-content-section .blog-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-700);
  margin: 32px 0 12px;
}
.blog-content-section .blog-body p {
  margin-bottom: 16px;
}
.blog-content-section .blog-body ul,
.blog-content-section .blog-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.blog-content-section .blog-body li {
  margin-bottom: 8px;
  list-style: disc;
}

/* --- Contact Form / Inquiry Form 블록 --- */
.inquiry-form {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-700);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-400);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--gray-600);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy-700);
}
.form-msg {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.9rem;
}
.form-msg.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
}
.form-msg.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
}

/* --- Footer (B.5 새 구조) --- */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-300);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--gold-500);
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--white);
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid var(--navy-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-bottom a {
  color: var(--gold-500);
}

/* --- Brand 페이지 블록 --- */
.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.specialty-item {
  background: var(--navy-50);
  color: var(--navy-700);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
}
.review-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fffbeb;
  padding: 28px;
  border-radius: var(--radius-lg);
}
.review-score-big {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #f59e0b;
}
.review-stars {
  color: #f59e0b;
  font-size: 1.2rem;
}
.review-total {
  color: var(--gray-500);
  font-size: 0.88rem;
  margin-top: 4px;
}
.brand-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-icon {
  font-size: 1.1rem;
  min-width: 24px;
  text-align: center;
}
.phone-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-600);
}
.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.conveniences {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.convenience-tag {
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* --- Pricing (B.5 보강) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card .pricing-features {
  flex: 1;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.pricing-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pricing-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 20px;
}
.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-500);
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* --- 반응형 (B.5 신규 블록) --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-heading { font-size: 1.6rem; }
  .hero-sub-page .hero-content h1 { font-size: 1.8rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .case-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .review-box { flex-direction: column; text-align: center; }
  .case-metrics { flex-wrap: wrap; justify-content: center; }
  .inquiry-form { padding: 24px 16px; }
}

/* =============================================================
   S149 — 통합 상품 리디자인 추가 CSS
   기존 style.css 맨 하단에 추가
   ============================================================= */

/* --- Checklist Grid (포함 항목 체크리스트) --- */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--gray-700);
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s;
}
.checklist-list li:hover {
  box-shadow: var(--shadow-sm);
}
.checklist-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Comparison Total (비교 섹션 합계) --- */
.comparison-total {
  margin-top: 20px;
  padding: 14px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-600);
  text-align: center;
}
.comparison-total-highlight {
  background: var(--navy-700);
  color: var(--gold-400);
}

/* --- Pricing Single Card (단일 요금 카드) --- */
.pricing-single-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-single-card {
  background: var(--white);
  border: 2px solid var(--navy-600);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.pricing-single-badge {
  display: inline-block;
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.pricing-single-price {
  margin-bottom: 16px;
  line-height: 1;
}
.pricing-big-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--navy-800);
  letter-spacing: -0.03em;
}
.pricing-unit {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-left: 4px;
}
.pricing-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 4px;
}
.pricing-single-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}
.pricing-include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}
.pricing-include-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.pricing-include-section ul {
  list-style: none;
}
.pricing-include-section ul li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.pricing-include-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-single-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}
.pricing-note {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* --- Cost Comparison Table (비용 비교) --- */
.cost-compare-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}
.cost-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.cost-compare-table th {
  background: var(--navy-700);
  color: var(--white);
  padding: 14px 20px;
  font-weight: 600;
  text-align: left;
}
.cost-compare-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.cost-compare-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.cost-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.cost-compare-table tr:hover td {
  background: var(--gray-50);
}
.cost-old {
  color: var(--gray-400);
  text-decoration: line-through;
}
.cost-included {
  color: var(--green-500);
  font-weight: 700;
}
.cost-total-row td {
  font-weight: 700;
  border-top: 2px solid var(--navy-200);
  border-bottom: none;
  padding-top: 18px;
}
.cost-old-total {
  color: var(--gray-400) !important;
  font-size: 1.1rem;
  text-decoration: line-through;
}
.cost-new-total {
  color: var(--navy-700) !important;
  font-size: 1.3rem;
}

/* --- Contact Form Highlight (플레이스 URL 강조) --- */
.form-group-highlight {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.form-group-highlight label {
  color: var(--navy-700) !important;
}
.form-recommend {
  display: inline-block;
  background: var(--gold-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-hint {
  font-size: 0.82rem;
  color: var(--navy-400);
  margin-top: 8px;
  line-height: 1.5;
}

/* --- Dynamic Channel Inputs (운영 중인 채널) --- */
.channel-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.channel-type-select {
  width: 140px;
  flex-shrink: 0;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--gray-50);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364708a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.channel-url-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-700);
}
.channel-url-input:focus,
.channel-type-select:focus {
  outline: none;
  border-color: var(--navy-400);
}
.channel-remove-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.channel-remove-btn:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: var(--white);
}
.channel-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px dashed var(--navy-300);
  border-radius: var(--radius-sm);
  color: var(--navy-500);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.channel-add-btn:hover {
  background: var(--navy-50);
  border-color: var(--navy-500);
  color: var(--navy-700);
}

@media (max-width: 768px) {
  .channel-input-row {
    flex-wrap: wrap;
  }
  .channel-type-select {
    width: 100%;
  }
  .channel-url-input {
    flex: 1;
    min-width: 0;
  }
}

/* --- Mobile Nav (simplified, no dropdown) --- */
@media (max-width: 968px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
}

/* --- Responsive (신규 블록) --- */
@media (max-width: 768px) {
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-single-card {
    padding: 32px 20px;
  }
  .pricing-big-number {
    font-size: 3.5rem;
  }
  .pricing-include-grid {
    grid-template-columns: 1fr;
  }
  .cost-compare-table {
    font-size: 0.85rem;
  }
  .cost-compare-table th,
  .cost-compare-table td {
    padding: 10px 12px;
  }
}
