:root {
  --bg: #08111f;
  --bg-soft: #f5f7fb;
  --line: #e5e7eb;
  --text: #142033;
  --sub: #627086;
  --white: #ffffff;
  --accent: #b91c1c;
  --accent-2: #dc2626;
  --shadow: 0 18px 46px rgba(15, 23, 42, .10);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, .08);
  --shadow-strong: 0 28px 80px rgba(2, 6, 23, .28);
  --radius: 24px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: linear-gradient(135deg, #09111f 0%, #111d31 100%);
  color: #fff;
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c92b2b;
}

.section--dark .eyebrow {
  color: #fda4a4;
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  font-weight: 900;
  text-wrap: balance;
}

.section-desc {
  margin: 0;
  max-width: 860px;
  color: var(--sub);
  font-size: 1.02rem;
  text-wrap: pretty;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 231, 235, .92);
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
}

.site-brand__eyebrow {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #8a94a7;
  text-transform: uppercase;
  line-height: 1;
}

.site-brand__name {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #0f172a;
}

/* PC 네비 기본 */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.site-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  font-size: .98rem;
  font-weight: 800;
  color: #1f2937;
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: color .2s ease, transform .25s ease, opacity .25s ease;
}

.site-nav__links a:hover {
  color: #111827;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  transform: scaleX(1);
}

/* 기본 메뉴 호흡 */
.site-nav__links a:not(.site-nav__cta) {
  animation: menuBreath 4.5s ease-in-out infinite;
  opacity: .92;
}

.site-nav__links a:not(.site-nav__cta):hover {
  animation-play-state: paused;
  transform: translateY(-2px);
  opacity: 1;
}

.site-nav__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px !important;
  margin-left: 10px;
  padding: 0 18px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #d92b2b 0%, #b91c1c 100%);
  color: #fff !important;
  font-size: .92rem !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  border: 1px solid rgba(185, 28, 28, .14);
  box-shadow:
    0 8px 18px rgba(185, 28, 28, .16),
    inset 0 1px 0 rgba(255, 255, 255, .16);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  animation: ctaHeartbeat 2.2s ease-in-out infinite;
}

.site-nav__cta::after {
  display: none !important;
}

.site-nav__cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 14px 26px rgba(185, 28, 28, .22),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  filter: saturate(1.03);
  animation-play-state: paused;
}

@keyframes menuBreath {
  0% {
    transform: translateY(0);
    opacity: .88;
  }

  50% {
    transform: translateY(-1px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: .88;
  }
}

@keyframes ctaHeartbeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.06);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.04);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

/* =========================
   BUTTON
========================= */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  cursor: pointer;
  border: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .18) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(185, 28, 28, .25);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #020617;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, .90) 0%, rgba(2, 6, 23, .76) 36%, rgba(2, 6, 23, .42) 100%),
    radial-gradient(circle at 16% 22%, rgba(185, 28, 28, .24), transparent 22%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 38px;
  padding: 112px 0 80px;
}

.hero__content {
  max-width: 760px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 900;
  text-wrap: balance;
}

.hero__desc {
  margin: 0 0 18px;
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.08rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.hero__proof-line {
  margin: 0 0 28px;
  color: #fecaca;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  min-height: 138px;
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .14);
}

.hero-stat--highlight {
  border: 1px solid rgba(220, 38, 38, .20);
  box-shadow: 0 18px 38px rgba(185, 28, 28, .12);
}

.hero-stat__value {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-stat__label {
  margin: 14px 0 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
  white-space: normal;
  word-break: keep-all;
}

.hero__thumbs {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero__thumb {
  width: 88px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
  background: #111827;
}

.hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   COMMON BLOCKS
========================= */
.proof-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}

.proof-text {
  padding: 34px 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-text h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -.03em;
}

.proof-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.proof-text li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.proof-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.proof-sub {
  margin: 18px 0 0;
  color: var(--sub);
  line-height: 1.8;
}

.img-box {
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #dbe3ee;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dual-section {
  background: var(--bg-soft);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0 0 28px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .10);
}

.card .img-box {
  min-height: 280px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 24px;
}

.card h3 {
  margin: 0 28px 10px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.02em;
}

.card p {
  margin: 0 28px;
  color: var(--sub);
  line-height: 1.8;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 28px 0;
  color: var(--accent);
  font-weight: 800;
}

.link-btn::after {
  content: "→";
  transition: transform .2s ease;
}

.link-btn:hover::after {
  transform: translateX(4px);
}

.focus-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}

.focus-text {
  padding-right: 6px;
}

.focus-text h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -.04em;
  font-weight: 900;
}

.focus-text p {
  margin: 0 0 18px;
  color: var(--sub);
  line-height: 1.82;
}

.focus-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.focus-points li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-weight: 600;
  line-height: 1.75;
}

.focus-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.ykick-section {
  background: #fff;
}

/* =========================
   CONTACT
========================= */
.cta-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 26px;
}

.contact-section-desc {
  margin-top: 8px;
  font-size: 1.04rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
}

.contact-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-status {
  display: none;
  margin: 0 0 16px;
  padding: 15px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.6;
}

.contact-status.is-success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-status.is-error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}

.contact-switch__btn {
  position: relative;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .94);
  color: #111827;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;
  cursor: pointer;
}

.contact-switch__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(15, 23, 42, .12),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}

.contact-switch__btn.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 14px 30px rgba(185, 28, 28, .24),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.contact-panel {
  display: none;
  padding: 34px 30px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .96) 100%);
  box-shadow:
    0 24px 48px rgba(2, 6, 23, .14),
    0 8px 18px rgba(15, 23, 42, .06);
  backdrop-filter: blur(10px);
}

.contact-panel.is-active {
  display: block;
}

.contact-panel__head {
  margin-bottom: 26px;
}

.contact-title-sm {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #0f172a;
}

.contact-panel-desc {
  max-width: 760px;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid #d8dee8;
  background: #f8fafc;
  color: #111827;
  font-size: 1rem;
  line-height: 1.6;
  outline: none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    transform .2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: -.01em;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background: #fff;
  border-color: #c7d0dc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #fff;
  border-color: rgba(220, 38, 38, .42);
  box-shadow:
    0 0 0 4px rgba(220, 38, 38, .10),
    0 10px 24px rgba(15, 23, 42, .05);
}

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

.form-agree {
  margin: 4px 0 24px;
}

.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475569;
  font-size: .95rem;
  line-height: 1.7;
}

.agree-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #dc2626;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
}

.contact-form-actions .btn--primary {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow:
    0 16px 32px rgba(185, 28, 28, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.contact-form-actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 38px rgba(185, 28, 28, .28),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

/* =========================
   GOV LINKS
========================= */
.gov-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.gov-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gov-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
  border-color: rgba(220, 38, 38, .18);
}

.gov-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, .66);
  padding: 34px 0 40px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .76);
  font-weight: 600;
}

/* =========================
   MID CTA
========================= */
.mid-cta {
  padding: 56px 0;
}

.mid-cta__box {
  padding: 36px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0b1220 0%, #111d31 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .16);
  text-align: center;
}

.mid-cta__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f87171;
}

.mid-cta__box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: 900;
}

.mid-cta__box p {
  margin: 0 auto 20px;
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
}

/* =========================================================
   ABOUT~ 공용 확장 스타일
   - 현재 공용 style.css에 없는 것만 추가
========================================================= */

/* 다크 섹션에서 설명문 톤 */
.section--dark .section-desc {
  color: rgba(255, 255, 255, .82);
}

/* 추가 그리드 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* 버튼 확장 */
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}

.btn--ghost:hover {
  background: #fff;
  color: #0f172a;
  border-color: #fff;
}

/* 공용 카드 확장 */
.info-card,
.logo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.info-card:hover,
.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, .10);
  border-color: rgba(220, 38, 38, .18);
}

.card__body,
.info-card__body {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c92b2b;
}

.card-title {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.28;
  letter-spacing: -.03em;
  font-weight: 900;
  text-wrap: balance;
}

.card-desc {
  margin: 0;
  color: var(--sub);
  line-height: 1.82;
  text-wrap: pretty;
}

/* 확장 리스트 */
.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.75;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}

/* 이미지/사진 레이아웃 */
.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.photo-main {
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  background: #dbe3ee;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.network-photo {
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe3ee;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.network-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 로고 카드 */
.logo-card {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
}

.logo-card img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* CTA 밴드 */
.cta-band {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* 도장 로고 마키 */
.dojo-marquee-wrap {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.dojo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.dojo-marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}

.dojo-marquee--left .dojo-marquee__track {
  animation: dojoMarqueeLeft 34s linear infinite;
}

.dojo-marquee--right .dojo-marquee__track {
  animation: dojoMarqueeRight 34s linear infinite;
}

.dojo-marquee:hover .dojo-marquee__track {
  animation-play-state: paused;
}

.dojo-logo-card {
  flex: 0 0 auto;
  width: 240px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dojo-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .10);
  border-color: rgba(220, 38, 38, .18);
}

.dojo-logo-card img {
  max-width: 100%;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes dojoMarqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes dojoMarqueeRight {
  0% {
    transform: translateX(calc(-50% - 9px));
  }

  100% {
    transform: translateX(0);
  }
}

/* 추가 반응형 */
@media (max-width:980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width:900px) {
  .dojo-logo-card {
    width: 200px;
    height: 118px;
    padding: 18px;
  }

  .dojo-logo-card img {
    max-height: 72px;
  }

  .dojo-marquee--left .dojo-marquee__track,
  .dojo-marquee--right .dojo-marquee__track {
    animation-duration: 28s;
  }
}

@media (max-width:640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .dojo-logo-card {
    width: 170px;
    height: 104px;
    padding: 16px;
    border-radius: 18px;
  }

  .dojo-logo-card img {
    max-height: 62px;
  }

  .dojo-marquee-wrap {
    gap: 14px;
  }

  .dojo-marquee__track {
    gap: 14px;
  }

  .dojo-marquee--left .dojo-marquee__track,
  .dojo-marquee--right .dojo-marquee__track {
    animation-duration: 24s;
  }
}

/* =========================
   DESKTOP MENU SAFE RESET
========================= */
.site-nav__label {
  display: inline;
}

.site-nav__desc {
  display: none;
}

/* =========================
   MOBILE MENU FINAL
========================= */
.site-menu-toggle,
.site-menu-backdrop,
.site-nav__mobile-head {
  display: none;
}

.site-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
  cursor: pointer;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
  z-index: 1102;
}

.site-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .10);
  border-color: rgba(220, 38, 38, .18);
}

.site-menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transform: translateX(-50%);
  transition: .25s;
}

.site-menu-toggle__line:nth-child(1) {
  top: 14px;
}

.site-menu-toggle__line:nth-child(2) {
  top: 21px;
}

.site-menu-toggle__line:nth-child(3) {
  top: 28px;
}

.site-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1098;
}

@media (max-width:900px) {

  .site-header {
    z-index: 1100;
  }

  .site-header__inner {
    min-height: 78px;
    padding: 14px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-header.is-menu-open .site-menu-toggle__line:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
  }

  .site-header.is-menu-open .site-menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-menu-toggle__line:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-header.is-menu-open+.site-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.is-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    padding: 16px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(229, 231, 235, .92);
    box-shadow: -22px 0 52px rgba(15, 23, 42, .18);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform .35s cubic-bezier(.22, .8, .26, 1);
    z-index: 1101;
    overflow-y: auto;
  }

  .site-header.is-menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__mobile-head {
    display: block;
    margin: 52px 0 10px;
    padding: 14px 14px 13px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b1220, #1e293b);
    color: #fff;
    transform: translateY(8px);
    opacity: 0;
    transition:
      transform .35s ease .08s,
      opacity .35s ease .08s;
  }

  .site-header.is-menu-open .site-nav__mobile-head {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav__mobile-eyebrow {
    margin: 0 0 6px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fca5a5;
  }

  .site-nav__mobile-title {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.32;
    font-weight: 900;
    word-break: keep-all;
  }

  .site-nav__mobile-desc {
    margin: 0;
    font-size: .86rem;
    line-height: 1.58;
    color: rgba(255, 255, 255, .8);
  }

  .site-nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav__links a {
    position: relative;
    width: 100%;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    padding: 10px 14px 10px 22px;
    border-radius: 12px;
    font-size: .98rem;
    font-weight: 800;
    color: #111;
    background: transparent;
    transform: translateX(16px);
    opacity: 0;
    transition:
      transform .28s ease,
      opacity .28s ease,
      background .18s ease,
      color .18s ease;
    animation: none !important;
  }

  .site-nav__links a::after {
    display: none !important;
  }

  .site-header.is-menu-open .site-nav__links a {
    transform: translateX(0);
    opacity: 1;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(1) {
    transition-delay: .10s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(2) {
    transition-delay: .14s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(3) {
    transition-delay: .18s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(4) {
    transition-delay: .22s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(5) {
    transition-delay: .26s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(6) {
    transition-delay: .30s;
  }

  .site-header.is-menu-open .site-nav__links a:nth-child(7) {
    transition-delay: .34s;
  }

  .site-nav__links a:hover {
    background: #f8fafc;
    color: #b91c1c;
    transform: translateX(0);
  }

  .site-nav__links a:active {
    background: #f1f5f9;
  }

  .site-nav__links a.is-active {
    background: #fff8f8;
    color: #b91c1c;
    box-shadow: inset 0 0 0 1px rgba(220, 38, 38, .08);
  }

  .site-nav__links a.is-active::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: #dc2626;
    border-radius: 999px;
  }

  .site-nav__cta {
    margin-top: 8px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 44px;
    min-height: 44px !important;
    padding: 0 16px !important;
    border-radius: 12px;
    background: linear-gradient(135deg, #d92b2b, #b91c1c) !important;
    color: #ffffff !important;
    font-size: .94rem !important;
    font-weight: 800 !important;
    box-shadow:
      0 8px 16px rgba(185, 28, 28, .14),
      inset 0 1px 0 rgba(255, 255, 255, .10);
    opacity: 1 !important;
  }

  .site-nav__label {
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
  }

  .site-nav__desc {
    font-size: .8rem;
    line-height: 1.5;
    color: #5b6678;
    letter-spacing: -.01em;
  }

  .site-nav__links a.is-active .site-nav__desc {
    color: #7c2d12;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1180px) {
  .site-header__inner {
    min-height: 78px;
    gap: 22px;
  }

  .site-nav__links a {
    padding: 0 12px;
    font-size: .95rem;
  }

  .site-nav__links a::after {
    left: 12px;
    right: 12px;
  }

  .site-nav__cta {
    margin-left: 8px;
    padding: 0 16px !important;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 104px 0 64px;
  }

  .hero__thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .proof-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-panel {
    padding: 26px 22px 24px;
    border-radius: 24px;
  }

  .contact-switch__btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: .92rem;
  }

  .contact-title-sm {
    font-size: 1.32rem;
  }

  .contact-panel-desc {
    font-size: .96rem;
  }

  .gov-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:768px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding: 94px 0 48px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero__desc {
    font-size: .98rem;
    line-height: 1.82;
  }

  .contact-section-desc {
    font-size: .96rem;
    line-height: 1.8;
  }

  .mid-cta {
    padding: 42px 0;
  }

  .mid-cta__box {
    padding: 28px 22px;
    border-radius: 20px;
  }
}

@media (max-width:640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .contact-switch {
    gap: 10px;
  }

  .contact-switch__btn {
    width: 100%;
  }

  .contact-form-actions .btn--primary {
    width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 14px;
    border-radius: 14px;
  }

  .gov-links {
    grid-template-columns: 1fr;
  }

  .gov-item {
    min-height: 96px;
    padding: 18px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: min(90vw, 340px);
    padding: 16px;
  }

  .site-nav__mobile-head {
    margin-top: 44px;
    padding: 14px;
    border-radius: 16px;
  }

  .site-nav__mobile-title {
    font-size: 1rem;
  }

  .site-nav__links a {
    min-height: 64px;
    font-size: .95rem;
  }
}

/* =========================================================
   MOBILE MENU DESC FINAL FIX
========================================================= */

/* PC / 기본: 설명 숨김 */
.site-nav__desc {
  display: none !important;
}

/* 모바일 메뉴에서만 설명 노출 */
@media (max-width:900px) {

  .site-nav__links a {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 3px !important;
    min-height: 64px !important;
    padding: 10px 14px 10px 22px !important;
  }

  .site-nav__label {
    display: block !important;
    font-size: .98rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: inherit !important;
  }

  .site-nav__desc {
    display: block !important;
    font-size: .8rem !important;
    line-height: 1.5 !important;
    color: #5b6678 !important;
    margin-top: 2px !important;
    font-weight: 400 !important;
    letter-spacing: -.01em !important;
  }

  .site-nav__links a.is-active .site-nav__desc {
    color: #7c2d12 !important;
  }
}

/* =========================================================
   HANBIT FOOTER FINAL
   - 1열 소개 + 연락처
   - 2,3열 카드형
========================================================= */
.site-footer--hanbit-final{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(217,43,43,.10), transparent 20%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.05), transparent 18%),
    linear-gradient(135deg,#09111f 0%, #111d31 100%);
  color:rgba(255,255,255,.82);
  border-top:1px solid rgba(255,255,255,.08);
  padding:64px 0 28px;
}

.site-footer--hanbit-final::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%);
}

.footer-final{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr .95fr;
  gap:34px;
  align-items:start;
}

.footer-final__col{
  min-width:0;
}

/* 1열 */
.footer-final__eyebrow{
  margin:0 0 10px;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#f87171;
}

.footer-final__title{
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(1.6rem, 2.2vw, 2rem);
  line-height:1.2;
  letter-spacing:-.04em;
  font-weight:900;
}

.footer-final__desc{
  margin:0 0 22px;
  max-width:340px;
  color:rgba(255,255,255,.72);
  font-size:.98rem;
  line-height:1.82;
  text-wrap:pretty;
}

.footer-final__contact{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.footer-final__contact li{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:12px;
  align-items:start;
}

.footer-final__contact-label{
  color:#fff;
  font-size:.92rem;
  font-weight:800;
}

.footer-final__contact-value{
  color:rgba(255,255,255,.74);
  font-size:.94rem;
  line-height:1.72;
  word-break:keep-all;
}

.footer-final__contact-value a{
  color:rgba(255,255,255,.86);
  text-decoration:none;
  transition:color .2s ease;
}

.footer-final__contact-value a:hover{
  color:#fff;
}

/* 2,3열 카드 */
.footer-final__card{
  min-height:100%;
  padding:24px 22px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:
    0 16px 34px rgba(2,6,23,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter:blur(6px);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.footer-final__card:hover{
  transform:translateY(-3px);
  border-color:rgba(217,43,43,.28);
  box-shadow:
    0 22px 42px rgba(2,6,23,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.footer-final__card-title{
  margin:0 0 18px;
  color:#08111f;
  font-size:1.04rem;
  line-height:1.3;
  letter-spacing:-.02em;
  font-weight:900;
}

.footer-final__list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.footer-final__list li{
  display:grid;
  grid-template-columns:118px 1fr;
  gap:14px;
  align-items:start;
  padding:0 0 12px;
  border-bottom:1px solid rgba(0, 0, 0, 0.08);
}

.footer-final__label{
  color:#08111f;
  font-size:.94rem;
  font-weight:800;
}

.footer-final__value{
  color:#08111f;
  font-size:.94rem;
  line-height:1.72;
  word-break:keep-all;
}

.footer-final__actions{
  margin-top:18px;
}

.footer-final__actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:10px;
  background:#d92b2b;
  color:#fff;
  font-size:.84rem;
  font-weight:800;
  text-decoration:none;
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.footer-final__actions a:hover{
  transform:translateY(-1px);
  background:#b91c1c;
  box-shadow:0 10px 20px rgba(185,28,28,.18);
}

/* 하단 */
.footer-final__bottom{
  position:relative;
  z-index:1;
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-final__menu{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

.footer-final__menu a{
  position:relative;
  color:rgba(255,255,255,.62);
  font-size:.9rem;
  font-weight:700;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-final__menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:1px;
  background:#f87171;
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s ease;
}

.footer-final__menu a:hover{
  color:#fff;
}

.footer-final__menu a:hover::after{
  transform:scaleX(1);
}

.footer-final__copy{
  margin:0;
  color:rgba(255,255,255,.48);
  font-size:.84rem;
  line-height:1.7;
  white-space:nowrap;
}

/* 반응형 */
@media (max-width:1080px){
  .footer-final{
    grid-template-columns:1fr;
    gap:22px;
  }

  .footer-final__desc{
    max-width:100%;
  }
}

@media (max-width:720px){
  .site-footer--hanbit-final{
    padding:54px 0 24px;
  }

  .footer-final__contact li,
  .footer-final__list li{
    grid-template-columns:1fr;
    gap:4px;
  }

  .footer-final__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-final__copy{
    white-space:normal;
  }

  .footer-final__actions a{
    width:100%;
  }
}

/* =========================
   BACKDROP FIX (필수)
========================= */
@media (max-width:900px){
  .site-menu-backdrop{
    display:block; /* 이거 핵심 */
  }
}

.card .img-box {
  position: relative;
}

.card .img-box .editor-image-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

/* =========================
   INDEX FIX PACK
========================= */
.hero__image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__stats > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-panel {
  display: none;
}

.contact-panel.is-active {
  display: block;
}

.card .img-box {
  position: relative;
}

.card .img-box .editor-image-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

@media (max-width: 640px) {
  .hero__stats > div {
    grid-template-columns: 1fr;
  }
}

/* HERO 숫자 2열 2행 고정 */
.hero__stats > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  min-height: 130px;
}

.hero-stat__value {
  margin: 0 0 8px;
  line-height: 1;
}

.hero-stat__label {
  margin: 0;
  line-height: 1.45;
}

/* 모바일만 1열 */
@media (max-width: 640px) {
  .hero__stats > div {
    grid-template-columns: 1fr;
  }
}

/* =========================
   🔥 FINAL FIX PACK (필수)
========================= */

/* 1. 이미지 버튼 위치 고정 */
.img-box {
  position: relative;
}

.editor-image-btn {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
}

body.is-admin .editor-image-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 2. HERO 숫자 2열 정리 */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* 모바일은 1열 */
@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

/* 3. 좌우 반전 강제용 */
.focus-grid--reverse .focus-text {
  order: 2;
}

.focus-grid--reverse .img-box {
  order: 1;
}

@media (max-width: 1180px) {
  .focus-grid--reverse .focus-text,
  .focus-grid--reverse .img-box {
    order: initial;
  }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-stat {
  min-height: 138px;
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-stat__value {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #0f172a;
  white-space: nowrap;
  word-break: keep-all;
}

.hero-stat__number,
.hero-stat__suffix {
  display: inline;
  vertical-align: baseline;
}

.hero-stat__label {
  margin-top: auto;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-stat__value {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.editor-image-wrap {
  position: relative;
}
