/* ===========================
   기본 리셋 & 전역
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #FF4400;
  --primary-dark: #cc3300;
  --primary-light: #ff6633;
  --kakao: #FEE500;
  --kakao-text: #3C1E1E;
  --dark: #111827;
  --dark2: #1f2937;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --accent: #ff6b35;
  --gold: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  word-break: keep-all;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   상단 고정 헤더
=========================== */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 20px rgba(255,68,0,0.2);
}

.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* 로고 — 가로 한줄형 (커넥트온 | 영업특공대) */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}
.logo-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
  font-style: normal;
  white-space: nowrap;
}
.logo-divider {
  display: block;
  width: 1.5px;
  height: 18px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  border-radius: 2px;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 1px;
}

.top-contacts {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.top-phone, .top-kakao {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.top-phone {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.top-phone:hover { background: var(--primary-dark); }
.top-kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  border: 2px solid var(--kakao);
}
.top-kakao:hover { background: #fdd800; }

/* ===========================
   HERO 섹션
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 90px;
  background: #050505;
  overflow: hidden;
}

/* 격자 배경 */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,68,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,68,0,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(48px); }
}

/* 글로우 빛 */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.hero-glow--left {
  width: 500px; height: 500px;
  left: -150px; top: 10%;
  background: radial-gradient(circle, rgba(255,68,0,0.22) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero-glow--right {
  width: 400px; height: 400px;
  right: -120px; bottom: 15%;
  background: radial-gradient(circle, rgba(255,120,50,0.15) 0%, transparent 70%);
  animation-delay: 2s;
}
@keyframes glowPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

/* 실시간 LIVE 배지 */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,68,0,0.35);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-live-badge strong { color: #ff9966; font-weight: 800; }
.hero-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: liveBlink 1s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50%       { opacity: 0.5; box-shadow: 0 0 0 4px rgba(239,68,68,0); }
}
.hero-live-counter {
  font-family: 'Courier New', monospace;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* 타이틀 */
.hero-title {
  font-size: clamp(2.4rem, 7.5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

/* 타이핑 래퍼 */
.hero-typing-wrap {
  display: inline-block;
  position: relative;
}
.hero-typing {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(255,68,0,0.5);
  position: relative;
}
.hero-cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: 300;
  animation: cursorBlink 0.7s step-end infinite;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: #94a3b8;
  line-height: 2;
  margin-bottom: 40px;
}
.hero-sub strong { color: #e2e8f0; font-weight: 800; }

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans KR', sans-serif;
  justify-content: center;
}

.btn-hero-main {
  font-size: 1.15rem;
  padding: 20px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 40px rgba(254,229,0,0.55);
  animation: heroBtnPulse 2.2s ease-in-out infinite;
}
@keyframes heroBtnPulse {
  0%, 100% { box-shadow: 0 8px 40px rgba(254,229,0,0.55); transform: translateY(0); }
  50%       { box-shadow: 0 12px 56px rgba(254,229,0,0.75); transform: translateY(-3px); }
}

/* 신뢰 지표 카드 */
.hero-trust-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  flex-wrap: wrap;
}
.htc {
  flex: 1;
  min-width: 100px;
  padding: 18px 12px;
  text-align: center;
  transition: background 0.2s;
}
.htc:hover { background: rgba(255,68,0,0.08); }
.htc-num {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.htc-num span {
  font-size: 0.65em;
  color: var(--primary);
  font-weight: 900;
}
.htc-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  line-height: 1.4;
}
.htc-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,0,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,68,0,0); }
}

.btn-kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  box-shadow: 0 4px 20px rgba(254,229,0,0.4);
}
.btn-kakao:hover {
  background: #fdd800;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(254,229,0,0.55);
}

.btn-call {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,68,0,0.4);
}
.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust span {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.75rem;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.bounce { animation: bounce 1.5s ease-in-out infinite; }

/* ===========================
   공통 섹션
=========================== */
section { padding: 72px 0; }

.section-label {
  display: inline-block;
  background: rgba(255,68,0,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 44px;
  letter-spacing: -0.5px;
}

/* ===========================
   띵 섹션 (임팩트 통계)
=========================== */
.ding-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f1a 100%);
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.ding-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,68,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(255,100,50,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.ding-intro {
  margin-bottom: 36px;
}
.ding-eyebrow {
  display: inline-block;
  background: rgba(255,68,0,0.15);
  border: 1px solid rgba(255,68,0,0.4);
  color: #ff9966;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  animation: pulse-border 2s ease-in-out infinite;
}

/* 통계 카드 공통 */
.ding-card {
  position: relative;
  max-width: 700px;
  margin: 0 auto 20px;
  border-radius: 24px;
  overflow: hidden;
}
.ding-card-inner {
  padding: 44px 40px;
}

/* 카드 1 - 광고비 */
.ding-card--stat {
  background: linear-gradient(135deg, #1a0500 0%, #2d0800 60%, #1a0500 100%);
  border: 2px solid rgba(255,68,0,0.35);
  box-shadow: 0 0 60px rgba(255,68,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* 카드 2 - 영업직 */
.ding-card--sales {
  background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2e 60%, #0a0a1a 100%);
  border: 2px solid rgba(100,100,255,0.25);
  box-shadow: 0 0 60px rgba(80,80,200,0.1), inset 0 1px 0 rgba(255,255,255,0.04);
}

.ding-q {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ding-big-num {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.ding-big-num em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(255,68,0,0.6);
}

.ding-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ding-desc strong { color: #fff; font-weight: 900; }

.ding-sub-comment {
  display: block;
  background: rgba(255,68,0,0.12);
  border: 1px solid rgba(255,68,0,0.3);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff9966;
  line-height: 1.65;
  margin-top: 18px;
}

.ding-highlight-text {
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ding-highlight-text em {
  font-style: normal;
  color: #fbbf24;
  font-weight: 900;
}

.ding-answer {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.ding-answer strong {
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251,191,36,0.5);
}

/* 구분선 */
.ding-divider {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 3px;
  margin: 28px 0;
  position: relative;
}
.ding-divider::before,
.ding-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.ding-divider::before { right: calc(50% + 40px); }
.ding-divider::after  { left:  calc(50% + 40px); }

/* 스토리 블록 */
.ding-story {
  max-width: 700px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ding-story-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 18px;
  text-align: left;
}
.ding-story--good {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
}
.ding-story--bad {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
}
.ding-story-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.ding-story-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}
.ding-story-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.ding-story-text em {
  font-style: normal;
  color: #f87171;
  font-weight: 700;
}

.ding-story-vs {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
  text-align: center;
  padding: 16px 0;
  text-transform: uppercase;
}

/* 결과 카드 */
.ding-story-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ding-result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.dr-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }
.ding-result-item span:last-child {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.ding-result-item strong {
  color: #fff;
  font-weight: 800;
}

/* 펀치라인 마무리 */
.ding-punchline {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, #cc2200 100%);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 50px rgba(255,68,0,0.4);
  position: relative;
  overflow: hidden;
}
.ding-punchline::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.ding-punchline-text {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.ding-punchline-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}
.ding-punchline-sub strong {
  color: var(--kakao);
  font-weight: 900;
}

/* 반응형 */
@media (max-width: 640px) {
  .ding-card-inner { padding: 32px 24px; }
  .ding-story-item { padding: 22px 20px; gap: 14px; }
  .ding-story-result { padding: 20px 18px; }
  .ding-punchline { padding: 28px 22px; }
  .ding-divider::before,
  .ding-divider::after { width: 40px; }
}

/* ===========================
   페인 포인트 섹션
=========================== */
.pain {
  background: var(--light-gray);
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

.pain-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border: 2px solid transparent;
  text-align: left;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255,68,0,0.1);
  border-color: rgba(255,68,0,0.2);
}
.pain-icon { font-size: 2.2rem; margin-bottom: 12px; }
.pain-card p {
  font-size: 0.92rem;
  color: var(--dark2);
  line-height: 1.7;
  font-weight: 500;
}
.pain-card strong { color: var(--dark); }

.pain-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.pain-cta-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--dark);
}

/* ===========================
   비교 섹션
=========================== */
.why {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}
.why .section-label { background: rgba(255,68,0,0.2); }
.why .section-title { color: var(--white); margin-bottom: 16px; }
.why-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 44px;
}

.compare-table {
  display: flex;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.compare-col { flex: 1; padding: 36px 28px; }
.compare-col.bad { background: #1f2937; }
.compare-col.good { background: linear-gradient(135deg, #7f0000, #cc2200); }
.compare-header {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.compare-col.bad li .fa-times { color: #ef4444; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.compare-col.good li .fa-check { color: #fbbf24; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  padding: 0 16px;
  min-width: 48px;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
}

/* ===========================
   서비스 섹션
=========================== */
.services { background: var(--white); text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,68,0,0.1);
  border-color: rgba(255,68,0,0.15);
  background: var(--white);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ===========================
   통계 섹션
=========================== */
.stats {
  background: linear-gradient(135deg, var(--primary), #cc2200);
  padding: 60px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: inline;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  display: inline;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: rgba(255,255,255,0.8);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  font-weight: 500;
}

/* ===========================
   성공 사례
=========================== */
.cases { background: var(--light-gray); text-align: center; }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.case-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.case-industry {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}
.case-problem strong, .case-result strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.case-problem strong { color: #ef4444; }
.case-result strong { color: var(--primary); }
.case-problem p, .case-result p { font-size: 0.86rem; color: var(--gray); line-height: 1.7; }
.case-arrow { text-align: center; font-size: 1.1rem; color: var(--primary); margin: 12px 0; }
.case-growth {
  margin-top: 16px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255,68,0,0.08), rgba(255,68,0,0.04));
  border: 1px solid rgba(255,68,0,0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.case-growth span { color: var(--primary); font-size: 1.05rem; font-weight: 900; }

/* ===========================
   카카오톡 후기
=========================== */
.reviews {
  background: #b2c7d9;
  text-align: center;
  padding: 72px 0;
}
.reviews .section-title { color: var(--dark); }
.kakao-chat-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #b2c7d9;
  border-radius: 20px;
  padding: 28px 20px;
}
.kakao-chat { display: flex; flex-direction: column; align-items: flex-start; }
.kakao-chat.reverse { align-items: flex-end; }
.chat-profile { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.kakao-chat.reverse .chat-profile { flex-direction: row-reverse; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.chat-name { font-size: 0.75rem; font-weight: 700; color: #3a3a3a; }
.chat-bubble-wrap {
  display: flex; flex-direction: column; gap: 5px;
  margin-left: 46px; max-width: 85%;
}
.kakao-chat.reverse .chat-bubble-wrap { margin-left: 0; margin-right: 46px; align-items: flex-end; }
.chat-bubble {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  font-size: 0.88rem;
  line-height: 1.65;
  padding: 11px 15px;
  border-radius: 0 14px 14px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
  word-break: keep-all;
}
.kakao-chat.reverse .chat-bubble {
  background: #fee500;
  color: #2d2d2d;
  border-radius: 14px 0 14px 14px;
}
.chat-time {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  margin-top: 3px;
  margin-left: 46px;
}
.kakao-chat.reverse .chat-time { margin-left: 0; margin-right: 46px; text-align: right; }

/* ===========================
   플랜 섹션
=========================== */
.plans { background: var(--white); text-align: center; }
.plans-sub {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: -32px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 52px rgba(0,0,0,0.15); }
.plan-main { border-color: var(--kakao); }
.plan-project { border-color: var(--primary); }

.plan-ribbon {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--kakao);
  color: var(--kakao-text);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 2px;
}

.plan-header {
  background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
  padding: 28px 28px 24px;
  color: var(--white);
}
.plan-icon-big { font-size: 2.4rem; margin-bottom: 12px; }
.plan-badge-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.plan-type {
  background: var(--kakao);
  color: var(--kakao-text);
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.project-type { background: var(--primary); color: var(--white); }
.plan-risk {
  background: rgba(255,255,255,0.15);
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.project-risk { background: rgba(255,68,0,0.2); color: #ff9966; }
.plan-name { font-size: 1.25rem; font-weight: 900; margin-bottom: 6px; }
.plan-period { font-size: 0.85rem; color: #94a3b8; }

.plan-body { padding: 24px 28px; background: var(--white); flex: 1; }
.plan-tagline {
  background: rgba(255,68,0,0.07);
  border-left: 3px solid var(--primary);
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
  font-style: italic;
}
.project-tagline { background: rgba(255,68,0,0.06); border-left-color: var(--primary); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.plan-features li { display: flex; gap: 12px; align-items: flex-start; }
.pf-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.plan-features li > div > strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.plan-features li > div > p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

.plan-as-box {
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg, #0f0f1a, #1a0a00);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.as-icon { font-size: 1.8rem; flex-shrink: 0; }
.as-title { font-size: 0.85rem; font-weight: 900; color: var(--kakao); margin-bottom: 6px; }
.as-desc { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 10px; }
.as-desc strong { color: #ff9966; }
.as-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.as-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.project-intro { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.project-examples { margin-bottom: 20px; }
.proj-ex-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.proj-ex-card {
  display: flex;
  gap: 12px;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  align-items: flex-start;
}
.proj-ex-num { font-size: 0.62rem; font-weight: 900; color: var(--primary); letter-spacing: 1px; flex-shrink: 0; padding-top: 3px; }
.proj-ex-icon { font-size: 1.5rem; flex-shrink: 0; }
.proj-ex-content strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.proj-ex-content p { font-size: 0.78rem; color: var(--gray); line-height: 1.6; margin-bottom: 6px; }
.proj-ex-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.proj-ex-tags span {
  font-size: 0.68rem; font-weight: 700;
  background: rgba(255,68,0,0.1);
  color: var(--primary);
  padding: 2px 8px; border-radius: 50px;
}

.project-process {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.pp-step {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--dark2);
  background: var(--light-gray);
  padding: 6px 10px;
  border-radius: 8px;
}
.pp-step span { display: block; font-size: 0.62rem; color: var(--primary); margin-bottom: 1px; }
.pp-arrow { color: var(--primary); font-weight: 900; font-size: 0.9rem; }

.plan-cta { padding: 20px 28px 24px; background: var(--white); border-top: 1px solid var(--light-gray); }
.plan-btn { width: 100%; font-size: 1rem; padding: 14px; }
.btn-project { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(255,68,0,0.3); }
.btn-project:hover { background: var(--primary-dark); transform: translateY(-2px); }
.plan-cta-note { font-size: 0.78rem; color: var(--gray); margin-top: 8px; text-align: center; }

.plans-bottom {
  margin-top: 40px;
  background: var(--light-gray);
  border-radius: 20px;
  padding: 28px 32px;
}
.plans-bottom-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pb-icon { font-size: 2rem; flex-shrink: 0; }
.pb-text { flex: 1; min-width: 180px; }
.pb-text strong { display: block; font-size: 1rem; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.pb-text p { font-size: 0.86rem; color: var(--gray); }

/* ===========================
   추천 대상
=========================== */
.recommend { background: var(--white); text-align: center; }
.recommend-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.recommend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gray);
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.25s;
  border: 2px solid transparent;
}
.recommend-item:hover {
  background: rgba(255,68,0,0.05);
  border-color: rgba(255,68,0,0.2);
  transform: translateX(4px);
}
.rec-icon { font-size: 1.2rem; flex-shrink: 0; }
.recommend-item p { font-size: 0.9rem; font-weight: 600; color: var(--dark2); line-height: 1.5; }

/* ===========================
   두근두근 문구 (CTA 상단)
=========================== */
.cta-heartbeat {
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-hb-line {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.cta-hb-emphasis {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hb-heart {
  display: inline-block;
  animation: heartbeat 0.85s ease-in-out infinite;
  transform-origin: center;
  font-size: 1.1em;
}

@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14%      { transform: scale(1.25); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.18); }
  56%      { transform: scale(1); }
}

.cta-hb-answer {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  text-align: center;
}
.cta-hb-answer strong {
  color: var(--kakao);
  font-weight: 900;
  font-size: 1.05em;
}

@media (max-width: 640px) {
  .cta-heartbeat { margin-bottom: 40px; gap: 12px; }
  .cta-hb-emphasis { font-size: 1.6rem; gap: 8px; }
  .cta-hb-answer { font-size: 0.95rem; }
}

/* ===========================
   강력 CTA
=========================== */
.cta-main {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #1a0500, #0a0a0a);
  padding: 90px 20px;
  text-align: center;
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,68,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-tag {
  display: inline-block;
  background: rgba(255,68,0,0.2);
  border: 1px solid rgba(255,68,0,0.5);
  color: #ff9966;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse-border 2s ease-in-out infinite;
}
.cta-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cta-title span { color: var(--primary); display: block; }
.cta-sub {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub strong { color: var(--kakao); font-weight: 900; }

.cta-kakao-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.btn-cta-big {
  font-size: 1.2rem;
  padding: 20px 52px;
  border-radius: 50px;
  box-shadow: 0 8px 36px rgba(254,229,0,0.5);
  animation: pulse-border 2s ease-in-out infinite;
}
.cta-phone-small {
  color: #64748b;
  font-size: 0.9rem;
}
.cta-phone-small a {
  color: #ff9966;
  text-decoration: none;
  font-weight: 700;
}
.cta-story {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.cta-note { color: #4b5563; font-size: 0.82rem; }

/* ===========================
   푸터
=========================== */
.footer {
  background: var(--dark);
  padding: 44px 20px;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.footer-logo-main { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-copy { color: #64748b; font-size: 0.88rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  display: flex; align-items: center; gap: 5px;
  color: #94a3b8; text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-legal { color: #374151; font-size: 0.75rem; }
.footer-company {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: 4px;
}
.footer-company-label {
  font-size: 0.82rem;
  color: #94a3b8;
}
.footer-company-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-company-link:hover {
  color: #fff;
  border-color: var(--primary);
}

/* ===========================
   플로팅 버튼
=========================== */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: 60px; height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  justify-content: center;
}
.float-btn span { font-size: 0.52rem; font-weight: 700; letter-spacing: -0.3px; }
.float-kakao { background: var(--kakao); color: var(--kakao-text); animation: float-pulse-kakao 3s ease-in-out infinite; }
.float-phone { background: var(--primary); color: var(--white); }
.float-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

@keyframes float-pulse-kakao {
  0%, 100% { box-shadow: 0 4px 20px rgba(254,229,0,0.4); }
  50% { box-shadow: 0 4px 30px rgba(254,229,0,0.7), 0 0 0 8px rgba(254,229,0,0.1); }
}

/* ===========================
   스크롤 페이드인
=========================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   반응형 — 태블릿 (≤ 900px)
=========================== */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .compare-table { flex-direction: column; }
  .compare-vs { writing-mode: horizontal-tb; padding: 10px; letter-spacing: 12px; min-width: unset; }
}

/* ===========================
   반응형 — 모바일 (≤ 640px)
=========================== */
@media (max-width: 640px) {
  section { padding: 56px 0; }

  /* 헤더 */
  .top-bar-inner { height: 54px; padding: 0 16px; }
  .logo-main { font-size: 1rem; }
  .logo-sub { font-size: 0.6rem; letter-spacing: 1.5px; }
  .logo-divider { height: 14px; }
  .top-phone { display: none; } /* 모바일엔 전화버튼 숨기고 카카오만 */
  .top-kakao { padding: 7px 14px; font-size: 0.82rem; }

  /* 히어로 */
  .hero { padding: 90px 16px 72px; }
  .hero-live-badge { font-size: 0.75rem; padding: 7px 14px; gap: 6px; }
  .hero-title { letter-spacing: -1px; margin-bottom: 18px; }
  .btn-hero-main { width: 100%; max-width: 340px; font-size: 1rem; padding: 17px 28px; }
  .hero-trust-cards { border-radius: 12px; }
  .htc { padding: 14px 8px; }
  .htc-num { font-size: 1.3rem; }
  .htc-label { font-size: 0.65rem; }
  .htc-divider { height: 36px; }

  /* 섹션 */
  .section-title { margin-bottom: 32px; }
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-card { padding: 22px 18px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }
  .cases-grid { grid-template-columns: 1fr; gap: 14px; }
  .case-card { padding: 26px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 10px; }

  /* 플랜 */
  .plan-header { padding: 24px 20px 20px; }
  .plan-body { padding: 20px; }
  .plan-cta { padding: 16px 20px 20px; }
  .plans-bottom { padding: 22px 20px; }
  .plans-bottom-inner { flex-direction: column; text-align: center; gap: 14px; }

  /* 추천 */
  .recommend-list { grid-template-columns: 1fr; gap: 10px; }
  .recommend-item { padding: 14px 16px; }

  /* CTA */
  .cta-main { padding: 64px 16px; }
  .btn-cta-big { width: 100%; max-width: 340px; font-size: 1rem; padding: 17px 24px; }

  /* 후기 */
  .kakao-chat-wrap { padding: 20px 12px; gap: 24px; }
  .chat-bubble-wrap { max-width: 88%; }
  .chat-bubble { font-size: 0.84rem; }

  /* 플로팅 */
  .floating-btns { bottom: 20px; right: 14px; }
  .float-btn { width: 54px; height: 54px; font-size: 1.2rem; }

  /* 비교표 */
  .compare-col { padding: 24px 20px; }
  .compare-col li { font-size: 0.85rem; }
}

/* ===========================
   반응형 — 소형 모바일 (≤ 400px)
=========================== */
@media (max-width: 400px) {
  .logo-main { font-size: 0.9rem; }
  .logo-sub { display: none; }   /* 아주 작은 화면엔 서브 숨김 */
  .logo-divider { display: none; }
  .hero-title { font-size: 1.9rem; }
  .plan-as-box { flex-direction: column; gap: 10px; }
  .project-process { flex-direction: column; gap: 4px; }
  .pp-arrow { transform: rotate(90deg); }
}
