/* ===== Variables ===== */
:root {
  --navy: #0D2B4E;
  --navy-dark: #091E37;
  --blue: #1A6FBF;
  --sky: #E8F4FD;
  --white: #FFFFFF;
  --gray-bg: #F5F7FA;
  --gray-border: #E2E8F0;
  --text: #1A1A2E;
  --text-sub: #5A6A7A;
  --gold: #C9A84C;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(13,43,78,0.09);
  --max-w: 480px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  width: 100%;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Inner ===== */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Site Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  background: rgba(13,43,78,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.4px;
}

/* 데스크탑 nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
/* 드롭다운 */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown-arrow {
  transition: transform 0.2s ease;
  opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  background: rgba(10,18,36,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 16px 8px 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
}
.nav-dropdown-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  flex-shrink: 0;
}
.nav-dropdown-item-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.nav-dropdown-item-desc {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.nav-link-cta {
  margin-left: 8px;
  padding: 7px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav-link-cta:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

/* 햄버거 버튼 */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 드로어 */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: rgba(9,30,55,0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.mobile-nav-link {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.mobile-nav-cta {
  margin: 12px 24px 0;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
}
.mobile-nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
  opacity: 0.88;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100svh;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

/* 배경 영상 */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,20,45,0.65) 0%, rgba(8,20,45,0.55) 100%);
  z-index: 1;
}
.hero-inner,
.hero-scroll-hint {
  position: relative;
  z-index: 2;
}

/* 파트너 로고 바 */
.partner-bar {
  background: #fff;
  border-bottom: 1px solid #ececec;
  padding: 30px 0;
}
.partner-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.partner-bar-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #333;
  white-space: nowrap;
  text-align: center;
}
.partner-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  width: 100%;
}
.partner-logo-item {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-img {
  height: 30px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.partner-logo-img:hover {
  opacity: 1;
}
.partner-logo-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.partner-logo-text:hover { opacity: 0.85; }
.samsung {
  color: #1428A0;
  font-family: 'Arial', sans-serif;
}
.carrier {
  color: #003594;
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
}
.partner-logo-divider {
  width: 1px;
  height: 20px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* ===== Team Photo ===== */
.team-photo-wrap {
  background: #ffffff;
  line-height: 0;
  padding: 0 40px;
  position: relative;
}
.team-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #F5F7FA 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.team-photo-img {
  display: block;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  object-fit: cover;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 18%);
  mask-image:
    linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 18%);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
@media (max-width: 640px) {
  .team-photo-wrap {
    padding: 0;
  }
  .team-photo-wrap::before {
    height: 30px;
  }
  .team-photo-img {
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 5%);
    mask-image:
      linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 5%);
  }
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.hero-question {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  line-height: 1.6;
}
.hero-title {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 32px;
}
/* 첫 줄: 크고 임팩트 있게 */
.hero-line-1 {
  display: block;
  font-size: clamp(28px, 8vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.22;
  margin-bottom: 0.9em;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
/* 둘째 줄: 뷰포트에 맞춰 한 줄 유지 */
.hero-line-2 {
  display: block;
  white-space: nowrap;
  font-size: clamp(13px, calc(4.3vw - 0.5px), 20px);
  letter-spacing: -0.5px;
  opacity: 0;
  animation: hero-fade 1.2s ease 1.1s forwards;
}
@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.hero-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
/* 형광펜 효과 */
.hero-highlight {
  background: linear-gradient(transparent 52%, rgba(255, 220, 0, 0.55) 52%);
  padding-bottom: 2px;
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.hero-meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.hero-meta-dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.1s;
}
.hero-btn-call:hover { opacity: 0.88; }
.hero-btn-call:active { transform: scale(0.985); }
.hero-btn-kakao {
  display: block;
  padding: 17px 24px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.15);
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.hero-btn-kakao:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.3px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ===== Buttons ===== */
.btn-primary {
  display: block;
  padding: 17px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:active { transform: scale(0.985); }

.btn-secondary {
  display: block;
  padding: 16px 24px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.2);
  letter-spacing: -0.2px;
  transition: background 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); }

/* ===== Section Common ===== */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.6px;
  color: var(--navy);
  margin-bottom: 28px;
}
.section-title-white {
  color: var(--white);
}

/* ===== Trust Section ===== */
.trust-section {
  min-height: 100svh;
  background: var(--white);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.trust-section .section-eyebrow { color: var(--blue); }
.trust-subtitle {
  font-size: 15px;
  color: #666;
  margin-top: -16px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.award-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.award-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid #e8d98a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 48px 18px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.award-medal {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5c842 0%, #c9920a 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(197,148,10,0.35);
}
.award-medal svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.award-medal-lg {
  background: #fff;
}
.lg-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

/* 수상 패널 */
.award-plaque {
  background: linear-gradient(160deg, #0b1a38 0%, #152848 60%, #0d1f3c 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), inset 0 1px 0 rgba(212,175,55,0.15);
  position: relative;
  overflow: hidden;
}
.award-plaque::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.award-plaque-deco {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.award-plaque-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5), transparent);
}
.award-plaque-star {
  font-size: 10px;
  color: var(--gold);
  opacity: 0.8;
}
.award-plaque-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 4px auto 16px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.award-plaque-year {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.9;
}
.award-plaque:not(.award-plaque-sm) .award-plaque-year {
  font-size: 17px;
}
.award-plaque-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.award-plaque-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
  margin: 6px 0 10px;
}

/* 서브 패널 2개 나란히 */
.award-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.award-list > .award-plaque:not(.award-plaque-sm) {
  width: 100%;
}
.award-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.award-plaque-sm {
  padding: 24px 16px 20px;
}
.award-plaque-title-sm {
  font-size: 16px;
  margin-bottom: 10px;
}
.award-info {
  flex: 1;
  text-align: left;
}
.award-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #a07800;
  background: #fff8d6;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.award-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.award-sub {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}
.award-ribbon {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 16px;
  color: #e8c84a;
  line-height: 1;
}

/* ===== Clients Section ===== */
.gold-gradient {
  background: linear-gradient(90deg, #f5c842 0%, #c9920a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== OC Section (고객사 현황) ===== */
.oc-section {
  background: #0d1b3e;
  padding: 80px 24px 72px;
  text-align: center;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.oc-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #7a9cc9;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.oc-counter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.oc-number {
  font-size: 96px;
  font-weight: 800;
  color: #f0c040;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
}
.oc-plus {
  font-size: 48px;
  font-weight: 700;
  color: #f0c040;
  line-height: 1;
}
.oc-unit {
  font-size: 22px;
  color: #f0c040;
  font-weight: 600;
  margin-left: 4px;
}
.oc-headline {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.4;
}
.oc-review-btn {
  display: inline-block;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  color: #f0c040;
  border-bottom: 1px solid rgba(240,192,64,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}
.oc-review-btn:hover {
  opacity: 0.8;
  border-color: #f0c040;
}
.oc-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  line-height: 1.8;
}
.oc-divider {
  width: 40px;
  height: 2px;
  background: #f0c040;
  margin: 0 auto 48px;
  border-radius: 2px;
}
.oc-marquee-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.oc-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
}
.oc-left  { animation: oc-scroll-left  28s linear infinite; }
.oc-right { animation: oc-scroll-right 24s linear infinite; }
@keyframes oc-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes oc-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.oc-marquee-container:hover .oc-marquee-track {
  animation-play-state: paused;
}
.oc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #c8d8f0;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}
.oc-tag:hover {
  background: rgba(240,192,64,0.12);
  border-color: rgba(240,192,64,0.4);
  color: #f0c040;
}
.oc-tag-icon { font-size: 15px; }
.oc-stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.oc-stat-item { text-align: center; }
.oc-stat-val {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}
.oc-stat-label {
  font-size: 12px;
  color: #7a9cc9;
  margin-top: 4px;
}
.oc-lg-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .oc-number { font-size: 72px; }
  .oc-plus   { font-size: 36px; }
  .oc-stat-row { gap: 28px; }
  .oc-stat-val { font-size: 22px; }
}

.clients-philosophy {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}
.clients-section .section-title {
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}
.clients-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.6;
  text-align: center;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.client-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.client-card:hover {
  background: rgba(255,255,255,0.11);
}
.client-logo-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
}
.client-name-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.client-category {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.client-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
  text-align: center;
}
.clients-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.industry-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* ===== Diff Section ===== */
.highlight-mark {
  background: #ffe066;
  color: inherit;
  padding: 0 4px;
  border-radius: 3px;
}

.diff-section {
  min-height: 100svh;
  background: var(--gray-bg);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diff-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}
.diff-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-border);
  letter-spacing: -1px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.diff-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.diff-content p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* ===== Story Section ===== */
.story-section {
  background: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
              url('images/burger.jpg') center/cover no-repeat;
  padding: 120px 64px;
}
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0 80px;
  align-items: start;
}
.story-left {
  position: sticky;
  top: 120px;
}
.story-left-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
}
.story-right { padding-top: 6px; }
.story-para { padding: 36px 0; }
.story-para--last { padding-bottom: 0; }
.story-para p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.story-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.story-em {
  color: #e05050 !important;
  font-weight: 600 !important;
  font-size: 17px !important;
}
.story-quote {
  color: rgba(255,255,255,0.4) !important;
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,0.15);
  margin: 6px 0 !important;
}
.story-muted {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px !important;
}
.story-resolve {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}
.story-final {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
  margin-top: 6px !important;
}
.story-sig {
  margin-top: 20px !important;
  font-size: 15px !important;
  color: rgba(255,255,255,0.7) !important;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.story-para,
.story-rule {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.story-para.is-visible,
.story-rule.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .story-section { padding: 80px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .story-left { position: static; }
  .story-left-title { font-size: 40px; }
  .story-para { padding: 28px 0; }
}

/* ===== Give Section ===== */
.give-section {
  background: #f4f5f7;
  padding: 120px 24px;
  text-align: center;
}
.give-inner {
  max-width: 760px;
  margin: 0 auto;
}
.give-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 28px;
}
.give-title {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  color: #0d0f12;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.give-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: #4b5563;
  margin: 0 0 48px;
}
/* 버튼 */
.give-cta-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.give-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 600;
  min-width: 200px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.give-btn:hover { transform: translateY(-3px); }
.give-btn--primary {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.25);
}
.give-btn--primary:hover { box-shadow: 0 8px 28px rgba(29, 78, 216, 0.35); }
.give-btn--secondary {
  background: #ffffff;
  color: #0d0f12;
  border: 1.5px solid #e2e5ea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.give-btn--secondary:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.give-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.give-btn-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.65;
}
.give-btn--primary .give-btn-sub { opacity: 0.75; }
/* 구분선 */
.give-divider {
  width: 100%;
  height: 1px;
  background: #e2e5ea;
  margin: 56px 0;
}
/* 카드 그리드 */
.give-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}
/* 카드 */
.give-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid #e2e5ea;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.give-card:hover {
  border-color: #bfcbf0;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.give-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.give-card-title {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: #0d0f12;
  margin: 0;
  flex: 1;
}
.give-card-desc {
  font-size: 12px;
  line-height: 1.75;
  color: #6b7280;
  margin: 0;
}
.give-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  margin-top: auto;
}
/* 하단 안내 */
.give-footnote {
  font-size: 15px;
  color: #4b5563;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 640px) {
  .give-section { padding: 88px 20px; }
  .give-title { word-break: keep-all; }
  .give-body { font-size: 15px; word-break: keep-all; }
  .give-cta-wrap { flex-direction: column; align-items: center; }
  .give-btn { width: 100%; max-width: 320px; }
  .give-card-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== Calc Hook Section ===== */
.calc-hook-section {
  min-height: 100svh;
  background: var(--sky);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.calc-hook-section .section-eyebrow { color: var(--blue); }
.calc-hook-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 28px;
}
.calc-hook-section .btn-primary {
  background: var(--navy);
  color: var(--white);
  max-width: 280px;
  margin: 0 auto;
}
.calc-hook-section .btn-primary:hover { opacity: 0.88; }

/* ===== Cases Section ===== */
.cases-section {
  min-height: 100svh;
  background: var(--gray-bg);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.cases-placeholder {
  background: var(--white);
  border: 1.5px dashed var(--gray-border);
  border-radius: var(--radius);
  padding: 48px 20px;
  font-size: 13px;
  color: #B0BAC6;
  margin-bottom: 24px;
}
.btn-blog {
  display: inline-block;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-border);
  transition: border-color 0.15s, background 0.15s;
}
.btn-blog:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ===== Final CTA Section ===== */
.final-cta-section {
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  pointer-events: none;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.52);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.final-cta-title {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.final-cta-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin: 0 0 56px;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.final-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.final-btn:hover { transform: translateY(-3px); }
.final-btn--call {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.final-btn--call:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.final-btn-num {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.final-btn--kakao {
  background: #FEE500;
  color: #191919;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(254,229,0,0.3);
}
.final-btn--kakao:hover { box-shadow: 0 8px 28px rgba(254,229,0,0.45); }
.final-btn--store {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 24px;
}
.final-btn--store:hover {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
  transform: none;
}
.final-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.final-trust-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.final-trust-list li::before {
  content: '✓';
  color: #60a5fa;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 640px) {
  .final-cta-section { padding: 100px 24px; }
  .final-cta-bg { object-position: center center; }
  .final-btn { max-width: 100%; }
}

/* ===== Footer ===== */
/* ── Footer ──────────────────────────────── */
.site-footer {
  background: #06080a;
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* 브랜드 */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.footer-tag {
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin: 0;
}

/* 정보 그리드 */
.footer-info-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-divider {
  color: rgba(255,255,255,0.12);
}

/* 링크 */
.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(255,255,255,0.65);
}

/* 카피라이트 */
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  margin: 8px 0 0;
}

/* ── 모바일 ─── */
@media (max-width: 640px) {
  .site-footer {
    padding: 48px 20px;
  }

  .footer-divider {
    display: none;
  }

  .footer-info-grid {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

/* ===== Floating Phone Button ===== */
.fab-phone {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  z-index: 100;
  transition: transform 0.15s, box-shadow 0.15s;
}
.fab-phone:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(201,168,76,0.55);
}
.fab-phone svg { stroke: var(--navy); }

/* ===== Desktop ===== */
@media (min-width: 520px) {
  .hero-cta-group { flex-direction: row; }
  .hero-btn-call, .hero-btn-kakao { flex: 1; }
  .section-title { font-size: 28px; }
}

@media (min-width: 768px) {
  .hero-inner {
    max-width: 1080px;
    padding: 0 60px;
  }
  /* 첫 줄: 콘텐츠 너비(960px) 기준으로 딱 한 줄에 맞춤 */
  .hero-line-1 {
    white-space: nowrap;
    font-size: min(4.2vw, 46px);
  }
  .hero-line-2 {
    white-space: nowrap;
    font-size: min(2.2vw, 24px);
  }
}

/* ===== Portfolio Section ===== */
.portfolio-section .section-eyebrow { color: #60a5fa; }
.portfolio-section .section-title { color: #ffffff; }
.portfolio-section {
  background: #0d0f12;
  min-height: 100svh;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: -1px;
}
.portfolio-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 56px;
}
.portfolio-track-wrap {
  position: relative;
  overflow: hidden;
}
.portfolio-track-wrap::before,
.portfolio-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.portfolio-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0d0f12, transparent);
}
.portfolio-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0d0f12, transparent);
}
.portfolio-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: portfolio-scroll 18s linear infinite;
}
.portfolio-track:hover {
  animation-play-state: paused;
}
@keyframes portfolio-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.portfolio-item {
  position: relative;
  width: 360px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img {
  transform: scale(1.04);
}
.portfolio-item-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}
@media (max-width: 640px) {
  .portfolio-section { padding: 88px 0; }
  .portfolio-item { width: 280px; height: 400px; }
  .portfolio-track { animation-duration: 14s; }
}

/* ===== Rise Animation ===== */
.rise-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rise-item.risen {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  animation: lb-in 0.2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.24);
}

/* ===== FAQ Section ===== */
.faq-section {
  background: #0d0f12;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.95));
  pointer-events: none;
}
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 72px;
}
.faq-intro {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 20px;
  white-space: nowrap;
}
.faq-header .section-eyebrow { margin: 0; }
.faq-list {
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  font-family: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin: 0 0 12px;
}
.faq-q::before {
  content: 'Q. ';
  color: #2563eb;
}
.faq-a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.faq-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.faq-link {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: opacity 0.2s;
}
.faq-link:hover { opacity: 0.75; }
.faq-blog-cta {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  text-align: center;
}
.faq-blog-cta-text {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin: 0 0 24px;
}
.faq-blog-cta-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.faq-blog-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #1d4ed8;
  border-radius: 8px;
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.18s;
}
.faq-blog-cta-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}
/* 모달 */
.fee-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.fee-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
.fee-modal {
  position: relative;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}
.fee-modal-backdrop.is-open .fee-modal { transform: scale(1); }
.fee-modal-img { width: 100%; display: block; }
.fee-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.fee-modal-close:hover { background: rgba(0,0,0,0.8); }
.faq-br-mobile { display: none; }
@media (max-width: 640px) {
  .faq-br-mobile { display: inline; }
  .faq-section { padding: 88px 20px; }
  .faq-header { margin-bottom: 52px; }
  .faq-intro { font-size: 5.5vw; }
  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; }
  .faq-blog-cta { padding: 28px 20px; }
}
