/* ================================================================
   REVEALS MARKETING — DETAIL PAGES COMMON STYLESHEET
   메인홈 브랜드톤 완전 통일 (#ff6b35 오렌지 + #111 블랙 + #fff 화이트)
   ================================================================ */

/* ── PERFORMANCE HINTS ──────────────────────────────────────────── */
/* GPU 합성 레이어 최적화 */
.p-reveal { contain: layout; }
.p-hero-bg { will-change: auto; }
/* 폰트 로딩 최적화 */
html { text-rendering: optimizeSpeed; }

/* ── VARIABLES (메인홈 동일) ─────────────────────────────────── */
:root {
  --or: #ff6b35;
  --or-l: #ff8c5a;
  --or-d: #e85520;
  --or-p: rgba(255,107,53,.08);
  --bk: #111111;
  --bk-s: #1a1a1a;
  --wh: #ffffff;
  --wh-o: #fefcfb;
  --gy-d: #2d2d2d;
  --gy-m: #666666;
  --gy-l: #aaaaaa;
  --gy-p: #f5f5f5;
  --fmain: 'Noto Sans KR','Montserrat',sans-serif;
  --feng: 'Montserrat','Noto Sans KR',sans-serif;
  --sh-sm: 0 2px 12px rgba(0,0,0,.07);
  --sh-md: 0 8px 32px rgba(0,0,0,.10);
  --sh-lg: 0 20px 60px rgba(0,0,0,.14);
  --sh-or: 0 8px 32px rgba(255,107,53,.25);
  --r-sm: 8px; --r-md: 16px; --r-lg: 28px; --r-full: 9999px;
  --tr: all .35s cubic-bezier(.4,0,.2,1);
  --nav: 70px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fmain);
  background: var(--bk);
  color: var(--wh);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-l));
  width: 0%; z-index: 9999; transition: width .1s;
  box-shadow: 0 0 8px var(--or);
}

/* ── NAVBAR (index.html과 동일 클래스 - 상세페이지 공용) ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav);
  background: rgba(13,13,13,.85);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--or);
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.navbar.scrolled { background: rgba(10,10,10,.95); box-shadow: 0 4px 24px rgba(0,0,0,.45); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; background: var(--or);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 12px rgba(255,107,53,.3);
}
.logo-r { font-family: var(--feng); font-weight: 700; font-size: 1.15rem; color: var(--wh); line-height: 1; }
.logo-text {
  font-family: var(--feng); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .05em; color: var(--wh);
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-sub { font-size: .58rem; font-weight: 500; letter-spacing: .15em; color: rgba(255,255,255,.8); }
.nav-list { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.92);
  padding: 8px 13px; border-radius: 8px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: #ffffff; background: rgba(255,255,255,.15); }
.nav-link.active { color: var(--or); }
.nav-cta {
  background: #ffffff; color: var(--or) !important;
  padding: 9px 20px; border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.nav-cta:hover { background: rgba(255,255,255,.9) !important; transform: translateY(-1px); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); margin-top: 4px;
  min-width: 220px; background: #ffffff;
  border: 1px solid #e5e5e5; border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.15);
  padding: 8px; opacity: 0; visibility: hidden;
  transition: all 0.25s ease; z-index: 999;
}
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  color: #333333; font-size: 13px; font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown-menu li a:hover { background: rgba(255,107,53,.08); color: var(--or); }
.dropdown-menu li a i { width: 16px; color: var(--or); font-size: 13px; }
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown.open .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-toggle i { transition: transform .25s ease; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--wh); border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* 모바일 */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav); left: 0; right: 0;
    background: rgba(10,10,10,.97); backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 16px 20px 24px;
    border-bottom: 2px solid var(--or);
    transform: translateY(-110%); opacity: 0; visibility: hidden;
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s, visibility .4s;
    z-index: 999; max-height: calc(100vh - var(--nav)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-link { padding: 12px 16px; font-size: .93rem; color: rgba(255,255,255,.95) !important; }
  .nav-link:hover { background: rgba(255,255,255,.15) !important; color: #ffffff !important; }
  .nav-cta { background: #ffffff !important; color: var(--or) !important; text-align: center; margin-top: 8px; }
  .nav-cta:hover { background: rgba(255,255,255,.9) !important; }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255,255,255,.07) !important;
    border-radius: 8px !important;
    margin-top: 4px !important;
    padding: 6px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    left: auto !important;
  }
  .dropdown-menu li { list-style: none; }
  .dropdown-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 20px !important;
    color: rgba(255,255,255,.92) !important;
    font-size: .9rem !important;
    font-weight: 500 !important;
    background: transparent !important;
  }
  .dropdown-menu li a:hover {
    background: rgba(255,107,53,.15) !important;
    color: var(--or) !important;
  }
  .dropdown-menu li a i { color: var(--or) !important; width: 18px !important; }
  .dropdown.open .dropdown-menu { display: block !important; }
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.p-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.p-container-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION BASE ───────────────────────────────────────────── */
.p-section { padding: 100px 0; position: relative; overflow: hidden; }

/* ── SECTION COLOR THEMES ───────────────────────────────────── */
/* 다크 (기존) */
.p-section-dark {
  background: #111111;
}
/* 그레이 → 화이트 계열로 변경 */
.p-section-gray {
  background: #ffffff;
}
.p-section-gray .p-s-title { color: #111111; }
.p-section-gray .p-s-desc { color: #444444; }
.p-section-gray .p-s-badge { background: rgba(255,107,53,.10); color: #e85520; border-color: rgba(255,107,53,.3); }

/* 오렌지 비비드 */
.p-section-orange {
  background: linear-gradient(135deg, #0d0503 0%, #5a1e0c 50%, #c44318 100%);
}
.p-section-orange .p-s-title { color: #ffffff; }
.p-section-orange .p-s-desc { color: rgba(255,255,255,.85); }
.p-section-orange .p-s-badge { background: rgba(255,255,255,.2); color: #ffffff; border-color: rgba(255,255,255,.4); }

/* 화이트 소프트 */
.p-section-white {
  background: #fafafa;
}
.p-section-white .p-s-title { color: #111111; }
.p-section-white .p-s-desc { color: #444444; }
.p-section-white .p-s-badge { background: rgba(255,107,53,.10); color: #e85520; border-color: rgba(255,107,53,.3); }

/* ── SECTION DECO SHAPES (공통) ──────────────────────────────── */
/* 공통 도형 베이스 */
.p-section::before,
.p-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* 다크 섹션 도형 */
.p-section-dark::before {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 3px solid rgba(255,107,53,.25);
  top: -80px; right: -80px;
}
.p-section-dark::after {
  width: 180px; height: 180px;
  border: 3px solid rgba(255,255,255,.06);
  transform: rotate(30deg);
  bottom: 60px; left: -50px;
}

/* 화이트/그레이 섹션 도형 */
.p-section-gray::before,
.p-section-white::before {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 3px solid rgba(255,107,53,.2);
  bottom: -60px; left: -60px;
}
.p-section-gray::after,
.p-section-white::after {
  width: 140px; height: 140px;
  border: 3px solid rgba(255,107,53,.15);
  transform: rotate(20deg);
  top: 40px; right: 60px;
}

/* 오렌지 섹션 도형 */
.p-section-orange::before {
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.2);
  top: -120px; right: -100px;
}
.p-section-orange::after {
  width: 200px; height: 200px;
  border: 4px solid rgba(255,255,255,.15);
  transform: rotate(45deg);
  bottom: -60px; left: 80px;
}

/* 추가 도형 레이어 (각 섹션 내부 .p-deco 요소) */
.p-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
/* 원형 도형들 */
.p-deco-circle {
  border-radius: 50%;
  border-style: solid;
}
/* 사각형 도형들 */
.p-deco-rect {
  border-style: solid;
}
/* 선 도형 */
.p-deco-line {
  height: 0;
  border-style: none none solid none;
}

/* ── 다크 섹션 추가 도형 세트 ── */
.p-section-dark .p-deco-1 {
  width: 80px; height: 80px;
  border: 3px solid rgba(255,107,53,.4);
  transform: rotate(15deg);
  top: 10%; left: 5%;
}
.p-section-dark .p-deco-2 {
  width: 50px; height: 50px;
  border: 3px solid rgba(255,255,255,.12);
  border-radius: 50%;
  bottom: 15%; right: 8%;
}
.p-section-dark .p-deco-3 {
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,.5), transparent);
  top: 50%; left: 50%;
  transform: translateX(-50%);
}
.p-section-dark .p-deco-4 {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,107,53,.3);
  border-radius: 50%;
  top: 70%; left: 12%;
}

/* ── 화이트/그레이 섹션 추가 도형 세트 ── */
.p-section-gray .p-deco-1,
.p-section-white .p-deco-1 {
  width: 90px; height: 90px;
  border: 3px solid rgba(255,107,53,.25);
  transform: rotate(20deg);
  top: 8%; right: 5%;
}
.p-section-gray .p-deco-2,
.p-section-white .p-deco-2 {
  width: 60px; height: 60px;
  border: 3px solid rgba(255,107,53,.2);
  border-radius: 50%;
  bottom: 12%; left: 6%;
}
.p-section-gray .p-deco-3,
.p-section-white .p-deco-3 {
  width: 100px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,.4), transparent);
  bottom: 30%; right: 10%;
}
.p-section-gray .p-deco-4,
.p-section-white .p-deco-4 {
  width: 35px; height: 35px;
  border: 3px solid rgba(17,17,17,.12);
  transform: rotate(30deg);
  top: 55%; right: 15%;
}

/* ── 오렌지 섹션 추가 도형 세트 ── */
.p-section-orange .p-deco-1 {
  width: 100px; height: 100px;
  border: 4px solid rgba(255,255,255,.25);
  transform: rotate(25deg);
  top: 10%; left: 4%;
}
.p-section-orange .p-deco-2 {
  width: 60px; height: 60px;
  border: 4px solid rgba(255,255,255,.2);
  border-radius: 50%;
  bottom: 10%; right: 6%;
}
.p-section-orange .p-deco-3 {
  width: 160px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  top: 45%; left: 50%;
  transform: translateX(-50%);
}
.p-section-orange .p-deco-4 {
  width: 45px; height: 45px;
  border: 4px solid rgba(255,255,255,.18);
  top: 65%; left: 10%;
}
.p-section-orange .p-deco-5 {
  width: 25px; height: 25px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  top: 20%; right: 12%;
}

/* 모든 섹션 콘텐츠는 z-index 1로 도형 위에 */
.p-section > .p-container,
.p-section > .p-container-sm {
  position: relative;
  z-index: 1;
}

/* 화이트 섹션에서 텍스트 색상 강제 */
.p-section-gray .p-s-title,
.p-section-white .p-s-title {
  color: #111111;
}
.p-section-gray h2,
.p-section-gray h3,
.p-section-gray h4,
.p-section-white h2,
.p-section-white h3,
.p-section-white h4 {
  color: #111111;
}
.p-section-gray p,
.p-section-white p {
  color: #444444;
}
.p-section-gray .p-card,
.p-section-white .p-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  color: #111111;
}
.p-section-gray .p-card h3,
.p-section-gray .p-card h4,
.p-section-gray .p-card p,
.p-section-white .p-card h3,
.p-section-white .p-card h4,
.p-section-white .p-card p {
  color: #111111;
}
.p-section-gray .p-card p,
.p-section-white .p-card p {
  color: #555555;
}

/* 오렌지 섹션 텍스트 */
.p-section-orange h2,
.p-section-orange h3,
.p-section-orange h4,
.p-section-orange p {
  color: #ffffff;
}
.p-section-orange .p-card {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #ffffff;
}
.p-section-orange .p-card h3,
.p-section-orange .p-card h4,
.p-section-orange .p-card p {
  color: #ffffff;
}

/* ── 화이트/그레이 섹션 내부 컴포넌트 색상 보완 ──────────────── */
.p-section-gray .p-faq-item,
.p-section-white .p-faq-item {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.1);
}
.p-section-gray .p-faq-q,
.p-section-white .p-faq-q {
  color: #111111;
}
.p-section-gray .p-faq-a,
.p-section-white .p-faq-a {
  color: #555555;
}
.p-section-gray .p-icon-box,
.p-section-white .p-icon-box {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.p-section-gray .p-icon-box h4,
.p-section-white .p-icon-box h4,
.p-section-gray .p-icon-box h3,
.p-section-white .p-icon-box h3 {
  color: #111111;
}
.p-section-gray .p-icon-box p,
.p-section-white .p-icon-box p {
  color: #555555;
}
.p-section-gray .p-stat-num,
.p-section-white .p-stat-num {
  color: var(--or);
}
.p-section-gray .p-stat-label,
.p-section-white .p-stat-label {
  color: #444444;
}
.p-section-gray .p-process-step,
.p-section-white .p-process-step {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.p-section-gray .p-process-step h4,
.p-section-white .p-process-step h4 {
  color: #111111;
}
.p-section-gray .p-process-step p,
.p-section-white .p-process-step p {
  color: #555555;
}
.p-section-gray .p-two-col h3,
.p-section-white .p-two-col h3,
.p-section-gray .p-two-col h4,
.p-section-white .p-two-col h4 {
  color: #111111;
}
.p-section-gray .p-pricing-card,
.p-section-white .p-pricing-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.p-section-gray .p-pricing-card h3,
.p-section-gray .p-pricing-card h4,
.p-section-gray .p-pricing-card p,
.p-section-white .p-pricing-card h3,
.p-section-white .p-pricing-card h4,
.p-section-white .p-pricing-card p {
  color: #111111;
}
.p-section-gray .p-pricing-card li,
.p-section-white .p-pricing-card li {
  color: #444444;
}
.p-section-gray .p-case-card,
.p-section-white .p-case-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
}
.p-section-gray .p-case-card h4,
.p-section-white .p-case-card h4 {
  color: #111111;
}
.p-section-gray .p-case-card p,
.p-section-white .p-case-card p {
  color: #555555;
}

/* ── 오렌지 섹션 내부 컴포넌트 색상 보완 ────────────────────── */
.p-section-orange .p-faq-item {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
}
.p-section-orange .p-faq-q {
  color: #ffffff;
}
.p-section-orange .p-faq-a {
  color: rgba(255,255,255,.85);
}
.p-section-orange .p-icon-box {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
}
.p-section-orange .p-icon-box h4,
.p-section-orange .p-icon-box h3,
.p-section-orange .p-icon-box p {
  color: #ffffff;
}
.p-section-orange .p-stat-num {
  color: #ffffff;
}
.p-section-orange .p-stat-label {
  color: rgba(255,255,255,.8);
}
.p-section-orange .p-process-step {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
}
.p-section-orange .p-process-step h4,
.p-section-orange .p-process-step p {
  color: #ffffff;
}
.p-section-orange .p-pricing-card {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
}
.p-section-orange .p-pricing-card h3,
.p-section-orange .p-pricing-card h4,
.p-section-orange .p-pricing-card p,
.p-section-orange .p-pricing-card li {
  color: #ffffff;
}
.p-section-orange .p-case-card {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
}
.p-section-orange .p-case-card h4,
.p-section-orange .p-case-card p {
  color: #ffffff;
}
.p-section-orange .p-two-col h3,
.p-section-orange .p-two-col h4 {
  color: #ffffff;
}

/* ── hl (강조색) 화이트 섹션에서 오렌지 유지 ─────────────────── */
.p-section-gray .p-s-title .hl,
.p-section-white .p-s-title .hl {
  color: var(--or);
}

/* ════════════════════════════════════════════════════════════
   가격 섹션 강제 스타일 (모든 페이지 #pricing 섹션)
   배경: 검은색 / 가격표 박스: 흰색
════════════════════════════════════════════════════════════ */
#pricing {
  background: #111111 !important;
}
#pricing::before {
  border-color: rgba(255,107,53,.25) !important;
}
#pricing::after {
  border-color: rgba(255,255,255,.06) !important;
}
#pricing .p-deco-1 {
  border-color: rgba(255,107,53,.4) !important;
}
#pricing .p-deco-2 {
  border-color: rgba(255,255,255,.12) !important;
}
#pricing .p-deco-4 {
  border-color: rgba(255,107,53,.3) !important;
}
#pricing .p-s-title { color: #ffffff !important; }
#pricing .p-s-desc  { color: #aaaaaa !important; }
#pricing .p-s-badge {
  background: rgba(255,107,53,.12) !important;
  color: var(--or) !important;
  border-color: rgba(255,107,53,.3) !important;
}
/* 가격표 박스 흰색 */
#pricing .p-price-card {
  background: #ffffff !important;
  border: 1.5px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.15) !important;
  color: #111111 !important;
}
#pricing .p-price-plan,
#pricing .p-price-name,
#pricing .p-price-amount,
#pricing .p-price-desc,
#pricing .p-price-feature {
  color: #111111 !important;
}
#pricing .p-price-amount { color: var(--or) !important; }
#pricing .p-price-amount span { color: #666666 !important; }
#pricing .p-price-feature i { color: var(--or) !important; }
#pricing .p-price-features { border-top: 1px solid rgba(0,0,0,.08) !important; }
#pricing .p-price-card.featured {
  background: var(--or) !important;
  border-color: var(--or) !important;
}
#pricing .p-price-card.featured .p-price-plan,
#pricing .p-price-card.featured .p-price-name,
#pricing .p-price-card.featured .p-price-amount,
#pricing .p-price-card.featured .p-price-desc,
#pricing .p-price-card.featured .p-price-feature {
  color: #ffffff !important;
}
#pricing .p-price-card.featured .p-price-amount span { color: rgba(255,255,255,.7) !important; }
#pricing .p-price-card.featured .p-price-feature i  { color: #ffffff !important; }
#pricing .p-price-card.featured .p-price-features   { border-top-color: rgba(255,255,255,.2) !important; }

/* ════════════════════════════════════════════════════════════
   FAQ 섹션 강제 스타일 (모든 페이지 #faq 섹션)
   배경: 화이트
════════════════════════════════════════════════════════════ */
#faq {
  background: #ffffff !important;
}
#faq::before {
  border-color: rgba(255,107,53,.2) !important;
}
#faq::after {
  border-color: rgba(255,107,53,.15) !important;
}
#faq .p-deco-1 {
  border-color: rgba(255,107,53,.25) !important;
}
#faq .p-deco-2 {
  border-color: rgba(255,107,53,.2) !important;
}
#faq .p-deco-4 {
  border-color: rgba(17,17,17,.12) !important;
}
#faq .p-s-title { color: #111111 !important; }
#faq .p-s-title .hl { color: var(--or) !important; }
#faq .p-s-desc  { color: #555555 !important; }
#faq .p-s-badge {
  background: rgba(255,107,53,.10) !important;
  color: #e85520 !important;
  border-color: rgba(255,107,53,.3) !important;
}
#faq .p-faq-item {
  background: #ffffff !important;
  border: 1.5px solid rgba(0,0,0,.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
}
#faq .p-faq-q { color: #111111 !important; }
#faq .p-faq-a { color: #555555 !important; }
#faq .p-faq-icon { color: var(--or) !important; }

/* ── 모바일 도형 최적화 ─────────────────────────────────────── */
@media (max-width: 768px) {
  .p-section { padding: 72px 0; }
  .p-section-dark::before { width: 200px; height: 200px; top: -50px; right: -50px; }
  .p-section-dark::after  { width: 100px; height: 100px; bottom: 30px; left: -30px; }
  .p-section-gray::before,
  .p-section-white::before { width: 160px; height: 160px; bottom: -30px; left: -30px; }
  .p-section-gray::after,
  .p-section-white::after  { width: 80px; height: 80px; top: 20px; right: 20px; }
  .p-section-orange::before { width: 220px; height: 220px; top: -70px; right: -60px; }
  .p-section-orange::after  { width: 120px; height: 120px; bottom: -30px; left: 40px; }
  .p-deco-1 { width: 60px !important; height: 60px !important; }
  .p-deco-2 { width: 36px !important; height: 36px !important; }
  .p-deco-4 { display: none; }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.p-s-header { text-align: center; margin-bottom: 64px; }
.p-s-header.left { text-align: left; }

.p-s-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--or-p); color: var(--or);
  border: 1px solid rgba(255,107,53,.25);
  padding: 6px 16px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  font-family: var(--feng); text-transform: uppercase;
  margin-bottom: 20px;
}

.p-s-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1.3;
  letter-spacing: -.5px; color: var(--wh);
  margin-bottom: 16px;
}
.p-s-title .hl { color: var(--or); }
.p-s-title .hl-line {
  position: relative; color: var(--wh);
}
.p-s-title .hl-line::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 3px;
  background: var(--or); border-radius: 2px; opacity: .7;
}

.p-s-desc {
  font-size: 16px; color: var(--gy-l);
  line-height: 1.8; max-width: 600px; margin: 0 auto;
}
.p-s-header.left .p-s-desc { margin: 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.p-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 600; letter-spacing: .3px;
  transition: var(--tr); cursor: pointer; border: none;
  font-family: var(--fmain); text-decoration: none;
}
.p-btn-primary {
  background: var(--or); color: var(--wh);
  box-shadow: var(--sh-or);
}
.p-btn-primary:hover { background: var(--or-d); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,53,.35); }
.p-btn-outline {
  background: transparent; color: var(--wh);
  border: 1.5px solid rgba(255,255,255,.25);
}
.p-btn-outline:hover { border-color: var(--or); color: var(--or); background: var(--or-p); }
.p-btn-lg { padding: 18px 36px; font-size: 16px; }

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.p-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.p-reveal.visible { opacity: 1; transform: translateY(0); }
.p-reveal-delay-1 { transition-delay: .1s; }
.p-reveal-delay-2 { transition-delay: .2s; }
.p-reveal-delay-3 { transition-delay: .3s; }
.p-reveal-delay-4 { transition-delay: .4s; }
.p-reveal-delay-5 { transition-delay: .5s; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.p-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
  background: var(--bk);
}
.p-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.p-hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,107,53,.12) 0%, transparent 70%);
}
.p-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.p-hero-content { position: relative; z-index: 1; max-width: 900px; }
.p-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.p-hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,107,53,.12) 0%, transparent 70%);
}
.p-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.p-hero-content { position: relative; z-index: 1; max-width: 900px; }
.p-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or-p); border: 1px solid rgba(255,107,53,.3);
  color: var(--or); padding: 8px 20px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  font-family: var(--feng); text-transform: uppercase;
  margin-bottom: 28px;
}
.p-hero-title {
  font-size: clamp(32px, 5.5vw, 55px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 24px;
  word-break: keep-all;
}
.p-hero-title .hl { color: var(--or); }
.p-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--gy-l); line-height: 1.8;
  max-width: 680px; margin: 0 auto 40px;
  word-break: keep-all;
}
.p-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* hero scroll ticker */
.p-hero-ticker-wrap {
  width: 100%; overflow: hidden;
  margin-top: 60px; padding: 0;
}
.p-hero-ticker-track {
  display: flex; gap: 40px; align-items: center;
  animation: p-ticker 30s linear infinite;
  white-space: nowrap;
}
.p-hero-ticker-track:hover { animation-play-state: paused; }
.p-ticker-item {
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.35);
  font-family: var(--feng); letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap;
}
.p-ticker-dot { color: var(--or); font-size: 6px; }
@keyframes p-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.p-faq-list { display: flex; flex-direction: column; gap: 12px; }
.p-faq-item {
  background: var(--bk-s);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  overflow: hidden; transition: var(--tr);
}
.p-faq-item:hover { border-color: rgba(255,107,53,.25); }
.p-faq-item.open { border-color: rgba(255,107,53,.35); }
.p-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer; gap: 16px;
}
.p-faq-q-text {
  font-size: 16px; font-weight: 600; color: var(--wh);
  line-height: 1.5; word-break: keep-all;
}
.p-faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--or-p); color: var(--or);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--tr); flex-shrink: 0;
}
.p-faq-item.open .p-faq-q-icon { background: var(--or); color: var(--wh); transform: rotate(45deg); }
.p-faq-a {
  padding: 0 28px;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.p-faq-item.open .p-faq-a { max-height: 300px; padding-bottom: 22px; }
.p-faq-a p {
  font-size: 15px; color: var(--gy-l); line-height: 1.8;
  padding-top: 4px; border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px; word-break: keep-all;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.p-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0f08 50%, #0d0d0d 100%);
  position: relative; overflow: hidden;
}
.p-cta-section::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.15) 0%, transparent 70%);
  pointer-events: none;
}
.p-cta-inner { text-align: center; position: relative; z-index: 1; }
.p-cta-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; line-height: 1.25;
  margin-bottom: 20px; word-break: keep-all;
}
.p-cta-desc {
  font-size: 17px; color: var(--gy-l);
  margin-bottom: 48px; line-height: 1.8;
}
.p-cta-form {
  display: flex; flex-direction: column;
  gap: 16px; max-width: 560px; margin: 0 auto;
}
.p-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.p-form-group { display: flex; flex-direction: column; gap: 8px; }
.p-form-group label {
  font-size: 13px; font-weight: 600; color: var(--gy-l);
  letter-spacing: .5px;
}
.p-form-group input,
.p-form-group select,
.p-form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 14px 18px; color: var(--wh);
  font-size: 14px; font-family: var(--fmain);
  transition: var(--tr); outline: none;
}
.p-form-group input::placeholder,
.p-form-group textarea::placeholder { color: var(--gy-m); }
.p-form-group input:focus,
.p-form-group select:focus,
.p-form-group textarea:focus {
  border-color: var(--or); background: rgba(255,107,53,.06);
}
.p-form-group select option { background: var(--bk-s); }
.p-form-group textarea { resize: vertical; min-height: 100px; }
.p-form-submit {
  background: var(--or); color: var(--wh);
  border: none; border-radius: var(--r-full);
  padding: 16px 32px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: var(--tr);
  font-family: var(--fmain); letter-spacing: .3px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.p-form-submit:hover { background: var(--or-d); transform: translateY(-2px); box-shadow: var(--sh-or); }
.p-form-note { font-size: 12px; color: var(--gy-m); margin-top: 8px; }

/* ── PRICE TABLE ─────────────────────────────────────────────── */
.p-price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.p-price-card {
  background: var(--bk-s);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: var(--tr); position: relative; overflow: hidden;
}
.p-price-card:hover { border-color: rgba(255,107,53,.3); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.p-price-card.featured {
  background: linear-gradient(135deg, #1c0f07 0%, #1a1a1a 100%);
  border-color: var(--or);
  box-shadow: 0 0 0 1px var(--or), var(--sh-or);
}
.p-price-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--or); color: var(--wh);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-full); letter-spacing: .5px;
}
.p-price-plan { font-size: 13px; font-weight: 600; color: var(--or); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.p-price-name { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.p-price-amount {
  font-size: 38px; font-weight: 800; font-family: var(--feng);
  color: var(--or); margin: 20px 0 8px;
}
.p-price-amount span { font-size: 16px; font-weight: 500; color: var(--gy-l); }
.p-price-desc { font-size: 13px; color: var(--gy-m); margin-bottom: 28px; line-height: 1.6; }
.p-price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.p-price-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.8);
}
.p-price-feature i { color: var(--or); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.p-price-btn {
  width: 100%; padding: 14px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: var(--tr); border: none; font-family: var(--fmain);
  text-align: center; display: block; text-decoration: none;
}
.p-price-btn-default {
  background: rgba(255,255,255,.08); color: var(--wh);
  border: 1.5px solid rgba(255,255,255,.15);
}
.p-price-btn-default:hover { background: rgba(255,255,255,.12); }
.p-price-btn-primary { background: var(--or); color: var(--wh); }
.p-price-btn-primary:hover { background: var(--or-d); box-shadow: var(--sh-or); }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.p-process-list { display: flex; flex-direction: column; gap: 0; }
.p-process-item {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 36px 0; position: relative;
}
.p-process-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 27px; top: 72px; bottom: -36px; width: 2px;
  background: linear-gradient(to bottom, var(--or), rgba(255,107,53,.1));
}
.p-process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--or-p); border: 2px solid rgba(255,107,53,.3);
  color: var(--or); font-size: 18px; font-weight: 800;
  font-family: var(--feng); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; z-index: 1; transition: var(--tr);
}
.p-process-item:hover .p-process-num {
  background: var(--or); color: var(--wh); border-color: var(--or);
}
.p-process-body { flex: 1; padding-top: 10px; }
.p-process-title { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.p-process-desc { font-size: 15px; color: var(--gy-l); line-height: 1.8; }
.p-process-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--or-p); color: var(--or);
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; margin-bottom: 10px;
}

/* ── PAIN POINTS (문제제기) ──────────────────────────────────── */
.p-pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.p-pain-card {
  background: var(--bk-s);
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: var(--r-md); padding: 28px;
  transition: var(--tr);
  border-right: none !important;
}
.p-pain-card:hover { border-color: rgba(255,80,80,.3); background: rgba(255,60,60,.04); border-right: none !important; }
/* 박스 사이 가로선 완전 제거 */
.p-pain-grid > * + * { border-left: none !important; }
.p-pain-card::after, .p-pain-card::before { display: none !important; }
.p-pain-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,60,60,.1); color: #ff5555;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
}
.p-pain-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.p-pain-desc { font-size: 14px; color: var(--gy-l); line-height: 1.7; }

/* ── STRENGTH CARDS ─────────────────────────────────────────── */
.p-strength-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-strength-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: var(--tr); text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.p-strength-card:hover { border-color: rgba(255,107,53,.3); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(255,107,53,.15); }
.p-strength-icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  background: var(--or-p); color: var(--or);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 24px;
  transition: var(--tr);
}
.p-strength-card:hover .p-strength-icon { background: var(--or); color: var(--wh); }
.p-strength-num { font-size: 36px; font-weight: 800; color: var(--or); font-family: var(--feng); margin-bottom: 8px; }
.p-strength-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #111111; }
.p-strength-desc { font-size: 14px; color: #666666; line-height: 1.7; }

/* ── CASE CARDS ─────────────────────────────────────────────── */
.p-case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-case-card {
  background: var(--bk-s);
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--tr);
}
.p-case-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(255,107,53,.25); }
.p-case-head {
  background: linear-gradient(135deg, #1c0f07, #1a1a1a);
  padding: 28px; border-bottom: 1px solid rgba(255,107,53,.15);
}
.p-case-tag {
  display: inline-block; background: var(--or); color: var(--wh);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-full); letter-spacing: .5px; margin-bottom: 10px;
}
.p-case-biz { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.p-case-body { padding: 24px 28px; }
.p-case-metric-label { font-size: 12px; color: var(--gy-m); margin-bottom: 6px; }
.p-case-metric-value { font-size: 28px; font-weight: 800; color: var(--or); font-family: var(--feng); margin-bottom: 16px; }
.p-case-quote {
  font-size: 14px; color: var(--gy-l); line-height: 1.7;
  font-style: italic; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.p-case-quote::before { content: '"'; color: var(--or); font-size: 20px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.p-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 40px 0 24px;
}
.p-footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.p-footer-logo { display: flex; align-items: center; gap: 10px; }
.p-footer-copy { font-size: 13px; color: var(--gy-m); }
.p-footer-links { display: flex; gap: 24px; }
.p-footer-links a { font-size: 13px; color: var(--gy-m); transition: var(--tr); }
.p-footer-links a:hover { color: var(--or); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.p-btt {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--or); color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; z-index: 500;
  box-shadow: var(--sh-or); transition: var(--tr);
  opacity: 0; pointer-events: none; border: none;
}
.p-btt.show { opacity: 1; pointer-events: auto; }
.p-btt:hover { background: var(--or-d); transform: translateY(-3px); }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.p-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,.2), transparent);
  margin: 0;
}

/* ── STAT BAND ───────────────────────────────────────────────── */
.p-stat-band {
  background: linear-gradient(135deg, #1a0f08 0%, #1c1c1c 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(255,107,53,.1);
  border-bottom: 1px solid rgba(255,107,53,.1);
}
.p-stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.p-stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.p-stat-item:last-child { border-right: none; }
.p-stat-num {
  font-size: 42px; font-weight: 800; color: var(--or);
  font-family: var(--feng); line-height: 1;
  margin-bottom: 8px;
}
.p-stat-label { font-size: 14px; color: var(--gy-l); font-weight: 500; }

/* 성공사례 섹션 two-col 사이 선 제거 */
#cases .p-two-col > * {
  border-left: none !important;
  border-right: none !important;
}
#cases .p-case-card {
  border-right: none !important;
}

/* ── TWO COL LAYOUT ─────────────────────────────────────────── */
.p-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.p-two-col.reverse { direction: rtl; }
.p-two-col.reverse > * { direction: ltr; }

/* ── ICON BOX ────────────────────────────────────────────────── */
.p-icon-box {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px;
  background: var(--bk-s);
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: var(--r-md); transition: var(--tr);
  margin-bottom: 16px;
}
.p-icon-box:hover { border-color: rgba(255,107,53,.25); background: rgba(255,107,53,.03); }
.p-icon-box-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--or-p); color: var(--or);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.p-icon-box-body {}
.p-icon-box-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.p-icon-box-desc { font-size: 14px; color: var(--gy-l); line-height: 1.7; }

/* ── HIGHLIGHT BOX ───────────────────────────────────────────── */
.p-highlight-box {
  background: linear-gradient(135deg, rgba(255,107,53,.1), rgba(255,107,53,.05));
  border: 1.5px solid rgba(255,107,53,.25);
  border-radius: var(--r-lg); padding: 36px;
  text-align: center;
}
.p-highlight-box-icon {
  font-size: 48px; margin-bottom: 20px; display: block;
}
.p-highlight-box-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.p-highlight-box-desc { font-size: 15px; color: var(--gy-l); line-height: 1.8; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .p-strength-grid { grid-template-columns: repeat(2, 1fr); }
  .p-price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .p-case-grid { grid-template-columns: repeat(2, 1fr); }
  .p-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .p-stat-item:nth-child(2) { border-right: none; }
  .p-stat-item:nth-child(3), .p-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 768px) {
  .p-section { padding: 70px 0; }
  .p-hero { min-height: 90vh; padding: 100px 20px 40px; }
  /* 서비스 페이지 히어로 버튼 위로 올리기 */
  .p-hero .p-hero-sub {
    margin-bottom: 20px !important;
  }
  .p-hero .p-hero-btns {
    margin-top: 0 !important;
    padding-top: 0 !important;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .p-hero .p-hero-btns .p-btn {
    width: auto;
    min-width: 240px;
    justify-content: center;
  }
  .p-two-col { grid-template-columns: 1fr; gap: 40px; }
  .p-two-col.reverse { direction: ltr; }
  .p-strength-grid { grid-template-columns: 1fr; }
  .p-pain-grid { grid-template-columns: 1fr; }
  .p-case-grid { grid-template-columns: 1fr; }
  .p-price-grid { grid-template-columns: 1fr; }
  .p-form-row { grid-template-columns: 1fr; }
  .p-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .p-s-title { font-size: 26px; }
  .p-hero-title { font-size: 30px; }
  .p-faq-q { padding: 18px 20px; }
  .p-faq-q-text { font-size: 15px; }
  .p-faq-a { padding: 0 20px; }
  .p-price-grid { max-width: 100%; }
}
@media (max-width: 480px) {
  .p-container { padding: 0 16px; }
  .p-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .p-hero-btns { flex-direction: column; align-items: center; }
  .p-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   회사소개 섹션1 - 레이아웃 수정 + 3D 시각화 (충돌 완전 해결)
   ══════════════════════════════════════════════════════════════ */

/* 🎯 PC 레이아웃 강제 수정 */
@media (min-width: 769px) {
  #hero.p-hero {
    padding-top: 200px !important;
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
  
  /* CTA 버튼 가로 정렬 강제 */
  #hero .p-hero-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 18px !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 50px !important;
    flex-wrap: wrap !important;
  }
}

/* 🏗️ 3D 시각화 컨테이너 (겹침 방지) */
.company-visual-wrap {
  width: 100% !important;
  height: 280px !important; /* 높이 확실히 지정 */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 40px auto 0 !important;
  perspective: 1000px !important;
  position: relative !important;
  z-index: 10 !important;
}

/* 🎨 고급 3D 빌딩 카드 */
.main-building {
  position: relative !important;
  width: 240px !important;
  height: 280px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 50%, #f0f0f0 100%) !important;
  border-radius: 24px !important;
  
  /* 진짜 3D 효과 */
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,1),
    inset 0 2px 0 rgba(255,255,255,0.8),
    inset 0 -2px 0 rgba(0,0,0,0.1),
    0 8px 0 #e0e0e0,
    0 10px 0 #d0d0d0,
    0 15px 25px rgba(0,0,0,0.1) !important;
  
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 30px 25px !important;
  transform: rotateX(5deg) rotateY(-5deg) !important;
  animation: smoothFloat 8s ease-in-out infinite !important;
}

@keyframes smoothFloat {
  0%, 100% { 
    transform: rotateX(5deg) rotateY(-5deg) translateY(0px); 
  }
  50% { 
    transform: rotateX(8deg) rotateY(-8deg) translateY(-15px); 
  }
}

/* 🏷️ ONDO 로고 (입체감) */
.building-logo {
  background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 50%, #e85520 100%) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  border-radius: 16px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 2px !important;
  
  box-shadow: 
    0 8px 20px rgba(255,107,53,0.4),
    inset 0 2px 0 rgba(255,255,255,0.3),
    0 4px 0 #cc5529 !important;
    
  margin-bottom: 35px !important;
  transform: translateZ(10px) !important;
}

/* 🪟 창문 그리드 (유리 효과) */
.building-windows {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 0 20px !important;
}

.window {
  height: 42px !important;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
  border-radius: 12px !important;
  border: 2px solid rgba(255,255,255,0.8) !important;
  
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.6),
    inset 0 -2px 4px rgba(0,0,0,0.1),
    0 4px 8px rgba(0,0,0,0.1) !important;
    
  position: relative !important;
  overflow: hidden !important;
}

/* 창문 십자 프레임 */
.window::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: rgba(100,181,246,0.4) !important;
  transform: translateY(-50%) !important;
}

.window::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: rgba(100,181,246,0.4) !important;
  transform: translateX(-50%) !important;
}

/* ✨ 창문 반짝임 효과 */
.window:nth-child(2) { animation: windowGlow 6s ease-in-out infinite 0s !important; }
.window:nth-child(4) { animation: windowGlow 6s ease-in-out infinite 2s !important; }
.window:nth-child(6) { animation: windowGlow 6s ease-in-out infinite 4s !important; }

@keyframes windowGlow {
  0%, 85%, 100% { 
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    box-shadow: 
      inset 0 2px 4px rgba(255,255,255,0.6),
      inset 0 -2px 4px rgba(0,0,0,0.1),
      0 4px 8px rgba(0,0,0,0.1);
  }
  5%, 15% { 
    background: linear-gradient(135deg, #f0f8ff 0%, #e1f5fe 100%);
    box-shadow: 
      inset 0 2px 8px rgba(255,255,255,0.9),
      0 6px 20px rgba(100,181,246,0.4);
  }
}

/* 🎭 배경 장식 요소 */
.deco-elements {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.deco-circle {
  position: absolute !important;
  border-radius: 50% !important;
  filter: blur(20px) !important;
}

.deco-1 {
  width: 120px !important;
  height: 120px !important;
  background: rgba(255,107,53,0.12) !important;
  top: 10% !important;
  left: 20% !important;
  animation: floatSlow 10s ease-in-out infinite !important;
}

.deco-2 {
  width: 80px !important;
  height: 80px !important;
  background: rgba(0,0,0,0.05) !important;
  bottom: 20% !important;
  right: 25% !important;
  animation: floatSlow 8s ease-in-out infinite reverse !important;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50% { transform: translate(-8px, -12px) scale(1.1); opacity: 0.8; }
}

/* 📱 모바일 최적화 */
@media (max-width: 768px) {
  #hero.p-hero {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }
  
  .company-visual-wrap {
    height: 220px !important;
    margin: 25px auto 0 !important;
  }
  
  .main-building {
    width: 200px !important;
    height: 240px !important;
    padding: 25px 20px !important;
  }
  
  .building-logo {
    font-size: 16px !important;
    padding: 12px 24px !important;
    margin-bottom: 28px !important;
  }
  
  .building-windows {
    gap: 12px !important;
    padding: 0 15px !important;
  }
  
  .window {
    height: 34px !important;
  }
  
  /* 모바일에서만 버튼 세로 배치 + 강제 위치 이동 */
#hero .p-hero-btns {
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 35px !important;
  /* 🎯 핵심: 버튼을 강제로 80px 아래로 이동! */
  transform: translateY(80px) !important; 
  position: relative !important;
  z-index: 50 !important; /* 버튼이 맨 위로 와서 클릭 가능하게 */
}
  
  #hero .p-hero-btns .p-btn {
    width: 100% !important;
    max-width: 300px !important;
  }
}

@media (max-width: 480px) {
  .company-visual-wrap {
    height: 180px !important;
    margin: 20px auto 0 !important;
  }
  
  .main-building {
    width: 160px !important;
    height: 200px !important;
  }
  
  .building-logo {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}
/* ══════════════════════════════════════════════════════════════
   회사소개 페이지 문의 섹션 - 메인 홈과 100% 동일하게 복원
   ══════════════════════════════════════════════════════════════ */

.main-contact-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.main-contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.main-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

/* ────────────────────────────────────────────────────────────
   좌측: 검은 박스
──────────────────────────────────────────────────────────── */
.main-ct-info {
  background: #111111;
  color: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.main-ct-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

.main-ct-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.main-ct-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.main-ct-benefits li i {
  width: 24px;
  height: 24px;
  background: rgba(255,107,53,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.main-ct-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.main-ct-ch {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-ct-ch > i {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ff6b35;
  flex-shrink: 0;
}

.main-ct-ch > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.main-ct-ch strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.main-ct-ch span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ────────────────────────────────────────────────────────────
   우측: 흰색 폼 (라벨 복원이 핵심!)
──────────────────────────────────────────────────────────── */
.main-ct-form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.main-ct-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.main-cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

/* ★★★ 핵심: 라벨 스타일 완전 복원 ★★★ */
.main-cf-group label {
  display: block !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: #333333 !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 0 !important;
  text-align: left !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.main-cf-group label span {
  color: #ff6b35 !important;
  margin-left: 2px;
}

/* 입력 필드 */
.main-cf-group input,
.main-cf-group select,
.main-cf-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f8f8f8;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #333333;
  font-family: 'Noto Sans KR', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.main-cf-group input::placeholder,
.main-cf-group textarea::placeholder {
  color: #aaaaaa;
}

.main-cf-group input:focus,
.main-cf-group select:focus,
.main-cf-group textarea:focus {
  border-color: #ff6b35;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.main-cf-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.main-cf-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* 제출 버튼 */
.main-btn-submit {
  background: #ff6b35;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(255,107,53,0.25);
}

.main-btn-submit:hover {
  background: #e85520;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .main-contact-section {
    padding: 80px 0;
  }

  .main-contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-ct-info,
  .main-ct-form-wrap {
    padding: 32px 28px;
  }

  .main-cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .main-cf-group {
    margin-bottom: 18px;
  }

  .main-btn-submit {
    padding: 15px 28px;
    font-size: 0.95rem;
  }
}

/* ═════════════════════ CTA 문의폼 통일 스타일 ═════════════════════ */
.p-cta-section {
  background: linear-gradient(135deg, #111 0%, #1a0a04 50%, #111 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.p-cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.08) 0%, transparent 70%);
  pointer-events: none;
}
.p-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.p-cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.p-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* 폼 카드 */
.p-cta-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  backdrop-filter: blur(10px);
}

/* 2열 행 */
.p-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* 단일 그룹 */
.p-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.p-form-group:last-of-type { margin-bottom: 0; }

/* 라벨 */
.p-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}

/* 인풋/셀렉트/텍스트에어리어 공통 */
.p-cta-form input,
.p-cta-form select,
.p-cta-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--fmain);
  color: #fff;
  outline: none;
  transition: border-color .25s, background .25s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.p-cta-form input::placeholder,
.p-cta-form textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.p-cta-form input:focus,
.p-cta-form select:focus,
.p-cta-form textarea:focus {
  border-color: rgba(255,107,53,.6);
  background: rgba(255,107,53,.05);
}
.p-cta-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.p-cta-form select option {
  background: #1a1a1a;
  color: #fff;
}
.p-cta-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* 제출 버튼 */
.p-form-submit {
  width: 100%;
  background: var(--or);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--fmain);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(255,107,53,.3);
}
.p-form-submit:hover {
  background: var(--or-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,.4);
}
.p-form-submit:active { transform: translateY(0); }

/* 하단 안내 문구 */
.p-form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 14px;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .p-cta-section { padding: 70px 0; }
  .p-cta-form {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .p-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-cta-form input,
  .p-cta-form select,
  .p-cta-form textarea {
    padding: 13px 14px;
    font-size: 14px;
    border-radius: 10px;
  }
  .p-form-submit {
    padding: 15px;
    font-size: 14px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .p-cta-inner { padding: 0 4px; }
  .p-cta-form { padding: 22px 16px; }
}

/* ═════════════════════ FLOATING ACTION BUTTONS (FAB) ═════════════════════ */
.fab-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* 맨위로 버튼 */
.btt {
  width: 48px;
  height: 48px;
  background: var(--wh);
  color: var(--or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  border: 2px solid var(--or);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--tr);
  cursor: pointer;
  flex-shrink: 0;
}
.btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btt:hover {
  background: var(--or);
  color: var(--wh);
  transform: translateY(-2px);
}

/* 서브 버튼 컨테이너 */
.fab-subs {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  pointer-events: none;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.fab-subs.open {
  max-height: 200px;
  opacity: 1;
  pointer-events: auto;
}

/* 개별 서브 버튼 */
.fab-sub {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wh);
  padding: 10px 16px;
  border-radius: 50px;
  border: 1.5px solid #ff6b35;
  box-shadow: none !important;
  text-decoration: none;
  transition: var(--tr);
  white-space: nowrap;
  width: auto !important;
  height: auto !important;
}
.fab-sub:hover {
  transform: none;
  opacity: 0.9;
  box-shadow: none !important;
}

/* 아이콘 스타일 */
.fab-sub i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

/* 텍스트 스타일 */
.fab-sub span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--bk);
}

/* 카카오 버튼 */
.fab-kakao i {
  background: rgba(255,193,7,.2);
  color: #b8860b;
}

/* 전화 버튼 */
.fab-phone i {
  background: rgba(255,107,53,.15);
  color: var(--or);
}

/* 문의폼 버튼 */
.fab-form i {
  background: rgba(0,0,0,.08);
  color: var(--bk);
}

/* 메인 + 버튼 */
.fab-main {
  width: 54px;
  height: 54px;
  background: var(--or);
  color: var(--wh);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--sh-or);
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  flex-shrink: 0;
  border: none;
}
.fab-main:hover {
  background: var(--or-d);
  transform: scale(1.06);
}
.fab-main.open {
  transform: rotate(45deg) scale(1.06);
  background: var(--or-d);
}

/* 모바일 최적화 */
@media(max-width: 768px) {
  .fab-wrap {
    bottom: 20px;
    right: 20px;
  }
  .btt {
    width: 42px;
    height: 42px;
  }
  .fab-main {
    width: 48px;
    height: 48px;
  }
  .fab-sub {
    padding: 8px 12px;
  }
  .fab-sub i {
    width: 28px;
    height: 28px;
    font-size: .85rem;
  }
  .fab-sub span {
    font-size: .8rem;
  }
}
/* ════════════════════════════════════════════════════════════
   고민 섹션 - 완벽한 중앙 정렬 + 하단 박스 축소
════════════════════════════════════════════════════════════ */
.worry-conversation {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 700px;        /* 폭 조정으로 중앙감 확보 */
  margin: 0 auto;
  padding: 0 20px;
}

.worry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.worry-item.left {
  justify-content: flex-start;
  flex-direction: row;     /* 아바타 왼쪽 → 말풍선 오른쪽 */
  padding-left: 40px;
}

.worry-item.right {
  justify-content: flex-end;
  flex-direction: row;     /* 말풍선 왼쪽 → 아바타 오른쪽 */
  padding-right: 40px;
}

.worry-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.worry-message {
  background: #ffffff;
  color: #111;
  padding: 16px 22px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 70%;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.worry-item.right .worry-message {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255,107,53,0.25);
}

/* 말풍선 꼬리 */
.worry-item.left .worry-message::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #ffffff;
}

.worry-item.right .worry-message::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ff6b35;
}

/* ★ 하단 해결 박스 크기 대폭 축소 */
.p-highlight-box {
  max-width: 650px !important;
  margin: 50px auto 0 !important;
  padding: 22px 28px !important;     /* 기존 36px → 22px */
}

.p-highlight-box-icon {
  font-size: 2rem !important;        /* 기존 3rem → 2rem */
  margin-bottom: 16px !important;
}

.p-highlight-box-title {
  font-size: 1.3rem !important;      /* 기존 1.6rem → 1.3rem */
  margin-bottom: 8px !important;
}

.p-highlight-box-desc {
  font-size: 0.9rem !important;      /* 기존 1rem → 0.9rem */
  line-height: 1.6 !important;
}

/* ════════════════════════════════════════════════════════════
   성공사례 섹션 - 헤드라인 기준 가운데 정렬 + 지그재그 레이아웃
════════════════════════════════════════════════════════════ */
.success-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* 1번째: 좌측 이미지 + 우측 문구 (기본) */
.success-row:nth-of-type(1) {
  flex-direction: row;
}

/* 2번째: 좌측 문구 + 우측 이미지 (역순) */
.success-row:nth-of-type(2) {
  flex-direction: row-reverse;
}

/* ★ 슬라이더 래퍼 공통 - 화살표 버튼을 위해 양옆 공간 확보 */
.success-slider-wrap {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* 슬라이더 본체 */
.success-slider-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ★ 세로형 이미지 슬라이더 (1080×2327) */
.success-slider-wrap.vertical .success-slider-box {
  width: 280px;
}
.success-slider-wrap.vertical .success-slider {
  width: 100%;
  aspect-ratio: 1080 / 2327;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

/* ★ 가로형 이미지 슬라이더 (1880×1080) → 30% 크게 */
.success-slider-wrap.horizontal .success-slider-box {
  width: 520px;
}
.success-slider-wrap.horizontal .success-slider {
  width: 100%;
  aspect-ratio: 1880 / 1080;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.success-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-slide.active {
  opacity: 1;
  z-index: 1;
}

.success-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ★ 이미지 양옆 화살표 버튼 */
.slider-arrow {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  z-index: 10;
  margin: 0 12px;
  user-select: none;
}

.slider-arrow:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

/* 점 인디케이터 */
.slide-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ff6b35;
  width: 24px;
  border-radius: 4px;
}

/* 텍스트 콘텐츠 */
.success-content {
  flex: 1;
  max-width: 420px;
}

.success-tag {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  color: #ff6b35;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.success-title {
  font-size: 26px;          /* ★ 크기 조정 */
  font-weight: 800;
  color: #111;
  line-height: 1.4;
  margin-bottom: 18px;
  word-break: keep-all;
}

.success-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
  word-break: keep-all;
}

.success-points {
  list-style: none;
  padding: 0;
}

.success-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
}

.success-points li i {
  color: #ff6b35;
  font-size: 15px;
}

/* ════════════════════════════════════════════════════════════
   모바일 최적화 (완벽한 반응형)
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 고민 섹션 모바일 */
  .worry-conversation {
    padding: 0 16px;
    gap: 18px;
    max-width: 100%;
  }
  
  .worry-item.left {
    flex-direction: row;
    padding-left: 0;
  }
  
  .worry-item.right {
    flex-direction: row;
    padding-right: 0;
  }
  
  .worry-message {
    font-size: 14px;
    padding: 14px 18px;
    max-width: 82%;
  }
  
  .worry-avatar {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  /* 하단 박스 모바일 */
  .p-highlight-box {
    max-width: 95% !important;
    margin: 40px auto 0 !important;
    padding: 18px 20px !important;
  }
  
  .p-highlight-box-title {
    font-size: 1.1rem !important;
  }
  
  .p-highlight-box-desc {
    font-size: 0.85rem !important;
  }

  /* 성공사례 모바일 */
  .success-row,
  .success-row:nth-of-type(1),
  .success-row:nth-of-type(2) {
    flex-direction: column !important;
    gap: 35px;
    margin-bottom: 60px;
  }
  
  .success-slider-wrap {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
  }

  .success-slider-wrap.vertical .success-slider-box {
    width: 220px;
  }
  
  .success-slider-wrap.horizontal .success-slider-box {
    width: 100%;
    max-width: 320px;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 6px;
  }
}

/* dots - 텍스트 콘텐츠 아래에 배치 */
.success-content .slide-dots {
  margin-top: 20px;
  justify-content: flex-start;
}
.success-content .dot {
  background: rgba(0,0,0,0.2);
}
.success-content .dot.active {
  background: #ff6b35;
}

@media (max-width: 768px) {
  .success-content .slide-dots {
    justify-content: center;
  }
}

/* ════════════════════════════════════
   성공사례: PC 지그재그 / 모바일 1단
════════════════════════════════════ */

/* ── PC 공통 블록 ── */
.sc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 160px;  /* 케이스1↔2 간격 확대 */
}
.sc-block:last-child { margin-bottom: 0; }

/* ── 케이스1: 헤드라인 정중앙 기준 배치, 이미지 너비 고정 ── */
.sc-block-img-left {
  justify-content: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── 케이스2: 텍스트 우측 / 이미지 컨테이너 우측 끝까지 ── */
.sc-block-img-right {
  grid-template-columns: 1fr 1.4fr;
  justify-content: center;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── sc-media 래퍼 ── */
.sc-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ── 슬라이더 래퍼 (화살표 + 박스) ── */
.sc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  width: 100%;
}

/* ── 슬라이더 박스 ── */
.sc-slider-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.sc-slider-box.vertical {
  width: 280px;
  aspect-ratio: 1080 / 2327;
}
.sc-slider-box.horizontal {
  width: 100%;
  max-width: 580px;  /* 기존 460px → 580px (+26%) */
  aspect-ratio: 1880 / 1080;
}

/* ── 슬라이드 ── */
.sc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.sc-slide.active { opacity: 1; z-index: 1; }
.sc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── 화살표 ── */
.sc-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #333;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  transition: all 0.25s ease;
  user-select: none;
}
.sc-arrow:hover {
  background: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

/* ── 점 인디케이터 ── */
.sc-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.sc-dot.active {
  background: #ff6b35;
  width: 24px;
  border-radius: 4px;
}

/* ── 텍스트 영역 ── */
.sc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* ── 태그 박스: 텍스트 길이에 딱 맞게 ── */
.success-tag {
  display: inline-block !important;
  width: fit-content !important;
  white-space: nowrap;
}

/* ── 태블릿 (≤1024px) ── */
@media (max-width: 1024px) {
  .sc-block { gap: 40px; margin-bottom: 110px; }
  .sc-block-img-left  { max-width: 100%; }
  .sc-block-img-right { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .sc-slider-box.vertical  { width: 230px; }
  .sc-slider-box.horizontal { max-width: 420px; }
}

/* ── 모바일 (≤768px): 이미지 위 / 텍스트 아래 1단 ── */
@media (max-width: 768px) {
  .sc-block {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 0;
    padding-bottom: 72px;
    border-bottom: 2px solid rgba(0,0,0,0.07);
    max-width: 100% !important;
  }
  .sc-block:last-child { border-bottom: none; padding-bottom: 0; }
  .sc-block + .sc-block { padding-top: 72px; }

  /* 케이스1: media 위 / text 아래 */
  .sc-block-img-left .sc-media { order: 1; }
  .sc-block-img-left .sc-text  { order: 2; }
  /* 케이스2: media 위 / text 아래 */
  .sc-block-img-right .sc-media { order: 1; }
  .sc-block-img-right .sc-text  { order: 2; }

  /* 텍스트 중앙 */
  .sc-text { text-align: center; }
  .sc-text .success-tag {
    display: inline-block;
    margin: 0 auto 18px;
    width: fit-content;
  }
  .sc-text .success-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .sc-text .success-points li { justify-content: center; }

  .sc-slider-box.vertical   { width: 200px; }
  .sc-slider-box.horizontal { width: 100%; max-width: 320px; }
  .sc-arrow { width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 480px) {
  .sc-slider-box.vertical   { width: 170px; }
  .sc-slider-box.horizontal { max-width: 280px; }
  .sc-arrow { width: 32px; height: 32px; font-size: 16px; }
}

@media (max-width: 480px) {
  .worry-message {
    font-size: 13px;
    max-width: 85%;
  }
  
  .success-slider-wrap.vertical .success-slider-box {
    width: 180px;
  }
  
  .success-title {
    font-size: 18px;
  }
}
/* ═════════════════════════════════════════
   플레이스 히어로 섹션 - 네이버 목업 스타일 (깔끔한 버전)
═════════════════════════════════════════ */

/* 좌우 분할 레이아웃 */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-mockup-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 네이버 플레이스 목업 */
.naver-place-mockup {
  width: 100%;
  max-width: 360px;
  background: var(--bk-s);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* 네이버 헤더 */
.npm-header {
  background: linear-gradient(135deg, #03c75a, #028a40);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.npm-logo {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.npm-search {
  flex: 1;
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.9);
}

/* 본문 영역 */
.npm-body {
  padding: 16px;
}

.npm-section-title {
  font-size: 12px;
  color: var(--gy-m);
  margin-bottom: 10px;
}

/* 검색 결과 아이템 */
.npm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.npm-item.featured {
  background: rgba(3,199,90,.08);
  border-color: rgba(3,199,90,.2);
  position: relative;
}

/* 순위 번호 */
.npm-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  background: #03c75a;
  color: #fff;
}

.npm-rank.secondary {
  background: rgba(255,255,255,.1);
  color: var(--gy-l);
}

/* 매장 정보 */
.npm-info {
  flex: 1;
}

.npm-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.npm-stats {
  font-size: 11px;
  color: var(--gy-m);
}

/* TOP 뱃지 */
.npm-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #03c75a;
  color: #fff;
}

/* 통계 박스 */
.npm-stats-box {
  margin-top: 16px;
  padding: 12px;
  background: rgba(3,199,90,.08);
  border-radius: 10px;
  border: 1px solid rgba(3,199,90,.2);
}

.npm-stats-title {
  font-size: 12px;
  color: #03c75a;
  font-weight: 600;
  margin-bottom: 6px;
}

.npm-stats-detail {
  font-size: 12px;
  color: var(--gy-l);
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
  .hero-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content-left {
    align-items: center;
    text-align: center;
  }
  
  .p-hero-btns {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .naver-place-mockup {
    max-width: 320px;
  }
  
  .npm-header {
    padding: 12px 16px;
  }
  
  .npm-body {
    padding: 14px;
  }
  
  .npm-item {
    padding: 10px;
  }
  
  .hero-split-layout {
    margin-top: 40px;
    gap: 32px;
  }
}
/* ═════════════════════════════════════════
   플레이스 히어로 섹션 - 순서 변경 완벽 해결
═════════════════════════════════════════ */

/* PC 버전 레이아웃 (그리드로 영역 나누기) */
.hero-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "text mockup"
    "btns mockup"; /* 버튼을 텍스트 아래, 목업 왼쪽에 */
  gap: 20px 80px;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* 각 요소에 위치 지정 */
.hero-content-left { 
  grid-area: text;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.p-hero-btns { 
  grid-area: btns;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.hero-mockup-right { 
  grid-area: mockup;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 📱 모바일 버전 - 순서 변경의 핵심! */
@media (max-width: 768px) {
  
  .hero-split-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas: 
      "text"    /* 1️⃣ 맨 위: 텍스트 */
      "mockup"  /* 2️⃣ 가운데: 목업 */
      "btns" !important;   /* 3️⃣ 맨 아래: 버튼 */
    gap: 0 !important;
    text-align: center !important;
    margin-top: 40px !important;
  }
  
  /* 텍스트 영역 */
  .hero-content-left {
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 25px !important;
  }

  /* 목업 영역 (겹침 해결 핵심!) */
  .hero-mockup-right {
    margin-bottom: 35px !important; /* 👈 이 간격으로 겹침 완전 해결! */
  }
  
  .naver-place-mockup {
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  /* 버튼 영역 */
  .p-hero-btns {
    justify-content: center !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }
  
  .p-hero-btns .p-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
  }
}
/* ══════════════════════════════════════════
   플레이스 히어로 위치 미세조정 전용 코드
   (여기서 숫자만 바꾸면 자유자재로 조정 가능!)
══════════════════════════════════════════ */

/* 💻 PC 버전 수정 (769px 이상 화면) */
@media (min-width: 769px) {
  
  /* 1️⃣ 텍스트 정렬 완벽 해결 */
  .hero-content-left {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
  }
  
  /* 제목 강제 왼쪽 정렬 */
  .p-hero-title {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }
  
  /* 설명 강제 왼쪽 정렬 */
  .p-hero-sub {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
    /* 👇 설명을 제목과 완벽하게 맞추려면 이 숫자 조정 */
    transform: translateX(0px);
  }
  
  /* 2️⃣ 버튼 위치 자유 조정 */
  .p-hero-btns {
    /* 👇 버튼 가로 위치: flex-start(왼쪽), center(가운데), flex-end(오른쪽) */
    justify-content: flex-start;
    
    /* 👇 버튼 위치 미세조정 (가로, 세로) */
    transform: translate(-100px, -80px);
    /* 해석: 가로 0px(그대로), 세로 -20px(위로 20px 올림) */
    
    /* 👇 버튼과 다른 요소들 사이 간격 */
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

/* 📱 모바일 버전 수정 (768px 이하 화면) */
@media (max-width: 768px) {
  
  /* 3️⃣ 버튼을 목업에 더 가깝게 올리기 */
  .hero-mockup-right {
    /* 👇 목업 아래 간격 줄이기 (숫자가 작을수록 버튼이 위로 올라감) */
    margin-bottom: 15px;
  }
  
  .p-hero-btns {
    /* 👇 버튼을 더 위로 당기기 */
    transform: translateY(-50px);
    /* 마이너스 숫자가 클수록 더 위로 올라감 */
    
    margin-top: 0;
  }
}
/* ══════════════════════════════════════════
   📱 모바일 버튼 강제 이동 (무조건 작동하는 버전)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  
  /* 플레이스 페이지 버튼만 강제 적용 */
  #hero .p-hero-btns {
    /* 1️⃣ 마진으로 강제로 끌어올리기 */
    margin-top: 50px !important;
    margin-bottom: 20px !important;
    
    /* 2️⃣ 위치 좌표로 추가 이동 */
    transform: translateY(-20px) !important;
    
    /* 3️⃣ 다른 요소들과 겹치지 않게 설정 */
    position: relative !important;
    z-index: 100 !important;
    
    /* 4️⃣ 버튼 스타일 유지 */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* 버튼 개별 스타일 */
  #hero .p-hero-btns .p-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
  }
}
/* ══════════════════════════════════════════
   섹션 중앙 흰색 선 완전 제거
══════════════════════════════════════════ */

/* 모든 섹션의 선 장식 숨기기 */
.p-deco-line,
.p-deco-3 {
  display: none !important;
}
/* ══════════════════════════════════════════
   플레이스 페이지 추가 수정사항
══════════════════════════════════════════ */

/* 1. FAQ 질문 글씨색 블랙으로 변경 */
#faq .p-faq-q-text {
  color: #111111 !important;
  font-weight: 600;
}

/* 2. Before/After 이미지 슬라이더 스타일 */
.ba-slide-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ba-slide-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
}

.ba-slide-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-slide-badge.before { 
  background: rgba(255,85,85,0.15); 
  color: #ff5555; 
}

.ba-slide-badge.after { 
  background: rgba(3,199,90,0.15); 
  color: #03c75a; 
}

.ba-img-box {
  width: 100%;
  aspect-ratio: 378 / 800; 
  max-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  background: #f5f5f5;
  position: relative;
}

.ba-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.ba-slide-arrow {
  font-size: 28px;
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 3. 성공사례 6개 그리드 (3x2) */
.p-case-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
  .p-case-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* 이미지 슬라이더 세로 배치 */
  .ba-slide-wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .ba-slide-arrow {
    transform: rotate(90deg);
  }
  
  .ba-img-box {
    max-width: 280px;
  }
  
  /* 성공사례 1줄로 */
  .p-case-grid-6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ba-img-box {
    max-width: 250px;
  }
}
/* Before/After 이미지 품질 개선 */
.ba-img-box {
  max-width: 300px !important; /* 조금 더 크게 표시 */
}

.ba-img-box img {
  object-fit: cover !important; /* 액자에 딱 맞춤 */
  object-position: center !important; /* 중앙 기준으로 자르기 */
  image-rendering: -webkit-optimize-contrast; /* 품질 개선 */
  transform: translateZ(0); /* 미세한 떨림 방지 */
}
/* ══════════════════════════════════════════
   섹션1 음식 사진 2줄 무한 슬라이더
══════════════════════════════════════════ */

/* 슬라이더 전체 영역 */
.hero-food-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  
  /* 양옆 자연스러운 페이드 효과 */
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* 각 줄 컨테이너 */
.food-slider-row {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

/* 사진들이 흐르는 트랙 */
.food-slider-track {
  display: flex;
  gap: 16px;
  width: fit-content;
}

/* 개별 음식 사진 */
.food-item {
  width: 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
  position: relative;
}

.food-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 호버 시 살짝 확대 효과 */
.food-item:hover img {
  transform: scale(1.05);
}

/* 1줄: 왼쪽 → 오른쪽 애니메이션 */
.row-right .food-slider-track {
  animation: slideRight 25s linear infinite;
}

/* 2줄: 오른쪽 → 왼쪽 애니메이션 */
.row-left .food-slider-track {
  animation: slideLeft 25s linear infinite;
}

/* 애니메이션 정의 */
@keyframes slideRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 호버 시 일시정지 (사용자 경험 향상) */
.food-slider-row:hover .food-slider-track {
  animation-play-state: paused;
}

/* PC 화면 최적화 */
@media (min-width: 1024px) {
  .hero-food-slider {
    max-width: 650px;
  }
  
  .food-item {
    width: 200px;
    height: 160px;
  }
}

/* 태블릿 최적화 */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-food-slider {
    max-width: 550px;
  }
  
  .food-item {
    width: 170px;
    height: 130px;
  }
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .hero-food-slider {
    max-width: 100%;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .food-item {
    width: 140px;
    height: 110px;
  }
  
  .food-slider-track {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .food-item {
    width: 120px;
    height: 95px;
  }
  
  .food-slider-track {
    gap: 10px;
  }
}
/* ══════════════════════════════════════════
   🔥 음식 슬라이더 전체 영역 크기 확대
   ══════════════════════════════════════════ */

/* 1. 영역 제한 해제 - 우측 공간 꽉 채우기 */
#hero .hero-food-slider {
  max-width: 100% !important;  /* 600px 제한 해제 */
  gap: 30px !important;        /* 1줄과 2줄 사이 간격도 넓히기 */
}

/* 2. 사진 크기 대폭 확대 */
#hero .food-item {
  width: 320px !important;     /* 가로 크기 */
  height: 240px !important;    /* 세로 크기 */
  border-radius: 20px !important;
}

/* 3. 사진 사이 간격 넓히기 */
#hero .food-slider-track {
  gap: 30px !important;        /* 사진들 사이 간격 */
}

/* 4. PC 화면에서 더 크게 */
@media (min-width: 1024px) {
  #hero .food-item {
    width: 300px !important;
    height: 200px !important;
  }
}

/* 5. 모바일에서도 적당히 크게 */
@media (max-width: 768px) {
  #hero .hero-food-slider {
    margin-top: 35px !important;
    margin-bottom: 50px !important;
  }
  #hero .food-item {
    width: 220px !important;
    height: 170px !important;
  }
}
/* ===============================================
   플레이스 페이지 섹션1 배경 이미지 설정
   =============================================== */

/* PC용 배경 이미지 */
.hero-bg-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/place-hero-pc.png') center center / cover no-repeat;
  z-index: 0;
}

/* 모바일용 배경 이미지 (처음에는 숨김) */
.hero-bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/place-hero-mobile.png') center center / cover no-repeat;
  z-index: 0;
  display: none;
}

/* 어둡게 만드는 검은 막 (★여기서 밝기 조절★) */
.hero-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 1;
  
  /* ▼▼▼ 이 숫자를 바꾸면 어둡기가 변합니다 ▼▼▼ */
  opacity: 0.9;
  /* 0.1 = 거의 안어두움, 0.9 = 아주 어두움 */
}

/* 모바일 화면일 때 이미지 바꾸기 */
@media (max-width: 768px) {
  .hero-bg-pc {
    display: none; /* PC 이미지 숨김 */
  }
  .hero-bg-mobile {
    display: block; /* 모바일 이미지 보임 */
  }
}

/* 텍스트와 버튼이 배경 위에 보이게 하기 */
.p-hero .p-container {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   ★ 모바일 햄버거 메뉴 '무료상담' 버튼 크기 조절
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-cta {
    display: inline-block !important;
    width: auto !important;
    padding: 9px 24px !important;
    align-self: flex-start !important;
    border-radius: 9999px !important;
  }
}
