/* ============================================================
   새솔경영자문센터 | 메인 랜딩 전용 스타일
   theme/saesol/css/saesol.css
   
   ※ head.sub.php 가 그누보드 기본 CSS를 로드한 뒤
      이 파일이 덮어쓰기(override) 합니다.
   ============================================================ */

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

/* ── 변수 ── */
:root {
  --ss-green:       #2C6E2C;
  --ss-green-lt:    #3A8C3A;
  --ss-green-dk:    #1E4D1E;
  --ss-green-bg:    #EAF2EA;
  --ss-dark:        #111111;
  --ss-charcoal:    #1C1C1C;
  --ss-gray-50:     #F8F8F8;
  --ss-gray-100:    #F2F2F2;
  --ss-gray-200:    #E8E8E8;
  --ss-gray-400:    #9E9E9E;
  --ss-gray-600:    #5E5E5E;
  --ss-white:       #FFFFFF;
  --ss-font:        'Noto Sans KR', sans-serif;
  --ss-radius:      8px;
  --ss-radius-lg:   14px;
  --ss-shadow:      0 4px 20px rgba(0,0,0,.09);
  --ss-shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --ss-ease:        cubic-bezier(.4,0,.2,1);
  --ss-dur:         .3s;
}

/* ── 그누보드 기본 레이아웃 완전 리셋 (랜딩 전용) ── */
body {
  font-family: var(--ss-font) !important;
  word-break: keep-all;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--ss-white) !important;
}

/* 그누보드 기본 #hd, #wrapper, #ft, hr 숨김 */
#hd, #ft, body > hr, #wrapper, .id_container_wr { display: none !important; }

/* 본문 바로가기 숨김 */
#skip_to_container { display: none !important; }

/* ── 공통 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { flex-shrink: 0; }

/* ── 레이아웃 ── */
.ss-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ss-section         { padding: 90px 0; }
.ss-section-gray    { background: var(--ss-gray-100); }

/* ── 섹션 공통 타이포 ── */
.ss-label-tag,
.ss-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ss-green);
  display: block;
  margin-bottom: 12px;
}
.ss-section-head    { text-align: center; margin-bottom: 56px; }
.ss-section-title   {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.02em;
  color: var(--ss-dark);
}
.ss-section-title em { color: var(--ss-green); font-style: normal; }
.ss-section-sub {
  margin-top: 14px;
  font-size: 16px;
  color: var(--ss-gray-600);
  line-height: 1.8;
}
.ss-qmark { color: var(--ss-green); }

/* ── 버튼 ── */
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--ss-radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--ss-font);
  transition: background var(--ss-dur) var(--ss-ease),
              box-shadow  var(--ss-dur) var(--ss-ease),
              transform   var(--ss-dur) var(--ss-ease);
  cursor: pointer;
}
.ss-btn svg { width: 17px; height: 17px; }
.ss-btn-lg  { padding: 18px 40px; font-size: 16px; }

.ss-btn-green {
  background: var(--ss-green);
  color: var(--ss-white);
  border: 2px solid transparent;
}
.ss-btn-green:hover {
  background: var(--ss-green-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44,110,44,.35);
}

.ss-btn-ghost {
  border: 2px solid rgba(255,255,255,.38);
  color: rgba(255,255,255,.88);
  background: transparent;
}
.ss-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.ss-btn-ghost-white {
  border: 2px solid rgba(255,255,255,.4);
  color: var(--ss-white);
  background: transparent;
}
.ss-btn-ghost-white:hover {
  background: rgba(255,255,255,.12);
}

.ss-btn-outline {
  border: 2px solid var(--ss-green);
  color: var(--ss-green);
  background: transparent;
}
.ss-btn-outline:hover {
  background: var(--ss-green);
  color: var(--ss-white);
}

.ss-btn-white {
  background: var(--ss-white);
  color: var(--ss-green);
  border: 2px solid transparent;
}
.ss-btn-white:hover {
  background: var(--ss-green-bg);
}

.ss-center-action { text-align: center; margin-top: 40px; }

/* ── 애니메이션 ── */
@keyframes ss-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ss-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:.55; transform:scale(.82); }
}
@keyframes ss-scroll-hint {
  0%   { transform: scaleY(1); opacity:1; }
  100% { transform: scaleY(0); opacity:0; }
}
@keyframes ss-ticker {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.ss-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ss-ease), transform .65s var(--ss-ease);
}
.ss-reveal.is-visible { opacity:1; transform:translateY(0); }
.ss-reveal-d1 { transition-delay: .1s; }
.ss-reveal-d2 { transition-delay: .2s; }
.ss-reveal-d3 { transition-delay: .3s; }

/* ============================================================
   HEADER — 투명 고정 헤더
   ============================================================ */
#ss-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  height: auto;
  border: none;
  transition: background .4s ease, box-shadow .4s ease;
}
#ss-header.is-scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}

/* ── 내부 컨테이너 (최대 1440px) ── */
.hd-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* ── 로고 ── */
.hd-logo {
  display: block;
  flex-shrink: 0;
  margin-top: 27px;
  line-height: 0;
}
.hd-logo img {
  width: 263px;
  height: 63px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* ── PC GNB ── */
.hd-gnb {
  display: flex;
  align-items: center;
  height: 130px;
  gap: 0;
}
.hd-gnb-item { position: relative; }

.hd-gnb-link {
  display: block;
  padding: 8px 28px;
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;                /* ← 흰색 명시 */
  letter-spacing: .02em;
  white-space: nowrap;
  position: relative;
  transition: color .2s ease, opacity .2s ease;
  text-decoration: none;
}
.hd-gnb-link:hover,
.hd-gnb-link.is-active {
  color: #ffffff;
  opacity: 1;
}
/* 호버 하단 라인 */
.hd-gnb-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 56px);
  height: 1.5px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform .25s ease;
  transform-origin: center;
}
.hd-gnb-link:hover::after,
.hd-gnb-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── 드롭다운 ── */
.hd-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 160px;
  background: rgba(12,12,12,.95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.hd-dropdown::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.hd-gnb-item:hover .hd-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hd-dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 20px;
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .18s, background .18s;
}
.hd-dropdown a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ── 햄버거 버튼 ── */
.hd-hamburger {
  display: none;               /* PC 에서 숨김 */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 8px;
  margin-top: -2px;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
  background: none;
  border: none;
}
.hd-hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease, width .28s ease;
  transform-origin: center;
}
.hd-hamburger span:nth-child(1) { width: 100%; }
.hd-hamburger span:nth-child(2) { width: 72%; }
.hd-hamburger span:nth-child(3) { width: 100%; }
.hd-hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px); width: 100%;
}
.hd-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hd-hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px); width: 100%;
}

/* ── 모바일 오버레이 ── */
#ss-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 8998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
#ss-nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ── 모바일 드로어 ── */
#ss-mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 84vw);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,.06);
  z-index: 8999;
  padding: 100px 0 48px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);           /* 기본: 오른쪽 밖으로 숨김 */
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  visibility: visible;
}
#ss-mobile-nav.is-open {
  transform: translateX(0);              /* 열릴 때: 슬라이드 인 */
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.05);
  letter-spacing: .01em;
  transition: color .2s, background .2s;
  width: 100%;
  text-align: left;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-decoration: none;
}
.mob-nav-link:hover { color: #fff; background: rgba(255,255,255,.04); }

/* 서브메뉴 아코디언 */
.mob-sub { display: none; flex-direction: column; background: rgba(255,255,255,.02); }
.mob-sub.is-open { display: flex; }
.mob-sub a {
  padding: 14px 48px;
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color .2s;
  text-decoration: none;
}
.mob-sub a:hover { color: rgba(255,255,255,.85); }

/* 모바일 CTA */
.mob-cta-wrap { margin-top: auto; padding: 24px 32px 0; }
.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: #2C6E2C;
  color: #fff;
  border-radius: 8px;
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .2s;
  text-decoration: none;
}
.mob-cta:hover { background: #3A8C3A; }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .hd-gnb       { display: none; }
  .hd-hamburger { display: flex; }
  .hd-wrap      { padding: 15px 24px; }
  .hd-logo      { margin-top: 4px; }
}
@media (max-width: 480px) {
  .hd-logo img  { width: 144px; height: auto; }
}

.ss-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* 로고 */
.ss-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ss-logo-mark {
  width: 36px; height: 36px;
  background: var(--ss-green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.ss-logo-mark svg { width: 18px; height: 18px; }
.ss-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--ss-white);
  letter-spacing: -.02em;
}
.ss-logo-text em {
  color: var(--ss-green);
  font-style: normal;
}

/* PC GNB */
.ss-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.ss-nav-item { position: relative; }
.ss-nav-a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--ss-radius);
  transition: color var(--ss-dur), background var(--ss-dur);
  white-space: nowrap;
}
.ss-nav-a:hover,
.ss-nav-a.is-active {
  color: var(--ss-white);
  background: rgba(255,255,255,.08);
}
.ss-nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--ss-green);
  color: var(--ss-white) !important;
  border-radius: var(--ss-radius);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ss-dur);
  white-space: nowrap;
}
.ss-nav-cta:hover { background: var(--ss-green-lt) !important; }

/* 드롭다운 */
.ss-nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  background: var(--ss-charcoal);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--ss-radius);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--ss-dur), transform var(--ss-dur);
  z-index: 200;
  box-shadow: var(--ss-shadow-lg);
}
.ss-nav-item:hover .ss-nav-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ss-nav-drop a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color var(--ss-dur), background var(--ss-dur);
}
.ss-nav-drop a:hover {
  color: var(--ss-white);
  background: rgba(255,255,255,.06);
}

/* 햄버거 */
.ss-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.ss-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ss-white);
  border-radius: 2px;
  transition: transform var(--ss-dur), opacity var(--ss-dur);
}
.ss-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ss-hamburger.is-open span:nth-child(2) { opacity: 0; }
.ss-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* 모바일 메뉴 */
.ss-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ss-charcoal);
  padding: 16px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  gap: 2px;
}
.ss-mobile-nav.is-open { display: flex; }
.ss-mobile-nav a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--ss-radius);
  transition: color var(--ss-dur), background var(--ss-dur);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ss-mobile-nav a:last-of-type { border-bottom: none; }
.ss-mobile-nav a:hover { color: var(--ss-white); background: rgba(255,255,255,.06); }
.ss-mobile-nav .ss-nav-cta {
  margin-top: 12px;
  background: var(--ss-green);
  color: var(--ss-white) !important;
  text-align: center;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.ss-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 영상 래퍼 */
.ss-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ss-hero-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* 영상 없을 때 폴백 그라디언트 */
.ss-hero-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a160a 0%, #132013 40%, #0d1a0d 100%);
  z-index: -1;
}
/* 패턴 장식 */
.ss-hero-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(44,110,44,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(44,110,44,.12) 0%, transparent 70%);
}
.ss-hero-fallback::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232C6E2C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.ss-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(8,8,8,.80) 0%,
    rgba(8,8,8,.50) 55%,
    rgba(20,55,20,.38) 100%
  );
  z-index: 1;
}

.ss-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.ss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44,110,44,.28);
  border: 1px solid rgba(44,110,44,.48);
  backdrop-filter: blur(6px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  margin-bottom: 28px;
  animation: ss-fade-up .8s .0s var(--ss-ease) both;
}
.ss-live-dot {
  width: 8px; height: 8px;
  background: var(--ss-green);
  border-radius: 50%;
  animation: ss-pulse 2s infinite;
}

.ss-hero-title {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--ss-white);
  line-height: 1.32;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  animation: ss-fade-up .8s .12s var(--ss-ease) both;
}
.ss-accent {
  color: var(--ss-green);
  position: relative;
  font-style: normal;
}
.ss-accent::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 3px;
  background: var(--ss-green);
  opacity: .45;
  border-radius: 2px;
}

.ss-hero-desc {
  font-size: clamp(14px, 1.7vw, 17px);
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 44px;
  animation: ss-fade-up .8s .24s var(--ss-ease) both;
}

.ss-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: ss-fade-up .8s .36s var(--ss-ease) both;
}

/* 스크롤 힌트 */
.ss-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.38);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ss-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  transform-origin: top;
  animation: ss-scroll-hint 1.6s ease-in-out infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
/* 외부: 전체 너비 + #bebebe 배경 */
.ss-stats-bar {
  width     : 100%;
  background: #dbdada;
}

/* 내부: 1440px 제한 + 3열 그리드 */
.ss-stats-inner {
  display               : grid;
  grid-template-columns : repeat(3, 1fr);
  max-width             : 1440px;
  margin                : 0 auto;
}

/* 칸별 배경색 */
.ss-stat-item:nth-child(1) { background: #229422; }
.ss-stat-item:nth-child(2) { background: #468626; }
.ss-stat-item:nth-child(3) { background: #3e602d; }

.ss-stat-item {
  padding    : 48px 56px;
  transition : filter var(--ss-dur);
}
.ss-stat-item:hover { filter: brightness(1.08); }

/* 라벨 — 페이퍼로지 */
.ss-stat-lbl {
  font-family   : 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size     : clamp(14px, 3vw, 24px);
  font-weight   : 600;
  color         : #ffffff;
  letter-spacing: -.01em;
  margin-bottom : 16px;
  line-height   : 1.4;
}

/* 숫자 + 단위 행 */
.ss-stat-val {
  display    : flex;
  align-items: baseline;
  gap        : 6px;
  line-height: 1;
  margin-bottom: 14px;
}

/* 큰 숫자 */
.ss-stat-val b {
  font-family   : 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size     : clamp(24px, 3vw, 64px);
  font-weight: 700;
  color         : #ffffff;
  letter-spacing: -.03em;
  font-style    : normal;
}

/* 단위 (억원 / 여개) */
.ss-stat-val span {
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size  : 1.45em;
  font-weight: 700;
  color      : #ffffff;
}

/* 연도 */
.ss-stat-period {
  font-family: 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size  : 16px;
  font-weight: 400;
  color      : rgba(255, 255, 255, .75);
}

/* 모바일 */
@media (max-width: 768px) {
  .ss-stats-inner {
    grid-template-columns: 1fr;
  }
  .ss-stat-item {
    padding: 36px 32px;
  }
}

/* ============================================================
   CONSULTING SLIDE SECTION  (.ct-*)
   ============================================================ */
.ct-section {
  background : #dbdada;
  padding    : 80px 0 90px;
  overflow   : hidden;
}
.ct-inner {
  max-width : 1440px;
  margin    : 0 auto;
  padding   : 0;
}

/* ── 타이틀 ── */
.ct-head {
  text-align    : center;
  margin-bottom : 56px;
  padding       : 0 40px;
}
.ct-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(22px, 3.2vw, 46px);
  font-weight   : 800;
  color         : #333333;
  line-height   : 1.45;
  letter-spacing: -.02em;
}
.ct-title em {
  color     : #2C6E2C;
  font-style: normal;
}

/* ── 캐러셀 ── */
.ct-carousel {
  position   : relative;
  display    : flex;
  align-items: center;
}

/* ── 화살표 ── */
.ct-arrow {
  flex-shrink    : 0;
  width          : 52px;
  height         : 52px;
  border-radius  : 50%;
  background     : rgba(255,255,255,.75);
  border         : none;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  box-shadow     : 0 2px 12px rgba(0,0,0,.15);
  transition     : background .2s, opacity .2s, transform .2s;
  z-index        : 10;
  position       : relative;
}
.ct-arrow:hover    { background: #fff; transform: scale(1.08); }
.ct-arrow:disabled { opacity: .35; cursor: default; }
.ct-arrow svg      { width: 22px; height: 22px; stroke: #555; }
.ct-arrow--prev    { margin-right: -26px; }
.ct-arrow--next    { margin-left : -26px; }

/* ── 트랙 ── */
.ct-track-wrap { flex: 1; overflow: hidden; }
.ct-track {
  display   : flex;
  gap       : 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

/* ── 카드 ── */
.ct-card {
  flex         : 0 0 calc(25% - 15px);
  min-width    : 0;
  background   : #ffffff;
  border-radius: 12px;
  overflow     : hidden;
  box-shadow   : 0 2px 16px rgba(0,0,0,.08);
  transition   : box-shadow .25s, transform .25s;
}
.ct-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  transform : translateY(-4px);
}
.ct-card-img {
  aspect-ratio: 4/3;
  overflow    : hidden;
  background  : #e0e0e0;
}
.ct-card-img img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
  transition: transform .5s ease;
}
.ct-card:hover .ct-card-img img { transform: scale(1.05); }
.ct-card-img.ct-img-fallback {
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : linear-gradient(135deg,#e8ece8,#d4dcd4);
}
.ct-card-img.ct-img-fallback::after {
  content  : '이미지 준비 중';
  font-size: 12px;
  color    : #999;
}
.ct-card-body {
  padding   : 24px 20px 28px;
  text-align: center;
}
.ct-name {
  font-size: 21px;
  font-weight: 700;
  color        : #222;
  margin-bottom: 6px;
}
.ct-role {
  font-size: 18px;
  font-weight  : 700;
  color        : #2C6E2C;
  margin-bottom: 14px;
  letter-spacing: -0.06em;
  line-height  : 1.5;
}
.ct-desc {
  font-size: 15px;
  color      : #555;
  line-height: 1.55;
  text-align : left;
}
/* ── 반응형 ── */
@media (max-width: 1200px) {
  .ct-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 900px) {
  .ct-card       { flex: 0 0 calc(50% - 10px); }
  .ct-arrow      { width: 40px; height: 40px; }
  .ct-arrow svg  { width: 18px; height: 18px; }
  .ct-arrow--prev { margin-right: -20px; }
  .ct-arrow--next { margin-left : -20px; }
}
@media (max-width: 600px) {
  .ct-card    { flex: 0 0 100%; }
  .ct-section { padding: 56px 0 64px; }
  .ct-head    { padding: 0 20px; }
}

/* ============================================================
   SUPPORT SERVICE SLIDE  (.sv-*)
   ============================================================ */
.sv-section {
  background : #ffffff;
  padding    : 80px 0 80px;
  overflow   : hidden;
  position   : relative;   /* ::after 기준점 */
}

/* ── 하단 회색 배경 밴드 ──
   슬라이드 카드 하단 ~45% 지점부터 깔리는 회색 레이어.
   카드 이미지는 z-index 1로 위에 올라타는 구조.        */
.sv-section::after {
  content  : '';
  position : absolute;
  bottom   : 0;
  left     : 0;
  right    : 0;
  height   : 38%;          /* 시안 비율 조정 가능 */
  background: #dbdada;
  z-index  : 0;
}

/* ── 대형 타이틀 ── */
.sv-heading {
  max-width     : 1440px;
  margin-left   : auto;
  margin-right  : auto;
  text-align    : center;
  padding       : 0 40px;
  margin-bottom : 64px;
  position      : relative;
  z-index       : 1;
}
.sv-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(20px, 3vw, 46px);
  font-weight   : 700;
  color         : #898989;
  line-height   : 1.45;
  letter-spacing: -.025em;
}

/* ── 서브 헤더 행 ── */
.sv-subrow {
  max-width      : 1440px;
  margin-left    : auto;
  margin-right   : auto;
  display        : flex;
  align-items    : flex-end;
  justify-content: space-between;
  padding        : 0px 0px;
  margin-bottom  : 32px;
  position       : relative;
  z-index        : 1;
}
.sv-label {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(24px, 3vw, 42px);
  font-weight: 700;
  color         : #2C6E2C;
  letter-spacing: -.025em;
  line-height   : 1.2;
  margin-bottom : 8px;
}
.sv-sublabel {
  font-size : 15px;
  color     : #777;
  font-weight: 400;
}

/* 화살표 */
.sv-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.sv-arrow {
  width          : 48px;
  height         : 48px;
  border-radius  : 50%;
  background     : #f0f0f0;
  border         : none;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : background .2s, opacity .2s;
}
.sv-arrow:hover    { background: #e0e0e0; }
.sv-arrow:disabled { opacity: .35; cursor: default; }
.sv-arrow svg      { width: 20px; height: 20px; stroke: #444; }

/* ── 슬라이드 뷰포트 ── */
.sv-viewport {
  overflow    : hidden;
  max-width   : 1440px;
  margin-left : auto;
  margin-right: auto;
  position    : relative;
  z-index     : 1;        /* 회색 밴드 위에 표시 */
}

/* ── 슬라이드 트랙 ── */
.sv-track {
  display   : flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

/* ── 개별 카드 ── */
.sv-card {
  flex        : 0 0 calc(100% / 3);  /* 3장 기준 */
  position    : relative;
  overflow    : hidden;
  aspect-ratio: 3 / 4;               /* 세로형 카드 */
  cursor      : pointer;
  transition  : filter .4s ease;
}

/* 활성 카드 외 어둡게 (시안 재현) */
.sv-card--dim { filter: brightness(.55); }

/* 배경 이미지 */
.sv-card-bg {
  position           : absolute;
  inset              : 0;
  background-size    : cover;
  background-position: center;
  background-color   : #2a3a2a;   /* 이미지 없을 때 폴백 */
  transition         : transform .6s ease;
}
.sv-card:hover .sv-card-bg { transform: scale(1.04); }

/* 그라디언트 오버레이 */
.sv-card-overlay {
  position  : absolute;
  inset     : 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.35) 45%,
    transparent     75%
  );
}

/* 콘텐츠 */
.sv-card-body {
  position : absolute;
  bottom   : 0; left: 0; right: 0;
  padding  : 32px 28px;
  color    : #ffffff;
  z-index  : 2;
}
.sv-card-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  line-height   : 1.3;
  margin-bottom : 12px;
  letter-spacing: -.02em;
}
.sv-card-desc {
  font-size    : 14px;
  line-height  : 1.7;
  opacity      : .88;
  margin-bottom: 24px;
}

/* 신청하기 버튼 */
.sv-card-btn {
  display      : inline-block;
  padding      : 10px 26px;
  border       : 1.5px solid rgba(255,255,255,.75);
  border-radius: 40px;
  font-size    : 14px;
  font-weight  : 600;
  color        : #ffffff;
  text-decoration: none;
  transition   : background .2s, border-color .2s;
}
.sv-card-btn:hover {
  background  : rgba(255,255,255,.15);
  border-color: #ffffff;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .sv-card    { flex: 0 0 50%; }
  .sv-subrow  { padding: 0 32px; }
}
@media (max-width: 640px) {
  .sv-card    { flex: 0 0 100%; aspect-ratio: 3/4; }
  .sv-heading { padding: 0 20px; }
  .sv-subrow  { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .sv-section { padding: 56px 0 0; }
}

/* ============================================================
   REALTIME TABLE  (.rt-*)
   ============================================================ */

/* ── 섹션 래퍼 ── */
.rt-section {
  position  : relative;
  padding: 80px 0 100px;
  overflow  : hidden;
}

/* ── 배경 이미지 레이어 ── */
.rt-bg {
  position           : absolute;
  inset              : 0;
  background-color   : #1a5c1a;           /* 이미지 없을 때 폴백 */
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  z-index            : 0;
}
/* 이미지 위 다크 그린 오버레이 */
.rt-bg::after {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: rgba(10, 50, 10, .55);
}

/* ── 내부 컨테이너 ── */
.rt-inner {
  position  : relative;
  z-index   : 1;
  max-width : 1200px;
  margin    : 0 auto;
  padding   : 0 24px;
}

/* ── 타이틀 ── */
.rt-head {
  text-align    : center;
  margin-bottom : 48px;
}
.rt-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 600;
  color         : #ffffff;
  letter-spacing: 0em;
  line-height   : 1.2;
  margin-bottom : 14px;
}
.rt-subtitle {
  font-size  : 16px;
  color      : rgba(255,255,255,.72);
  font-weight: 400;
}

/* ── 테이블 래퍼 ── */
.rt-table-wrap {
  border-radius: 4px;
  overflow     : hidden;
}

/* ── 테이블 ── */
.rt-table {
  width          : 100%;
  border-collapse: collapse;
  table-layout   : fixed;
}

/* 헤더 */
.rt-thead-row {
  background: rgba(60, 130, 60, .85);
}
.rt-thead-row th {
  padding    : 16px 24px;
  font-size  : 15px;
  font-weight: 700;
  color      : #ffffff;
  text-align : center;
  letter-spacing: .03em;
}
/* 컬럼 너비 */
.rt-table th:nth-child(1),
.rt-table td:nth-child(1) { width: 20%; }
.rt-table th:nth-child(2),
.rt-table td:nth-child(2) { width: 25%; }
.rt-table th:nth-child(3),
.rt-table td:nth-child(3) { width: 30%; }
.rt-table th:nth-child(4),
.rt-table td:nth-child(4) { width: 25%; }

/* 데이터 행 */
.rt-row {
  background  : rgba(20, 80, 20, .65);
  border-bottom: 1px solid rgba(255,255,255,.07);
  animation   : rt-fade-in .5s ease both;
  transition  : background .2s, transform .4s ease, opacity .4s ease;
  overflow    : hidden;
}
.rt-row:nth-child(even) { background: rgba(30, 95, 30, .55); }
.rt-row:hover           { background: rgba(50, 120, 50, .7); }

.rt-row td {
  padding   : 18px 24px;
  font-size : 15px;
  color     : rgba(255,255,255,.88);
  text-align: center;
  vertical-align: middle;
}

/* ── 배지 ── */
.rt-badge {
  display      : inline-block;
  padding      : 5px 14px;
  border-radius: 4px;
  font-size    : 13px;
  font-weight  : 700;
  letter-spacing: .02em;
}
.rt-badge--done {
  background: #2C6E2C;
  color     : #ffffff;
}
.rt-badge--wait {
  background: rgba(150,150,150,.6);
  color     : rgba(255,255,255,.9);
}

/* ── 행 퇴장 애니메이션 (JS 자동 스크롤) ── */
.rt-row--exit {
  animation: none !important;
  transform : translateY(-100%) !important;
  opacity   : 0 !important;
  transition: transform .45s cubic-bezier(.4,0,.2,1),
              opacity   .35s ease !important;
  pointer-events: none;
}

@keyframes rt-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rt-slide-up {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-100%); }
}

/* ── 반응형 ── */
@media (max-width: 768px) {
  .rt-section     { padding: 56px 0 64px; }
  .rt-table th,
  .rt-table td    { padding: 13px 12px; font-size: 13px; }
  .rt-table th:nth-child(4),
  .rt-table td:nth-child(4) { display: none; } /* 모바일: 날짜 숨김 */
}

/* ============================================================
   1:1 MANAGEMENT SYSTEM  (.mg-*)
   ============================================================ */

/* ── 섹션 ── */
.mg-section {
  background: #dbdada;
  padding: 100px 0 100px;
}
.mg-wrap {
  max-width: 1440px;
  margin   : 0 auto;
  padding  : 0 40px;
}

/* ── 4열 그리드 ──
   Row 1: 타이틀(2칸) | 카드01(1칸) | 카드02(1칸)
   Row 2: 카드03 ~ 06 각 1칸
   ─────────────────────────────────────────────── */
.mg-grid {
  display              : grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows   : auto auto;
  gap                  : 16px;
}

/* 타이틀 블록: col 1~2, row 1 */
.mg-title-block {
  grid-column : 1 / 3;
  grid-row    : 1 / 2;
  display     : flex;
  flex-direction: column;
  justify-content: center;
  padding     : 32px 0;
}
.mg-main-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color         : #222222;
  letter-spacing: -.03em;
  line-height   : 1.2;
  margin-bottom : 20px;
}
.mg-main-desc {
  font-size  : clamp(14px, 1.4vw, 18px);
  color      : #2C6E2C;
  font-weight: 600;
  line-height: 1.7;
}

/* ── 카드 공통 ── */
.mg-card {
  position     : relative;
  border-radius: 6px;
  padding      : 28px 28px 80px;   /* 하단은 아이콘 공간 */
  overflow     : hidden;
  min-height   : 220px;
  transition   : transform .25s ease, box-shadow .25s ease;
}
.mg-card:hover {
  transform : translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}

/* 그린 카드 */
.mg-card--green {
  background: #468626;
}
/* 회색 카드 */
.mg-card--gray {
  background: #939393;
}

/* ── 번호 ── */
.mg-num {
  display     : block;
  text-align  : right;
  font-family : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight : 700;
  color       : rgba(255,255,255,.65);
  margin-bottom: 62px;
  letter-spacing: .05em;
}

/* ── 카드 타이틀 ── */
.mg-card-title {
  /* font-family   : 'Paperlogy', 'Pretendard', sans-serif; */
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color         : #ffffff;
  line-height   : 1.35;
  margin-bottom : 14px;
  letter-spacing: -.02em;
}

/* ── 설명 ── */
.mg-card-desc {
  font-size: 17px;
  color      : rgba(255,255,255,.82);
  line-height: 1.5;
}

/* ── 배경 아이콘 (우하단, 반투명) ── */
.mg-icon {
  position: absolute;
  bottom  : 16px;
  right   : 20px;
  width   : 72px;
  height  : 72px;
  opacity : .22;
  pointer-events: none;
}
.mg-icon img {
  width : 100%;
  height: 100%;
  object-fit: contain;
  /* SVG를 흰색으로 표시 (filter 사용) */
  filter: brightness(0) invert(1);
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .mg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mg-title-block {
    grid-column: 1 / 3;
  }
}
@media (max-width: 640px) {
  .mg-grid          { grid-template-columns: 1fr; gap: 12px; }
  .mg-title-block   { grid-column: 1 / 2; padding: 16px 0; }
  .mg-wrap          { padding: 0 20px; }
  .mg-section       { padding: 56px 0; }
}

/* ============================================================
   VIDEO SECTION  (.vd-*)
   ============================================================ */
.vd-section {
  background: #ffffff;
  padding: 100px 0 100px;
}
.vd-wrap {
  max-width: 1440px;
  margin   : 0 auto;
  padding  : 0 60px;
}

/* ── 헤더 (좌측 정렬) ── */
.vd-head {
  margin-bottom: 52px;
}
.vd-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  color         : #1a1a1a;
  letter-spacing: -.03em;
  line-height   : 1.25;
  margin-bottom : 12px;
}
.vd-sub {
  font-size  : 16px;
  font-weight: 500;
  color      : #2C6E2C;
  line-height: 1.6;
}

/* ── 영상 그리드 ── */
.vd-grid {
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  gap                  : 28px;
  margin-bottom        : 52px;
}

/* ── 카드 ── */
.vd-card {
  border-radius: 10px;
  overflow     : hidden;
  box-shadow   : 0 4px 24px rgba(0,0,0,.1);
  transition   : box-shadow .25s, transform .25s;
}
.vd-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  transform : translateY(-4px);
}

/* ── 썸네일 링크 ── */
.vd-thumb {
  display     : block;
  position    : relative;
  aspect-ratio: 16 / 9;
  overflow    : hidden;
  background  : #111;
}

/* 썸네일 이미지 */
.vd-img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
  transition : transform .4s ease, opacity .3s;
}
.vd-thumb:hover .vd-img {
  transform: scale(1.03);
  opacity  : .88;
}

/* 플레이스홀더 */
.vd-placeholder {
  width           : 100%;
  height          : 100%;
  display         : flex;
  align-items     : center;
  justify-content : center;
  background      : linear-gradient(135deg, #1a2a1a, #0d1a0d);
}
.vd-ph-text {
  font-size: 13px;
  color    : rgba(255,255,255,.35);
}

/* ── 유튜브 플레이 버튼 ── */
.vd-play {
  position  : absolute;
  top       : 50%;
  left      : 50%;
  transform : translate(-50%, -50%);
  width     : 68px;
  height    : 48px;
  z-index   : 2;
  transition: transform .22s ease, filter .22s;
  filter    : drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
.vd-play svg { width: 100%; height: 100%; }
.vd-thumb:hover .vd-play {
  transform: translate(-50%, -50%) scale(1.12);
}

/* ── 하단 CTA ── */
.vd-cta {
  text-align: center;
}
.vd-cta-btn {
  display        : inline-flex;
  align-items    : center;
  gap            : 10px;
  padding        : 16px 36px;
  background     : #2C6E2C;
  color          : #ffffff;
  border-radius  : 40px;
  font-family    : 'Pretendard', sans-serif;
  font-size      : 16px;
  font-weight    : 600;
  text-decoration: none;
  letter-spacing : -.01em;
  transition     : background .22s, transform .22s, box-shadow .22s;
  box-shadow     : 0 4px 16px rgba(44,110,44,.3);
}
.vd-cta-btn:hover {
  background : #3A8C3A;
  transform  : translateY(-2px);
  box-shadow : 0 8px 28px rgba(44,110,44,.4);
}
.vd-cta-btn svg { width: 18px; height: 18px; stroke: #fff; }

/* ── 반응형 ── */
@media (max-width: 900px) {
  .vd-grid { grid-template-columns: 1fr; gap: 20px; }
  .vd-wrap { padding: 0 24px; }
  .vd-section { padding: 56px 0 64px; }
}

/* ============================================================
   REVIEW / 성과 후기  (.rv-*)
   ============================================================ */
.rv-section {
  background: #dbdada;
  padding: 100px 0 100px;
}
.rv-wrap {
  max-width: 1440px;
  margin   : 0 auto;
  padding  : 0 40px;
}

/* 헤더 */
.rv-head        { text-align: center; margin-bottom: 56px; }
.rv-eyebrow     { font-size: 15px; font-weight: 500; color: #2C6E2C; margin-bottom: 16px; }
.rv-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 700;
  color         : #111111;
  letter-spacing: -.035em;
  line-height   : 1.2;
}

/* 메이슨리 그리드 */
.rv-masonry { column-count: 4; column-gap: 16px; }

/* 카드 */
.rv-item {
  break-inside : avoid;
  margin-bottom: 16px;
  border       : 2px solid #3A8C3A;
  border-radius: 10px;
  overflow     : hidden;
  position     : relative;
  animation    : ss-fade-up .5s ease both;
  transition   : box-shadow .25s, transform .25s, border-color .25s;
}
.rv-item:hover { box-shadow: 0 8px 28px rgba(44,110,44,.2); transform: translateY(-3px); border-color: #2C6E2C; }

.rv-link  { display: block; position: relative; }
.rv-img   { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.rv-item:hover .rv-img { transform: scale(1.02); }

/* 호버 오버레이 */
.rv-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.28);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.rv-overlay svg { width: 28px; height: 28px; }
.rv-link:hover .rv-overlay { opacity: 1; }

/* 반응형 */
@media (max-width: 1100px) { .rv-masonry { column-count: 3; } }
@media (max-width: 768px)  { .rv-masonry { column-count: 2; } .rv-wrap { padding: 0 20px; } }
@media (max-width: 480px)  { .rv-masonry { column-count: 2; } .rv-section { padding: 56px 0; } }



/* ============================================================
   CTA  (.cta-*)
   ============================================================ */
.cta-section {
  position  : relative;
  overflow  : hidden;
  padding: 100px 0;
  text-align: center;
}

/* 배경 이미지 레이어 */
.cta-bg {
  position           : absolute;
  inset              : 0;
  background-color   : #2a3a2a;         /* 이미지 없을 때 폴백 */
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  z-index            : 0;
}
/* 다크 오버레이 */
.cta-bg::after {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: rgba(20, 30, 20, .72);
}

/* 콘텐츠 */
.cta-body {
  position : relative;
  z-index  : 1;
  max-width: 1100px;
  margin   : 0 auto;
  padding  : 0 40px;
}

/* 타이틀 */
.cta-title {
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 700;
  color         : #ffffff;
  line-height   : 1.45;
  letter-spacing: -.025em;
  margin-bottom : 44px;
}

/* 버튼 */
.cta-btn {
  display        : inline-flex;
  align-items    : center;
  gap            : 12px;
  padding        : 18px 44px;
  background     : #2C6E2C;
  color          : #ffffff;
  border-radius  : 50px;
  font-family    : 'Pretendard', sans-serif;
  font-size      : 17px;
  font-weight    : 700;
  text-decoration: none;
  letter-spacing : -.01em;
  transition     : background .22s, transform .22s, box-shadow .22s;
  box-shadow     : 0 4px 20px rgba(44,110,44,.35);
}
.cta-btn:hover {
  background: #3A8C3A;
  transform : translateY(-2px);
  box-shadow: 0 8px 32px rgba(44,110,44,.5);
}
.cta-btn svg {
  width : 22px;
  height: 22px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* 반응형 */
@media (max-width: 768px) {
  .cta-section { padding: 64px 0; }
  .cta-body    { padding: 0 24px; }
  .cta-btn     { padding: 16px 32px; font-size: 15px; }
}

/* ============================================================
   FOOTER  (.ft-*)
   ============================================================ */
#ft-footer {
  position  : relative;
  overflow  : hidden;
}

/* 배경 이미지 */
.ft-bg {
  position           : absolute;
  inset              : 0;
  background-color   : #111111;
  background-size    : cover;
  background-position: center;
  background-repeat  : no-repeat;
  z-index            : 0;
}
.ft-bg::after {
  content   : '';
  position  : absolute;
  inset     : 0;
  background: rgba(10, 10, 10, .78);
}

/* 내부 컨테이너 */
.ft-inner {
  position: relative;
  z-index : 1;
  padding : 52px 0 48px;
}
.ft-wrap {
  max-width      : 1440px;
  margin         : 0 auto;
  padding        : 0 60px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 40px;
}

/* ── 좌: 로고 + 사업자 정보 ── */
.ft-left {
  display       : flex;
  flex-direction: column;
  gap           : 20px;
}

.ft-logo { display: inline-block; line-height: 0; }
.ft-logo-img {
  height    : 60px;
  width     : auto;
  object-fit: contain;
  opacity   : .85;
  filter    : brightness(.9);
  transition: opacity .2s;
}
.ft-logo:hover .ft-logo-img { opacity: 1; }

.ft-biz {
  display       : flex;
  flex-direction: column;
  gap           : 5px;
}
.ft-biz p {
  font-size  : 13px;
  color      : rgba(255,255,255,.42);
  line-height: 1.75;
  font-family: 'Pretendard', sans-serif;
}
.ft-copy {
  margin-top: 6px;
  color     : rgba(255,255,255,.3) !important;
  font-size : 12px !important;
}

/* ── 우: 고객센터 ── */
.ft-right {
  text-align: right;
  flex-shrink: 0;
}
.ft-cs-label {
  font-size    : 13px;
  color        : rgba(255,255,255,.45);
  margin-bottom: 8px;
  font-family  : 'Pretendard', sans-serif;
}
.ft-cs-tel {
  display       : block;
  font-family   : 'Paperlogy', 'Pretendard', sans-serif;
  font-size     : clamp(26px, 3vw, 42px);
  font-weight   : 800;
  color         : rgba(255,255,255,.88);
  letter-spacing: -.03em;
  line-height   : 1.1;
  margin-bottom : 10px;
  text-decoration: none;
  transition    : color .2s;
}
.ft-cs-tel:hover { color: #ffffff; }
.ft-cs-hours {
  font-size  : 13px;
  color      : rgba(255,255,255,.42);
  line-height: 1.8;
  font-family: 'Pretendard', sans-serif;
}

/* ── 반응형 ── */
@media (max-width: 900px) {
  .ft-wrap    { flex-direction: column; align-items: flex-start; padding: 0 32px; }
  .ft-right   { text-align: left; }
}
@media (max-width: 480px) {
  .ft-wrap    { padding: 0 20px; }
  .ft-inner   { padding: 40px 0 36px; }
  .ft-logo-img { height: 48px; }
}

/* ============================================================
   플로팅 버튼 & TOP 버튼
   ============================================================ */
.ss-floating {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ss-floating a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 36px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--ss-shadow-lg);
  transition: transform var(--ss-dur), box-shadow var(--ss-dur);
  font-family: var(--ss-font);
}
.ss-floating a:hover { transform: translateY(-2px); }
.ss-float-tel {
  background: var(--ss-green);
  color: var(--ss-white) !important;
  box-shadow: 0 4px 20px rgba(44,110,44,.38) !important;
}
.ss-float-tel svg { width: 17px; height: 17px; stroke: white; }
.ss-float-kakao {
  background: #FEE500;
  color: #3A1D1D !important;
  box-shadow: 0 4px 20px rgba(254,229,0,.4) !important;
}
.ss-float-kakao svg { width: 17px; height: 17px; fill: #3A1D1D; stroke: none; }

#ss-top-btn {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--ss-charcoal);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--ss-dur), transform var(--ss-dur), background var(--ss-dur);
  pointer-events: none;
}
#ss-top-btn.is-visible { opacity:1; transform:translateY(0); pointer-events:auto; }
#ss-top-btn:hover { background: var(--ss-green); color: white; border-color: var(--ss-green); }
#ss-top-btn svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {

}

@media (max-width: 768px) {
  .ss-nav           { display: none; }
  .ss-hamburger     { display: flex; }

  .ss-hero-actions  { flex-direction: column; }
  .ss-floating      { bottom: 16px; right: 16px; }
  #ss-top-btn       { bottom: 16px; left: 16px; }
  .ss-section       { padding: 64px 0; }
  .ss-cta-actions   { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .ss-hero-title { font-size: 26px; }
  .ss-footer-biz { flex-direction: column; gap: 4px; }
  .ss-footer-biz span::before { display: none; }
}

/* ============================================================
   그누보드 잔재 숨김 (index.php 에서 이동)
   ============================================================ */
#ss-header .ss-inner,
#ss-header .ss-logo-mark,
#ss-header .ss-nav,
#ss-header .ss-hamburger,
#ss-header .ss-mobile-nav { display: none !important; }

#hd, #ft, #wrapper, body > hr,
#container_wr, #container, #aside { display: none !important; }

/* 팝업레이어 숨김 */
#newwin_layer, .newwin_layer {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
#newwin_layer.active, .newwin_layer.active {
  display: block !important;
  visibility: visible !important;
  width: auto !important;
  height: auto !important;
  position: fixed !important;
  z-index: 8000 !important;
}

/* ============================================================
   GNB 메뉴 흰색
   ============================================================ */
.hd-gnb-link,
.hd-gnb-link:link,
.hd-gnb-link:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}
.hd-gnb-link:hover,
.hd-gnb-link.is-active {
  color: #ffffff !important;
  opacity: .85;
}

/* ============================================================
   HERO 타이틀 — 시안 일치 (중앙 정렬 / 전체 흰색)
   ============================================================ */

/* hero body: 화면 정중앙 */
.ss-hero-body {
  position  : absolute;
  top       : 50%;
  left      : 50%;
  transform : translate(-50%, -50%);
  width     : 100%;
  text-align: center;
  padding   : 0 24px;
}

/* 타이틀 */
.ss-hero-title {
  font-family   : 'Paperlogy', 'Noto Sans KR', sans-serif;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 700;
  color         : #ffffff;
  line-height: 1.2;
  text-shadow   : 0 2px 24px rgba(0,0,0,.45);
  animation     : ss-fade-up .9s ease both;
}

/* 그린 강조색 → 흰색 */
.ss-hero-title strong,
.ss-hero-title .ss-accent {
  color      : #ffffff !important;
  font-style : normal;
}

/* 배지·설명·버튼·스크롤힌트 숨김 */
.ss-hero-badge,
.ss-hero-desc,
.ss-hero-actions,
.ss-scroll-hint { display: none; }

/* ── 하단 슬라이드 닷 ── */
.ss-hero-dots {
  position  : absolute;
  bottom    : 36px;
  left      : 50%;
  transform : translateX(-50%);
  display   : flex;
  align-items: center;
  gap       : 10px;
  z-index   : 3;
}
.ss-dot {
  width        : 10px;
  height       : 10px;
  border-radius: 50%;
  background   : rgba(255,255,255,.35);
  display      : block;
  transition   : background .3s, transform .3s;
  cursor       : pointer;
}
.ss-dot--active {
  background: #2C6E2C;
  transform : scale(1.25);
}

@media (max-width: 768px) {
  .ss-hero-title {
    font-size  : clamp(22px, 6vw, 36px);
    line-height: 1.55;
  }
}
