/* ===== 동네검증단 브랜드 토큰 (로고 네이비 + 인증 블루) ===== */
:root {
  --navy: #0e1b4d;          /* 로고 배경 네이비 = 브랜드 메인 */
  --navy-deep: #0a1238;
  --blue: #2f6bff;          /* 인증(체크) 블루 = 포인트 */
  --blue-dark: #2456d6;
  --blue-soft: #eaf0ff;
  --sky: #8ab4ff;           /* 다크 배경 위 강조 */
  --ink: #131826;
  --white: #ffffff;
  --gray: #69718a;
  --gray-light: #aab2c8;
  --line: #e6eaf4;
  --bg-soft: #f5f7fb;
  --max: 1200px;
}

html, body { overflow-x: hidden; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.02em;
  overflow-x: hidden;                         /* 모바일 가로 스크롤 방지 */
  -webkit-tap-highlight-color: transparent;   /* 터치 시 회색 박스 제거 */
  text-size-adjust: 100%;                      /* iOS 가로 회전 시 글자 확대 방지 */
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ===== 헤더 ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; letter-spacing: -0.04em; color: #fff; transition: color .3s; }
.logo-img { width: 38px; height: 38px; border-radius: 10px; display: block; }

.gnb { display: flex; align-items: center; gap: 38px; margin-left: auto; }
.gnb a {
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  transition: color .2s ease;
}
.gnb a:hover, .gnb a.active { color: var(--sky); }

.header-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700; font-size: 14px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* 밝은 섹션 위: 흰 헤더 */
.header.light { background: rgba(255,255,255,.95); backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line); }
.header.light .logo, .header.light .gnb a { color: var(--ink); }
.header.light .gnb a:hover, .header.light .gnb a.active { color: var(--blue); }
/* 어두운 섹션 위: 네이비 헤더 */
.header.dark-bg { background: rgba(10,18,56,.92); backdrop-filter: blur(8px); }

.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px 0; }
.menu-btn span { display: block; width: 26px; height: 2px; background: #fff; transition: .3s; }
.menu-btn span + span { margin-top: 6px; }
.header.light .menu-btn span { background: var(--ink); }

/* ===== 풀스크린 메뉴 (모바일) ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-close {
  position: absolute;
  top: 30px; right: 40px;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
}
.menu-close span {
  position: absolute; top: 50%; left: 50%;
  width: 28px; height: 2px; background: var(--white);
}
.menu-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.menu-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }

.menu-body { max-width: var(--max); margin: 0 auto; padding: 0 40px; width: 100%; }
.menu-list a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
  transition: color .25s ease, transform .25s ease;
}
.menu-list a:hover { color: var(--sky); transform: translateX(14px); }
.menu-en { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; }
.menu-ko { font-size: 16px; color: var(--gray-light); font-weight: 500; }
.menu-tagline { margin-top: 44px; font-size: 17px; color: var(--gray-light); }
.menu-tagline strong { color: var(--sky); font-weight: 700; }

/* ===== 도트 네비 ===== */
.dot-nav {
  position: fixed;
  top: 50%; right: 28px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dot-nav a {
  position: relative;
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  transition: .25s;
}
.dot-nav a.active { background: var(--blue); border-color: var(--blue); transform: scale(1.25); }
.dot-nav a::after {
  content: attr(data-name);
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.dot-nav a:hover::after { opacity: 1; }
.dot-nav.on-dark a { border-color: rgba(255,255,255,.5); }
.dot-nav.on-dark a.active { background: var(--sky); border-color: var(--sky); }
.dot-nav.on-dark a::after { color: var(--white); }

/* ===== 떠다니는 상담 버튼 ===== */
.float-cta {
  position: fixed;
  right: 34px; bottom: 34px;
  z-index: 60;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(140deg, #3d7bff 0%, #2456d6 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 14px 32px rgba(36, 86, 214, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-cta:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 40px rgba(36,86,214,.55); }

/* ===== 패널 공통 ===== */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0;
}

.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-eyebrow { font-size: 15px; font-weight: 600; color: var(--gray); margin-bottom: 22px; }
.sec-eyebrow em { font-style: normal; color: var(--blue); font-weight: 800; }
.sec-title { font-size: 44px; font-weight: 800; line-height: 1.25; letter-spacing: -0.04em; margin-bottom: 22px; }
.sec-title strong { color: var(--blue); }
.sec-desc { font-size: 18px; color: var(--gray); line-height: 1.7; }

/* ===== 1. 비주얼 (엔터프라이즈 히어로) ===== */
.visual {
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 0;
}
.visual-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 620px at 80% 18%, rgba(47, 107, 255, .42) 0%, transparent 60%),
    radial-gradient(680px 520px at 6% 88%, rgba(47, 107, 255, .22) 0%, transparent 60%),
    linear-gradient(140deg, #0a1238 0%, #0e1b4d 50%, #122257 72%, #0a1238 100%);
}
/* 은은한 테크 그리드 (가운데로 페이드) */
.visual-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(138, 180, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 180, 255, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 36%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 36%, #000 0%, transparent 78%);
  pointer-events: none;
}

.visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
}

/* 신뢰 배지 */
.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: rgba(138, 180, 255, .1);
  border: 1px solid rgba(138, 180, 255, .28);
  backdrop-filter: blur(6px);
  font-size: 14px; font-weight: 600;
  color: #d6e4ff;
  letter-spacing: -0.01em;
}
.badge-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue);
  position: relative; flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, .22);
}
.badge-check::after {
  content: ""; position: absolute;
  left: 6px; top: 4px;
  width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(43deg);
}

.visual-title {
  margin-top: 30px;
  font-size: 66px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}
.visual-title strong {
  font-weight: 800;
  background-image: linear-gradient(95deg, #8ab4ff 0%, #4d8fff 55%, #2f6bff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.visual-lead {
  margin-top: 26px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(231, 238, 255, .76);
}

/* 듀얼 CTA */
.visual-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3d7bff 0%, #2456d6 100%);
  color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: 0 14px 34px rgba(36, 86, 214, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(36, 86, 214, .6); }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.04);
  color: #fff; font-weight: 600; font-size: 16px;
  backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.btn-ghost:hover { border-color: var(--sky); background: rgba(138,180,255,.12); transform: translateY(-3px); }

/* 핵심 성과 숫자 바 */
.visual-stats {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 880px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.visual-stats li {
  flex: 1 1 0;
  min-width: 150px;
  padding: 6px 16px;
  position: relative;
}
.visual-stats li + li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 46px;
  background: rgba(255,255,255,.12);
}
.visual-stats strong {
  display: block;
  font-size: 46px; font-weight: 800; line-height: 1;
  letter-spacing: -0.04em;
  background-image: linear-gradient(180deg, #ffffff 0%, #9fc0ff 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.visual-stats strong em {
  font-style: normal; font-size: 22px; font-weight: 700;
  margin-left: 2px;
  -webkit-text-fill-color: var(--sky); color: var(--sky);
}
.vs-label { display: block; margin-top: 12px; font-size: 14.5px; font-weight: 500; color: rgba(231,238,255,.6); }

/* 운영 매체 로고 마퀴 */
.visual-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 30px 0 38px;
}
.marquee-cap {
  text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  color: rgba(231,238,255,.42);
  margin-bottom: 20px;
}
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span { display: grid; place-items: center; flex: 0 0 auto; height: 34px; }
.marquee-track img {
  height: 28px; width: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .55;
  transition: opacity .25s ease;
}
.visual-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span:hover img { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 떠다니는 장식 (정제된 블루 톤) */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco-ring1 {
  top: -12%; right: -7%;
  width: 440px; height: 440px;
  border: 50px solid rgba(110, 150, 255, .12);
  border-radius: 50%;
  filter: blur(1px);
  animation: float1 9s ease-in-out infinite alternate;
}
.deco-ring2 {
  top: 6%; left: -5%;
  width: 220px; height: 220px;
  border: 28px solid rgba(120, 160, 255, .1);
  border-radius: 50%;
  filter: blur(1px);
  animation: float2 11s ease-in-out infinite alternate;
}
.deco-glow {
  left: 12%; top: 40%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 150, 255, .4) 0%, transparent 70%);
  filter: blur(20px);
  animation: float2 8s ease-in-out infinite alternate;
}
.deco-cube {
  right: 11%; bottom: 22%;
  width: 84px; height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(150, 185, 255, .45) 0%, rgba(70, 110, 230, .26) 100%);
  box-shadow: inset 0 0 24px rgba(255,255,255,.26), 0 16px 36px rgba(4, 10, 40, .4);
  transform: rotate(18deg);
  animation: float1 8s ease-in-out infinite alternate;
}
.deco-ball {
  left: 36%; bottom: 16%;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(190, 215, 255, .8), rgba(70, 110, 230, .3));
  filter: blur(.5px);
  animation: float2 6s ease-in-out infinite alternate;
}
@keyframes float1 { from { transform: translateY(-10px) rotate(18deg); } to { transform: translateY(12px) rotate(14deg); } }
@keyframes float2 { from { transform: translateY(-8px); } to { transform: translateY(10px); } }

/* ===== 2. INTRODUCE (카드형 지표) ===== */
.introduce { background: var(--white); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px 32px;
  box-shadow: 0 6px 22px rgba(14, 27, 77, .05);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.stat::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #7aa6ff);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.stat:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(14, 27, 77, .12); border-color: var(--blue-soft); }
.stat:hover::before { transform: scaleX(1); }
.stat-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--blue-soft); color: var(--blue);
  margin-bottom: 22px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat:hover .stat-icon { transform: rotate(-6deg) scale(1.06); }
.stat-num {
  font-size: 50px; font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-num em { font-style: normal; font-size: 22px; font-weight: 700; margin-left: 4px; -webkit-text-fill-color: var(--ink); color: var(--ink); }
.stat-label { margin-top: 16px; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.stat-date { margin-top: 7px; font-size: 12.5px; color: var(--gray-light); }

/* ===== 3. SERVICE (벤토 그리드) ===== */
.service { background: var(--bg-soft); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 34px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.service-card--wide { grid-column: span 2; }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-icon {
  width: 50px; height: 50px; border-radius: 15px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue);
  transition: background .25s ease, color .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.svc-icon svg { width: 25px; height: 25px; }
.service-no {
  font-size: 13px; font-weight: 800; letter-spacing: .06em;
  color: var(--gray-light);
  transition: color .25s ease;
}
.service-name { margin: 22px 0 12px; font-size: 23px; font-weight: 800; letter-spacing: -0.03em; }
.service-desc { font-size: 15px; color: var(--gray); line-height: 1.7; }
.svc-arrow {
  margin-top: auto; align-self: flex-end;
  font-size: 22px; line-height: 1; color: var(--gray-light);
  opacity: 0; transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease, color .25s ease;
}
.service-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(14, 27, 77, .3);
}
.service-card:hover .service-name { color: #fff; }
.service-card:hover .service-desc { color: rgba(255,255,255,.66); }
.service-card:hover .service-no { color: rgba(255,255,255,.5); }
.service-card:hover .svc-icon { background: rgba(255,255,255,.14); color: var(--sky); transform: rotate(-6deg) scale(1.06); }
.service-card:hover .svc-arrow { opacity: 1; transform: none; color: var(--sky); }

/* ===== 3-1. INFLUENCER (프리미엄 다크 스포트라이트) ===== */
.influencer {
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding: 118px 0 126px;
}
.inf-bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(900px 560px at 78% 12%, rgba(60, 82, 220, .2) 0%, transparent 60%),
    radial-gradient(760px 560px at 16% 88%, rgba(47, 107, 255, .16) 0%, transparent 62%),
    linear-gradient(155deg, #02040d 0%, #07102b 46%, #030711 100%);
}
/* 정밀한 라인 그리드 (가장자리로 페이드) */
.inf-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(138, 180, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 180, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 92% 78% at 50% 42%, #000 0%, transparent 82%);
          mask-image: radial-gradient(ellipse 92% 78% at 50% 42%, #000 0%, transparent 82%);
  pointer-events: none;
}
.inf-noise {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.inf-orb {
  position: absolute; z-index: -2;
  border-radius: 50%;
  filter: blur(44px);
  opacity: .55;
  pointer-events: none;
}
.inf-orb1 { width: 340px; height: 340px; top: 4%; right: -70px; background: radial-gradient(circle, rgba(124,92,255,.6), transparent 70%); animation: orbFloat 12s ease-in-out infinite; }
.inf-orb2 { width: 420px; height: 420px; bottom: 0; left: -90px; background: radial-gradient(circle, rgba(47,107,255,.55), transparent 70%); animation: orbFloat 16s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(22px,-30px) scale(1.1); } }

.inf-inner { position: relative; z-index: 1; }

/* 헤더 */
.inf-hero {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.inf-head {
  text-align: left;
  max-width: 560px;
  margin: 0;
}
.inf-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.inf-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 4px rgba(138,180,255,.18); animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.inf-title {
  margin: 24px 0 22px;
  font-size: 52px; font-weight: 800; line-height: 1.18; letter-spacing: -0.045em;
  color: #fff;
}
.inf-title em {
  font-style: normal;
  background: linear-gradient(100deg, #8ab4ff 0%, #b39bff 50%, #5fe0d2 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.inf-lead { font-size: 17.5px; line-height: 1.78; color: rgba(255,255,255,.66); }
.inf-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 21px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6bff, #516dff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(47,107,255,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.inf-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(47,107,255,.38);
}
.inf-hero-btn span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #2f6bff;
  line-height: 1;
}
.inf-showcase {
  position: relative;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #02040d;
  box-shadow: 0 32px 80px rgba(0,0,0,.52);
}
.inf-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.inf-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

/* UGC 콘텐츠 쇼케이스 (세로형 릴스 카드) */
.ugc-showcase {
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ugc-row { display: flex; width: max-content; animation: marqLeft 60s linear infinite; }
.ugc-showcase:hover .ugc-row { animation-play-state: paused; }
.ugc-group { display: flex; gap: 20px; padding-right: 20px; }
.ugc-card {
  flex: none;
  width: 208px;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ugc-card:hover { transform: translateY(-8px); }
.ugc-thumb {
  position: relative; display: block;
  height: 370px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, var(--g2, #1a2350) 0%, var(--g3, #0a1238) 100%);
  box-shadow: 0 22px 48px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.1);
}
/* 실제 콘텐츠 이미지 */
.ugc-media {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* 자막·UI 가독용 음영 + 우측 액션 레일(좋아요·댓글·공유) */
.ugc-thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='112' viewBox='0 0 34 112' fill='white'%3E%3Cpath d='M17 24C17 24 7 18 7 11.5 7 8.4 9.4 6 12.2 6c1.9 0 3.6 1.1 4.8 2.8C18.2 7.1 19.9 6 21.8 6 24.6 6 27 8.4 27 11.5 27 18 17 24 17 24z'/%3E%3Cpath d='M8 44h18a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-9l-5 4v-4H8a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2z'/%3E%3Cpath d='M7 92l20-7-7 20-3.5-8.5z'/%3E%3C/svg%3E") right 11px bottom 58px / 28px auto no-repeat,
    linear-gradient(180deg, rgba(0,0,0,.34) 0%, transparent 24%),
    linear-gradient(180deg, transparent 46%, rgba(0,0,0,.62) 100%);
}
/* '예시' 배지 (정직한 표기) */
.ugc-sample {
  position: absolute; top: 11px; right: 11px; z-index: 2;
  padding: 4px 9px; border-radius: 7px;
  background: rgba(8,12,32,.55); border: 1px solid rgba(255,255,255,.34);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; color: #fff;
}
/* 재생 진행바 (왼→오로 차오름 = 재생 중) */
.ugc-thumb::before {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 12px; height: 3px; z-index: 3;
  border-radius: 2px;
  background: linear-gradient(90deg, #fff 0 50%, rgba(255,255,255,.3) 50% 100%);
  background-size: 200% 100%;
  animation: ugcProgress 5s linear infinite;
}
@keyframes ugcProgress { from { background-position: 100% 0; } to { background-position: 0 0; } }
.ugc-plat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 26px; height: 26px; border-radius: 8px;
  background-position: center; background-repeat: no-repeat; background-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.ugc-plat.ig { background-color: #e1306c; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='white' stroke='none'/%3E%3C/svg%3E"); }
.ugc-plat.yt { background-color: #ff0000; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 8l8 4-8 4z'/%3E%3C/svg%3E"); }
.ugc-plat.tt { background-color: #111; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M14 4c.5 2 2 3.3 4 3.5V10c-1.5 0-2.9-.4-4-1.2V15a5 5 0 1 1-5-5v2.3A2.7 2.7 0 1 0 11.7 15V4z'/%3E%3C/svg%3E"); }
.ugc-views {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(0,0,0,.45); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 11.5px; font-weight: 700; color: #fff;
}
.ugc-views i { width: 6px; height: 6px; border-radius: 50%; background: #ff4d4d; box-shadow: 0 0 0 3px rgba(255,77,77,.25); animation: pulseDot 2s ease-in-out infinite; }
/* 재생 중에는 숨기고, 호버(일시정지 느낌) 시 표시 */
.ugc-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.9); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(0,0,0,.3); border: 1.5px solid rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.ugc-play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff;
}
.ugc-card:hover .ugc-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.ugc-cap {
  position: absolute; left: 14px; right: 46px; bottom: 26px; z-index: 2;
  font-size: 12.5px; font-weight: 600; line-height: 1.45; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.ugc-foot { display: flex; align-items: center; gap: 10px; padding: 14px 4px 0; }
.ugc-av {
  width: 36px; height: 36px; flex: none; border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35), 0 2px 8px rgba(0,0,0,.3);
}
.ugc-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ugc-info { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.ugc-info b { font-size: 13.5px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ugc-info i { font-size: 11.5px; font-style: normal; color: rgba(255,255,255,.55); white-space: nowrap; }

/* 소싱 카테고리 칩 */
.inf-cats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 9px;
  max-width: 760px; margin: 0 auto 64px;
}
.inf-cats li {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.inf-cats li:hover { background: rgba(138,180,255,.14); color: #fff; border-color: rgba(138,180,255,.5); }

/* 인플루언서 티어 */
.inf-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 64px; }
.inf-tier {
  position: relative; overflow: hidden;
  padding: 30px 26px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.inf-tier::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), #b39bff, transparent);
  opacity: 0; transition: opacity .35s ease;
}
.inf-tier:hover {
  transform: translateY(-8px);
  border-color: rgba(138,180,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 26px 50px rgba(0,0,0,.4);
}
.inf-tier:hover::before { opacity: 1; }
.tier-no {
  position: absolute; top: 22px; right: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.28);
}
.tier-tag {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
.tier-range { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.04em; color: #fff; margin-bottom: 14px; }
.tier-range em { font-style: normal; font-size: 16px; font-weight: 700; color: rgba(255,255,255,.5); margin-left: 3px; }
.tier-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.62); white-space: nowrap; word-break: keep-all; }

/* 진행 방식 (프로세스 행) */
.inf-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 56px;
}
.flow-step {
  position: relative;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.flow-no {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: var(--sky);
  margin-bottom: 16px;
}
.flow-step h4 { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 11px; }
.flow-step p { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.62); }
/* 단계 연결 화살표 */
.flow-step + .flow-step::before {
  content: "\203A";
  position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  color: rgba(138,180,255,.55); font-size: 22px; font-weight: 700;
}

/* CTA */
.inf-cta { text-align: center; }
.inf-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f6bff 0%, #6b8cff 50%, #7c5cff 100%);
  color: #fff; font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  box-shadow: 0 16px 38px rgba(47,107,255,.42), inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.inf-btn i { font-style: normal; font-size: 19px; transition: transform .25s ease; }
.inf-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 52px rgba(47,107,255,.55), inset 0 1px 0 rgba(255,255,255,.3); }
.inf-btn:hover i { transform: translateX(4px); }
.inf-cta-note { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.5); }

/* ===== 4. PORTFOLIO (네이비 + 가로 슬라이더) ===== */
.portfolio {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background:
    radial-gradient(520px 720px at 100% 40%, rgba(47, 107, 255, .3) 0%, transparent 70%),
    var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}
.portfolio .sec-head { margin-bottom: 48px; }
.portfolio .sec-eyebrow,
.portfolio .sec-eyebrow em { color: var(--sky); }
.portfolio .sec-title { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 0; }

.pf-slider { position: relative; width: 100%; }
.pf-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px max(24px, calc((100% - 1200px) / 2 + 40px)) 14px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
}
.pf-track::-webkit-scrollbar { display: none; }
.pf-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.pf-card { flex: 0 0 300px; scroll-snap-align: start; cursor: pointer; }
.pf-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #16306e 0%, #2f6bff 100%);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pf-card:nth-child(3n+2) .pf-thumb { background: linear-gradient(135deg, #0e1b4d 0%, #5ba8ff 100%); }
.pf-card:nth-child(3n) .pf-thumb { background: linear-gradient(135deg, #122a5e 0%, #27d3a2 100%); }
.pf-thumb::after {
  content: attr(data-cat);
  position: absolute; left: 16px; bottom: 14px;
  background: rgba(6, 10, 34, .68); color: #fff;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  max-width: calc(100% - 32px);
  line-height: 1.35;
  word-break: keep-all;
}
.pf-card:hover .pf-thumb { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.45); }
.pf-card:active .pf-thumb { transform: scale(.98); transition-duration: .08s; }
.pf-body { display: block; padding: 18px 4px 0; }
.pf-body b { display: block; font-size: 19px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.pf-body i { display: block; margin-top: 8px; font-style: normal; font-size: 14.5px; color: rgba(255,255,255,.55); }

.pf-arrow {
  position: absolute;
  top: 38%;
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(10, 18, 56, .6);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.pf-arrow:hover { border-color: var(--sky); color: var(--sky); }
.pf-prev { left: 22px; }
.pf-next { right: 70px; }

.pf-more { margin-top: 46px; text-align: center; }
.btn-pill {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-weight: 600; font-size: 15px;
  transition: background .25s;
}
.btn-pill:hover { background: rgba(255,255,255,.26); }

/* ===== 포트폴리오 상세 모달 ===== */
.pf-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5, 8, 24, .96);
  opacity: 0;
  visibility: hidden;
  /* 닫을 때만 부드럽게(.22s), 열 때는 즉각(.12s) */
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.pf-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .12s ease, visibility 0s;
}
.pf-modal-box {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 56px 48px 48px;
  color: #fff;
  transform: translateY(8px);
  transition: transform .15s ease;
}
.pf-modal.open .pf-modal-box { transform: none; }
.pf-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
}
.pf-modal-close span {
  position: absolute; top: 50%; left: 50%;
  width: 26px; height: 2px; background: #fff;
}
.pf-modal-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.pf-modal-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }

.pf-modal-grid { display: grid; grid-template-columns: 380px 1fr; gap: 52px; align-items: start; }
.pf-modal-img {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 16px;
  background: linear-gradient(135deg, #16306e 0%, #2f6bff 100%);
}
.pf-modal-img::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  font-weight: 700; font-size: 18px;
}
.pf-modal-dots { display: flex; gap: 8px; margin-top: 16px; }
.pf-modal-dots button {
  width: 38px; height: 3px;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.25);
  transition: background .2s;
}
.pf-modal-dots button.active { background: var(--sky); }

.pf-modal-cat { color: var(--sky); font-weight: 700; font-size: 16px; }
.pf-modal-name { margin: 10px 0 36px; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.pf-row { display: flex; gap: 18px; margin-bottom: 24px; }
.pf-row-key {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 8px 24px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  font-weight: 700; font-size: 14px;
}
.pf-row-val { padding-top: 7px; color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.75; }

.pf-modal-cta { margin-top: 44px; text-align: center; }
.btn-grad {
  display: inline-block;
  padding: 16px 52px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700; font-size: 16px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-grad:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,107,255,.4); }

/* ===== 5. EXPERIENCE (파트너/클라이언트 카드) ===== */
.experience { background: var(--white); }
.experience .sec-eyebrow { color: var(--gray); }
.experience .sec-eyebrow em { color: var(--blue); }
.experience .sec-title { font-size: 34px; line-height: 1.4; }

.exp-cards { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
.exp-card {
  display: flex; flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 30px 32px;
}
.exp-pill {
  align-self: flex-start;
  padding: 11px 26px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800; font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.exp-card-desc { color: var(--gray); font-size: 16px; line-height: 1.75; margin-top: auto; }

/* --- 파트너 로고 마퀴 (무한 흐름) --- */
.exp-marquee {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
/* 각 행은 콘텐츠 폭(2그룹)을 가지며 좌우로 동일하게 넘쳐 항상 가운데 정렬됨 */
.exp-row {
  display: flex; flex: none;
  width: max-content;
  justify-content: center;
  margin: 0 auto;
  will-change: transform;
}
.exp-group { display: flex; gap: 14px; padding-right: 14px; }
.exp-row.left  { animation: marqLeft 30s linear infinite; }
.exp-row.right { animation: marqRight 36s linear infinite; }
.exp-row.left.slow { animation-duration: 46s; }
.exp-marquee:hover .exp-row { animation-play-state: paused; }
@keyframes marqLeft  { from { transform: translateX(0); }     to { transform: translateX(-50%); } }
@keyframes marqRight { from { transform: translateX(-50%); }  to { transform: translateX(0); } }

.exp-logo {
  display: inline-flex; align-items: center; gap: 12px;
  height: 72px; padding: 0 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eef1f7;
  box-shadow: 0 6px 18px rgba(14, 27, 77, .04);
  white-space: nowrap; flex: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.exp-logo:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(14, 27, 77, .1); border-color: var(--blue-soft); }
.exp-logo img { height: 28px; width: auto; flex: none; }
.exp-logo b { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }

/* --- 클라이언트 브랜드 칩 (떠다니는 모션) --- */
.exp-clients {
  flex: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  align-content: center;
}
.client-chip {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 11px;
  height: 70px; padding: 0 13px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eef1f7;
  box-shadow: 0 6px 18px rgba(14, 27, 77, .04);
  animation: chipBob 4.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.35s);
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-chip:hover { box-shadow: 0 14px 30px rgba(14, 27, 77, .12); }
.client-chip .cm {
  flex: none;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--c);
  color: #fff; font-weight: 800; font-size: 16px;
  box-shadow: 0 4px 10px color-mix(in srgb, var(--c) 40%, transparent);
}
.client-chip .ct { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.client-chip .ct b { font-size: 14.5px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; white-space: nowrap; }
.client-chip .ct i { font-size: 11.5px; font-style: normal; font-weight: 600; color: var(--gray-light); }
.client-chip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
  transform: translateX(-130%);
}
.client-chip:hover::after { transform: translateX(130%); transition: transform .85s ease; }
@keyframes chipBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* 파트너/UGC 마퀴·자동 흐름은 브랜드 핵심 모션이라 OS '동작 줄이기'와 무관하게 항상 재생 */

/* ===== 6. CONTACT (네이비 마무리) ===== */
.contact {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 120px 0 0;
  background:
    radial-gradient(640px 480px at 88% 12%, rgba(47, 107, 255, .3) 0%, transparent 60%),
    var(--navy);
  color: var(--white);
}
.contact .sec-head { margin-bottom: 40px; }

/* 왜 동네검증단인가 (강점 카드) */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 96px; }
.why-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138,180,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 22px 44px rgba(0,0,0,.36);
}
.why-ic {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(138,180,255,.12);
  border: 1px solid rgba(138,180,255,.22);
  color: var(--sky);
  margin-bottom: 20px;
}
.why-ic svg { width: 24px; height: 24px; display: block; }
.why-card h3 { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 11px; }
.why-card p { font-size: 14px; line-height: 1.72; color: rgba(255,255,255,.64); word-break: keep-all; }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

/* 신뢰 포인트 */
.contact-trust { margin-top: 30px; display: flex; flex-direction: column; gap: 13px; }
.contact-trust li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: rgba(255,255,255,.78); }
.contact-trust b { color: #fff; font-weight: 700; }
.contact-trust i {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  background: rgba(47,107,255,.22) center/13px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238ab4ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.contact .sec-eyebrow { color: rgba(255,255,255,.55); }
.contact .sec-eyebrow em { color: var(--sky); }
.contact .sec-title { color: #fff; }
.contact .sec-desc { color: rgba(255,255,255,.62); }
.contact-left .sec-title { font-size: 40px; }

/* 간편 연락 버튼 (전화/이메일) */
.contact-quick { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.cq-btn {
  display: flex; flex-direction: column; gap: 4px;
  padding: 15px 24px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  transition: .25s;
}
.cq-btn:hover { border-color: var(--sky); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.cq-btn b { font-size: 15px; font-weight: 700; color: #fff; }
.cq-btn span { font-size: 13.5px; color: rgba(255,255,255,.6); letter-spacing: .01em; }

/* 소비자용 간편 상담 폼 */
.quote-form {
  padding: 34px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 60px rgba(0,0,0,.32);
}
.qf-title { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.qf-sub { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.6); }
.qf-field { display: block; margin-top: 18px; }
.qf-field > span { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.qf-field > span em { font-style: normal; color: rgba(255,255,255,.4); font-weight: 500; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit; font-size: 15px; letter-spacing: -.01em;
  transition: border-color .2s, background .2s;
}
.qf-field textarea { resize: vertical; min-height: 64px; }
.qf-field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238ab4ff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
  padding-right: 40px;
}
.qf-field select option { color: #131826; }
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: rgba(255,255,255,.34); }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus { outline: none; border-color: var(--sky); background: rgba(255,255,255,.1); }
.qf-submit {
  width: 100%; margin-top: 24px;
  padding: 16px;
  border: 0; border-radius: 12px;
  background: var(--blue); color: #fff;
  font-weight: 800; font-size: 16px; cursor: pointer;
  transition: background .2s, transform .2s;
}
.qf-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }
.qf-submit:disabled { opacity: .6; cursor: default; transform: none; }
.qf-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.42); line-height: 1.5; text-align: center; }

/* 접수 완료 상태 */
.qf-done {
  padding: 52px 32px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 60px rgba(0,0,0,.32);
}
.qf-done-check {
  width: 64px; height: 64px; margin: 0 auto 22px;
  display: block; border-radius: 50%;
  background: var(--blue) center/30px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  box-shadow: 0 10px 26px rgba(47,107,255,.45);
}
.qf-done-title { font-size: 21px; font-weight: 800; color: #fff; }
.qf-done-sub { margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.66); }

/* ===== 1:1 맞춤 솔루션 신청 모달 ===== */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 26px 18px;
  background: rgba(0,0,0,.72);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity .18s ease, visibility 0s linear .18s;
}
.consult-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .18s ease, visibility 0s;
}
.consult-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  background: #111;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.56);
  transform: translateY(12px);
  transition: transform .18s ease;
}
.consult-modal.open .consult-panel { transform: none; }
.consult-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.consult-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  background: #fff;
}
.consult-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.consult-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.consult-head {
  padding: 20px 64px 20px 32px;
  text-align: center;
  background: #3c61f4;
}
.consult-head h2 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}
.consult-head p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.consult-form,
.consult-done {
  padding: 26px 32px 30px;
}
.consult-group {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}
.consult-group legend,
.consult-field > span {
  display: block;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.consult-group legend span { color: #5ba8ff; }
.consult-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
}
.consult-checks--wide { gap: 14px 34px; }
.consult-checks label,
.consult-agree label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}
.consult-checks input,
.consult-agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consult-checks label > span,
.consult-agree label > span {
  position: relative;
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 5px;
  background: #f5f5f5;
  box-shadow: inset 0 0 0 3px #d8d8d8;
}
.consult-checks input:checked + span,
.consult-agree input:checked + span {
  background: #3c61f4;
  box-shadow: inset 0 0 0 3px #fff;
}
.consult-checks input:checked + span::after,
.consult-agree input:checked + span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.consult-field {
  display: block;
  margin-top: 18px;
}
.consult-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.consult-field input,
.consult-field textarea,
.consult-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  padding: 0 10px 12px;
}
.consult-field textarea { resize: vertical; min-height: 62px; }
.consult-field input::placeholder,
.consult-field textarea::placeholder { color: rgba(255,255,255,.36); }
.consult-field input:focus,
.consult-field textarea:focus,
.consult-field select:focus {
  outline: 0;
  border-bottom-color: #5ba8ff;
}
.consult-email {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 160px;
  gap: 12px;
  align-items: end;
}
.consult-email i {
  align-self: center;
  color: rgba(255,255,255,.44);
  font-style: normal;
  font-size: 16px;
  text-align: center;
}
.consult-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: rgba(255,255,255,.52);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%237b849a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 36px;
}
.consult-field select option { color: #111; }
.consult-agree {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}
.consult-submit {
  width: 100%;
  margin-top: 22px;
  padding: 15px;
  border: 0;
  border-radius: 0;
  background: #3c61f4;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.consult-submit:hover { background: #2f55df; transform: translateY(-2px); }
.consult-submit:disabled { opacity: .65; cursor: default; transform: none; }
.consult-done { text-align: center; }

.contact-item { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-item:first-child { border-top: 2px solid rgba(255,255,255,.6); }
.contact-key { display: block; font-size: 13.5px; font-weight: 700; color: var(--sky); margin-bottom: 6px; letter-spacing: .06em; }
.contact-val { display: block; font-size: 19px; font-weight: 600; color: #fff; }
.contact-map {
  margin-top: 22px; height: 180px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: rgba(255,255,255,.4); font-weight: 800; letter-spacing: .1em;
}

/* ===== 푸터 (초미니멀 사업자정보) ===== */
.footer { border-top: 1px solid rgba(255,255,255,.08); margin-top: 100px; padding: 22px 0 26px; }
.footer-min {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { font-weight: 700; font-size: 12px; letter-spacing: .14em; color: rgba(255,255,255,.62); flex: none; }
.footer-biz-line { font-size: 11px; color: rgba(255,255,255,.32); letter-spacing: .01em; line-height: 1.5; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); margin-left: auto; flex: none; }

/* ===== 포트폴리오 전용 페이지 ===== */
body.dark-page { background: var(--navy-deep); }
.pf-page-head {
  padding: 168px 0 64px;
  background:
    radial-gradient(620px 380px at 85% 20%, rgba(47, 107, 255, .3) 0%, transparent 60%),
    var(--navy-deep);
  color: #fff;
}
.pf-page-head .eyebrow { color: var(--sky); font-weight: 800; letter-spacing: .18em; font-size: 14px; }
.pf-page-head h1 { margin-top: 14px; font-size: 46px; font-weight: 800; letter-spacing: -0.03em; }
.pf-page-head p { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; }
.pf-listing { background: var(--navy-deep); padding: 30px 0 100px; }
.pf-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pf-page-grid .pf-card { width: 100%; }
.pf-back { margin-top: 56px; text-align: center; }
@media (max-width: 1024px) { .pf-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .pf-page-head { padding: 132px 0 48px; }
  .pf-page-head h1 { font-size: 32px; }
  .pf-page-grid { grid-template-columns: 1fr; }
}

/* ===== 등장 애니메이션 ===== */
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.show { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .visual-title { font-size: 52px; }
  .visual-stats strong { font-size: 38px; }
  .deco-ring1 { width: 340px; height: 340px; border-width: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .inf-tiers { grid-template-columns: repeat(2, 1fr); }
  .inf-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step + .flow-step::before { display: none; }
  .why { grid-template-columns: repeat(2, 1fr); }
  .inf-hero { grid-template-columns: 1fr; gap: 40px; }
  .inf-head { max-width: 760px; text-align: center; margin: 0 auto; }
  .inf-title { font-size: 44px; }
  .inf-showcase { max-width: 900px; margin: 0 auto; }
  .experience .sec-title { font-size: 27px; }
  .pf-modal-grid { grid-template-columns: 1fr; gap: 36px; }
  .pf-modal-img { max-width: 420px; }
}

@media (max-width: 900px) {
  .gnb, .header-cta { display: none; }
  .menu-btn { display: block; }
}

@media (max-width: 720px) {
  .container, .header-inner, .menu-body { padding-left: 24px; padding-right: 24px; }
  .panel { min-height: auto; padding: 80px 0; }
  .visual { min-height: 100vh; min-height: 100svh; padding-top: 116px; }
  .visual-badge { font-size: 12.5px; padding: 8px 14px 8px 11px; }
  .visual-title { font-size: 34px; margin-top: 22px; }
  .visual-lead { font-size: 15.5px; margin-top: 20px; }
  .visual-lead br { display: none; }
  .visual-cta { margin-top: 30px; width: 100%; }
  .visual-cta .btn-primary, .visual-cta .btn-ghost { flex: 1 1 auto; justify-content: center; padding: 14px 18px; font-size: 15px; }
  .visual-stats { margin-top: 44px; padding: 22px 0; gap: 18px 0; }
  .visual-stats li { flex: 1 1 44%; min-width: 0; }
  .visual-stats li:nth-child(odd)::before { display: none; }
  .visual-stats strong { font-size: 34px; }
  .visual-stats strong em { font-size: 17px; }
  .marquee-track { gap: 40px; }
  .marquee-track img { height: 24px; }
  .deco-cube { width: 64px; height: 64px; right: 6%; }
  .deco-ring2, .deco-glow { display: none; }
  .logo-img { width: 32px; height: 32px; border-radius: 8px; }
  .float-cta { width: 72px; height: 72px; font-size: 11.5px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
  .dot-nav { display: none; }
  .pf-arrow { display: none; }
  .menu-en { font-size: 34px; }
  .sec-title { font-size: 30px; }
  .portfolio .sec-title { font-size: 24px; }
  .contact-left .sec-title { font-size: 28px; }
  .stats { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--wide { grid-column: span 1; min-height: 200px; }
  .pf-card { flex-basis: 248px; }
  .pf-track { gap: 18px; padding-left: 24px; padding-right: 24px; }
  .pf-body b { font-size: 17px; line-height: 1.35; word-break: keep-all; }
  .pf-body i { font-size: 13.5px; line-height: 1.45; word-break: keep-all; }
  .pf-thumb::after { left: 12px; bottom: 12px; max-width: calc(100% - 24px); font-size: 11px; padding: 5px 10px; }
  .experience .sec-title { font-size: 22px; }
  .exp-cards { grid-template-columns: 1fr; }
  .exp-card { padding: 28px 20px 26px; border-radius: 20px; }
  .exp-pill { font-size: 16px; padding: 9px 22px; margin-bottom: 20px; }
  .exp-card-desc { font-size: 14.5px; }
  /* 파트너 로고: 모바일에선 흐름 대신 가운데 줄바꿈 그리드 (단어 단위로 자연스럽게) */
  .exp-marquee {
    gap: 10px; margin-bottom: 22px;
    -webkit-mask: none; mask: none;
  }
  .exp-row {
    width: 100%; margin: 0;
    flex-wrap: wrap; justify-content: center;
    animation: none !important; transform: none;
  }
  .exp-row.left.slow { display: none; }            /* 중복 브랜드 줄 숨김 */
  .exp-group { flex-wrap: wrap; justify-content: center; gap: 10px; padding-right: 0; }
  .exp-group[aria-hidden="true"] { display: none; } /* 루프용 복제본 숨김 */
  .exp-logo { height: 54px; padding: 0 18px; gap: 9px; border-radius: 13px; white-space: nowrap; }
  .exp-logo img { height: 26px; }
  .exp-logo b { font-size: 15px; white-space: nowrap; word-break: keep-all; }
  /* 클라이언트 칩: 3열 → 2열 */
  .exp-clients { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .client-chip { height: 62px; }
  .inf-hero { gap: 30px; margin-bottom: 52px; }
  .inf-head { margin-bottom: 0; }
  .inf-title { font-size: 32px; }
  .inf-lead { font-size: 15.5px; }
  .inf-lead br { display: none; }
  .inf-hero-btn { width: 100%; justify-content: center; padding: 14px 18px; }
  .inf-showcase {
    width: calc(100% + 28px);
    margin-left: -14px;
    border-radius: 18px;
  }
  .inf-tiers { grid-template-columns: 1fr 1fr; gap: 12px; }
  .inf-tier { padding: 24px 20px; }
  .tier-range { font-size: 27px; }
  .ugc-card { width: 168px; }
  .ugc-thumb { height: 298px; }
  .inf-cats { margin-bottom: 48px; }
  .inf-cats li { font-size: 12px; padding: 7px 13px; }
  .inf-flow { gap: 12px; }
  .flow-step { padding: 22px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .why { grid-template-columns: 1fr; gap: 14px; margin-bottom: 60px; }
  .quote-form { padding: 28px 24px; }
  .qf-row { grid-template-columns: 1fr; gap: 0; }
  .qf-field input, .qf-field select, .qf-field textarea { min-height: 48px; font-size: 16px; }
  .qf-submit { min-height: 52px; font-size: 16px; }
  .cq-btn { flex: 1; }
  .consult-modal { padding: 0; }
  .consult-panel { width: 100%; min-height: 100vh; min-height: 100dvh; max-height: none; }
  .consult-close { top: 10px; right: 12px; }
  .consult-head { padding: 28px 56px 24px 24px; text-align: left; }
  .consult-head h2 { font-size: 30px; }
  .consult-head p { margin-top: 12px; font-size: 15.5px; }
  .consult-form, .consult-done { padding: 30px 24px 34px; }
  .consult-group { margin-bottom: 38px; }
  .consult-group legend, .consult-field > span { margin-bottom: 18px; font-size: 18px; }
  .consult-checks, .consult-checks--wide { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .consult-checks label, .consult-agree label { gap: 13px; font-size: 17px; line-height: 1.45; }
  .consult-checks label > span, .consult-agree label > span { width: 30px; height: 30px; border-radius: 6px; }
  .consult-checks input:checked + span::after, .consult-agree input:checked + span::after { left: 9px; top: 5px; width: 8px; height: 15px; }
  .consult-field input, .consult-field textarea, .consult-field select { font-size: 16px; padding: 0 4px 15px; }
  .consult-row { grid-template-columns: 1fr; gap: 0; }
  .consult-email { grid-template-columns: 1fr; gap: 10px; }
  .consult-email i { display: none; }
  .consult-submit { font-size: 17px; padding: 17px; }
  .footer-copy { margin-left: 0; }
  .pf-modal { padding: 16px; }
  .pf-modal-box { padding: 56px 24px 36px; }
  .pf-modal-name { font-size: 28px; }
}

/* ===== 작은 폰 (≤480px) 미세 조정 ===== */
@media (max-width: 480px) {
  .container, .header-inner, .menu-body { padding-left: 18px; padding-right: 18px; }
  .header-inner { height: 64px; }
  .logo { font-size: 18px; }

  /* 히어로 */
  .visual { padding-top: 100px; }
  .visual-badge { font-size: 11.5px; }
  .visual-title { font-size: 29px; }
  .visual-title br { display: none; }
  .visual-lead { font-size: 14.5px; }
  .visual-cta { flex-direction: column; gap: 10px; }
  .visual-cta .btn-primary, .visual-cta .btn-ghost { width: 100%; }
  /* 히어로 지표: 가독성 위해 1열 분리선 정리 */
  .visual-stats { gap: 16px 0; }
  .visual-stats strong { font-size: 30px; }
  .vs-label { font-size: 13px; margin-top: 8px; }

  /* 섹션 공통 */
  .panel { padding: 64px 0; }
  .sec-head { margin-bottom: 40px; }
  .sec-eyebrow { margin-bottom: 16px; }
  .sec-title { font-size: 26px; }
  .sec-desc { font-size: 15px; }
  .sec-desc br { display: none; }

  /* 인플루언서 티어: 좁은 폰에서 1열로 */
  .inf-tiers { grid-template-columns: 1fr; }
  .inf-flow { grid-template-columns: 1fr; }

  /* 포트폴리오 카드 살짝 축소 */
  .pf-card { flex-basis: 218px; }
  .pf-track { gap: 14px; padding-left: 18px; padding-right: 18px; }
  .pf-body { padding-top: 14px; }
  .pf-body b { font-size: 16px; }
  .pf-body i { font-size: 12.5px; }

  /* 연락처 */
  .contact-cta { flex-direction: column; }
  .contact-cta .btn-fill, .contact-cta .btn-line { width: 100%; text-align: center; }
  .contact-val { font-size: 17px; }
  .footer-min { gap: 6px 14px; }

  /* 플로팅 버튼 살짝 더 작게 */
  .quote-form { padding: 24px 18px; border-radius: 20px; }
  .qf-title { font-size: 20px; }
  .qf-sub { font-size: 13.5px; line-height: 1.5; }

  .consult-head { padding: 24px 52px 22px 20px; }
  .consult-head h2 { font-size: 25px; }
  .consult-head p { font-size: 14px; line-height: 1.5; }
  .consult-form, .consult-done { padding: 24px 20px 30px; }
  .consult-group legend, .consult-field > span { font-size: 16px; }

  .float-cta { width: 64px; height: 64px; font-size: 10.5px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); }
}
