/* ============================================================
   거상마케팅센터 — style.css (다페이지 v2)
   ============================================================ */

:root {
  --blue: #1a56db;
  --blue-dark: #0b2f8f;
  --navy: #0b1f4d;
  --navy-deep: #06122e;
  --teal: #2dd4bf;
  --light-blue: #7fb0ff;
  --tint: #f5f8ff;
  --ink: #0f172a;
  --ink-2: #0b1f4d;
  --muted: #5b6b8c;
  --border: #eef1f6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { color: inherit; }

.container { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 840px; }

@keyframes floatUp { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulseRing {
  0%   { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,.4); }
  70%  { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 12px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(255,255,255,0); }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; display: block; }
.brand-logo.sm { width: 30px; height: 30px; }
.brand-text { line-height: 1.1; }
.brand-name { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-2); }
.brand-sub { display: block; font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: .06em; white-space: nowrap; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 24px; }
.nav > a {
  font-size: 15px; font-weight: 600; color: #3a4660; text-decoration: none;
  transition: color .15s; white-space: nowrap;
}
.nav > a:hover, .nav > a.active { color: var(--blue); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: #fff !important; font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(26,86,219,.3); white-space: nowrap; transition: background .15s;
}
.btn-nav:hover { background: #1749bd; }

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-ddtrigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: #3a4660; text-decoration: none; white-space: nowrap;
  transition: color .15s;
}
.nav-ddtrigger:hover { color: var(--blue); }
.nav-arrow { font-size: 9px; opacity: .6; transition: transform .2s; display: inline-block; margin-top: 1px; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px;
}
.nav-dd-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,60,120,.10);
  padding: 7px; display: none; flex-direction: column; z-index: 200;
}
.nav-dropdown:hover .nav-dd-menu { display: flex; }
.nav-dd-menu a {
  padding: 13px 18px; font-size: 14px; font-weight: 600;
  color: #3a4660; text-decoration: none; border-radius: 10px;
  transition: background .1s, color .1s; display: block; white-space: nowrap;
}
.nav-dd-menu a:hover { background: var(--tint); color: var(--blue); }
.nav-dd-all { font-weight: 700 !important; color: var(--blue) !important; }
.nav-dd-all:hover { background: var(--tint) !important; }
.nav-dd-sep { height: 1px; background: var(--border); margin: 5px 8px; }


/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-2); border-radius: 2px; transition: .2s; display: block; }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  padding: 6px 24px 18px; gap: 0;
  border-top: 1px solid var(--border); background: #fff;
}
.nav-mobile > a {
  padding: 12px 4px; font-size: 16px; font-weight: 600; color: #3a4660;
  text-decoration: none; border-bottom: 1px solid #f4f6fa; display: block;
}
.nav-mobile > a:hover { color: var(--blue); }
.nav-mobile .btn-nav { justify-content: center; margin-top: 10px; border-bottom: none !important; font-size: 15px; }
.nav-mobile.open { display: flex; }

/* Mobile services accordion */
.nav-mob-group { border-bottom: 1px solid #f4f6fa; }
.nav-mob-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 4px; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: #3a4660; font-family: inherit; text-align: left;
}
.nav-mob-trigger:hover { color: var(--blue); }
.nav-mob-arrow { font-size: 10px; opacity: .6; transition: transform .2s; }
.nav-mob-trigger.open .nav-mob-arrow { transform: rotate(180deg); }
.nav-mob-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding-left: 10px; }
.nav-mob-sub.open { max-height: 420px; }
.nav-mob-sub a {
  display: block; padding: 9px 6px; font-size: 15px; font-weight: 600;
  color: #5b6b8c; text-decoration: none; border-bottom: 1px solid #f9fafb;
}
.nav-mob-sub a:last-child { border-bottom: none; }
.nav-mob-sub a:hover { color: var(--blue); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 800; padding: 15px 26px;
  border-radius: 12px; text-decoration: none; transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--ink-2); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.btn-white.pulse { animation: pulseRing 2.6s infinite; }
.btn-ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; font-size: 15px; font-weight: 800;
  padding: 14px 26px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(26,86,219,.28); transition: background .15s, transform .15s;
}
.btn-primary:hover { background: #1749bd; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); font-size: 15px; font-weight: 700;
  padding: 13px 24px; border: 1.5px solid #d0dff9; border-radius: 12px; text-decoration: none;
  transition: border-color .15s, transform .15s;
}
.btn-outline:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #06302a; font-size: 14px; font-weight: 800;
  padding: 12px 22px; border-radius: 11px; text-decoration: none; transition: opacity .15s;
}
.btn-teal:hover { opacity: .88; }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; font-size: 14px; font-weight: 700;
  padding: 11px 20px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 11px;
  text-decoration: none; transition: border-color .15s;
}
.btn-white-outline:hover { border-color: rgba(255,255,255,.7); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(170deg, #0a1d4d 0%, #0d2a6e 55%, #1746b8 100%);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { top: -160px; right: -140px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(59,130,246,.45), transparent 65%); }
.hero-orb-2 { bottom: -200px; left: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(45,212,191,.18), transparent 65%); }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-inner {
  position: relative; padding-top: 72px; padding-bottom: 84px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(45,212,191,.25); flex-shrink: 0; }
.hero-title { font-size: 54px; line-height: 1.18; font-weight: 800; letter-spacing: -.035em; margin: 0 0 20px; text-wrap: balance; }
.accent-light { color: var(--light-blue); }
.hero-desc { font-size: 18px; line-height: 1.72; color: #c4d2f0; margin: 0 0 32px; max-width: 520px; text-wrap: pretty; }
.hero-desc b { color: #fff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 16px; color: #9fb3df; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.hero-trust .sep { opacity: .4; }

.hero-card-wrap { position: relative; }
.search-card { background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 30px 70px rgba(3,12,40,.45); color: var(--ink); }
.search-bar { display: flex; align-items: center; gap: 10px; background: #f1f4f9; border-radius: 12px; padding: 11px 14px; margin-bottom: 14px; }
.search-bar span:last-child { font-size: 14px; color: #475569; font-weight: 600; }
.search-icon { width: 15px; height: 15px; border-radius: 50%; border: 2.5px solid var(--blue); position: relative; flex-shrink: 0; }
.search-icon::after { content: ""; position: absolute; right: -4px; bottom: -4px; width: 7px; height: 2.5px; background: var(--blue); transform: rotate(45deg); }
.search-label { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .04em; margin-bottom: 10px; }
.result-list { display: flex; flex-direction: column; gap: 9px; }
.result { display: flex; align-items: center; gap: 11px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; }
.result-top { padding: 11px; border: 1.5px solid var(--blue); background: var(--tint); }
.result-dim { opacity: .6; }
.result-dim.dimmer { opacity: .42; }
.result-thumb { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.result-top .result-thumb { width: 44px; height: 44px; }
.striped { background: repeating-linear-gradient(45deg, #dbe6fb, #dbe6fb 6px, #eaf0fc 6px, #eaf0fc 12px); }
.gray { background: #eef1f6; }
.result-body { flex: 1; min-width: 0; }
.result-name { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; }
.tag-blue { font-size: 10px; font-weight: 800; color: #fff; background: var(--blue); padding: 2px 6px; border-radius: 5px; }
.result-meta { font-size: 12px; color: #64748b; margin-top: 2px; }
.result-rank { font-size: 17px; font-weight: 700; color: #94a3b8; }
.result-rank.rank-1 { font-size: 22px; font-weight: 800; color: var(--blue); }
.bar { border-radius: 4px; }
.bar-lg { height: 9px; width: 60%; background: #e2e8f0; }
.bar-md { height: 9px; width: 55%; background: #e2e8f0; }
.bar-sm { height: 7px; width: 40%; background: var(--border); margin-top: 6px; }
.bar-xs { height: 7px; width: 35%; background: var(--border); margin-top: 6px; }
.float-stat {
  position: absolute; bottom: -20px; right: -12px;
  background: var(--navy); color: #fff; border: 1px solid rgba(127,176,255,.35);
  border-radius: 13px; padding: 12px 16px; box-shadow: 0 16px 36px rgba(3,12,40,.5);
}
.float-stat-label { font-size: 11px; color: #9fb3df; font-weight: 600; }
.float-stat-value { font-size: 24px; font-weight: 800; color: var(--teal); }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.07); }
.stats-grid { padding: 32px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: none; }
.stat-value { font-size: 40px; font-weight: 800; letter-spacing: -.03em; color: var(--light-blue); }
.stat-label { font-size: 14px; color: #aebbdb; font-weight: 600; margin-top: 3px; }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-tint { background: var(--tint); border-top: 1px solid var(--border); }
.section-dark { background: linear-gradient(180deg, #0a1d4d, #0d2a6e); color: #fff; }
.section-head { text-align: center; margin-bottom: 54px; }
.eyebrow { font-size: 12px; font-weight: 800; color: var(--blue); letter-spacing: .14em; margin-bottom: 13px; text-transform: uppercase; }
.eyebrow.light { color: var(--teal); }
.section-title { font-size: 38px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 14px; color: var(--ink-2); line-height: 1.26; }
.section-title.invert { color: #fff; }
.section-title.left { text-align: left; }
.section-sub { font-size: 17px; color: var(--muted); margin: 0; line-height: 1.7; }
.section-sub.invert { color: #aebbdb; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ============ SERVICE CARDS ============ */
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(15,23,42,.04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(26,86,219,.13); border-color: #cdddfb; }
.svc-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 25px; }
.svc-tag { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: .08em; margin-bottom: 6px; }
.svc-title { font-size: 20px; font-weight: 800; margin: 0 0 10px; color: var(--ink-2); letter-spacing: -.02em; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 18px; text-wrap: pretty; flex: 1; }
.svc-points { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.svc-points li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #384258; }
.check { width: 18px; height: 18px; border-radius: 50%; background: #e8f0fe; color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.check.teal { background: rgba(45,212,191,.18); color: #0d9488; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none;
  padding: 9px 16px; border: 1.5px solid #d0dff9; border-radius: 9px; transition: background .15s, border-color .15s;
}
.svc-link:hover { background: var(--tint); border-color: var(--blue); }
.svc-more-row { text-align: center; margin-top: 30px; }
.svc-more-row a { font-size: 15px; font-weight: 700; color: var(--blue); text-decoration: none; border-bottom: 1.5px solid #d0dff9; padding-bottom: 2px; }
.svc-more-row a:hover { border-color: var(--blue); }

/* AUX SERVICES (small row) */
.aux-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; border-top: 1px solid var(--border); padding-top: 28px; }
.aux-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px;
  background: var(--tint); border: 1px solid var(--border); border-radius: 13px;
  text-decoration: none; color: inherit; transition: border-color .15s;
}
.aux-item:hover { border-color: #cdddfb; }
.aux-icon { font-size: 18px; flex-shrink: 0; }
.aux-title { font-size: 13px; font-weight: 800; color: var(--ink-2); margin-bottom: 2px; }
.aux-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ============ AEO / GEO ============ */
.aeo-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.aeo-lead { font-size: 16px; color: var(--muted); line-height: 1.72; margin: 0 0 24px; text-wrap: pretty; }
.aeo-defs { display: flex; flex-direction: column; gap: 15px; }
.aeo-def { display: flex; gap: 14px; align-items: flex-start; }
.aeo-abbr { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid #d9e4fb; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--blue); font-size: 12px; flex-shrink: 0; }
.aeo-def b { font-size: 14px; color: var(--ink-2); }
.aeo-def p { font-size: 13px; color: var(--muted); margin: 4px 0 0; line-height: 1.6; }
.ai-demo { background: var(--navy); border-radius: 22px; padding: 26px; box-shadow: 0 24px 60px rgba(11,31,77,.28); color: #fff; }
.ai-demo-head { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; font-weight: 700; font-size: 14px; }
.ai-spark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--blue), #3b82f6); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.ai-question { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 13px; padding: 13px 15px; font-size: 14px; color: #dbe5fb; margin-bottom: 13px; line-height: 1.55; }
.ai-answer { background: #13306f; border: 1px solid rgba(127,176,255,.3); border-radius: 13px; padding: 15px 16px; }
.ai-answer-label { font-size: 12px; color: #9fb3df; margin-bottom: 8px; font-weight: 600; }
.ai-answer-text { font-size: 14px; line-height: 1.7; color: #eef3ff; }
.ai-answer-text mark { background: rgba(45,212,191,.22); color: #7ff0dd; padding: 1px 5px; border-radius: 4px; }
.ai-foot { margin-top: 14px; display: flex; align-items: center; gap: 7px; font-size: 12px; color: #9fb3df; }
.dot-teal { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ============ GOVT SUPPORT SECTION (home) ============ */
.section-govt { background: linear-gradient(160deg, #060f24 0%, #0b1f4d 100%); color: #fff; padding: 96px 0; }
.govt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.govt-points { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 32px; }
.govt-point { display: flex; gap: 12px; align-items: flex-start; }
.govt-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 6px; }
.govt-point-text { font-size: 15px; color: #c4d2f0; line-height: 1.65; }
.govt-point-text strong { color: #fff; }
.govt-cards { display: flex; flex-direction: column; gap: 13px; }
.govt-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; padding: 20px 22px; }
.govt-card-title { font-size: 15px; font-weight: 800; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.govt-card-desc { font-size: 13px; color: #c4d2f0; line-height: 1.65; }

/* ============ ADS TEASER (home) ============ */
.section-ads { background: var(--tint); border-top: 1px solid var(--border); padding: 80px 0; }
.ads-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.ads-tag-list { display: flex; gap: 9px; flex-wrap: wrap; margin: 16px 0 26px; }
.ads-tag { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #d0dff9; border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: #384258; }
.ads-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.ads-card { background: #fff; border: 1px solid #d0dff9; border-radius: 18px; padding: 24px; box-shadow: 0 8px 26px rgba(26,86,219,.08); }
.ads-card-title { font-size: 15px; font-weight: 800; color: var(--ink-2); margin-bottom: 14px; }
.ads-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 12px; }
.ads-row:last-of-type { border-bottom: none; }
.ads-row-label { color: var(--muted); font-weight: 600; }
.ads-row-val { font-weight: 800; white-space: nowrap; }

/* ============ PROCESS ============ */
.step { background: #f7f9fe; border: 1px solid var(--border); border-radius: 17px; padding: 26px 22px; }
.step-no { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: .07em; }
.step-icon { width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid #d9e4fb; display: flex; align-items: center; justify-content: center; font-size: 21px; margin: 12px 0 13px; }
.step h3 { font-size: 17px; font-weight: 800; margin: 0 0 8px; color: var(--ink-2); letter-spacing: -.02em; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============ CASE / RESULTS ============ */
.case-grid { margin-bottom: 44px; }
.case-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 24px; }
.case-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.case-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(127,176,255,.18); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.case-name { font-weight: 800; font-size: 15px; }
.case-region { font-size: 12px; color: #9fb3df; }
.case-change { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 12px; }
.cc-label { display: block; font-size: 11px; color: #9fb3df; margin-bottom: 2px; }
.cc-label.teal { color: #7ff0dd; }
.cc-before { font-size: 16px; font-weight: 700; color: #c4d2f0; }
.cc-arrow { font-size: 18px; color: var(--light-blue); padding-bottom: 1px; }
.cc-after { font-size: 22px; font-weight: 800; color: var(--teal); }
.case-note { font-size: 13px; color: #c4d2f0; line-height: 1.6; border-top: 1px solid rgba(255,255,255,.1); padding-top: 12px; }
.review-card { background: #fff; color: var(--ink); border-radius: 16px; padding: 22px; }
.stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: 13px; line-height: 1.72; color: #384258; margin: 0 0 14px; text-wrap: pretty; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; }
.r-name { font-weight: 700; font-size: 13px; }
.r-biz { font-size: 12px; color: #94a3b8; }

/* ============ PRICING ============ */
.price-grid { align-items: stretch; }
.plan { position: relative; background: #fff; border: 1px solid #e7edf7; border-radius: 22px; padding: 30px 26px; box-shadow: 0 4px 16px rgba(15,23,42,.04); display: flex; flex-direction: column; }
.plan-featured { background: var(--navy); border: 1px solid var(--blue); box-shadow: 0 24px 50px rgba(11,31,77,.32); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #06302a; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 18px; font-weight: 800; color: var(--ink-2); margin-bottom: 6px; }
.plan-featured .plan-name { color: #fff; }
.plan-tagline { font-size: 13px; color: #8a98b8; margin-bottom: 16px; line-height: 1.5; }
.plan-featured .plan-tagline { color: #aebbdb; }
.plan-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 20px; }
.plan-price .amount { font-size: 34px; font-weight: 800; color: var(--ink-2); letter-spacing: -.02em; }
.plan-featured .plan-price .amount { color: #fff; }
.plan-price .unit { font-size: 14px; color: #8a98b8; }
.plan-featured .plan-price .unit { color: #aebbdb; }
.plan-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #475569; line-height: 1.5; }
.plan-featured .plan-features li { color: #dbe5fb; }
.plan-features .check { background: none; width: auto; height: auto; color: var(--blue); font-size: 14px; }
.plan-features .check.teal { color: var(--teal); }
.plan-btn { display: block; text-align: center; font-size: 14px; font-weight: 800; padding: 12px; border-radius: 10px; text-decoration: none; transition: opacity .15s; }
.plan-btn:hover { opacity: .9; }
.plan-btn-soft { background: #eef3fc; color: var(--blue); }
.plan-btn-primary { background: var(--blue); color: #fff; }
.plan-btn-dark { background: var(--navy); color: #fff; }
.price-note { text-align: center; margin-top: 20px; font-size: 12px; color: #8a98b8; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 11px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; transition: background .2s; }
.faq-item.open { background: #f7f9fe; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; background: transparent; border: none; cursor: pointer; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink-2); font-family: inherit; }
.faq-plus { font-size: 20px; color: var(--blue); font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 22px 18px; font-size: 14px; line-height: 1.72; color: var(--muted); margin: 0; text-wrap: pretty; }

/* ============ CONTACT (home CTA) ============ */
.section-contact { background: linear-gradient(160deg, #0a1d4d, #13306f); color: #fff; padding: 92px 0; }
.contact-grid { max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-lead { font-size: 15px; color: #c4d2f0; line-height: 1.72; margin: 0 0 26px; text-wrap: pretty; }
.contact-lead b { color: #fff; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.ci-row { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.ci-ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-muted { color: #9fb3df; font-size: 13px; }
.form-card { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 24px 60px rgba(3,12,40,.4); color: var(--ink); }
.form-head { font-size: 18px; font-weight: 800; color: var(--ink-2); margin-bottom: 4px; }
.form-sub { font-size: 13px; color: #8a98b8; margin-bottom: 18px; }
.form-card label { display: block; font-size: 12px; font-weight: 700; color: #475569; margin: 12px 0 6px; }
.form-card label:first-of-type { margin-top: 0; }
.form-card input { width: 100%; padding: 11px 13px; border: 1.5px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s; }
.form-card input:focus { border-color: var(--blue); }
.form-submit { margin-top: 14px; width: 100%; background: var(--blue); color: #fff; font-size: 15px; font-weight: 800; padding: 13px; border: none; border-radius: 11px; cursor: pointer; box-shadow: 0 8px 22px rgba(26,86,219,.28); transition: background .15s; font-family: inherit; }
.form-submit:hover { background: #1749bd; }
.form-note { font-size: 11px; color: #94a3b8; text-align: center; line-height: 1.5; margin-top: 10px; }
.form-success { text-align: center; padding: 30px 8px; }
.success-ic { width: 58px; height: 58px; border-radius: 50%; background: #e8f7f2; color: #10b981; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 14px; }
.success-title { font-size: 19px; font-weight: 800; color: var(--ink-2); margin-bottom: 7px; }
.success-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: #8ea0c8; padding: 46px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 16px; font-weight: 800; color: #fff; }
.footer-meta { font-size: 12px; line-height: 1.9; color: #7e90b8; margin: 0; }
.footer-cols { display: flex; gap: 44px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col span { font-size: 13px; color: #8ea0c8; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.fc-title { font-size: 11px; font-weight: 800; color: #fff !important; letter-spacing: .07em; margin-bottom: 2px; text-transform: uppercase; }
.footer-copy { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.07); font-size: 12px; color: #5e6f96; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(170deg, #0a1d4d 0%, #0d2a6e 60%, #1746b8 100%);
  color: #fff; padding: 64px 0 58px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 80%);
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.page-hero-inner { position: relative; max-width: 900px; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 7px 15px; border-radius: 999px; font-size: 12px; font-weight: 700;
  color: var(--light-blue); letter-spacing: .06em; margin-bottom: 18px;
}
.page-hero h1 { font-size: 40px; font-weight: 800; line-height: 1.22; letter-spacing: -.03em; margin: 0 0 16px; text-wrap: balance; }
.page-hero-desc { font-size: 17px; color: #c4d2f0; line-height: 1.72; margin: 0 0 28px; max-width: 680px; text-wrap: pretty; }
.page-hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb-bar { background: #f8f9fb; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #8a98b8; padding: 11px 0; }
.breadcrumb a { color: #8a98b8; text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { opacity: .4; }

/* ============ SERVICE HUB CARDS ============ */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hub-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 24px; box-shadow: 0 4px 14px rgba(15,23,42,.04);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none; color: inherit;
}
.hub-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(26,86,219,.12); border-color: #cdddfb; }
.hub-card-icon { width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.hub-card-tag { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: .08em; margin-bottom: 5px; }
.hub-card-title { font-size: 17px; font-weight: 800; color: var(--ink-2); margin: 0 0 8px; letter-spacing: -.02em; }
.hub-card-msg { font-size: 13px; font-weight: 700; color: var(--blue); margin: 0 0 10px; line-height: 1.5; font-style: italic; }
.hub-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 20px; flex: 1; text-wrap: pretty; }
.hub-card-btn {
  display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
  font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none;
  padding: 8px 14px; border: 1.5px solid #d0dff9; border-radius: 9px; transition: background .15s;
}
.hub-card:hover .hub-card-btn { background: var(--tint); border-color: var(--blue); }
.hub-card-new { font-size: 10px; font-weight: 800; color: #fff; background: var(--teal); padding: 2px 7px; border-radius: 5px; }

/* ============ DETAIL PAGE ============ */
.detail-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: start; }
.detail-sticky { position: sticky; top: 88px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: 15px;
}
.feature-item-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.feature-item-title { font-size: 15px; font-weight: 800; color: var(--ink-2); margin: 0 0 4px; }
.feature-item-desc { font-size: 13px; color: var(--muted); line-height: 1.62; margin: 0; }
.cta-box { background: linear-gradient(135deg, #0a1d4d, #1a56db); border-radius: 20px; padding: 34px 30px; color: #fff; text-align: center; }
.cta-box-title { font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.cta-box-desc { font-size: 14px; color: #c4d2f0; line-height: 1.7; margin: 0 0 24px; text-wrap: pretty; }
.cta-box-btns { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.result-stat { text-align: center; background: var(--tint); border: 1px solid var(--border); border-radius: 14px; padding: 20px 14px; }
.result-stat-val { font-size: 34px; font-weight: 800; color: var(--blue); letter-spacing: -.03em; }
.result-stat-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.process-steps { display: flex; flex-direction: column; gap: 13px; }
.ps-item { display: flex; gap: 15px; align-items: flex-start; }
.ps-num { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.ps-title { font-size: 15px; font-weight: 800; color: var(--ink-2); margin: 0 0 3px; }
.ps-desc { font-size: 13px; color: var(--muted); line-height: 1.62; margin: 0; }
.highlight-box { background: #fff9ec; border: 1px solid #fde68a; border-radius: 13px; padding: 16px 18px; display: flex; gap: 11px; align-items: flex-start; margin-bottom: 18px; }
.highlight-box-icon { font-size: 18px; flex-shrink: 0; }
.highlight-box p { font-size: 14px; color: #78350f; line-height: 1.65; margin: 0; }

/* ============ CONTACT PAGE ============ */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 52px; align-items: start; }
.contact-info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: 14px; }
.info-card-icon { width: 42px; height: 42px; border-radius: 11px; background: #e8f0fe; color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-card-title { font-size: 14px; font-weight: 800; color: var(--ink-2); margin: 0 0 4px; }
.info-card-val { font-size: 13px; color: var(--muted); line-height: 1.65; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: 0 8px 30px rgba(15,23,42,.07); }
.contact-form-card .form-head { font-size: 21px; font-weight: 800; color: var(--ink-2); margin-bottom: 5px; }
.contact-form-card .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: #475569; margin-bottom: 6px; letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s; background: #fff; color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235b6b8c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-submit { width: 100%; background: var(--blue); color: #fff; font-size: 16px; font-weight: 800; padding: 15px; border: none; border-radius: 12px; cursor: pointer; font-family: inherit; box-shadow: 0 8px 22px rgba(26,86,219,.26); transition: background .15s; margin-top: 4px; }
.contact-submit:hover { background: #1749bd; }
.contact-checkbox { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #64748b; margin-bottom: 16px; }
.contact-checkbox input[type="checkbox"] { width: auto; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }

/* ============ COMING SOON ============ */
.coming-soon { min-height: 62vh; display: flex; align-items: center; justify-content: center; background: var(--tint); }
.coming-soon-inner { text-align: center; max-width: 480px; padding: 52px 24px; }
.coming-soon-icon { font-size: 46px; margin-bottom: 20px; }
.coming-soon-title { font-size: 28px; font-weight: 800; color: var(--ink-2); margin: 0 0 12px; }
.coming-soon-desc { font-size: 15px; color: var(--muted); line-height: 1.72; margin: 0 0 28px; text-wrap: pretty; }
.coming-soon-btns { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   TYPOGRAPHY SYSTEM v4 — 최소 글씨 2x, 나머지 1.5x 전면 적용
   ================================================================ */
:root {
  --t-2xs:  20px;
  --t-xs:   24px;
  --t-sm:   26px;
  --t-base: 27px;
  --t-md:   32px;
  --t-lg:   38px;
  --t-xl:   clamp(48px, 3.8vw, 62px);
  --t-hero: clamp(60px, 5vw, 80px);
}

body { font-size: 20px !important; }

/* Navigation */
.header-inner    { height: 88px !important; }
.brand-name      { font-size: 34px !important; }
.brand-sub       { font-size: 20px !important; }
.nav > a         { font-size: 28px !important; }
.nav-ddtrigger   { font-size: 28px !important; }
.nav-dd-menu a   { font-size: 26px !important; }
.btn-nav         { font-size: 26px !important; padding: 13px 22px !important; }
.nav-mobile > a  { font-size: 24px !important; }
.nav-mob-trigger { font-size: 24px !important; }
.nav-mob-sub a   { font-size: 22px !important; }

/* Labels / eyebrows (2x — smallest category) */
.eyebrow       { font-size: 18px !important; letter-spacing: .14em !important; }
.page-hero-tag { font-size: 18px !important; }
.breadcrumb    { font-size: 18px !important; }
.badge         { font-size: 20px !important; }
.hero-trust    { font-size: 22px !important; }

/* Section titles */
.section-title { font-size: var(--t-xl) !important; line-height: 1.2 !important; }
.section-sub   { font-size: 26px !important; line-height: 1.72 !important; }

/* Hero */
.hero-title       { font-size: clamp(48px, 4vw, 64px) !important; line-height: 1.2 !important; }
.hero-desc        { font-size: 28px !important; line-height: 1.72 !important; }
.float-stat-value { font-size: 38px !important; }
.float-stat-label { font-size: 22px !important; }

/* Stats bar */
.stat-value { font-size: clamp(48px, 4vw, 62px) !important; }
.stat-label { font-size: 22px !important; }

/* Service cards */
.svc-tag        { font-size: 20px !important; }
.svc-title      { font-size: 30px !important; }
.svc-desc       { font-size: 22px !important; line-height: 1.72 !important; }
.svc-points li  { font-size: 22px !important; }
.svc-link       { font-size: 20px !important; padding: 11px 20px !important; }
.svc-more-row a { font-size: 22px !important; }
.aux-title      { font-size: 22px !important; }
.aux-desc       { font-size: 20px !important; }

/* Hub cards */
.hub-card-tag   { font-size: 18px !important; }
.hub-card-title { font-size: 30px !important; }
.hub-card-msg   { font-size: 22px !important; }
.hub-card-desc  { font-size: 22px !important; }
.hub-card-btn   { font-size: 22px !important; padding: 10px 18px !important; }

/* AEO section */
.aeo-lead        { font-size: 26px !important; line-height: 1.72 !important; }
.aeo-def b       { font-size: 22px !important; }
.aeo-def p       { font-size: 20px !important; }
.ai-demo-head    { font-size: 20px !important; }
.ai-question     { font-size: 22px !important; }
.ai-answer-label { font-size: 18px !important; }
.ai-answer-text  { font-size: 22px !important; line-height: 1.72 !important; }
.ai-foot         { font-size: 18px !important; }
.aeo-abbr        { font-size: 18px !important; }

/* Process steps */
.step-no { font-size: 18px !important; }
.step h3  { font-size: 28px !important; }
.step p   { font-size: 22px !important; }

/* Govt support section (previously missing overrides) */
.govt-card-title { font-size: 22px !important; }
.govt-card-desc  { font-size: 20px !important; line-height: 1.72 !important; }
.govt-point-text { font-size: 22px !important; }

/* Ads section (previously missing) */
.ads-card-title { font-size: 22px !important; }
.ads-row        { font-size: 20px !important; }
.ads-tag        { font-size: 20px !important; padding: 9px 16px !important; }

/* Search card / hero demo */
.search-bar span:last-child { font-size: 18px !important; }
.search-label               { font-size: 16px !important; }
.result-name                { font-size: 18px !important; }
.result-meta                { font-size: 16px !important; }
.tag-blue                   { font-size: 14px !important; }

/* Case cards */
.case-name   { font-size: 26px !important; }
.case-region { font-size: 20px !important; }
.cc-label    { font-size: 18px !important; }
.cc-before   { font-size: 26px !important; }
.cc-after    { font-size: 38px !important; }
.case-note   { font-size: 22px !important; }
.review-card p { font-size: 22px !important; line-height: 1.72 !important; }
.r-name { font-size: 22px !important; }
.r-biz  { font-size: 18px !important; }
.stars  { font-size: 22px !important; }

/* Pricing */
.plan-name          { font-size: 30px !important; }
.plan-tagline       { font-size: 22px !important; }
.plan-price .amount { font-size: 52px !important; }
.plan-price .unit   { font-size: 20px !important; }
.plan-features li   { font-size: 22px !important; }
.plan-btn   { font-size: 22px !important; padding: 14px !important; }
.price-note { font-size: 18px !important; }
.plan-badge { font-size: 18px !important; }

/* FAQ */
.faq-q    { font-size: 26px !important; padding: 22px 26px !important; }
.faq-plus { font-size: 30px !important; }
.faq-a p  { font-size: 22px !important; line-height: 1.75 !important; padding: 0 26px 22px !important; }

/* Contact home CTA */
.contact-lead    { font-size: 24px !important; line-height: 1.72 !important; }
.ci-row          { font-size: 22px !important; }
.ci-muted        { font-size: 20px !important; }
.form-head       { font-size: 28px !important; }
.form-sub        { font-size: 20px !important; }
.form-card label { font-size: 20px !important; }
.form-card input { font-size: 22px !important; padding: 13px 15px !important; }
.form-submit     { font-size: 24px !important; padding: 15px !important; }
.form-note       { font-size: 18px !important; }
.success-title   { font-size: 30px !important; }
.success-desc    { font-size: 22px !important; }

/* Page hero inner pages */
.page-hero h1   { font-size: clamp(38px, 4vw, 58px) !important; }
.page-hero-desc { font-size: 26px !important; }

/* Detail page */
.feature-item-title { font-size: 26px !important; }
.feature-item-desc  { font-size: 22px !important; line-height: 1.65 !important; }
.cta-box-title      { font-size: 38px !important; }
.cta-box-desc       { font-size: 24px !important; line-height: 1.72 !important; }
.result-stat-val    { font-size: 48px !important; }
.result-stat-label  { font-size: 20px !important; }
.ps-title { font-size: 26px !important; }
.ps-desc  { font-size: 22px !important; }
.highlight-box p { font-size: 22px !important; }

/* Contact page */
.contact-form-card .form-head { font-size: 34px !important; }
.contact-form-card .form-sub  { font-size: 22px !important; }
.form-group label              { font-size: 20px !important; }
.form-group input,
.form-group select,
.form-group textarea           { font-size: 22px !important; padding: 14px 16px !important; }
.contact-submit                { font-size: 24px !important; padding: 17px !important; }
.info-card-title               { font-size: 22px !important; }
.info-card-val                 { font-size: 20px !important; }
.contact-checkbox              { font-size: 20px !important; }

/* Coming soon */
.coming-soon-title { font-size: 46px !important; }
.coming-soon-desc  { font-size: 24px !important; }

/* Footer */
.footer-logo                    { font-size: 26px !important; }
.footer-meta                    { font-size: 20px !important; line-height: 1.9 !important; }
.footer-col a, .footer-col span { font-size: 20px !important; }
.footer-copy                    { font-size: 18px !important; }
.fc-title                       { font-size: 16px !important; }

/* Buttons */
.btn               { font-size: 24px !important; padding: 18px 32px !important; }
.btn-primary       { font-size: 22px !important; padding: 17px 32px !important; }
.btn-outline       { font-size: 22px !important; padding: 16px 28px !important; }
.btn-teal          { font-size: 20px !important; padding: 15px 26px !important; }
.btn-white-outline { font-size: 20px !important; padding: 14px 24px !important; }
.plan-btn-soft, .plan-btn-primary, .plan-btn-dark { font-size: 22px !important; }

/* Card + section padding */
.svc-card    { padding: 38px 32px !important; }
.hub-card    { padding: 34px 28px !important; }
.step        { padding: 30px 26px !important; }
.cta-box     { padding: 48px 40px !important; }
.form-card   { padding: 34px !important; }
.case-card   { padding: 28px !important; }
.review-card { padding: 28px !important; }
.plan        { padding: 36px 30px !important; }
.govt-card   { padding: 26px 28px !important; }
.section          { padding: 104px 0 !important; }
.section-tint     { padding: 104px 0 !important; }
.section-dark     { padding: 104px 0 !important; }
.section-contact  { padding: 104px 0 !important; }
.section-govt     { padding: 104px 0 !important; }
.section-ads      { padding: 90px 0 !important; }

/* ================================================================
   TYPOGRAPHY MOBILE OVERRIDES
   ================================================================ */
@media (max-width: 1100px) {
  .nav > a, .nav-ddtrigger { font-size: 22px !important; }
  .btn-nav { font-size: 20px !important; }
}
@media (max-width: 920px) {
  body            { font-size: 18px !important; }
  .section-title  { font-size: 36px !important; }
  .section-sub    { font-size: 22px !important; }
  .page-hero-desc { font-size: 22px !important; }
  .svc-title      { font-size: 26px !important; }
  .svc-desc       { font-size: 20px !important; }
  .hub-card-title { font-size: 26px !important; }
  .hub-card-desc  { font-size: 20px !important; }
  .cta-box-title  { font-size: 30px !important; }
  .faq-q          { font-size: 22px !important; }
  .faq-a p        { font-size: 20px !important; }
  .aeo-lead       { font-size: 22px !important; }
  .hero-desc      { font-size: 22px !important; }
  .section          { padding: 80px 0 !important; }
  .section-tint, .section-dark, .section-contact, .section-govt, .section-ads { padding: 80px 0 !important; }
  .svc-card  { padding: 28px 22px !important; }
  .hub-card  { padding: 26px 20px !important; }
  .cta-box   { padding: 34px 24px !important; }
}
@media (max-width: 560px) {
  body            { font-size: 17px !important; }
  .section-title  { font-size: 28px !important; }
  .svc-title      { font-size: 24px !important; }
  .hub-card-title { font-size: 24px !important; }
  .cta-box-title  { font-size: 26px !important; }
  .faq-q          { font-size: 21px !important; padding: 18px 20px !important; }
  .faq-a p        { font-size: 19px !important; padding: 0 20px 18px !important; }
  .btn         { font-size: 20px !important; padding: 16px 24px !important; }
  .btn-primary { font-size: 19px !important; padding: 15px 22px !important; }
  .section     { padding: 62px 0 !important; }
  .section-tint, .section-dark, .section-contact, .section-govt, .section-ads { padding: 62px 0 !important; }
}

/* ============ GLOBAL MOBILE SAFETY NET ============ */
@media (max-width: 768px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; }
  h1, h2, h3, h4, h5, h6, p, span, li, a, button, label, div {
    word-break: keep-all; overflow-wrap: break-word;
  }
  img, video, svg, canvas { max-width: 100%; height: auto; }
  [style*="min-width"] { min-width: 0 !important; }
  .grid-3, .grid-4, .hub-grid,
  .prob-grid, .cat-grid, .article-grid, .connect-grid,
  .industry-grid, .industry5-grid, .sit-grid,
  .success-grid, .review-ph-grid, .outcome-grid,
  .ba-compare-grid, .results-grid, .related-grid,
  .reason-grid, .help8-grid, .diag-grid, .diag8-grid,
  .wc-diag-grid, .q-grid, .wc-outcome-grid,
  .checklist-grid, .checklist-grid-3, .precon-grid,
  .prep-grid, .worry-grid, .consult-grid,
  .quick-cards-grid, .proc-timeline, .focus-grid,
  .def-grid, .ai-needs-grid, .aeo-compare {
    grid-template-columns: 1fr !important; width: 100% !important;
  }
  .aeo-grid, .detail-grid, .govt-grid, .ads-inner,
  .why-grid, .ads-why-grid, .aeo-about-grid,
  .sme-grid, .return-grid, .wc-approach-grid,
  .edu-grid, .update-notice,
  .form-section-grid, .contact-page-grid,
  .wc-why-grid, .about-what, .ceo-grid,
  .cases-why-text, [style*="grid-template-columns:1.1fr"] {
    grid-template-columns: 1fr !important; gap: 32px !important;
  }
  .form-row-2, .form-grid-2 { grid-template-columns: 1fr !important; }
  .hero-inner  { grid-template-columns: 1fr !important; }
  .stats-grid  { grid-template-columns: 1fr 1fr !important; }
  .mc-timeline, .ads-timeline, .proc-timeline { grid-template-columns: 1fr !important; }
  .mc-timeline::before, .ads-timeline::before, .proc-timeline::before { display: none !important; }
  table { display: block; overflow-x: auto; width: 100%; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav > a, .nav-ddtrigger { font-size: 21px; }
  .nav { gap: 18px; }
  .btn-nav { font-size: 20px; padding: 9px 15px; }
}
@media (max-width: 920px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-title { font-size: 38px; }
  .hero-desc { font-size: 16px; }
  .hero-card-wrap { max-width: 460px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .stat:nth-child(2) { border-right: none; }
  .grid-3, .grid-4, .price-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .aeo-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 38px; }
  .detail-grid { grid-template-columns: 1fr; gap: 38px; }
  .detail-sticky { position: static; }
  .govt-grid { grid-template-columns: 1fr; gap: 40px; }
  .ads-inner { grid-template-columns: 1fr; gap: 32px; }
  .aux-row { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .section { padding: 70px 0; }
  .results-grid { grid-template-columns: 1fr; gap: 11px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
  .page-hero-desc { font-size: 15px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 15px; }
  .float-stat { right: 8px; bottom: -16px; }
  .section-title { font-size: 24px; }
  .hero-trust { gap: 9px; font-size: 12px; }
  .hero-trust .sep { display: none; }
  .hub-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 24px; }
  .page-hero { padding: 48px 0 44px; }
  .cta-box { padding: 26px 18px; }
  .cta-box-title { font-size: 19px; }
  .brand-sub { display: none; }
  .contact-form-card { padding: 22px 16px; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-primary, .btn-outline { font-size: 14px; padding: 12px 20px; }
}


/* ================================================================
   PAGE-SPECIFIC CLASS OVERRIDES — 하위 페이지 폰트 통일 v1
   모든 하위 페이지의 <style> 블록 클래스를 홈페이지 기준으로 통일
   ================================================================ */

/* --- government-support.html --- */
.govt-vis-title    { font-size: 20px !important; }
.govt-flow-step    { font-size: 18px !important; }
.govt-vis-note     { font-size: 18px !important; line-height: 1.65 !important; }
.govt-why-text p   { font-size: 24px !important; line-height: 1.85 !important; }
.govt-chain-title  { font-size: 22px !important; }
.govt-chain-desc   { font-size: 20px !important; line-height: 1.65 !important; }
.govt-chain-arrow  { font-size: 22px !important; }
.govt-check-text   { font-size: 22px !important; }
.help8-title       { font-size: 22px !important; }
.help8-desc        { font-size: 20px !important; line-height: 1.65 !important; }
.tl5-step          { font-size: 18px !important; }
.tl5-title         { font-size: 26px !important; }
.tl5-desc          { font-size: 22px !important; line-height: 1.68 !important; }
.sit-title         { font-size: 24px !important; }
.sit-tag           { font-size: 16px !important; }
.sit-desc          { font-size: 20px !important; line-height: 1.68 !important; }
.return-text p     { font-size: 24px !important; line-height: 1.85 !important; }
.return-item-title { font-size: 22px !important; }
.return-item-desc  { font-size: 20px !important; line-height: 1.55 !important; }
.precon-text       { font-size: 22px !important; }
.reason-title      { font-size: 24px !important; }
.reason-desc       { font-size: 20px !important; line-height: 1.68 !important; }

/* --- marketing-consulting.html --- */
.hero-diag-title   { font-size: 20px !important; }
.diag-label        { font-size: 20px !important; }
.diag-status       { font-size: 16px !important; }
.why-text p        { font-size: 24px !important; line-height: 1.85 !important; }
.why-card-badge    { font-size: 16px !important; }
.why-card-text     { font-size: 22px !important; line-height: 1.6 !important; }
.check-text        { font-size: 22px !important; }
.diag-card-title   { font-size: 24px !important; }
.diag-card-desc    { font-size: 20px !important; line-height: 1.7 !important; }
.mc-tl-step        { font-size: 18px !important; }
.mc-tl-title       { font-size: 24px !important; }
.mc-tl-desc        { font-size: 20px !important; line-height: 1.65 !important; }
.outcome-text      { font-size: 22px !important; }

/* --- aeo-geo.html --- */
.chat-head         { font-size: 20px !important; }
.chat-bubble       { font-size: 20px !important; line-height: 1.6 !important; }
.aeo-why-text p    { font-size: 24px !important; line-height: 1.85 !important; }
.shift-label       { font-size: 16px !important; }
.shift-text        { font-size: 22px !important; line-height: 1.65 !important; }
.ai-q-item         { font-size: 20px !important; }
.def-full          { font-size: 22px !important; }
.def-desc          { font-size: 22px !important; line-height: 1.75 !important; }
.def-quote         { font-size: 22px !important; }
.def-plain-label   { font-size: 18px !important; }
.ai-need-title     { font-size: 24px !important; }
.ai-need-desc      { font-size: 20px !important; line-height: 1.68 !important; }
.diag8-title       { font-size: 22px !important; }
.diag8-desc        { font-size: 20px !important; line-height: 1.65 !important; }
.sme-text p        { font-size: 24px !important; line-height: 1.85 !important; }
.sme-who-text      { font-size: 22px !important; }
.industry5-name    { font-size: 24px !important; }
.industry5-desc    { font-size: 20px !important; line-height: 1.68 !important; }
.outcome7-text     { font-size: 22px !important; }
.caution-note      { font-size: 20px !important; line-height: 1.65 !important; }

/* --- ads.html --- */
.ads-why-text p     { font-size: 24px !important; line-height: 1.85 !important; }
.ads-compare-label  { font-size: 16px !important; }
.ads-compare-text   { font-size: 22px !important; }
.ad-card-title      { font-size: 24px !important; }
.ad-card-desc       { font-size: 20px !important; line-height: 1.68 !important; }
.ad-tag             { font-size: 16px !important; }
.ad-link            { font-size: 18px !important; }
.industry-name      { font-size: 24px !important; }
.industry-combo-tag { font-size: 16px !important; }
.industry-desc      { font-size: 20px !important; line-height: 1.65 !important; }
.criteria-title     { font-size: 24px !important; }
.criteria-desc      { font-size: 20px !important; line-height: 1.68 !important; }
.ads-tl-step        { font-size: 18px !important; }
.ads-tl-title       { font-size: 24px !important; }
.ads-tl-desc        { font-size: 20px !important; line-height: 1.65 !important; }
.precheck-text      { font-size: 22px !important; }

/* --- website-consulting.html --- */
.wc-why-text p      { font-size: 24px !important; line-height: 1.85 !important; }
.site-flow-title    { font-size: 22px !important; }
.site-flow-desc     { font-size: 20px !important; line-height: 1.5 !important; }
.wc-check-text      { font-size: 22px !important; }
.wc-diag-title      { font-size: 22px !important; }
.wc-diag-desc       { font-size: 20px !important; line-height: 1.65 !important; }
.q-title            { font-size: 24px !important; }
.q-desc             { font-size: 20px !important; line-height: 1.68 !important; }
.wc-approach-text p { font-size: 24px !important; line-height: 1.85 !important; }
.wc-ap-title        { font-size: 22px !important; }
.wc-ap-desc         { font-size: 20px !important; line-height: 1.55 !important; }
.wc-caution         { font-size: 20px !important; line-height: 1.65 !important; }
.wc-outcome-text    { font-size: 22px !important; }
.diag-result-item   { font-size: 18px !important; }
.mockup-hero-title  { font-size: 18px !important; }
.mockup-hero-sub    { font-size: 16px !important; }

/* --- about.html page-specific --- */
.ceo-quote         { font-size: 22px !important; line-height: 1.8 !important; }
.ceo-name          { font-size: 20px !important; }
.value-title       { font-size: 22px !important; }
.value-desc        { font-size: 20px !important; line-height: 1.65 !important; }
.about-lead        { font-size: 22px !important; line-height: 1.8 !important; }
.career-item       { font-size: 20px !important; }
.partner-name      { font-size: 20px !important; }

/* --- cases.html page-specific --- */
.case-type-title   { font-size: 22px !important; }
.case-type-desc    { font-size: 20px !important; line-height: 1.65 !important; }
.ba-item-label     { font-size: 18px !important; }
.ba-item-text      { font-size: 20px !important; }
.factor-title      { font-size: 22px !important; }
.factor-desc       { font-size: 20px !important; line-height: 1.65 !important; }

/* --- insights.html page-specific --- */
.article-tag       { font-size: 16px !important; }
.article-title     { font-size: 24px !important; }
.article-excerpt   { font-size: 20px !important; line-height: 1.65 !important; }
.article-date      { font-size: 18px !important; }
.connect-title     { font-size: 22px !important; }
.connect-desc      { font-size: 20px !important; }

/* --- contact.html page-specific --- */
.contact-notice    { font-size: 20px !important; line-height: 1.7 !important; }
