
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap;}
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap;}
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2'); font-weight: 600; font-style:normal; font-display:swap;}
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap;}
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap;}
@font-face {font-family:'Paperlogy'; src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2'); font-weight:900; font-style:normal; font-display:swap;}
:root {
  --bg: #f6f9fc;
  --bg-2: #eef5fb;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.78);
  --ink: #101828;
  --muted: #5f6f86;
  --muted-2: #8190a3;
  --line: #dce6f1;
  --primary: #0b66c3;
  --primary-2: #0353a4;
  --primary-soft: #e8f3ff;
  --accent: #12a178;
  --accent-soft: #e8faf4;
  --warning: #f59e0b;
  --warning-soft: #fff7e8;
  --danger: #e5484d;
  --danger-soft: #fff0f0;
  --navy: #102a43;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
  --shadow-soft: 0 12px 30px rgba(16, 42, 67, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family:'Paperlogy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 3%, rgba(11, 102, 195, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(18, 161, 120, 0.13), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
  font-size:16px;
  line-height:1.7;
  word-break:keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 230, 241, 0.74);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.brand-logo {
  width: 112px;
  height: auto;
  flex: 0 0 auto;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: -4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #32475d;
}

.nav a {
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  background: var(--primary-soft);
  color: var(--primary-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-open span {
  opacity: 0;
}

.mobile-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(11, 102, 195, 0.22);
}

.btn-outline {
  color: var(--primary-2);
  background: #fff;
  border-color: #bfd8ef;
}

.btn-soft {
  color: var(--primary-2);
  background: var(--primary-soft);
  border-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #cce2f5;
  border-radius: 999px;
  background: rgba(232, 243, 255, 0.78);
  color: var(--primary-2);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(18, 161, 120, 0.14);
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

.hero h1 {
  margin: 24px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero-lead {
  max-width: 700px;
  color: #43566d;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.stat-chip {
  padding: 16px;
  border: 1px solid rgba(220, 230, 241, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat-chip strong {
  display: block;
  color: var(--primary-2);
  font-size: 22px;
  line-height: 1.2;
}

.stat-chip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.dashboard-card {
  position: relative;
  border: 1px solid rgba(202, 218, 233, 0.9);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 161, 120, 0.22), transparent 66%);
  pointer-events: none;
}

.mock-window {
  position: relative;
  border: 1px solid #d6e4f0;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(20, 45, 70, 0.12);
}

.mock-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid #e4edf5;
  background: #f8fbfd;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3d2e3;
}

.mock-body {
  padding: 20px;
}

.mini-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.mini-title strong {
  color: var(--navy);
  font-size: 18px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #08715a;
  font-size: 12px;
  font-weight: 600;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: #f6f9fc;
  border: 1px solid #e4edf5;
}

.metric span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  margin-top: 3px;
}

.bar-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bar-row {
  display: grid;
  grid-template-columns: 74px 1fr 44px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef5;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.floating-card {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.floating-card strong {
  display: block;
  line-height: 1.3;
}

.floating-card span {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section.compact {
  padding: 64px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(238, 245, 251, 0.54), rgba(255,255,255,0));
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-kicker::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.section-head.center .section-kicker::after {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.section-head h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(220, 230, 241, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover::after {
  opacity: 1;
}

.card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  color: var(--primary-2);
  border: 1px solid #d6e7f6;
  font-size: 22px;
}

.icon svg,
.analysis-icon svg,
.process-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid #d6e7f6;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-2);
}

.analysis-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-2);
}

.problem-card small {
  background: var(--warning-soft);
  color: #a46004;
}

.process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-card {
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.step-no {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.process-card h3 {
  color: var(--primary-2);
  font-size: 20px;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.feature-card {
  min-height: 230px;
}

.feature-card.added {
  background:
    linear-gradient(180deg, rgba(232, 243, 255, 0.76), rgba(255,255,255,0.9));
  border-color: #c8ddf1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.flow-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.flow-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
}

.flow-panel h3 {
  position: relative;
  z-index: 1;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
}

.flow-step b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #fff;
  color: var(--primary-2);
}

.flow-step span {
  font-weight: 600;
}

.info-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.info-panel h3 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.info-panel p {
  color: var(--muted);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbfd;
}

.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.management-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.highlight-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.highlight-panel h3 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.highlight-panel p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 13px;
  margin-top: 2px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.amount-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.amount-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.amount-card strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.amount-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfd;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #d6e4f0;
  border-radius: 999px;
  background: #fff;
  color: #42566c;
  font-weight: 600;
  cursor: pointer;
}

.tab-button.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.tab-panels {
  padding: 28px;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.tab-panel.is-active {
  display: grid;
}

.tab-panel h3 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.tab-panel p {
  color: var(--muted);
}

.report-preview {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 6px #f6f9fc;
  padding: 22px;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #dce6f1;
  color: var(--muted);
  font-weight: 600;
}

.report-row:last-child {
  border-bottom: 0;
}

.report-value {
  text-align: right;
  color: var(--primary-2);
  font-weight: 600;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #40566e;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.05);
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.analysis-card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 145px;
  box-shadow: var(--shadow-soft);
}

.analysis-card strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}

.analysis-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.quote-box {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
  font-weight: 600;
}

.quote-box span {
  color: #94d6ff;
}

.report-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.builder-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.builder-panel h3 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.field {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfd;
}

.field label {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field strong {
  display: block;
  color: var(--navy);
}

.document-preview {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.document-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.document-head strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.document-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #08715a;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.document-lines {
  display: grid;
  gap: 12px;
}

.document-line {
  height: 14px;
  border-radius: 999px;
  background: #e8eef5;
}

.document-line:nth-child(1) { width: 92%; }
.document-line:nth-child(2) { width: 74%; }
.document-line:nth-child(3) { width: 86%; }
.document-line:nth-child(4) { width: 58%; }

.document-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  height: 150px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.chart-bar {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.chart-bar:nth-child(1) { height: 54%; }
.chart-bar:nth-child(2) { height: 76%; }
.chart-bar:nth-child(3) { height: 62%; }
.chart-bar:nth-child(4) { height: 88%; }
.chart-bar:nth-child(5) { height: 71%; }

.policy-cards .card {
  min-height: 210px;
}

.benefit-card {
  text-align: center;
}

.benefit-card .icon {
  margin-inline: auto;
}

.references {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.reference-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.reference-row:last-child {
  border-bottom: 0;
}

.reference-logo {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  border: 1px solid #d6e7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.06);
  text-align: center;
  padding: 10px;
}

.reference-logo svg {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  overflow: visible;
}

.reference-logo.ref-yeongyang {
  background: linear-gradient(135deg, #fff4f1, #ffffff);
  border-color: #ffd7cc;
}

.reference-logo.ref-namhae {
  background: linear-gradient(135deg, #eef8ff, #ffffff);
  border-color: #d3e8fb;
}

.reference-logo.ref-gokseong {
  background: linear-gradient(135deg, #f9f2ff, #ffffff);
  border-color: #e5d7f8;
}

.reference-info strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 3px;
}

.reference-info span {
  color: var(--muted);
  font-weight: 600;
}

.reference-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #08715a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.contact {
  padding: 76px 0;
}

.contact-box {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(148, 214, 255, 0.35), transparent 24rem),
    linear-gradient(135deg, #09233d, #0b66c3);
  color: #fff;
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  max-width: 760px;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-box p {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin-bottom: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-actions .btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 990px;
}

.contact-meta a,
.contact-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
}

.site-footer {
  padding: 36px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
  color: #40566e;
}

.top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 18px;
  display: none;
  z-index: 30;
}

.top-button.is-visible {
  display: grid;
  place-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .split,
  .report-builder {
    grid-template-columns: 1fr;
  }

  .process-wrap,
  .analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section {
    padding: 66px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-stats,
  .grid-3,
  .grid-2,
  .management-board,
  .amount-grid,
  .tab-panel,
  .contact-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .reference-row {
    grid-template-columns: 1fr;
  }

  .reference-status {
    width: fit-content;
  }

  .dashboard-card,
  .contact-box {
    border-radius: 26px;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 88px;
  }

  .header-actions .btn {
    display: none;
  }

  .site-header.is-open .nav {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 37px;
  }

  .mock-grid,
  .mini-cards,
  .process-wrap,
  .analysis-grid,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    display: grid;
  }

  .contact-box h2 {
    font-size: 40px;
  }

  .footer-inner {
    display: grid;
  }
}

@media print {
  .site-header,
  .top-button,
  .hero-actions,
  .contact-actions,
  .mobile-toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .section,
  .hero,
  .contact {
    padding: 24px 0;
  }

  .card,
  .dashboard-card,
  .references,
  .contact-box,
  .builder-panel,
  .document-preview {
    box-shadow: none;
  }
}
  
h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
}

h3 {
  font-weight: 600;
}

.section-head h2,
.contact-box h2 {
  font-size: 40px;
  font-weight: 600;
}

.card h3,
.process-card h3,
.flow-panel h3,
.info-panel h3,
.highlight-panel h3,
.tab-panel h3,
.builder-panel h3 {
  font-weight: 600;
}

@media (max-width: 640px) {
  h2,
  .section-head h2,
  .contact-box h2 {
    font-size: 40px;
  }
}

  
  
.section-head h2,
.contact-box h2 {
  font-size: 40px;
}

.section-kicker {
  font-size: 16px;
}

.section-kicker::before,
.section-head.center .section-kicker::after {
  display: none;
}

@media (max-width: 640px) {
  .section-head h2,
  .contact-box h2 {
    font-size: 32px;
  }
}

  
.nowrap-title {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nowrap-title {
    white-space: normal;
  }
}
  

/* Premium public dashboard design layer - content preserved */
:root {
  --bg: #f5f8fb;
  --bg-2: #eef4f9;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.86);
  --ink: #0d1b2a;
  --muted: #4d5d6d;
  --muted-2: #7c8b9b;
  --line: #d9e4ee;
  --primary: #0b66c3;
  --primary-2: #074f9d;
  --primary-soft: #eaf4ff;
  --accent: #0f9f7a;
  --accent-soft: #e8f8f2;
  --warning: #c9820f;
  --warning-soft: #fff7e8;
  --danger: #d9444b;
  --danger-soft: #fff1f1;
  --navy: #102a43;
  --shadow: 0 18px 48px rgba(15, 42, 72, 0.10);
  --shadow-soft: 0 10px 26px rgba(15, 42, 72, 0.07);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
}

body {
  background:
    radial-gradient(circle at 14% 4%, rgba(11, 102, 195, 0.10), transparent 25rem),
    radial-gradient(circle at 90% 7%, rgba(15, 159, 122, 0.09), transparent 23rem),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 42%, #ffffff 100%);
  color: var(--ink);
  letter-spacing: 0;
}

.container { width: min(100% - 44px, var(--container)); }

.site-header {
  border-bottom-color: rgba(217, 228, 238, 0.86);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(16, 42, 67, 0.02);
}

.header-inner { min-height: 78px; }
.brand { gap: 13px; font-weight: 700; }
.brand-logo { width: 108px; filter: drop-shadow(0 7px 16px rgba(15, 42, 72, 0.08)); }
.brand small { color: #6d7f91; }
.nav { gap: 4px; color: #34495f; font-size: 14px; }
.nav a { padding: 9px 11px; }
.nav a:hover,
.nav a.active { background: var(--primary-soft); color: var(--primary-2); }

.btn { min-height: 44px; border-radius: 999px; font-weight: 700; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 14px 28px rgba(11, 102, 195, 0.20); }
.btn-outline { border-color: #bfd5ea; box-shadow: 0 8px 18px rgba(15, 42, 72, 0.04); }
.btn-soft { background: var(--primary-soft); color: var(--primary-2); }

.hero { padding: 82px 0 58px; }
.hero-grid { gap: 48px; }
.eyebrow {
  min-height: 34px;
  padding: 0 13px;
  border-color: #c8def3;
  background: rgba(234, 244, 255, 0.84);
  font-weight: 700;
}
.eyebrow::before { width: 7px; height: 7px; background: var(--accent); box-shadow: 0 0 0 5px rgba(15, 159, 122, 0.13); }
.hero h1 { color: var(--navy); line-height: 1.06; letter-spacing: 0; }
.hero h1 em { color: var(--primary); }
.hero-lead { color: #394f66; font-weight: 700; }
.hero-copy { color: var(--muted); }

.stat-chip,
.card,
.process-card,
.info-panel,
.amount-card,
.tabs,
.analysis-card,
.builder-panel,
.document-preview,
.references,
.mini-card {
  border-color: rgba(217, 228, 238, 0.96);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.stat-chip { padding: 17px; }
.stat-chip strong { color: var(--primary-2); }
.stat-chip span { color: var(--muted); font-weight: 700; }

.dashboard-card {
  border-color: #cad9e7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  padding: 18px;
}
.dashboard-card::before { opacity: 0.65; }
.mock-window { border-color: #d7e4ef; border-radius: 16px; box-shadow: 0 16px 36px rgba(15, 42, 72, 0.10); }
.mock-top { height: 52px; background: #f8fbfd; border-bottom-color: #e4edf4; }
.dot { width: 8px; height: 8px; background: #b9c9d9; }
.mock-body { padding: 18px; }
.metric { border-color: #e1eaf2; border-radius: 12px; background: #f8fbfd; }
.metric strong { color: var(--navy); }
.bar-track { background: #e8eef4; }
.bar-fill { background: linear-gradient(90deg, var(--primary), var(--accent)); }
.floating-card { border-radius: 12px; background: var(--navy); }

.section { padding: 84px 0; }
.section.alt { background: linear-gradient(180deg, rgba(245, 248, 251, 0.86), rgba(255, 255, 255, 0)); }
.section-head { margin-bottom: 34px; }
.section-kicker { color: var(--primary-2); font-weight: 800; }
.section-head h2 { color: var(--navy); line-height: 1.17; }
.section-head p { color: var(--muted); }

.card { padding: 24px; }
.card::after { height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.card small { background: var(--accent-soft); color: #08715a; font-weight: 800; }
.card h3 { color: var(--navy); line-height: 1.34; }
.card p { color: var(--muted); }
.feature-card.added { background: linear-gradient(180deg, #ffffff, #f7fbff); border-color: #bad5ec; }

.icon,
.process-icon,
.analysis-icon,
.reference-logo {
  border-radius: 12px;
  background: var(--primary-soft);
  border-color: #d2e3f2;
  color: var(--primary-2);
  box-shadow: 0 8px 18px rgba(15, 42, 72, 0.05);
}
.icon svg,
.analysis-icon svg,
.process-icon svg { stroke-width: 2; }

.process-wrap { gap: 12px; }
.process-card { min-height: 184px; padding: 22px; }
.step-no { background: var(--navy); font-weight: 800; }
.process-card h3 { color: var(--primary-2); }

.flow-panel,
.highlight-panel,
.quote-box {
  border-radius: 18px;
  background: linear-gradient(135deg, #102a43, #0b4f92);
  box-shadow: var(--shadow);
}
.flow-panel::after { opacity: 0.7; }
.flow-step { border-radius: 12px; }
.flow-step b { border-radius: 10px; }

.amount-card strong,
.reference-info strong,
.document-head strong { color: var(--navy); }
.tabs { border-radius: 18px; }
.tab-buttons { background: #f8fbfd; }
.tab-button { border-radius: 999px; font-weight: 700; }
.tab-button.is-active { background: var(--primary); border-color: var(--primary); }
.report-preview { border-radius: 14px; box-shadow: inset 0 0 0 5px #f6f9fc; }
.tag { border-radius: 999px; box-shadow: 0 8px 18px rgba(15, 42, 72, 0.05); }
.document-chart .chart-bar,
.chart-bar { background: linear-gradient(180deg, var(--primary), var(--accent)); }

.reference-row { padding: 24px 28px; }
.reference-logo { border-radius: 16px; }
.reference-status,
.status-badge,
.document-head span { background: var(--accent-soft); color: #08715a; font-weight: 800; }

.contact-box {
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(9, 35, 61, 0.97), rgba(11, 102, 195, 0.96));
  box-shadow: var(--shadow);
}
.contact-meta a,
.contact-meta div { border-radius: 14px; }

.top-button { background: var(--navy); box-shadow: var(--shadow); }

@media (max-width: 860px) {
  .container { width: min(100% - 32px, var(--container)); }
  .dashboard-card,
  .contact-box { border-radius: 18px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero h1 { font-size: 37px; }
  .section-head h2,
  .contact-box h2 { font-size: 32px; }
}




/* Workflow and core feature icon adjustment */
#process .process-icon {
  display: none !important;
}

#process .process-card {
  min-height: 170px;
  padding-top: 22px;
}

#process .step-no {
  margin-bottom: 18px;
}

#features .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--primary-soft);
  border: 1px solid #d6e7f6;
  color: var(--primary-2);
  box-shadow: none;
}

#features .icon svg {
  width: 23px;
  height: 23px;
}

#features .feature-card.added .icon {
  background: #fff7e8;
  border-color: #f2d8a8;
  color: #9b6208;
}


/* Typography and hover strip cleanup */
h1,
h2,
.hero h1,
.section-head h2,
.contact-box h2 {
  line-height: 1.3 !important;
}

.card::after,
.card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

.hero h1 em {
  display: inline;
}


/* Hover effect without gradient strip */
.card::after,
.card:hover::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  height: 0 !important;
}

.card:hover,
.process-card:hover,
.analysis-card:hover,
.amount-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
  border-color: #bdd7ef;
  box-shadow: 0 16px 34px rgba(15, 42, 72, 0.10);
}

.card,
.process-card,
.analysis-card,
.amount-card,
.mini-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}



/* Dark panel contrast restoration */
.flow-panel,
.highlight-panel,
.quote-box,
.contact-box,
.floating-card {
  color: #ffffff !important;
}

.flow-panel h2,
.flow-panel h3,
.flow-panel h4,
.flow-panel strong,
.flow-panel b,
.highlight-panel h2,
.highlight-panel h3,
.highlight-panel h4,
.highlight-panel strong,
.highlight-panel b,
.quote-box,
.quote-box strong,
.contact-box h2,
.contact-box h3,
.contact-box h4,
.contact-box strong,
.contact-box b,
.floating-card strong {
  color: #ffffff !important;
}

.flow-panel p,
.flow-panel span,
.flow-panel li,
.highlight-panel p,
.highlight-panel span,
.highlight-panel li,
.contact-box p,
.contact-box span,
.contact-box li,
.floating-card span {
  color: rgba(255, 255, 255, 0.82) !important;
}

.flow-step span,
.check-list li {
  color: rgba(255, 255, 255, 0.94) !important;
}

.flow-step b,
.highlight-panel .check-list li::before {
  color: var(--primary-2) !important;
  background: #ffffff !important;
}

.quote-box span {
  color: #94d6ff !important;
}

.contact-actions .btn-primary {
  color: #ffffff !important;
}

.contact-actions .btn-outline,
.contact-meta a,
.contact-meta div {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}


/* Minimal text badges */
.step-no,
.card small {
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  letter-spacing: 0 !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.step-no {
  display: inline-block !important;
  margin-bottom: 18px !important;
  color: #0b66c3 !important;
  font-size: 13px !important;
}

.card small {
  color: #0b66c3 !important;
  font-size: 13px !important;
  margin-bottom: 13px !important;
}

.problem-card small,
.feature-card.added small,
#follow-up-management .card small {
  color: #08715a !important;
}

.feature-card.added small {
  color: #9b6208 !important;
}


/* Badge tone refinement */
.step-no,
.card small,
.problem-card small,
.feature-card.added small,
#follow-up-management .card small {
  color: #98a2ad !important;
}

.reference-status,
.status-badge,
.document-head span {
  background: #eaf4ff !important;
  color: #0b66c3 !important;
  border: 1px solid #cfe6ff !important;
}


/* Statistics report tab font */
#statistics-report .tab-button,
#statistics-report .tab-buttons button {
  font-family: 'Paperlogy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 700;
  letter-spacing: 0;
}


/* List bullet dot alignment */
ul li::before,
.feature-list li::before {
  width: 6px !important;
  height: 6px !important;
  top: 0.85em !important;
  transform: translateY(-50%) !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
}

.check-list li::before {
  width: 22px !important;
  height: 22px !important;
  top: auto !important;
  transform: none !important;
}


/* List bullet indent tightening */
.feature-list li {
  padding-left: 14px !important;
}

.feature-list li::before {
  left: 0 !important;
}


/* Modern clean card system */
:root {
  --modern-line: #dfe9f2;
  --modern-line-strong: #cdddeb;
  --modern-bg: #f7fafc;
  --modern-card: #ffffff;
  --modern-text: #13283d;
  --modern-muted: #64758a;
  --modern-blue: #0b66c3;
  --modern-blue-soft: #eef7ff;
  --modern-shadow: 0 10px 24px rgba(16, 42, 67, 0.055);
  --modern-shadow-hover: 0 14px 30px rgba(16, 42, 67, 0.09);
}

.card,
.process-card,
.analysis-card,
.amount-card,
.mini-card,
.stat-chip {
  box-shadow: var(--modern-shadow);
  border-color: var(--modern-line);
}

.card:hover,
.process-card:hover,
.analysis-card:hover,
.amount-card:hover,
.mini-card:hover,
.stat-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--modern-shadow-hover);
  border-color: var(--modern-line-strong);
}

#problem .grid-3 {
  gap: 0;
  border-top: 1px solid var(--modern-line);
  border-bottom: 1px solid var(--modern-line);
}

#problem .problem-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 28px 28px 28px 0;
}

#problem .problem-card + .problem-card {
  padding-left: 28px;
  border-left: 1px solid var(--modern-line);
}

#problem .problem-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--modern-line);
}

#process .process-wrap {
  gap: 14px;
}

#process .process-card {
  min-height: 166px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  border-color: #dfe9f2;
}

#process .process-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.075);
}

#features .feature-card {
  border-radius: 18px;
  min-height: 238px;
  background: #ffffff;
  border-color: #d9e6f1;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.07);
}

#features .feature-card:nth-child(1),
#features .feature-card:nth-child(6) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #c8deef;
}

#features .feature-card.added {
  background: #fffdf8;
  border-color: #eadcc0;
  box-shadow: 0 10px 24px rgba(91, 61, 18, 0.055);
}

#follow-up-management .grid-4 {
  gap: 12px;
}

#follow-up-management .card {
  min-height: 176px;
  border-radius: 16px;
  box-shadow: none;
  background: #ffffff;
}

#deposit-management .amount-card {
  border-radius: 16px;
  box-shadow: none;
  background: #ffffff;
}

#statistics-report .tabs,
#statistics-report .report-preview {
  border-radius: 18px;
  box-shadow: var(--modern-shadow);
}

#consumption-analysis .analysis-grid {
  gap: 12px;
}

#consumption-analysis .analysis-card {
  min-height: 132px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: none;
  background: #ffffff;
}

#consumption-analysis .analysis-card:hover {
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.07);
}

#policy-data .grid-4 {
  gap: 16px;
}

#policy-data .card {
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--modern-line);
  box-shadow: none;
  background: transparent;
  padding: 24px 4px 0;
}

#policy-data .card:hover {
  transform: none;
  box-shadow: none;
  border-top-color: #a8cbe8;
}

#benefits .grid-5 {
  gap: 14px;
}

#benefits .benefit-card {
  border-radius: 16px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}

#benefits .benefit-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.065);
}

#help .card {
  border-radius: 16px;
  box-shadow: none;
  background: #ffffff;
}

#help .card .icon,
#benefits .benefit-card .icon,
#consumption-analysis .analysis-icon {
  box-shadow: none;
}

.card::after,
.card:hover::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 860px) {
  #problem .grid-3 {
    border: 0;
    gap: 12px;
  }

  #problem .problem-card,
  #problem .problem-card + .problem-card,
  #policy-data .card {
    border: 1px solid var(--modern-line);
    border-radius: 16px;
    background: #ffffff;
    padding: 22px;
  }
}


/* Label weight and policy card refinement */
.step-no,
.card small,
.problem-card small,
.feature-card.added small,
#follow-up-management .card small {
  color: #98a2ad !important;
  font-weight: 500 !important;
}

#policy-data .policy-cards {
  gap: 16px;
}

#policy-data .policy-cards .card {
  position: relative;
  min-height: 210px;
  padding: 26px 24px 24px;
  border: 1px solid #dfe9f2;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  overflow: hidden;
}

#policy-data .policy-cards .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 999px;
  background: #c9d7e4;
}

#policy-data .policy-cards .card:hover {
  transform: translateY(-2px);
  border-color: #cbddeb;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.06);
}

#policy-data .policy-cards .card h3 {
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 12px;
}

#policy-data .policy-cards .card p {
  color: #5f7186;
  line-height: 1.75;
}

@media (max-width: 860px) {
  #policy-data .policy-cards .card {
    min-height: auto;
    padding: 22px 22px 22px 24px;
  }

  #policy-data .policy-cards .card::before {
    top: 22px;
    bottom: 22px;
  }
}


/* Apply policy option 06 clean numbered list */
#policy-data .policy-cards {
  display: block !important;
  counter-reset: policyItem;
  margin-top: 30px;
  border-top: 1px solid #dfe9f2;
}

#policy-data .policy-cards .card {
  counter-increment: policyItem;
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 0 !important;
  padding: 22px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #dfe9f2 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

#policy-data .policy-cards .card::before {
  content: counter(policyItem, decimal-leading-zero) !important;
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: #98a2ad !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  border-radius: 0 !important;
  transform: none !important;
}

#policy-data .policy-cards .card:hover {
  transform: none !important;
  border-color: #dfe9f2 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#policy-data .policy-cards .card h3 {
  margin: 0 0 6px !important;
  color: var(--navy) !important;
  font-size: 20px;
  line-height: 1.35;
}

#policy-data .policy-cards .card p {
  margin: 0 !important;
  color: #5f7186 !important;
  line-height: 1.75;
}

@media (max-width: 640px) {
  #policy-data .policy-cards .card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* Fix policy option 06 grid placement */
#policy-data .policy-cards .card::before {
  grid-column: 1;
  grid-row: 1 / span 2;
}

#policy-data .policy-cards .card h3,
#policy-data .policy-cards .card p {
  grid-column: 2;
}

#policy-data .policy-cards .card h3 {
  grid-row: 1;
}

#policy-data .policy-cards .card p {
  grid-row: 2;
  max-width: 680px;
}

@media (max-width: 640px) {
  #policy-data .policy-cards .card::before,
  #policy-data .policy-cards .card h3,
  #policy-data .policy-cards .card p {
    grid-column: 1;
    grid-row: auto;
  }
}


/* Apply policy option news-style split list */
#policy-data .container {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

#policy-data .section-head {
  position: sticky;
  top: 108px;
  margin-bottom: 0;
  max-width: 330px;
}

#policy-data .section-head h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.25 !important;
  margin-bottom: 16px;
}

#policy-data .section-head p {
  font-size: 15px;
  line-height: 1.75;
}

#policy-data .policy-cards {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
  border: 0;
  counter-reset: policyItem;
}

#policy-data .policy-cards .card {
  counter-increment: policyItem;
  display: grid !important;
  grid-template-columns: 54px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 92px !important;
  padding: 22px 26px !important;
  border: 1px solid #e2ebf3 !important;
  border-radius: 18px !important;
  background: #f3f6f9 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

#policy-data .policy-cards .card::before {
  content: counter(policyItem, decimal-leading-zero) !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  border: 1px solid #d7e6f4 !important;
  color: #0b66c3 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transform: none !important;
}

#policy-data .policy-cards .card h3 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: 19px;
  line-height: 1.38;
}

#policy-data .policy-cards .card p {
  grid-column: 3 !important;
  grid-row: 1 !important;
  max-width: none !important;
  margin: 0 !important;
  color: #607388 !important;
  font-size: 15px;
  line-height: 1.65;
}

#policy-data .policy-cards .card:hover {
  transform: translateY(-2px) !important;
  background: #ffffff !important;
  border-color: #cbddeb !important;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.07) !important;
}

@media (max-width: 1080px) {
  #policy-data .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #policy-data .section-head {
    position: static;
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  #policy-data .policy-cards .card {
    grid-template-columns: 42px 1fr;
    gap: 12px 16px;
    padding: 20px !important;
  }

  #policy-data .policy-cards .card::before {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  #policy-data .policy-cards .card h3,
  #policy-data .policy-cards .card p {
    grid-column: 2 !important;
    grid-row: auto !important;
  }
}


/* Restore card sections and hero title size */
.hero h1 {
  font-size: 53px !important;
  line-height: 1.3 !important;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(34px, 9.8vw, 42px) !important;
    line-height: 1.2 !important;
  }
}

#problem .grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  border: 0 !important;
}

#problem .problem-card {
  min-height: 100% !important;
  padding: 24px !important;
  border: 1px solid rgba(217, 228, 238, 0.96) !important;
  border-radius: var(--radius-lg) !important;
  background: #ffffff !important;
  box-shadow: var(--shadow-soft) !important;
}

#problem .problem-card + .problem-card {
  padding-left: 24px !important;
  border-left: 1px solid rgba(217, 228, 238, 0.96) !important;
}

#problem .problem-card:hover {
  transform: translateY(-2px) !important;
  border-color: #bdd7ef !important;
  box-shadow: 0 16px 34px rgba(15, 42, 72, 0.10) !important;
}

#policy-data .container {
  display: block !important;
}

#policy-data .section-head {
  position: static !important;
  top: auto !important;
  max-width: 780px !important;
  margin-bottom: 34px !important;
}

#policy-data .policy-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 0 !important;
  border: 0 !important;
  counter-reset: none !important;
}

#policy-data .policy-cards .card {
  display: block !important;
  min-height: 210px !important;
  padding: 24px !important;
  border: 1px solid rgba(217, 228, 238, 0.96) !important;
  border-radius: var(--radius-lg) !important;
  background: #ffffff !important;
  box-shadow: var(--shadow-soft) !important;
  overflow: hidden !important;
}

#policy-data .policy-cards .card::before {
  content: none !important;
  display: none !important;
}

#policy-data .policy-cards .card h3,
#policy-data .policy-cards .card p {
  grid-column: auto !important;
  grid-row: auto !important;
  max-width: none !important;
}

#policy-data .policy-cards .card h3 {
  margin: 0 0 10px !important;
  color: var(--navy) !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
}

#policy-data .policy-cards .card p {
  margin: 0 !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
}

#policy-data .policy-cards .card:hover {
  transform: translateY(-2px) !important;
  border-color: #bdd7ef !important;
  background: #ffffff !important;
  box-shadow: 0 16px 34px rgba(15, 42, 72, 0.10) !important;
}

@media (max-width: 1100px) {
  #policy-data .policy-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  #problem .grid-3,
  #policy-data .policy-cards {
    grid-template-columns: 1fr !important;
  }

  #problem .problem-card,
  #problem .problem-card + .problem-card,
  #policy-data .policy-cards .card {
    padding: 22px !important;
  }
}

/* Card surface whiteout */
.card,
.dashboard-card,
.process-card,
.feature-card,
.feature-card.added,
.amount-card,
.analysis-card,
.mini-card,
.benefit-card,
#problem .problem-card,
#policy-data .policy-cards .card,
#features .feature-card:nth-child(1),
#features .feature-card:nth-child(6),
#process .process-card,
#follow-up-management .card,
#deposit-management .amount-card,
#consumption-analysis .analysis-card,
#benefits .benefit-card,
#help .card {
  background: #ffffff !important;
  background-image: none !important;
}

.card:hover,
.dashboard-card:hover,
.process-card:hover,
.feature-card:hover,
.feature-card.added:hover,
.amount-card:hover,
.analysis-card:hover,
.mini-card:hover,
.benefit-card:hover,
#problem .problem-card:hover,
#policy-data .policy-cards .card:hover {
  background: #ffffff !important;
  background-image: none !important;
}

/* Final h2 size adjustment */
h2,
.section-head h2,
.contact-box h2 {
  font-size: 37px !important;
  line-height: 1.3 !important;
}

@media (max-width: 760px) {
  h2,
  .section-head h2,
  .contact-box h2 {
    font-size: clamp(28px, 8vw, 34px) !important;
  }
}

/* 2.html section text alignment */
#deposit-management .section-head,
#deposit-management .amount-card,
#deposit-management .amount-card span,
#deposit-management .amount-card strong,
#deposit-management .amount-card p {
  text-align: center !important;
}

#deposit-management .section-head {
  margin-left: auto !important;
  margin-right: auto !important;
}

#help .section-head,
#help .section-head h2,
#help .section-head p,
#help .card,
#help .card h3,
#help .card p {
  text-align: center !important;
}

#help .section-head {
  margin-left: auto !important;
  margin-right: auto !important;
}

#help .card .icon {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* 2.html quote center alignment */
#deposit-management .quote-box,
#consumption-analysis .quote-box {
  text-align: center !important;
  justify-content: center !important;
}

#deposit-management .quote-box span,
#consumption-analysis .quote-box span {
  text-align: center !important;
}


/* 2.html report builder layout cleanup */
#report-generator .report-builder {
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

#report-generator .builder-panel,
#report-generator .document-preview {
  border-radius: 22px !important;
  border-color: #dbe8f3 !important;
  box-shadow: 0 18px 42px rgba(15, 42, 72, .07) !important;
  background: #ffffff !important;
}

#report-generator .builder-panel {
  padding: 34px 32px !important;
  display: flex;
  flex-direction: column;
}

#report-generator .builder-panel .section-kicker {
  margin-bottom: 14px !important;
  color: #0b66c3 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

#report-generator .builder-panel h3 {
  margin: 0 0 16px !important;
  color: var(--navy) !important;
  font-size: 24px !important;
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
}

#report-generator .builder-panel p {
  margin: 0 !important;
  color: #40566f !important;
  font-size: 15.5px !important;
  line-height: 1.82 !important;
  word-break: keep-all;
}

#report-generator .form-grid {
  gap: 12px !important;
  margin-top: 24px !important;
}

#report-generator .field {
  min-height: 82px;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  background: #f8fbfd !important;
  border-color: #dce8f2 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#report-generator .field label {
  margin-bottom: 8px !important;
  color: #718398 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

#report-generator .field strong {
  color: var(--navy) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  word-break: keep-all;
}

#report-generator .feature-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px !important;
  margin: 22px 0 0 !important;
  padding: 20px 0 0 !important;
  border-top: 1px solid #e4edf4;
}

#report-generator .feature-list li {
  position: relative;
  margin: 0 !important;
  padding-left: 16px !important;
  color: #40566f !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  word-break: keep-all;
}

#report-generator .feature-list li::before {
  width: 6px !important;
  height: 6px !important;
  left: 0 !important;
  top: .72em !important;
  background: #0f9f7a !important;
}

#report-generator .document-preview {
  min-height: 520px;
  padding: 34px 30px 32px !important;
  display: flex;
  flex-direction: column;
}

#report-generator .document-head {
  align-items: flex-start !important;
  gap: 18px !important;
  padding-bottom: 22px !important;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #183450 !important;
}

#report-generator .document-head strong {
  font-size: 24px !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  word-break: keep-all;
}

#report-generator .document-head span {
  min-height: 30px !important;
  padding: 0 12px !important;
  background: #eaf4ff !important;
  color: #0b66c3 !important;
  font-weight: 700 !important;
}

#report-generator .document-lines {
  display: grid !important;
  gap: 12px !important;
  margin: 0 0 26px !important;
}

#report-generator .document-line {
  height: 12px !important;
  border-radius: 999px !important;
  background: #e7eef5 !important;
}

#report-generator .document-line:nth-child(1) { width: 92% !important; }
#report-generator .document-line:nth-child(2) { width: 74% !important; }
#report-generator .document-line:nth-child(3) { width: 86% !important; }
#report-generator .document-line:nth-child(4) { width: 58% !important; }

#report-generator .document-chart {
  margin-top: auto !important;
  height: 172px !important;
  padding: 34px 0 0 !important;
  border-top: 1px solid #dbe8f3 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

#report-generator .chart-bar {
  flex: 1 1 0;
  max-width: 104px;
  border-radius: 10px 10px 0 0 !important;
  background: linear-gradient(180deg, #0b72d9 0%, #0f9f7a 100%) !important;
}

#report-generator .chart-bar:nth-child(1) { height: 48% !important; }
#report-generator .chart-bar:nth-child(2) { height: 68% !important; }
#report-generator .chart-bar:nth-child(3) { height: 56% !important; }
#report-generator .chart-bar:nth-child(4) { height: 82% !important; }
#report-generator .chart-bar:nth-child(5) { height: 62% !important; }

@media (max-width: 980px) {
  #report-generator .report-builder {
    grid-template-columns: 1fr !important;
  }

  #report-generator .document-preview {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  #report-generator .builder-panel,
  #report-generator .document-preview {
    padding: 24px !important;
  }

  #report-generator .form-grid,
  #report-generator .feature-list {
    grid-template-columns: 1fr !important;
  }
}


/* Hero title and dashboard image */
.hero-platform-title {
  margin: 0 0 42px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.dashboard-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.dashboard-visual::before {
  content: "";
  position: absolute;
  inset: 10% 6% 3%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,127,216,.16), rgba(107,163,207,.04) 55%, transparent 72%);
  filter: blur(16px);
}

.dashboard-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(41,63,89,.16));
}

@media (max-width: 1100px) {
  .hero-platform-title {
    margin-bottom: 34px;
  }

  .dashboard-visual {
    max-width: 900px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-platform-title {
    margin-bottom: 28px;
    font-size: 32px;
    text-align: left;
  }
}

  
/* Monthly report image */
.report-image-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.report-image-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Contact section center alignment */
.contact-box {
  text-align: center;
}

.contact-box h2,
.contact-box p {
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  justify-content: center;
}

.contact-meta {
  margin-left: auto;
  margin-right: auto;
}

.contact-meta a,
.contact-meta div {
  justify-content: center;
  text-align: center;
}

  
/* Coded monthly report preview */
.coded-report {
  padding: 0;
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid #dce5ee;
}

.coded-report-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 16px;
  color: #fff;
  background: #171717;
}

.coded-report-topbar strong,
.coded-report-topbar span {
  display: block;
}

.coded-report-topbar strong {
  font-size: 13px;
  font-weight: 600;
}

.coded-report-topbar span {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: 8px;
}

.coded-report-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

.coded-report-user .coded-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #b9c9ff;
  background: rgba(255,255,255,.08);
}

.coded-report-body {
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  min-height: 520px;
}

.coded-report-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 18px 12px;
  border-right: 1px solid #e3e8ef;
  background: #fff;
  color: #5f6b7a;
  font-size: 9px;
}

.coded-report-nav strong {
  margin-bottom: 3px;
  color: #26364a;
  font-size: 10px;
}

.coded-report-main {
  padding: 14px;
  min-width: 0;
}

.coded-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #e1e7ee;
  border-radius: 12px;
  background: #fff;
}

.coded-report-header strong,
.coded-report-header span {
  display: block;
}

.coded-report-header strong {
  color: #24364b;
  font-size: 12px;
}

.coded-report-header span {
  color: #8a97a8;
  font-size: 8px;
}

.coded-report-header button,
.coded-filter button {
  border: 1px solid #d8e0e8;
  border-radius: 7px;
  background: #fff;
  color: #536275;
  font-family: inherit;
  font-size: 8px;
  cursor: default;
}

.coded-report-header button {
  min-height: 26px;
  padding: 0 10px;
}

.coded-tabs {
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  margin-top: 10px;
  border: 1px solid #e2e7ed;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f8fa;
}

.coded-tabs span {
  padding: 9px 4px;
  text-align: center;
  color: #697587;
  font-size: 8px;
}

.coded-tabs .active {
  color: #24364b;
  background: #fff;
  font-weight: 600;
}

.coded-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #e2e7ed;
  border-radius: 10px;
  background: #fff;
  font-size: 8px;
}

.coded-filter label {
  color: #5e6b7c;
  font-weight: 600;
}

.coded-filter span {
  min-width: 64px;
  padding: 6px 8px;
  border: 1px solid #dbe2e9;
  border-radius: 6px;
  background: #fff;
}

.coded-filter button {
  min-height: 27px;
  padding: 0 10px;
  color: #fff;
  background: #171717;
}

.coded-filter button.light {
  color: #4f5d70;
  background: #fff;
}

.coded-metrics {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 9px;
  margin-top: 10px;
}

.coded-metrics article {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e1e7ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(39,55,75,.04);
}

.coded-metrics span,
.coded-metrics small {
  display: block;
  color: #7c8999;
  font-size: 8px;
}

.coded-metrics strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  line-height: 1;
}

.coded-report .blue {color:#4d87e6;}
.coded-report .green {color:#18ad73;}
.coded-report .purple {color:#8250e8;}
.coded-report .orange {color:#ef9300;}
.coded-report .red {color:#ee4f54;}

.coded-table-card {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  background: #fff;
}

.coded-table-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.coded-table-title strong {
  color: #2f4055;
  font-size: 10px;
}

.coded-table-title span {
  color: #8a97a8;
  font-size: 8px;
}

.coded-table {
  overflow: hidden;
  border: 1px solid #e4e9ef;
  border-radius: 8px;
}

.coded-table .row {
  display: grid;
  grid-template-columns: 58px repeat(6,minmax(0,1fr));
  align-items: center;
  min-height: 31px;
  border-bottom: 1px solid #edf0f4;
  font-size: 8px;
}

.coded-table .row:last-child {
  border-bottom: 0;
}

.coded-table .row.head {
  min-height: 34px;
  background: #f4f7fa;
  color: #59687a;
  font-weight: 600;
}

.coded-table .row > * {
  padding: 6px 7px;
  text-align: center;
}

.coded-table .row b {
  color: #2e3f54;
}

@media (max-width: 860px) {
  .coded-report-body {
    grid-template-columns: 1fr;
  }

  .coded-report-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .coded-report-main {
    padding: 10px;
  }

  .coded-metrics {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .coded-tabs {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .coded-table {
    overflow-x: auto;
  }

  .coded-table .row {
    min-width: 620px;
  }
}

  
.coded-report-topbar {
  background: #0b66c3;
  border-radius: 10px;
}

  
/* Coded report crop and horizontal scroll */
.coded-report {
  height: 430px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #b9c9da #edf2f7;
}

.coded-report::-webkit-scrollbar {
  height: 10px;
}

.coded-report::-webkit-scrollbar-track {
  background: #edf2f7;
}

.coded-report::-webkit-scrollbar-thumb {
  border: 2px solid #edf2f7;
  border-radius: 999px;
  background: #b9c9da;
}

.coded-report-topbar,
.coded-report-body {
  min-width: 920px;
}

.coded-report-body {
  min-height: 520px;
}

@media (max-width: 640px) {
  .coded-report {
    height: 400px;
  }

  .coded-report-topbar,
  .coded-report-body {
    min-width: 860px;
  }
}

  
.coded-report {
  height: 430px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b9c9da #edf2f7;
}

.coded-report::-webkit-scrollbar {
  width: 10px;
  height: 0;
}

.coded-report::-webkit-scrollbar-track {
  background: #edf2f7;
}

.coded-report::-webkit-scrollbar-thumb {
  border: 2px solid #edf2f7;
  border-radius: 999px;
  background: #b9c9da;
}

.coded-report-topbar,
.coded-report-body {
  min-width: 0;
  width: 100%;
}

@media (max-width: 640px) {
  .coded-report {
    height: 400px;
  }

  .coded-report-topbar,
  .coded-report-body {
    min-width: 0;
    width: 100%;
  }
}

  
.coded-report{height:430px;overflow-x:hidden;overflow-y:auto;padding:0;background:#f7f9fc;border:1px solid #dfe5ee;}
.coded-report-topbar{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:64px;padding:12px 16px;background:#0b66c3;border-radius:10px;color:#fff;}
.coded-brand strong,.coded-brand span,.coded-report-user b,.coded-report-user small{display:block;}
.coded-brand strong{font-size:13px;font-weight:600;}
.coded-brand span,.coded-report-user small{font-size:8px;color:rgba(255,255,255,.72);}
.coded-report-user{display:flex;align-items:center;gap:8px;font-size:9px;}
.coded-badge{padding:4px 8px;border:1px solid rgba(255,255,255,.25);border-radius:999px;}
.coded-alert{font-size:12px;}
.coded-avatar{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.18);font-weight:600;}
.coded-report-body{display:grid;grid-template-columns:130px minmax(0,1fr);min-height:760px;}
.coded-report-nav{display:flex;flex-direction:column;gap:5px;padding:12px 8px;border-right:1px solid #e4e9ef;background:#fff;}
.coded-nav-item{display:flex;align-items:center;gap:8px;padding:7px 8px;border-radius:7px;color:#4d5d70;font-size:9px;}
.coded-nav-item.active{color:#3f6dcc;background:#eef4ff;}
.coded-system-box{margin-top:auto;padding:10px;border:1px solid #e2e7ed;border-radius:9px;background:#f8fafc;font-size:8px;}
.coded-system-box strong,.coded-system-box span,.coded-system-box small{display:block;}
.coded-system-box i{display:block;height:4px;margin:6px 0;border-radius:999px;background:linear-gradient(90deg,#20b77a 16%,#e8edf3 16%);}
.coded-report-main{padding:14px;min-width:0;background:#f8fafc;}
.coded-report-header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:13px 14px;border:1px solid #e1e7ee;border-radius:11px;background:#fff;}
.coded-report-title{display:flex;align-items:center;gap:10px;}
.coded-title-icon{display:grid;place-items:center;width:30px;height:30px;border-radius:8px;background:#4d87e6;color:#fff;}
.coded-report-title strong,.coded-report-title span{display:block;}
.coded-report-title strong{font-size:11px;color:#26384d;}
.coded-report-title span{font-size:8px;color:#8b97a6;}
.coded-header-actions{display:flex;gap:7px;}
.coded-header-actions button,.coded-filter button{border:1px solid #d8e0e8;border-radius:7px;background:#fff;color:#566579;font-family:inherit;font-size:8px;}
.coded-header-actions button{min-height:28px;padding:0 10px;}
.coded-tabs{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));margin-top:10px;border:1px solid #e2e7ed;border-radius:9px;overflow:hidden;background:#f6f7f9;}
.coded-tabs span{padding:10px 5px;text-align:center;color:#667487;font-size:8px;}
.coded-tabs .active{background:#fff;color:#24364b;font-weight:600;}
.coded-filter{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:10px;padding:10px;border:1px solid #e2e7ed;border-radius:9px;background:#fff;font-size:8px;}
.coded-filter>div{display:flex;align-items:center;gap:7px;}
.coded-filter label{font-weight:600;color:#566579;}
.coded-filter span{padding:7px 9px;border:1px solid #dbe2e9;border-radius:6px;background:#fff;}
.coded-filter button{min-height:28px;padding:0 10px;background:#171717;color:#fff;}
.coded-filter button.light,.coded-filter button.excel{background:#fff;color:#4f5e72;}
.coded-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;margin-top:10px;}
.coded-metrics article{position:relative;padding:13px 42px 13px 13px;border:1px solid #e1e7ee;border-radius:10px;background:#fff;box-shadow:0 4px 10px rgba(39,55,75,.04);}
.coded-metrics span,.coded-metrics small{display:block;color:#7d8998;font-size:8px;}
.coded-metrics strong{display:block;margin-top:7px;font-size:18px;line-height:1;}
.coded-metrics em{position:absolute;right:12px;top:50%;display:grid;place-items:center;width:30px;height:30px;border-radius:9px;background:#edf4ff;color:#4d87e6;font-style:normal;transform:translateY(-50%);}
.coded-metrics article:nth-child(2) em{background:#eaf8f2;color:#18ad73;}
.coded-metrics article:nth-child(3) em{background:#f2ecff;color:#8250e8;}
.coded-metrics article:nth-child(4) em{background:#fff3df;color:#ef9300;}
.coded-report .blue{color:#4d87e6}.coded-report .green{color:#18ad73}.coded-report .purple{color:#8250e8}.coded-report .orange{color:#ef9300}.coded-report .red{color:#ee4f54}
.coded-table-card{margin-top:10px;padding:12px;border:1px solid #e0e6ed;border-radius:10px;background:#fff;}
.coded-table-title{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px;}
.coded-table-title>div{display:flex;align-items:center;gap:8px;}
.coded-table-title strong{font-size:10px;color:#2f4055;}
.coded-table-title span,.coded-table-title small{font-size:8px;color:#8a97a8;}
.coded-table{overflow:hidden;border:1px solid #e4e9ef;border-radius:8px;}
.coded-table .row{display:grid;grid-template-columns:58px repeat(6,minmax(0,1fr));align-items:center;min-height:34px;border-bottom:1px solid #edf0f4;font-size:8px;}
.coded-table .row:last-child{border-bottom:0;}
.coded-table .row.head{background:#f4f7fa;color:#59687a;font-weight:600;}
.coded-table .row>*{padding:6px 7px;text-align:center;}
.coded-daily{margin-bottom:10px;}
.coded-month{padding:6px 10px;border:1px solid #dbe2e9;border-radius:6px;background:#fff;}
.coded-empty-table{display:grid;place-items:center;height:110px;border:1px solid #e4e9ef;border-radius:8px;color:#8a97a8;font-size:9px;}
@media(max-width:860px){.coded-report-body{grid-template-columns:1fr}.coded-report-nav{display:none}}
@media(max-width:640px){.coded-report{height:400px}.coded-report-main{padding:10px}.coded-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.coded-tabs{grid-template-columns:repeat(3,minmax(0,1fr))}.coded-table{overflow-x:auto}.coded-table .row{min-width:620px}}

  
/* Reference-layout refinement */
.coded-report {
  height: 430px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  background: #f7f8fa;
  border: 1px solid #dfe5ec;
}

.coded-report-topbar {
  min-height: 56px;
  padding: 10px 14px;
  background: #0b66c3;
  border-radius: 10px;
}

.coded-report-body {
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 760px;
}

.coded-report-nav {
  padding: 8px 7px 10px;
  gap: 3px;
  background: #fff;
}

.coded-nav-item {
  min-height: 30px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 8.5px;
}

.coded-nav-item.active {
  color: #4266d5;
  background: #eef0ff;
  border: 1px solid #d8ddff;
}

.coded-report-main {
  padding: 12px;
  background: #f7f8fa;
}

.coded-report-header {
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 8px;
}

.coded-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.coded-report-title strong {
  font-size: 10.5px;
}

.coded-tabs {
  margin-top: 8px;
  border-radius: 7px;
}

.coded-tabs span {
  padding: 8px 4px;
}

.coded-filter {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 7px;
}

.coded-metrics {
  gap: 8px;
  margin-top: 8px;
}

.coded-metrics article {
  min-height: 74px;
  padding: 11px 38px 11px 11px;
  border-radius: 8px;
}

.coded-metrics strong {
  font-size: 17px;
}

.coded-metrics em {
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.coded-table-card {
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
}

.coded-table-title {
  margin-bottom: 8px;
}

.coded-table {
  border-radius: 6px;
}

.coded-table .row {
  min-height: 31px;
}

.coded-daily {
  margin-bottom: 8px;
}

.coded-empty-table {
  height: 100px;
}

@media (max-width: 860px) {
  .coded-report-body {
    grid-template-columns: 1fr;
  }

  .coded-report-nav {
    display: none;
  }
}

  
/* Clean report preview: no internal scroll, minimal decoration */
.coded-report {
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0;
  background: #fff;
  border: 1px solid #dfe5ec;
  box-shadow: none;
}

.coded-report-topbar {
  background: #0b66c3;
  border-radius: 10px;
  box-shadow: none;
}

.coded-report-body {
  min-height: 0;
}

.coded-report-main {
  background: #f8fafc;
}

.coded-report-header,
.coded-filter,
.coded-table-card,
.coded-metrics article {
  box-shadow: none;
}

.coded-report-header,
.coded-filter,
.coded-table-card,
.coded-metrics article,
.coded-tabs {
  border-color: #e2e7ed;
}

.coded-header-actions button,
.coded-filter button,
.coded-filter span,
.coded-month {
  box-shadow: none;
}

.coded-title-icon {
  display: grid;
}

.coded-report-user .coded-badge,
.coded-avatar,
.coded-title-icon,
.coded-metrics em,
.coded-nav-item > :first-child {
  flex: 0 0 auto;
}

.coded-tabs span {
  color: #667487;
}

.coded-tabs .active {
  color: #24364b;
  font-weight: 600;
}

.coded-nav-item {
  color: #536274;
}

.coded-nav-item.active {
  color: #4266d5;
}

.coded-table-title > div {
  gap: 6px;
}

.coded-report::-webkit-scrollbar {
  display: none;
}

@media (max-width: 860px) {
  .coded-report {
    height: auto;
    overflow: visible;
  }
}

  
/* Compact equal-height report preview */
.report-builder {
  align-items: stretch;
}

.builder-panel,
.coded-report {
  height: 100%;
}

.coded-report {
  min-height: 0;
  overflow: hidden;
}

.coded-report-body {
  min-height: 0;
  height: calc(100% - 56px);
}

.coded-report-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.coded-report-nav {
  min-height: 0;
}

.coded-table-card {
  margin-bottom: 0;
}

.coded-title-icon,
.coded-alert,
.coded-avatar,
.coded-metrics em {
  display: none !important;
}

.coded-report-title {
  gap: 0;
}

.coded-metrics article {
  padding-right: 12px;
}

.coded-nav-item {
  padding-left: 10px;
}

@media (min-width: 861px) {
  .report-builder {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }

  .coded-report {
    max-height: 100%;
  }
}

  
/* Equal Report Builder / report preview sizing */
.report-builder {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.builder-panel,
.coded-report {
  width: 100%;
  height: 100%;
  min-height: 560px;
  box-sizing: border-box;
}

.builder-panel {
  padding: 28px;
}

.coded-report {
  display: flex;
  flex-direction: column;
}

.coded-report-topbar {
  flex: 0 0 auto;
}

.coded-report-body {
  flex: 1 1 auto;
  height: auto;
}

@media (max-width: 1100px) {
  .report-builder {
    grid-template-columns: 1fr;
  }

  .builder-panel,
  .coded-report {
    min-height: auto;
  }
}

  
#report-generator .report-builder {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 2.04fr) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

  
@media (max-width: 860px) {
  #report-generator .report-builder {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #report-generator .builder-panel,
  #report-generator .coded-report {
    width: 100% !important;
  }
}

  
/* Brand-style hero lockup */
.hero-platform-title {
  display: none;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-brand-lockup strong {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.hero-brand-lockup span {
  position: relative;
  padding-left: 16px;
  color: #5f6f86;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.hero-brand-lockup span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  background: #ccd8e5;
  transform: translateY(-50%);
}

.hero-copy-wrap .eyebrow {
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .hero-brand-lockup {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-brand-lockup strong {
    font-size: 18px;
  }

  .hero-brand-lockup span {
    padding-left: 10px;
    font-size: 14px;
  }

  .hero-brand-lockup span::before {
    height: 18px;
  }
}

  
/* Stronger brand emphasis */
.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 14px 20px;
  border: 1px solid #cfe0f3;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: 0 12px 28px rgba(11, 102, 195, 0.10);
}

.hero-brand-lockup strong {
  color: #0b66c3;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.hero-brand-lockup span {
  position: relative;
  padding-left: 15px;
  color: #1c3553;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-brand-lockup span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 26px;
  border-radius: 999px;
  background: #8fb7e6;
  transform: translateY(-50%);
}

.hero-copy-wrap .eyebrow {
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .hero-brand-lockup {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    gap: 10px;
  }

  .hero-brand-lockup strong {
    font-size: 22px;
  }

  .hero-brand-lockup span {
    padding-left: 10px;
    font-size: 15px;
  }

  .hero-brand-lockup span::before {
    height: 20px;
  }
}

  
.site-header {
  background:#fff;
}

.brand-header-row {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  padding:8px 0 4px;
}

.brand-centered {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:#18314d;
}

.brand-centered .brand-logo {
  width:108px;
  filter:none;
}

.brand-centered strong {
  font-size:26px;
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
}

.site-nav-row {
  border-top:1px solid #edf1f5;
  border-bottom:1px solid #dfe7ef;
}

.site-nav-row .header-inner {
  min-height:56px;
}

.site-nav-row .nav {
  flex:1;
  justify-content:flex-end;
  gap:8px;
}

.site-nav-row .nav a {
  padding:9px 11px;
  border-radius:999px;
}

.header-consult-btn {
  min-height:44px;
  padding:0 22px;
  border-radius:999px;
  white-space:nowrap;
}

@media (max-width:1100px) {
  .brand-header-row {
    min-height:58px;
  }

  .brand-centered strong {
    font-size:22px;
  }

  .site-nav-row .header-inner {
    min-height:54px;
  }

  .site-header.is-open .nav {
    top:118px;
  }
}

@media (max-width:640px) {
  .brand-header-row {
    justify-content:flex-start;
    padding:10px 0 8px;
  }

  .brand-centered {
    gap:10px;
  }

  .brand-centered .brand-logo {
    width:82px;
  }

  .brand-centered strong {
    font-size:17px;
    white-space:normal;
  }

  .header-consult-btn {
    display:none;
  }

  .site-nav-row .header-inner {
    min-height:48px;
  }
}

  
.site-nav-row .header-inner {
  justify-content: center;
}

.site-nav-row .nav {
  flex: 0 1 auto;
  justify-content: center;
  margin-inline: auto;
}

.site-nav-row .header-actions {
  position: absolute;
  right: 0;
}

.site-nav-row .header-inner {
  position: relative;
}

.site-nav-row .nav .header-consult-btn {
  margin-left: 4px;
  color: #fff;
  padding: 0 22px;
}

@media (max-width: 1100px) {
  .site-nav-row .header-actions {
    position: static;
  }

  .site-nav-row .nav {
    margin-inline: 0;
  }
}

  
/* Consultation button hover fix */
.site-nav-row .nav .header-consult-btn {
  color:#fff;
  background:#0b66c3;
  border-color:#0b66c3;
  box-shadow:0 10px 22px rgba(11,102,195,.18);
}

.site-nav-row .nav .header-consult-btn:hover,
.site-nav-row .nav .header-consult-btn:focus-visible {
  color:#fff;
  background:#074f9d;
  border-color:#074f9d;
  box-shadow:0 12px 26px rgba(11,102,195,.24);
  transform:translateY(-1px);
}

/* Mobile hamburger positioning */
@media (max-width:1100px) {
  .site-nav-row .header-inner {
    min-height:54px;
    justify-content:flex-end;
  }

  .site-nav-row .header-actions {
    position:static;
    display:flex;
    align-items:center;
    margin-left:auto;
  }

  .mobile-toggle {
    display:block;
    margin-left:auto;
  }

  .site-header.is-open .nav {
    top:118px;
    left:16px;
    right:16px;
    margin:0;
    z-index:100;
  }
}

@media (max-width:640px) {
  .site-nav-row .header-inner {
    min-height:50px;
    padding-inline:0;
  }

  .mobile-toggle {
    width:40px;
    height:40px;
    margin-right:0;
  }

  .site-header.is-open .nav {
    top:108px;
  }
}

  
/* Mobile brand header: logo/title left, hamburger right */
@media (max-width:640px) {
  .site-header {
    position:sticky;
    top:0;
  }

  .brand-header-row {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-height:82px;
    padding:10px 56px 10px 0;
  }

  .brand-centered {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:6px;
    width:100%;
  }

  .brand-centered .brand-logo {
    width:84px;
  }

  .brand-centered strong {
    font-size:16px;
    line-height:1.3;
    white-space:normal;
  }

  .site-nav-row {
    position:static;
    border-top:0;
  }

  .site-nav-row .header-inner {
    position:absolute;
    top:0;
    right:14px;
    width:auto;
    min-height:82px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .site-nav-row .header-actions {
    position:static;
    margin:0;
  }

  .mobile-toggle {
    width:42px;
    height:42px;
    margin:0;
  }

  .site-header.is-open .nav {
    top:82px;
    left:14px;
    right:14px;
  }
}

  
/* Mobile menu dropdown fix */
@media (max-width:640px) {
  .site-nav-row {
    border:0;
  }

  .site-nav-row .header-inner {
    position:absolute;
    top:0;
    right:14px;
    width:auto;
    min-height:82px;
    padding:0;
  }

  .site-nav-row .nav {
    display:none;
  }

  .site-header.is-open .nav {
    position:absolute;
    top:82px;
    left:14px;
    right:14px;
    display:grid;
    grid-template-columns:1fr;
    gap:6px;
    margin:0;
    padding:14px;
    border:1px solid #dfe7ef;
    border-radius:16px;
    background:#fff;
    box-shadow:0 16px 36px rgba(16,42,67,.14);
    z-index:200;
    max-height:calc(100vh - 100px);
    overflow-y:auto;
  }

  .site-header.is-open .nav a {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    min-height:44px;
    padding:0 14px;
    border-radius:10px;
    color:#24364b;
    background:transparent;
  }

  .site-header.is-open .nav a:hover,
  .site-header.is-open .nav a.active {
    color:#0b66c3;
    background:#eef5ff;
  }

  .site-header.is-open .nav .header-consult-btn {
    justify-content:center;
    margin-top:4px;
    color:#fff;
    background:#0b66c3;
    border-color:#0b66c3;
  }

  .mobile-toggle {
    position:relative;
    z-index:210;
  }
}

  
/* 1100px 이하: 햄버거를 브랜드 타이틀 라인에 맞춤 */
@media (max-width:1100px) {
  .site-header {
    position:sticky;
    top:0;
  }

  .brand-header-row {
    position:relative;
    min-height:64px;
    padding-right:64px;
  }

  .site-nav-row {
    border-top:0;
  }

  .site-nav-row .header-inner {
    position:absolute;
    top:0;
    right:18px;
    width:auto;
    min-height:64px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .site-nav-row .header-actions {
    position:static;
    margin:0;
  }

  .mobile-toggle {
    width:42px;
    height:42px;
    margin:0;
  }

  .site-header.is-open .nav {
    top:64px;
  }
}

@media (max-width:640px) {
  .brand-header-row {
    min-height:82px;
    padding-right:56px;
  }

  .site-nav-row .header-inner {
    right:14px;
    min-height:82px;
  }

  .site-header.is-open .nav {
    top:82px;
  }
}

  
/* Tablet / mobile navigation sizing and overflow fix */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width:1100px) {
  .site-header.is-open .nav {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .site-header.is-open .nav a {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    font-size: 14px;
    line-height: 1.3;
  }

  .site-header.is-open .nav .header-consult-btn {
    grid-column: 1 / -1;
    min-height: 46px;
    margin: 2px 0 0;
    padding: 0 16px;
  }
}

@media (max-width:640px) {
  .site-header.is-open .nav {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .site-header.is-open .nav a {
    min-height: 42px;
    padding: 0 14px;
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
  }

  .site-header.is-open .nav .header-consult-btn {
    justify-content: center;
    text-align: center;
  }
}

  
/* Final mobile/tablet menu visibility fix */
@media (max-width:1100px) {
  .site-header.is-open .nav {
    position:fixed !important;
    top:64px !important;
    left:16px !important;
    right:16px !important;
    width:auto !important;
    max-width:none !important;
    max-height:calc(100vh - 80px) !important;
    margin:0 !important;
    padding:14px !important;
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:8px !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    border:1px solid #dfe7ef !important;
    border-radius:16px !important;
    background:#fff !important;
    box-shadow:0 18px 40px rgba(16,42,67,.18) !important;
    z-index:9999 !important;
    box-sizing:border-box !important;
    transform:none !important;
  }

  .site-header.is-open .nav a {
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:100% !important;
    min-width:0 !important;
    min-height:44px !important;
    padding:0 12px !important;
    margin:0 !important;
    box-sizing:border-box !important;
    white-space:normal !important;
    overflow:visible !important;
    text-align:center !important;
  }

  .site-header.is-open .nav .header-consult-btn {
    grid-column:1 / -1 !important;
  }

  .site-header,
  .site-nav-row,
  .site-nav-row .header-inner {
    overflow:visible !important;
  }
}

@media (max-width:640px) {
  .site-header.is-open .nav {
    top:82px !important;
    left:12px !important;
    right:12px !important;
    grid-template-columns:1fr !important;
    max-height:calc(100vh - 96px) !important;
    padding:12px !important;
  }

  .site-header.is-open .nav a {
    justify-content:flex-start !important;
    text-align:left !important;
    min-height:42px !important;
    padding:0 14px !important;
  }

  .site-header.is-open .nav .header-consult-btn {
    justify-content:center !important;
    text-align:center !important;
  }
}

  
/* Workflow / Consumption Analysis card text alignment */
#process .process-card,
#consumption-analysis .analysis-card {
  text-align:center;
}

#process .process-icon,
#consumption-analysis .analysis-icon {
  margin-left:auto;
  margin-right:auto;
}

#process .process-card h3,
#process .process-card p,
#consumption-analysis .analysis-card strong,
#consumption-analysis .analysis-card span {
  text-align:center;
}

/* Header logo size */
.brand-centered .brand-logo {
  width:132px;
}

@media (max-width:1100px) {
  .brand-centered .brand-logo {
    width:118px;
  }
}

@media (max-width:640px) {
  .brand-centered .brand-logo {
    width:96px;
  }
}

  
.brand-centered .brand-logo {
  transform: translateY(3px);
}

  
/* Operational Need title center alignment */
#problem .section-head {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#problem .section-kicker,
#problem .section-head h2 {
  text-align: center;
}

/* Consumption Analysis cards:
   title → description → icon(bottom right) */
#consumption-analysis .analysis-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 184px;
  padding: 24px;
  text-align: left;
}

#consumption-analysis .analysis-card strong {
  order: 1;
  display: block;
  margin: 0 0 10px;
  text-align: left;
}

#consumption-analysis .analysis-card span {
  order: 2;
  display: block;
  margin: 0;
  text-align: left;
}

#consumption-analysis .analysis-card .analysis-icon {
  order: 3;
  margin: auto 0 0 auto;
}

@media (max-width: 640px) {
  #problem .nowrap-title {
    white-space: normal;
  }

  #consumption-analysis .analysis-card {
    min-height: 168px;
    padding: 20px;
  }
}

  
/* Help cards: centered icon + title, centered description */
#help .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 210px;
  padding: 28px 24px;
  text-align: center;
}

#help .card .icon {
  margin: 0 auto 14px;
}

#help .card h3 {
  margin: 0 0 12px;
  text-align: center;
}

#help .card p {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}

  
/* Help cards: icon + title on one centered row, description below */
#help .card {
  display:grid !important;
  grid-template-columns:auto auto !important;
  grid-template-rows:auto auto !important;
  justify-content:center !important;
  align-content:start !important;
  align-items:center !important;
  column-gap:12px !important;
  row-gap:14px !important;
  min-height:210px !important;
  padding:30px 24px !important;
  text-align:center !important;
}

#help .card .icon {
  grid-column:1 !important;
  grid-row:1 !important;
  margin:0 !important;
}

#help .card h3 {
  grid-column:2 !important;
  grid-row:1 !important;
  margin:0 !important;
  text-align:left !important;
  white-space:nowrap;
}

#help .card p {
  grid-column:1 / -1 !important;
  grid-row:2 !important;
  max-width:28rem !important;
  margin:0 auto !important;
  text-align:center !important;
}

@media (max-width:640px) {
  #help .card {
    min-height:auto !important;
    padding:24px 20px !important;
  }

  #help .card h3 {
    white-space:normal;
  }
}

  
/* Help card small check icon */
#help .card .help-check-icon {
  width:28px !important;
  height:28px !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:7px !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:hidden;
}

#help .card .help-check-icon img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

#help .card {
  column-gap:9px !important;
}

  
#help .card {
  column-gap:10px !important;
}

  
#help .card {
  grid-template-columns:28px max-content !important;
  column-gap:10px !important;
  justify-content:center !important;
}

#help .card .help-check-icon {
  justify-self:end !important;
}

#help .card h3 {
  justify-self:start !important;
  width:auto !important;
}

  
/* Help cards layout correction */
#help .card {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  min-width:0 !important;
  min-height:210px !important;
  padding:30px 24px !important;
  text-align:center !important;
  overflow:hidden !important;
}

#help .help-card-head {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  max-width:100%;
  margin:0 auto 14px;
}

#help .help-card-head .help-check-icon {
  flex:0 0 28px;
  width:28px !important;
  height:28px !important;
  margin:0 !important;
}

#help .help-card-head h3 {
  min-width:0;
  margin:0 !important;
  text-align:left !important;
  white-space:normal !important;
  overflow-wrap:anywhere;
}

#help .card p {
  width:100%;
  max-width:28rem !important;
  margin:0 auto !important;
  text-align:center !important;
  overflow-wrap:anywhere;
}

  
/* Help cards matched to reference */
#help .grid-4 {
  gap:18px !important;
}

#help .card {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  min-height:182px !important;
  padding:30px 24px 26px !important;
  border:1px solid #d9e4ef !important;
  border-radius:18px !important;
  background:#fff !important;
  box-shadow:none !important;
  text-align:center !important;
}

#help .help-card-head {
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  margin:0 auto 14px !important;
}

#help .help-card-head .help-check-icon {
  flex:0 0 18px !important;
  width:18px !important;
  height:18px !important;
  border-radius:4px !important;
}

#help .help-card-head h3 {
  margin:0 !important;
  color:#142a42 !important;
  font-size:20px !important;
  font-weight:600 !important;
  line-height:1.3 !important;
  text-align:left !important;
  white-space:nowrap !important;
}

#help .card p {
  max-width:24rem !important;
  margin:0 auto !important;
  color:#5f7186 !important;
  font-size:15px !important;
  line-height:1.8 !important;
  text-align:center !important;
  word-break:keep-all !important;
}

@media (max-width:1100px) {
  #help .grid-4 {
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:640px) {
  #help .grid-4 {
    grid-template-columns:1fr !important;
  }

  #help .card {
    min-height:auto !important;
  }

  #help .help-card-head h3 {
    white-space:normal !important;
  }
}

  
#help .help-card-head .help-check-icon {
  flex:0 0 28px !important;
  width:28px !important;
  height:28px !important;
  border-radius:7px !important;
}

  
#help .help-card-head {
  gap:4px !important;
  margin:0 auto 14px !important;
}

  
#help .help-card-head {
  margin:0 auto 8px !important;
}

  
#help .help-card-head {
  margin:0 auto 2px !important;
}

#help .card p {
  margin-top:0 !important;
  line-height:1.65 !important;
}

  
/* Mobile hero order: dashboard image directly under operation badge */
@media (max-width:640px) {
  .hero-grid {
    display:flex !important;
    flex-direction:column !important;
  }

  .hero-copy-wrap {
    display:contents !important;
  }

  .hero-copy-wrap .eyebrow {
    order:1 !important;
    align-self:flex-start !important;
  }

  .dashboard-visual {
    order:2 !important;
    width:100% !important;
    margin:18px 0 28px !important;
  }

  .hero-copy-wrap h1 {
    order:3 !important;
  }

  .hero-copy-wrap .hero-copy {
    order:4 !important;
  }

  .hero-copy-wrap .hero-actions {
    order:5 !important;
  }

  .hero-copy-wrap .hero-stats {
    order:6 !important;
  }
}

  
/* Mobile hero: keep original stacked layout while placing image under badge */
@media (max-width:640px) {
  .hero-grid {
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:0 !important;
    align-items:start !important;
  }

  .hero-copy-wrap {
    display:contents !important;
  }

  .hero-copy-wrap .eyebrow {
    order:1 !important;
    justify-self:start !important;
    margin:0 0 18px !important;
  }

  .dashboard-visual {
    order:2 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 0 30px !important;
  }

  .dashboard-visual img {
    width:100% !important;
    height:auto !important;
  }

  .hero-copy-wrap h1 {
    order:3 !important;
    width:100% !important;
    margin:0 0 18px !important;
    text-align:left !important;
  }

  .hero-copy-wrap .hero-copy {
    order:4 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 0 24px !important;
    text-align:left !important;
  }

  .hero-copy-wrap .hero-actions {
    order:5 !important;
    width:100% !important;
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
    margin:0 0 28px !important;
  }

  .hero-copy-wrap .hero-actions .btn {
    flex:0 1 auto !important;
    min-width:0 !important;
    padding:0 16px !important;
    white-space:nowrap !important;
  }

  .hero-copy-wrap .hero-stats {
    order:6 !important;
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    margin:0 !important;
  }

  .hero-copy-wrap .stat-chip {
    width:100% !important;
    min-height:88px !important;
    padding:18px !important;
    text-align:left !important;
  }
}

  
/* Help Center plain check icon */
#help .help-card-head .help-check-icon {
  flex:0 0 24px !important;
  width:24px !important;
  height:24px !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#0b66c3 !important;
  overflow:visible !important;
}

#help .help-card-head .help-check-icon svg {
  display:block;
  width:24px !important;
  height:24px !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:2.4 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}

  
.section-head {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .section-kicker,
.section-head h2,
.section-head p {
  text-align: center;
}

  
/* Replace front icons with uploaded logos */
.reference-logo {
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff !important;
  border:1px solid #e2eaf3;
  overflow:hidden;
}

.reference-logo img {
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.reference-logo.ref-yeongyang img {
  width:88%;
  height:88%;
}

.reference-logo.ref-namhae img,
.reference-logo.ref-gokseong img {
  width:92%;
  height:92%;
}

  
.pc-br {
  display:inline;
}

@media (max-width:640px) {
  .pc-br {
    display:none;
  }
}

  
/* Mobile Deposit Management layout */
@media (max-width:640px) {
  #deposit-management .section-head {
    max-width:100%;
    margin-bottom:26px;
    text-align:center;
  }

  #deposit-management .section-head h2 {
    font-size:30px;
    line-height:1.25;
  }

  #deposit-management .section-head p {
    font-size:15px;
    line-height:1.75;
  }

  #deposit-management .amount-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    align-items:stretch;
  }

  #deposit-management .amount-card {
    min-width:0;
    min-height:210px;
    padding:20px 10px;
    text-align:center;
  }

  #deposit-management .amount-card span {
    font-size:12px;
    line-height:1.4;
  }

  #deposit-management .amount-card strong {
    margin-top:10px;
    font-size:28px;
    text-align:center;
  }

  #deposit-management .amount-card p {
    margin-top:12px;
    font-size:13px;
    line-height:1.65;
    text-align:center;
    word-break:keep-all;
  }

  #deposit-management .quote-box {
    margin-top:18px;
    padding:20px 18px;
    border-radius:18px;
    font-size:18px;
    line-height:1.5;
    text-align:center;
  }

  /* Mobile References layout */
  #references .section-head {
    max-width:100%;
    margin-bottom:26px;
    text-align:center;
  }

  #references .section-head h2 {
    font-size:30px;
    line-height:1.25;
  }

  #references .section-head p {
    font-size:15px;
    line-height:1.75;
  }

  #references .references {
    display:grid;
    gap:14px;
    border:0;
    background:transparent;
    box-shadow:none;
    overflow:visible;
  }

  #references .reference-row {
    display:grid;
    grid-template-columns:120px minmax(0,1fr);
    grid-template-areas:
      "logo title"
      "logo desc";
    gap:8px 16px;
    min-height:150px;
    padding:20px;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow-soft);
  }

  #references .reference-row + .reference-row {
    border-top:1px solid var(--line);
  }

  #references .reference-logo {
    grid-area:logo;
    width:120px;
    height:120px;
    align-self:center;
    justify-self:start;
    border-radius:18px;
  }

  #references .reference-info {
    display:contents;
  }

  #references .reference-info strong {
    grid-area:title;
    align-self:end;
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:0;
    font-size:24px;
    line-height:1.2;
  }

  #references .reference-status {
    position:absolute;
    right:20px;
    top:20px;
    min-height:32px;
    padding:0 12px;
    font-size:12px;
  }

  #references .reference-row {
    position:relative;
  }

  #references .reference-info span {
    grid-area:desc;
    align-self:start;
    display:block;
    padding-right:0;
    font-size:14px;
    line-height:1.7;
  }
}

@media (max-width:420px) {
  #deposit-management .amount-grid {
    gap:8px;
  }

  #deposit-management .amount-card {
    padding:18px 8px;
  }

  #references .reference-row {
    grid-template-columns:96px minmax(0,1fr);
    min-height:126px;
    padding:16px;
  }

  #references .reference-logo {
    width:96px;
    height:96px;
  }

  #references .reference-info strong {
    font-size:21px;
  }

  #references .reference-status {
    right:16px;
    top:16px;
  }
}

  
@media (max-width:640px) {
  #deposit-management .amount-card {
    min-height:175px !important;
    height:175px !important;
    padding:18px 10px !important;
  }

  #deposit-management .amount-card strong {
    font-size:20px !important;
    line-height:1.2 !important;
  }

  #policy-data .policy-cards .card {
    min-height:146px !important;
    height:146px !important;
    padding:18px 20px !important;
  }
}

  
/* 360px mobile overflow fix */
@media (max-width:380px) {
  .container {
    width:calc(100% - 24px) !important;
    max-width:100% !important;
  }

  .hero {
    overflow:hidden !important;
  }

  .hero-grid,
  .hero-copy-wrap,
  .dashboard-visual,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
  }

  .hero-copy-wrap h1 {
    font-size:34px !important;
    line-height:1.22 !important;
  }

  .hero-copy-wrap .hero-copy {
    font-size:15px !important;
    line-height:1.75 !important;
  }

  .hero-copy-wrap .hero-actions {
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
  }

  .hero-copy-wrap .hero-actions .btn {
    width:100% !important;
    min-width:0 !important;
    padding:0 10px !important;
    font-size:14px !important;
    white-space:normal !important;
    text-align:center !important;
  }

  .hero-copy-wrap .hero-actions .btn:last-child {
    grid-column:1 / -1 !important;
  }

  .hero-copy-wrap .stat-chip {
    min-width:0 !important;
    width:100% !important;
    overflow:hidden !important;
  }

  .dashboard-visual img {
    width:100% !important;
    max-width:100% !important;
  }

  .hero-copy-wrap .eyebrow {
    max-width:100% !important;
    white-space:normal !important;
  }
}

  
/* Mobile side margins and hamburger alignment */
@media (max-width:640px) {
  .container {
    width:calc(100% - 32px) !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .section > .container,
  .hero > .container,
  .contact > .container {
    width:calc(100% - 32px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .brand-header-row {
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    min-height:74px !important;
    padding:10px 60px 10px 0 !important;
  }

  .brand-centered {
    width:100% !important;
    min-width:0 !important;
  }

  .site-nav-row .header-inner {
    position:absolute !important;
    top:0 !important;
    right:16px !important;
    width:44px !important;
    min-height:74px !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .mobile-toggle {
    width:42px !important;
    height:42px !important;
    margin:0 !important;
    flex:0 0 42px !important;
  }

  .site-header.is-open .nav {
    top:74px !important;
    left:16px !important;
    right:16px !important;
  }
}

@media (max-width:380px) {
  .container,
  .section > .container,
  .hero > .container,
  .contact > .container {
    width:calc(100% - 24px) !important;
  }

  .brand-header-row {
    min-height:70px !important;
    padding-right:54px !important;
  }

  .site-nav-row .header-inner {
    right:12px !important;
    min-height:70px !important;
  }

  .site-header.is-open .nav {
    top:70px !important;
    left:12px !important;
    right:12px !important;
  }
}

  
/* 360px Deposit Management card text overflow fix */
@media (max-width:380px) {
  #deposit-management .amount-grid {
    gap:8px !important;
  }

  #deposit-management .amount-card {
    height:auto !important;
    min-height:188px !important;
    padding:16px 7px !important;
    overflow:hidden !important;
  }

  #deposit-management .amount-card span {
    font-size:11px !important;
    line-height:1.35 !important;
    word-break:keep-all !important;
  }

  #deposit-management .amount-card strong {
    margin-top:8px !important;
    font-size:20px !important;
    line-height:1.15 !important;
  }

  #deposit-management .amount-card p {
    margin-top:10px !important;
    font-size:12px !important;
    line-height:1.55 !important;
    word-break:keep-all !important;
    overflow-wrap:anywhere !important;
  }

  #deposit-management .quote-box {
    margin-top:14px !important;
  }
}

  
/* Data-driven Policy cards centered on PC and mobile */
#policy-data .policy-cards .card {
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
}

#policy-data .policy-cards .card h3,
#policy-data .policy-cards .card p {
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

@media (max-width:640px) {
  #policy-data .policy-cards .card {
    text-align:center !important;
  }

  #policy-data .policy-cards .card h3,
  #policy-data .policy-cards .card p {
    text-align:center !important;
  }
}

  
.contact-actions button[onclick="window.print()"] {
  font-family:"Paperlogy", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

  
@media (max-width:640px) {
  #consumption-analysis .analysis-card {
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    min-height:auto !important;
    padding:20px !important;
    text-align:left !important;
  }

  #consumption-analysis .analysis-card-head {
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    margin-bottom:10px !important;
  }

  #consumption-analysis .analysis-card-head .analysis-icon {
    flex:0 0 auto !important;
    width:42px !important;
    height:42px !important;
    margin:0 !important;
  }

  #consumption-analysis .analysis-card-head strong {
    margin:0 !important;
    text-align:left !important;
  }

  #consumption-analysis .analysis-card > span {
    display:block !important;
    margin:0 !important;
    text-align:left !important;
  }
}

  
@media (max-width:640px) {
  #consumption-analysis .analysis-card-head {
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
  }

  #consumption-analysis .analysis-card-head .analysis-icon {
    order:1 !important;
    flex:0 0 42px !important;
    margin:0 !important;
  }

  #consumption-analysis .analysis-card-head strong {
    order:2 !important;
    flex:1 1 auto !important;
    margin:0 !important;
    text-align:left !important;
  }
}

  
@media (max-width:640px) {
  /* Expected Impact: 모바일 2열 */
  #benefits .grid-5 {
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
  }

  #benefits .benefit-card,
  #benefits .benefit-card:nth-child(n) {
    grid-column:auto !important;
    min-width:0 !important;
    min-height:180px !important;
    padding:18px 14px !important;
  }

  #benefits .benefit-card:last-child:nth-child(odd) {
    grid-column:1 / -1 !important;
  }

  /* Follow-up Management: 모바일 2열 */
  #follow-up-management .grid-2 {
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
  }

  #follow-up-management .grid-2 .card {
    min-width:0 !important;
    min-height:180px !important;
    padding:18px 14px !important;
  }

  #benefits .benefit-card h3,
  #follow-up-management .grid-2 .card h3 {
    font-size:17px !important;
    line-height:1.35 !important;
  }

  #benefits .benefit-card p,
  #follow-up-management .grid-2 .card p {
    font-size:13px !important;
    line-height:1.6 !important;
  }
}

@media (max-width:380px) {
  #benefits .grid-5,
  #follow-up-management .grid-2 {
    gap:10px !important;
  }

  #benefits .benefit-card,
  #benefits .benefit-card:nth-child(n),
  #follow-up-management .grid-2 .card {
    min-height:170px !important;
    padding:16px 12px !important;
  }
}

  
/* Mobile title wrapping refinement */
@media (max-width:640px) {
  .section-head {
    max-width:100% !important;
    padding-inline:4px !important;
  }

  .section-head h2,
  .contact-box h2,
  .hero-copy-wrap h1 {
    word-break:keep-all !important;
    overflow-wrap:normal !important;
    text-wrap:balance;
  }

  .section-head h2 {
    max-width:22rem !important;
    margin-left:auto !important;
    margin-right:auto !important;
    font-size:30px !important;
    line-height:1.28 !important;
  }

  .section-head p {
    max-width:31rem !important;
    margin-left:auto !important;
    margin-right:auto !important;
    word-break:keep-all !important;
    overflow-wrap:break-word !important;
    line-height:1.75 !important;
  }

  .hero-copy-wrap h1 {
    max-width:100% !important;
    font-size:34px !important;
    line-height:1.2 !important;
  }

  .card h3,
  .process-card h3,
  .analysis-card strong,
  .benefit-card h3,
  #policy-data .policy-cards .card h3,
  #follow-up-management .card h3,
  #help .card h3 {
    word-break:keep-all !important;
    overflow-wrap:normal !important;
    text-wrap:balance;
  }

  .card p,
  .process-card p,
  .analysis-card span,
  .benefit-card p,
  #policy-data .policy-cards .card p,
  #follow-up-management .card p,
  #help .card p {
    word-break:keep-all !important;
    overflow-wrap:break-word !important;
  }

  #deposit-management .section-head h2,
  #references .section-head h2,
  #consumption-analysis .section-head h2,
  #policy-data .section-head h2,
  #benefits .section-head h2 {
    max-width:20rem !important;
  }

  .nowrap-title {
    white-space:normal !important;
  }

  br.pc-br {
    display:none !important;
  }
}

@media (max-width:380px) {
  .section-head h2 {
    max-width:19rem !important;
    font-size:28px !important;
    line-height:1.3 !important;
  }

  .hero-copy-wrap h1 {
    font-size:32px !important;
  }

  .card h3,
  .process-card h3,
  .benefit-card h3,
  #policy-data .policy-cards .card h3,
  #follow-up-management .card h3 {
    font-size:16px !important;
    line-height:1.4 !important;
  }
}

  
/* Consumption Analysis: PC icon bottom-right, mobile icon before title */
@media (min-width:641px) {
  #consumption-analysis .analysis-card {
    position:relative !important;
    display:block !important;
    min-height:184px !important;
    padding:24px !important;
    text-align:left !important;
  }

  #consumption-analysis .analysis-card-head {
    display:block !important;
    margin:0 !important;
  }

  #consumption-analysis .analysis-card-head strong {
    display:block !important;
    margin:0 0 10px !important;
    padding:0 !important;
    text-align:left !important;
  }

  #consumption-analysis .analysis-card > span {
    display:block !important;
    margin:0 !important;
    padding-right:0 !important;
    text-align:left !important;
  }

  #consumption-analysis .analysis-card-head .analysis-icon {
    position:absolute !important;
    right:24px !important;
    bottom:24px !important;
    width:42px !important;
    height:42px !important;
    margin:0 !important;
  }
}

@media (max-width:640px) {
  #consumption-analysis .analysis-card-head {
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
  }

  #consumption-analysis .analysis-card-head .analysis-icon {
    position:static !important;
    order:1 !important;
    flex:0 0 42px !important;
    width:42px !important;
    height:42px !important;
    margin:0 !important;
  }

  #consumption-analysis .analysis-card-head strong {
    order:2 !important;
    flex:1 1 auto !important;
    margin:0 !important;
    text-align:left !important;
  }
}

  
/* Workflow arrows: PC and mobile */
#process .process-wrap {
  overflow:visible !important;
}

#process .process-card {
  position:relative !important;
  overflow:visible !important;
}

#process .process-card:not(:last-child)::after {
  content:"›" !important;
  position:absolute !important;
  top:50% !important;
  right:-22px !important;
  z-index:20 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:34px !important;
  height:34px !important;
  border:0 !important;
  border-radius:50% !important;
  background:#1f5ba8 !important;
  color:#fff !important;
  font-size:28px !important;
  font-weight:600 !important;
  line-height:1 !important;
  box-shadow:0 6px 14px rgba(31,91,168,.2) !important;
  transform:translateY(-50%) !important;
  pointer-events:none !important;
}

@media (max-width:1100px) {
  #process .process-card:not(:last-child)::after {
    display:flex !important;
  }
}

@media (max-width:640px) {
  #process .process-wrap {
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:18px !important;
    overflow:visible !important;
  }

  #process .process-card,
  #process .process-card:last-child {
    grid-column:auto !important;
    min-width:0 !important;
  }

  #process .process-card:not(:last-child)::after {
    right:-18px !important;
    width:32px !important;
    height:32px !important;
    font-size:26px !important;
  }

  #process .process-card:last-child {
    grid-column:1 / 2 !important;
  }
}

@media (max-width:380px) {
  #process .process-wrap {
    gap:14px !important;
  }

  #process .process-card:not(:last-child)::after {
    right:-15px !important;
    width:30px !important;
    height:30px !important;
    font-size:24px !important;
  }
}

  
/* Workflow arrows: mobile only */
#process .process-card:not(:last-child)::after {
  display:none !important;
}

@media (max-width:640px) {
  #process .process-card:not(:last-child)::after {
    display:flex !important;
  }
}

  
/* Mobile workflow arrow clipping fix */
@media (max-width:640px) {
  #process,
  #process > .container,
  #process .process-wrap,
  #process .process-card {
    overflow:visible !important;
  }

  #process .process-wrap {
    padding-right:16px !important;
    box-sizing:border-box !important;
  }

  #process .process-card:not(:last-child)::after {
    right:-16px !important;
  }
}

@media (max-width:380px) {
  #process .process-wrap {
    padding-right:14px !important;
  }

  #process .process-card:not(:last-child)::after {
    right:-14px !important;
  }
}

  
@media (min-width:641px) {
  .reference-row {
    display:grid;
    grid-template-columns:116px 1fr auto;
    gap:22px;
    align-items:center;
    padding:24px 28px;
    border-bottom:1px solid var(--line);
  }
}

  
/* Header title + BIPM */
.brand-centered strong {
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.brand-centered .brand-bipm {
  color:#0b66c3;
  font-size:.95em;
  font-weight:700;
  letter-spacing:-0.01em;
}

/* Hero eyebrow emphasis */
.hero-copy-wrap .eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 18px;
  border:1px solid #b9d4f0;
  border-radius:999px;
  background:linear-gradient(180deg,#f8fbff 0%, #ecf5ff 100%);
  box-shadow:0 8px 20px rgba(11,102,195,.08);
  color:#0b66c3;
  font-size:18px;
  font-weight:700;
}

.hero-copy-wrap .eyebrow::before {
  width:10px;
  height:10px;
  box-shadow:0 0 0 6px rgba(46,193,164,.12);
}

@media (max-width:640px) {
  .brand-centered strong {
    gap:6px;
  }

  .brand-centered .brand-bipm {
    font-size:.9em;
  }

  .hero-copy-wrap .eyebrow {
    min-height:40px;
    padding:0 16px;
    font-size:14px;
  }
}

  
.brand-centered .brand-bipm {
  color:inherit !important;
}

  
.pc-only-br {
  display:inline;
}

@media (max-width:640px) {
  .pc-only-br {
    display:none;
  }
}

  
.brand-centered .brand-bipm {
  color:#ff5925 !important;
}

.hero-stats .stat-chip strong {
  color:#ff5925 !important;
}

  
.hero-stats .stat-chip {
  position:relative;
  padding:22px 20px;
  border:1px solid #ffd7ca;
  background:#fff8f5;
  box-shadow:0 10px 24px rgba(255,89,37,.08);
  overflow:hidden;
}

.hero-stats .stat-chip::before {
  content:'';
  position:absolute;
  top:18px;
  left:0;
  width:4px;
  height:36px;
  border-radius:0 4px 4px 0;
  background:#ff5925;
}

.hero-stats .stat-chip strong {
  display:block;
  margin-bottom:6px;
  color:#ff5925 !important;
  font-size:30px;
  font-weight:600;
  line-height:1.1;
}

.hero-stats .stat-chip span {
  color:#526174;
  font-size:14px;
}

@media (max-width:640px) {
  .hero-stats .stat-chip {
    padding:20px 18px;
  }

  .hero-stats .stat-chip::before {
    top:16px;
    height:32px;
  }

  .hero-stats .stat-chip strong {
    font-size:26px;
  }
}


.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 24px 26px;
  border: 1px solid rgba(217, 228, 238, 0.96);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
}


/* ===== 다중 페이지 분리에 따른 추가 스타일 ===== */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.footer-nav a {
  color: inherit;
  opacity: .78;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover { opacity: 1; text-decoration: underline; }

/* ===== 하위 페이지 타이틀 영역 (breadcrumb + h1 + 요약) ===== */
.page-head {
  padding: 54px 0 8px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--muted, #66716b);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  opacity: .55;
}

.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { font-weight: 700; color: var(--ink, #171c18); }

.page-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.24;
  letter-spacing: -.04em;
  font-weight: 800;
  word-break: keep-all;
}

.page-lead {
  margin: 20px 0 0;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted, #66716b);
  word-break: keep-all;
}

/* 타이틀 영역이 있는 페이지는 첫 섹션 상단 여백을 줄인다 */
.page-sub main > .section:first-of-type { padding-top: 44px; }

/* ===== 특허 기술 홍보 배너 (전 페이지 하단) ===== */
.patent-banner {
  padding: 0 0 56px;
}

.patent-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #155e47 0%, #167456 62%, #218466 100%);
  position: relative;
  overflow: hidden;
}

.patent-banner__inner::after {
  content: "PATENT";
  position: absolute;
  right: -14px;
  bottom: -26px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -.07em;
  color: rgba(255, 255, 255, .055);
  pointer-events: none;
}

.patent-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.patent-banner__title {
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.38;
  letter-spacing: -.035em;
  font-weight: 800;
  word-break: keep-all;
}

.patent-banner__desc {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}

.patent-banner__side {
  position: relative;
  z-index: 1;
}

.patent-banner__row {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.patent-banner__row span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
}

.patent-banner__row strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.patent-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #fff;
  color: #145f47;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.patent-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

@media (max-width: 880px) {
  .patent-banner__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 26px;
  }
  .patent-banner__title { font-size: 21px; }
}

/* ===== 관련 페이지 내부링크 ===== */
.related {
  padding: 0 0 88px;
}

.related h2 {
  margin: 0 0 20px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-grid a {
  display: block;
  padding: 22px 24px;
  border: 1px solid rgba(220, 230, 241, .9);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.related-grid a:hover {
  border-color: rgba(11, 102, 195, .45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 44, 34, .07);
}

.related-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  letter-spacing: -.02em;
}

.related-grid span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted, #66716b);
  word-break: keep-all;
}

@media (max-width: 880px) {
  .related-grid { grid-template-columns: 1fr; }
  .page-head { padding-top: 38px; }
}


/* ===== BIPM 구축·도입 진행현황 ===== */
.bipm-progress-status{
  --bipm-green:#176b50;
  --bipm-green-dark:#124f3d;
  --bipm-green-soft:#eef7f3;
  --bipm-blue:#477fe8;
  --bipm-blue-soft:#f0f5ff;
  --bipm-orange:#d58a38;
  --bipm-orange-soft:#fff7ec;
  --bipm-line:#e3e9e6;
  --bipm-text:#18201c;
  --bipm-sub:#6f7973;

  /* 사이트의 .container(1180px) 안에 배치되므로 자체 폭 제한/좌우 여백은 해제 */
  max-width:none;
  margin:84px 0 0;
  padding:0;
}

/* 헤드는 사이트 공통 .section-head 구조를 그대로 사용한다
   (References 헤드와 kicker/제목/본문 크기·정렬이 자동으로 일치) */

.bipm-progress-status__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.bipm-progress-card{
  position:relative;
  min-height:190px;
  padding:30px 32px;
  border:1px solid var(--bipm-line);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
}

.bipm-progress-card::after{
  content:"";
  position:absolute;
  right:-45px;
  bottom:-70px;
  width:170px;
  height:170px;
  border-radius:50%;
  opacity:.75;
}

.bipm-progress-card--building{
  border-top:4px solid var(--bipm-blue);
}

.bipm-progress-card--building::after{
  background:var(--bipm-blue-soft);
}

.bipm-progress-card--planned{
  border-top:4px solid var(--bipm-orange);
}

.bipm-progress-card--planned::after{
  background:var(--bipm-orange-soft);
}

.bipm-progress-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:relative;
  z-index:1;
}

.bipm-progress-card__status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:14px;
  font-weight:800;
}

.bipm-progress-card__status::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
}

.bipm-progress-card--building .bipm-progress-card__status{
  color:var(--bipm-blue);
}

.bipm-progress-card--building .bipm-progress-card__status::before{
  background:var(--bipm-blue);
  box-shadow:0 0 0 5px rgba(71,127,232,.10);
}

.bipm-progress-card--planned .bipm-progress-card__status{
  color:var(--bipm-orange);
}

.bipm-progress-card--planned .bipm-progress-card__status::before{
  background:var(--bipm-orange);
  box-shadow:0 0 0 5px rgba(213,138,56,.10);
}

.bipm-progress-card__count{
  color:#a2aaa5;
  font-size:12px;
  font-weight:700;
}

.bipm-progress-card__places{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.bipm-progress-place{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:112px;
  height:52px;
  padding:0 22px;
  border-radius:12px;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.025em;
}

.bipm-progress-card--building .bipm-progress-place{
  color:#2d62c5;
  background:var(--bipm-blue-soft);
}

/* 지자체 로고 칩 */
.bipm-progress-place--logo{
  gap:10px;
  padding:0 20px;
}

.bipm-progress-place--logo img{
  display:block;
  height:30px;
  width:auto;
}

.bipm-progress-card--planned .bipm-progress-place{
  color:#b36b20;
  background:var(--bipm-orange-soft);
}

.bipm-progress-card__note{
  position:relative;
  z-index:1;
  margin:18px 0 0;
  color:var(--bipm-sub);
  font-size:13px;
  line-height:1.6;
}

.bipm-progress-plan-list{
  position:relative;
  z-index:1;
  display:grid;
  gap:10px;
  margin-top:24px;
}

.bipm-progress-plan-row{
  min-height:54px;
  padding:12px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid #f1dfca;
  border-radius:12px;
  background:var(--bipm-orange-soft);
}

.bipm-progress-plan-row__label{
  color:#725333;
  font-size:13px;
  line-height:1.45;
  font-weight:700;
  word-break:keep-all;
}

.bipm-progress-plan-row__count{
  flex:0 0 auto;
  color:#b36b20;
  font-size:15px;
  font-weight:850;
  white-space:nowrap;
}

.bipm-progress-summary{
  display:flex;
  align-items:center;
  margin-top:18px;
  padding:18px 24px;
  border:1px solid var(--bipm-line);
  border-radius:14px;
  background:#f8faf9;
}

.bipm-progress-summary__item{
  flex:1;
  text-align:center;
}

.bipm-progress-summary__item + .bipm-progress-summary__item{
  border-left:1px solid var(--bipm-line);
}

.bipm-progress-summary__num{
  display:block;
  margin-bottom:3px;
  color:var(--bipm-green-dark);
  font-size:22px;
  font-weight:850;
}

.bipm-progress-summary__label{
  color:var(--bipm-sub);
  font-size:12px;
  font-weight:700;
}

@media(max-width:760px){
  .bipm-progress-status{
    margin-top:56px;
  }

  .bipm-progress-status__grid{
    grid-template-columns:1fr;
  }

  .bipm-progress-card{
    min-height:auto;
    padding:25px 23px;
    border-radius:17px;
  }

  .bipm-progress-place{
    flex:1;
    min-width:100px;
    font-size:17px;
  }

  .bipm-progress-summary{
    padding:16px 10px;
  }

  .bipm-progress-summary__num{
    font-size:19px;
  }
}


/* ===== BIPM : Mobile Residence Check (QR 실거주 확인) ===== */
.bipm-residence{
  --bipm-green:#166b4f;
  --bipm-green-2:#248765;
  --bipm-green-soft:#edf7f2;
  --bipm-line:#dfe8e3;
  --bipm-text:#171c18;
  --bipm-sub:#66716b;
  --bipm-bg:#f7faf8;

  padding:110px 24px 120px;
  background:
    radial-gradient(circle at 88% 10%, rgba(36,135,101,.08), transparent 25%),
    linear-gradient(180deg,#fff 0%,var(--bipm-bg) 100%);
}

.bipm-residence__inner{
  max-width:1200px;
  margin:0 auto;
}

/* 헤드는 사이트 공통 .section-head.center 구조를 그대로 사용한다
   (업무흐름 섹션 헤드와 kicker/제목/본문 크기·정렬이 자동으로 일치) */
.bipm-residence .section-head p strong{
  color:var(--bipm-text);
  font-weight:700;
}

.bipm-residence__hero{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);
  gap:28px;
  margin-top:56px;
  align-items:stretch;
}

.bipm-residence__visual,
.bipm-residence__patent{
  border:1px solid var(--bipm-line);
  border-radius:28px;
  background:#fff;
}

.bipm-residence__visual{
  min-height:490px;
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
}

.bipm-residence__visual:before{
  content:"";
  position:absolute;
  width:330px;
  height:330px;
  border-radius:50%;
  background:var(--bipm-green-soft);
  right:-70px;
  top:-90px;
}

.bipm-residence__phone{
  width:min(100%,510px);
  display:grid;
  grid-template-columns:160px 1fr;
  gap:28px;
  align-items:center;
  position:relative;
  z-index:1;
}

.bipm-phone{
  width:160px;
  /* 화면 안 목업 UI 실제 높이(약 314px) + 테두리 18px + 안쪽 여백 26px */
  height:376px;
  border:9px solid #18201c;
  border-radius:30px;
  padding:13px;
  background:#f8fbf9;
  box-shadow:0 24px 60px rgba(23,44,34,.16);
  position:relative;
}

.bipm-phone:before{
  content:"";
  position:absolute;
  top:7px;
  left:50%;
  transform:translateX(-50%);
  width:48px;
  height:5px;
  border-radius:999px;
  background:#18201c;
}

.bipm-phone__screen{
  height:100%;
  border-radius:18px;
  background:#f6f7f9;
  overflow:hidden;
  padding:0;
  text-align:left;
}

/* ----- 폰 화면 안 목업 UI ----- */
.bipm-phone-ui{
  height:100%;
  display:flex;
  flex-direction:column;
  font-size:8px;
  line-height:1.35;
  color:#243342;
}

/* 화면이 좁아져도 각 요소가 눌려 찌그러지지 않도록 고정 */
.bipm-phone-ui > *{ flex:0 0 auto; }

.bipm-phone-ui__top{
  height:26px;
  padding:0 8px;
  background:#ffffff;
  border-bottom:1px solid #e7ebf0;
  display:flex;
  align-items:center;
  gap:6px;
}

.bipm-phone-ui__back{
  font-size:12px;
  line-height:1;
  color:#2f4355;
}

.bipm-phone-ui__top strong{
  font-size:9px;
  font-weight:800;
  color:#2b3c4d;
}

.bipm-phone-ui__hero{
  position:relative;
  padding:10px 8px 8px;
  background:#4b84e8;
  color:#fff;
}

.bipm-phone-ui__hero-title{
  font-size:9px;
  font-weight:800;
  margin-bottom:3px;
  padding-right:52px; /* 우측 '오프라인 모드' 배지와 겹치지 않도록 */
}

.bipm-phone-ui__hero-sub{
  font-size:7px;
  opacity:.95;
}

.bipm-phone-ui__mode{
  position:absolute;
  right:8px;
  top:9px;
  display:inline-block;
  padding:3px 6px;
  border-radius:7px;
  background:#e7a05e;
  color:#fff;
  font-size:6px;
  font-weight:700;
}

.bipm-phone-ui__section-title{
  padding:7px 8px 4px;
  font-size:7px;
  font-weight:800;
  color:#3a4652;
}

.bipm-phone-ui__result-grid{
  padding:0 8px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px;
}

.bipm-phone-ui__result{
  height:28px;
  border-radius:8px;
  border:1px solid #d6dde6;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:7px;
  font-weight:700;
  color:#33414f;
}

.bipm-phone-ui__result--active{
  border:2px solid #4b84e8;
  background:#eef4ff;
  color:#1f5fd0;
}

.bipm-phone-ui__photo-grid{
  padding:0 8px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:5px;
}

.bipm-phone-ui__photo{
  height:34px;
  border-radius:8px;
  border:1px dashed #cfd6df;
  background:#fafbfd;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:6px;
  font-weight:700;
  color:#8b97a4;
  padding:3px;
}

.bipm-phone-ui__photo--required{
  border:1px dashed #efb16d;
  background:#fff7ee;
  color:#e28a2d;
}

.bipm-phone-ui__memo{
  margin:0 8px;
  height:28px;
  border:1px solid #d8dee6;
  border-radius:8px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0 7px;
  font-size:6px;
  color:#41505e;
}

.bipm-phone-ui__location{
  margin:0 8px;
  font-size:6px;
  color:#5e6d7b;
}

.bipm-phone-ui__button{
  margin:8px 8px 0;
  height:24px;
  border-radius:10px;
  background:#a9c4f5;
  color:#fff;
  font-size:7px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bipm-visual-copy h3{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.35;
  letter-spacing:-.04em;
}

.bipm-visual-copy p{
  margin:0;
  color:var(--bipm-sub);
  font-size:16px;
  line-height:1.75;
  word-break:keep-all;
}

.bipm-visual-copy ul{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.bipm-visual-copy li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#303a34;
  font-size:15px;
  line-height:1.55;
}

.bipm-visual-copy li:before{
  content:"✓";
  flex:0 0 22px;
  width:22px;
  height:22px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--bipm-green-soft);
  color:var(--bipm-green);
  font-size:12px;
  font-weight:900;
}

.bipm-residence__patent{
  padding:38px;
  color:#fff;
  background:
    linear-gradient(135deg,#155e47 0%,#167456 62%,#218466 100%);
  border-color:transparent;
  position:relative;
  overflow:hidden;
}

.bipm-residence__patent:after{
  content:"PATENT";
  position:absolute;
  right:-18px;
  bottom:-20px;
  font-size:92px;
  font-weight:900;
  color:rgba(255,255,255,.055);
  letter-spacing:-.07em;
}

.bipm-patent__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.27);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
}

.bipm-patent__title{
  margin:24px 0 12px;
  font-size:27px;
  line-height:1.35;
  letter-spacing:-.035em;
  word-break:keep-all;
}

.bipm-patent__desc{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.75;
  word-break:keep-all;
}

.bipm-patent__meta{
  margin-top:30px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.18);
  display:grid;
  gap:18px;
  position:relative;
  z-index:1;
}

.bipm-patent__row span{
  display:block;
  margin-bottom:6px;
  color:rgba(255,255,255,.58);
  font-size:12px;
  font-weight:700;
}

.bipm-patent__row strong{
  display:block;
  font-size:15px;
  line-height:1.55;
  font-weight:700;
  word-break:keep-all;
}

.bipm-residence__flow{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border:1px solid var(--bipm-line);
  border-radius:24px;
  background:#fff;
  overflow:hidden;
}

.bipm-flow__item{
  min-height:220px;
  padding:30px 24px;
  border-right:1px solid var(--bipm-line);
  position:relative;
}

.bipm-flow__item:last-child{border-right:0}

.bipm-flow__num{
  display:block;
  margin-bottom:26px;
  color:var(--bipm-green-2);
  font-size:12px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.bipm-flow__item h3{
  margin:0 0 12px;
  font-size:19px;
  line-height:1.4;
  letter-spacing:-.03em;
  word-break:keep-all;
}

.bipm-flow__item p{
  margin:0;
  color:var(--bipm-sub);
  font-size:14px;
  line-height:1.7;
  word-break:keep-all;
}

.bipm-residence__closing{
  margin-top:46px;
  padding:36px 42px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  border-radius:22px;
  background:#17231d;
  color:#fff;
}

.bipm-residence__closing small{
  display:block;
  margin-bottom:8px;
  color:#7fd1ad;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.bipm-residence__closing h3{
  margin:0;
  font-size:25px;
  line-height:1.4;
  letter-spacing:-.035em;
  word-break:keep-all;
}

.bipm-residence__closing p{
  margin:0;
  max-width:450px;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.75;
  text-align:right;
  word-break:keep-all;
}

@media (max-width:980px){
  .bipm-residence{padding:85px 20px 90px}
  .bipm-residence__hero{grid-template-columns:1fr}
  .bipm-residence__flow{grid-template-columns:repeat(2,1fr)}
  .bipm-flow__item{border-bottom:1px solid var(--bipm-line)}
  .bipm-flow__item:nth-child(2n){border-right:0}
  .bipm-flow__item:last-child{grid-column:1/-1;border-bottom:0}
}

@media (max-width:640px){
  .bipm-residence{padding:68px 18px 72px}
  .bipm-residence__title{font-size:34px}
  .bipm-residence__lead{font-size:16px}
  .bipm-residence__hero{margin-top:38px}
  .bipm-residence__visual,
  .bipm-residence__patent{border-radius:20px}
  .bipm-residence__visual{padding:30px 22px}
  .bipm-residence__phone{grid-template-columns:1fr;text-align:center}
  .bipm-phone{margin:0 auto}
  .bipm-visual-copy li{text-align:left}
  .bipm-residence__patent{padding:30px 26px}
  .bipm-residence__flow{grid-template-columns:1fr}
  .bipm-flow__item,
  .bipm-flow__item:nth-child(2n){
    min-height:auto;
    border-right:0;
    border-bottom:1px solid var(--bipm-line);
  }
  .bipm-flow__item:last-child{grid-column:auto}
  .bipm-residence__closing{
    padding:30px 26px;
    display:block;
  }
  .bipm-residence__closing p{
    margin-top:14px;
    text-align:left;
  }
}


/* ============================================================
   GEO (Generative Engine Optimization)
   AI 답변엔진이 인용할 핵심 요약 · Q&A 블록
   ============================================================ */

/* ----- 핵심 요약 ----- */
.geo-summary {
  padding: 44px 0 0;
}

.page-sub .geo-summary {
  padding-top: 34px;
}

.geo-summary__box {
  position: relative;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.72), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.geo-summary__box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.geo-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.geo-summary__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.geo-summary__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.geo-summary__list > li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.75;
  word-break: keep-all;
}

.geo-summary__list > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--primary);
  opacity: .55;
}

.geo-summary__list strong {
  color: var(--navy);
  font-weight: 700;
}

.geo-summary__meta {
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px dashed var(--line);
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.7;
  word-break: keep-all;
}

/* 요약 블록이 첫 <section> 이 되면서 기존
   `.page-sub main > .section:first-of-type` 규칙이 더 이상 걸리지 않으므로,
   바로 뒤 섹션의 상단 여백을 같은 값으로 되돌려 리듬을 유지합니다. */
.geo-summary + .section {
  padding-top: 52px;
}

.page-sub .geo-summary + .section {
  padding-top: 44px;
}

/* ----- 페이지별 Q&A -----
   간격은 기존 .section 을 함께 사용하므로 여기서는 지정하지 않습니다. */
.geo-qa .section-head {
  margin-bottom: 26px;
}

@media (max-width: 720px) {
  .geo-summary { padding-top: 26px; }
  .page-sub .geo-summary { padding-top: 24px; }
  .geo-summary__box { padding: 22px 20px 22px 24px; }
  .geo-summary__list > li { font-size: 15px; padding-left: 19px; }
  .geo-summary__list > li::before { left: 2px; }
}
