/* ==========================================================================
   리드플러그(LeadPlug) 프리미엄 스타일시트 (style.css)

   [브랜드 비주얼 시스템]
   - 메인 컬러: 딥 네이비/리치 블랙 — 정책자금 자문업의 신뢰성과 안정감을 표현합니다.
   - 포인트 컬러: 골드 그라디언트(#FBBF24 → #D97706) — 자본·성장·프리미엄을 상징합니다.
   - 서브 포인트: 네온 민트(#10B981) — 성장/전환의 긍정 시그널로 사용합니다.

   [페이지 구조 — 정책자금 컨설턴트 심리 동선 순서]
   Header → Hero → Pain → Brand Promise → Why Landing → Services → Builder → FAQ → Final CTA → Footer
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* 브랜드 컬러 팔레트 — Stripe·BCG급 컨설팅 톤의 라이트 모드
       로고의 다크 네이비 워드마크와 골드 모노그램이 가장 잘 보이는 화이트 베이스 */
    --bg-primary: #FFFFFF;       /* 메인 화이트 배경 */
    --bg-secondary: #FAFAFA;     /* 서브 — 중립 그레이 (푸른 톤 제거) */
    --bg-elevated: #FFFFFF;      /* 카드 위계 */
    --accent-gold: #D97706;      /* 메인 골드 — 라이트 배경에서 콘트라스트 확보 위해 진한 톤 */
    --accent-gold-dark: #92400E; /* 진한 골드 (그라디언트 종점) */
    --accent-gold-soft: #FBBF24; /* 밝은 골드 (하이라이트) */
    --accent-neon: #059669;      /* 진한 민트 (성장 시그널, 라이트 배경 가독성) */
    --accent-danger: #DC2626;    /* 페인 포인트 강조 */
    --text-main: #1A1A1A;        /* 주 텍스트 — 중립 다크 (블루 톤 제거) */
    --text-muted: #525252;       /* 보조 텍스트 — 중립 그레이 */
    --text-faint: #8A8A8A;       /* 매우 흐린 텍스트 — 중립 그레이 */

    /* 글래스/카드 효과 — 라이트 모드에 중립적인 보더 */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-blur: blur(12px);

    /* 폰트 */
    --font-title: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* 트랜지션 */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* 모서리 곡률 토큰 (Stripe 톤: 절제된 곡률로 진중함 표현) */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    /* [한글 주석: Antigravity 글로벌 규칙 적용]
       구현 근거: 데스크톱 화면에서 absolute 장식 광원들이 화면 오른쪽으로 돌출될 때 
       일부 브라우저에서 강제로 생기는 가로 스크롤(Horizontal Scroll)과 그에 따른 빈 여백을 원천 차단함. */
    overflow-x: hidden !important;
    width: 100% !important;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 한국어 줄바꿈 자연스럽게 — 헤딩·카피 모두에 적용 */
h1, h2, h3, h4, h5, h6, p {
    word-break: keep-all;
    text-wrap: pretty;
}

h1, h2, h3 {
    text-wrap: balance;
}

/* ==========================================================================
   스크롤 진입 시 등장 애니메이션 (IntersectionObserver와 연동)
   - 초기 상태: 28px 아래 + 투명
   - .visible 클래스 붙으면: 원위치 + 불투명
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 접근성: 모션 감소 설정 사용자에게는 애니메이션 비활성화 */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 화면 외 처리 유틸 (접근성/SEO 텍스트용) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 라이트 모드: ambient glow는 매우 옅은 톤으로 (다크 베이스와 달리 강조 약하게) */
.ambient-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, rgba(251, 191, 36, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.04) 0%, rgba(5, 150, 105, 0) 70%);
    top: 60%;
    left: -200px;
    z-index: -1;
    pointer-events: none;
    animation: ambientFloat 18s ease-in-out infinite;
}

.ambient-glow-1 {
    animation: ambientFloat 22s ease-in-out infinite reverse;
}

/* 배경 발광체 부드럽게 움직이는 keyframes — 페이지 전반에 미묘한 생동감 */
@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.08); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* 컨테이너 폭 확장 — Stripe·BCG 등 톱티어 사이트 기준 1440px (광활한 좌우 여백) */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    /* [한글 주석: Antigravity 글로벌 규칙 적용]
       구현 근거: 
         1. 모바일 화면에서 pc 기준의 강제 줄바꿈이 적용되어 한 글자만 다음 줄로 넘어가거나 문장이 깨지는 문제를 방지합니다.
         2. 모바일 스티키 CTA 바에 의해 본문 하단의 마지막 콘텐츠(명함 제작 옵션 등)가 가려지는 오버랩 문제를 해결하기 위해 바텀 패딩을 충분히(120px) 확보합니다.
       동작 메커니즘:
         - 데스크톱 전용으로 태깅된 pc-only br 태그를 숨기고, 모든 인라인/블록 요소에 word-break 상속을 강제합니다.
         - option-title을 블록 구조로 강제하여 모바일 뷰에서도 텍스트가 줄바꿈 한 단어만 아래로 내려가지 않고 깔끔하게 정렬되도록 보장합니다. */
    br.pc-only {
        display: none !important;
    }
    span, label, a, li, button, p, h1, h2, h3, h4, div {
        word-break: keep-all !important;
        text-wrap: pretty !important;
    }
    .option-title {
        display: block !important;
        width: 100% !important;
        word-break: keep-all !important;
    }
    body {
        padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important; /* 마지막 옵션 카드가 스티키 CTA에 가리지 않도록 바텀 패딩 보강 */
    }

    .container {
        padding: 0 20px;
    }
}

/* 텍스트 강조 유틸 */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold-soft) 0%, var(--accent-gold) 50%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-green-text {
    background: linear-gradient(135deg, #A7F3D0 0%, var(--accent-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   1. HEADER — 고정 헤더, 로고 + 우측 CTA만 (워드마크 텍스트는 로고에 포함되어 제거)
   ========================================================================== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* 헤더 로고: 가로형 누끼 로고 — 우측 CTA 버튼과 시각 밸런스 맞춤 (height 40px) */
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-cta-btn {
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
    background: #2A2A2A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   2. HERO — Stripe 식 좌-텍스트 / 우-그라데이션 흐름 비대칭 레이아웃
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

/* Stripe 시그니처 그라데이션 흐름 — 페이지 우측에서 viewport 끝까지 흘러나감
   라이트 베이스에 골드·앰버·민트의 다층 광선 + 자연스럽게 흐르는 4단계 애니메이션 */
.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 75%;
    height: 130%;
    background:
        radial-gradient(ellipse 60% 80% at 70% 30%, rgba(251, 191, 36, 0.32) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 50% 50%, rgba(217, 119, 6, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 40% 70%, rgba(5, 150, 105, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: heroFlow 9s ease-in-out infinite;
}

/* 두 번째 레이어 — 다른 속도로 흐르는 보조 광원으로 입체감 추가 */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle 400px at 60% 40%, rgba(251, 191, 36, 0.15) 0%, transparent 65%),
        radial-gradient(circle 350px at 30% 70%, rgba(217, 119, 6, 0.12) 0%, transparent 65%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: heroFlowAlt 11s ease-in-out infinite reverse;
}

@keyframes heroFlow {
    0% { transform: rotate(-12deg) translate(0, 0) scale(1); }
    25% { transform: rotate(0deg) translate(-80px, 50px) scale(1.15); }
    50% { transform: rotate(-20deg) translate(60px, -40px) scale(1.1); }
    75% { transform: rotate(-5deg) translate(-30px, 70px) scale(1.08); }
    100% { transform: rotate(-12deg) translate(0, 0) scale(1); }
}

@keyframes heroFlowAlt {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    33% { transform: translate(80px, -60px) scale(1.2); opacity: 1; }
    66% { transform: translate(-60px, 80px) scale(0.9); opacity: 0.75; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

/* 좌측 텍스트 영역과 우측 빈 비주얼 영역의 2단 그리드
   align-items: start로 두 컬럼이 위쪽 정렬 → hero-text 아래 빈 공간 제거 */
.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.hero-text {
    text-align: left;
}

/* 우측 비주얼 영역은 절대 위치 광원이 차지하므로 별도 min-height 불필요 */
.hero-visual-area {
    position: relative;
    height: 480px;
    width: 100%;
}

/* 우측 영역에 추가 시각 포인트 (큰 LP 워드마크 또는 추상 그래픽) */
.hero-visual-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* [한글 주석: Antigravity 글로벌 규칙 적용]
   구현 근거: 데스크톱 화면 우측의 광활한 빈 공간(여백)을 시각적으로 웅장하게 메우기 위해 3D Glassmorphic 대시보드 목업 그래픽을 설계함.
   동작 메커니즘:
     - perspective와 rotateY/rotateX를 사용하여 입체감 있는 3D 배치를 구현함.
     - 각 요소는 absolute 좌표로 격자 위에 레이어드 배치되며, backdrop-filter(blur)를 활용해 반투명 유리 질감을 냄.
     - hover 시 translateZ를 사용하여 마이크로 애니메이션으로 둥실 떠오르는 인터랙션을 제공함. */
.hero-dashboard-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1000px) rotateY(-12deg) rotateX(6deg);
    transform-style: preserve-3d;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: absolute;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.mockup-card:hover {
    transform: translateZ(24px) translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(251, 191, 36, 0.4);
}

/* 카드 1: 실시간 잠재고객 DB 발굴 카드 */
.card-leads {
    top: 20px;
    left: 20px;
    width: 350px;
    z-index: 3;
}

.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--accent-neon);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.lead-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.lead-item:last-child {
    margin-bottom: 0;
}

.lead-time {
    color: var(--text-faint);
    font-size: 0.75rem;
    white-space: nowrap;
}

.lead-info {
    color: var(--text-main);
    flex-grow: 1;
}

.lead-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-neon);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* 카드 2: 시너지 그래프 카드 */
.card-chart {
    top: 130px;
    right: -10px;
    width: 280px;
    z-index: 2;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.chart-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-neon);
    font-family: var(--font-title);
}

.chart-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 120px;
    padding: 0 10px;
    border-bottom: 2px solid var(--glass-border);
}

.chart-bar {
    width: 50px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    transition: height 1s ease-out;
}

.bar-before {
    background: #E5E7EB;
}

.bar-after {
    background: linear-gradient(to top, var(--accent-gold), var(--accent-gold-soft));
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.bar-label {
    position: absolute;
    bottom: -22px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* 카드 3: 카카오톡 알림톡 자동화 */
.card-kakaotalk {
    top: 250px;
    left: 80px;
    width: 320px;
    z-index: 4;
    background: #FFF9E6; /* 카카오 브랜딩 골드/옐로우 톤을 옅게 */
    border-color: rgba(251, 191, 36, 0.25);
}

.kakao-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.kakao-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3C1E1E;
}

.kakao-msg {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.msg-bubble {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #111111;
    margin-bottom: 8px;
    word-break: break-all;
}

.msg-status {
    font-size: 0.7rem;
    color: var(--text-faint);
    display: block;
    text-align: right;
}

/* 태그라인: 단순 노출 (타이핑 효과 제거) */
.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
    display: inline-block;
}

/* 헤드라인: JS 타이핑 효과 + 끝에 깜빡이는 커서
   line-height 1.0 타이트 + min-height 제거 → "설계합니다." 직후에서 정확히 끝남
   타이핑 중 텍스트 자라남에 따른 페이지 점프는 description 페이드업이 자연스럽게 흡수 */
.hero-title {
    line-height: 1.0;
}

/* JS가 마지막 글자 옆에 명시적으로 삽입하는 커서 (줄바꿈 방지) */
.typing-cursor {
    display: inline-block !important;
    color: var(--accent-gold);
    font-weight: 300;
    margin-left: 2px;
    animation: cursorBlink 0.7s step-end infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* 타이핑 끝나는 시점(약 1.7s)에 맞춰 단순 페이드인 — translateY 없이 자리에서 부드럽게 나타남 */
.hero-description {
    animation: heroFadeIn 0.6s ease-out 1.7s backwards;
}

.hero-actions {
    animation: heroFadeIn 0.6s ease-out 2.0s backwards;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -2px;
    text-align: left;

}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 0 40px 0;
    word-break: keep-all;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

/* 히어로 이미지 영역은 디자인상 제거되었으나, CSS 잔여 클래스는 안전하게 숨김 처리 */
.hero-visual {
    display: none;
}

/* 모바일에서는 1단으로 폴드 */
@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
    }
    .hero-visual-area {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

.btn-primary {
    background: #0A0A0A;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   3. PAIN — 페인 포인트(공감) 섹션. 컨설턴트의 진짜 고통을 짚어 "내 얘기다" 유도.
   ========================================================================== */
.pain-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-neon);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 16px auto 0 auto;
    word-break: keep-all;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-danger);
    opacity: 0.8;
}

.pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(220, 38, 38, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-danger);
}

.pain-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.pain-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   4. BRAND PROMISE — 신뢰/전략/성과 3가지 가치. 카카오 썸네일 자산에서 추출한 핵심 약속.
   ========================================================================== */
.promise-section {
    padding: 90px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.promise-card {
    text-align: center;
    padding: 44px 28px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.promise-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(217, 119, 6, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px auto;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.promise-icon svg,
.pain-icon svg,
.service-icon-box svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promise-card-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent-gold);
    letter-spacing: -0.5px;
}

.promise-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. WHY LANDING PAGE — 핵심 상품(랜딩페이지)이 DB 전환률에 결정적인 이유.
      정책자금 컨설턴트 심리 자극: "광고비 헛돈 안 쓰고 진짜 DB 받으려면 이게 필수다"
   ========================================================================== */
.why-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--bg-secondary) 50%, rgba(255, 255, 255, 0) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.why-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(217, 119, 6, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.why-stat {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold-soft) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.why-stat-unit {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.why-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.why-card-desc {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.why-cta-wrap {
    text-align: center;
}

/* ==========================================================================
   6. SERVICES — 8가지 서비스 카탈로그
   ========================================================================== */
.services-section {
    padding: 100px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 6px 18px rgba(0, 0, 0, 0.05);
}

/* 입체감 강화: 호버 시 카드가 더 떠오르는 느낌 + 골드 강조 */
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.45);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(217, 119, 6, 0.1),
        0 14px 28px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(251, 191, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(251, 191, 36, 0.15);
    color: var(--accent-gold);
    flex-shrink: 0;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

/* 서비스 카드 하단 가격 표시 (공개 가격 정책) */
.service-price {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-gold);
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
    letter-spacing: -0.5px;
}

.service-price .service-price-unit {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.service-price.custom {
    color: var(--accent-neon);
    font-size: 1.15rem;
}

/* ==========================================================================
   7. BUILDER — 인터랙티브 패키지 빌더 (액션 직전 클라이맥스)
   ========================================================================== */
.builder-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--bg-secondary) 50%, rgba(255, 255, 255, 0) 100%);
}

.builder-promo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 22px auto 0;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(217, 119, 6, 0.12) 50%, rgba(5, 150, 105, 0.14) 100%);
    border: 1.5px solid rgba(217, 119, 6, 0.45);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(217, 119, 6, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    animation: builderPromoPulse 2.4s ease-in-out infinite;
}

.builder-promo-badge {
    flex-shrink: 0;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-radius: 999px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.builder-promo-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
    text-align: left;
}

.builder-promo-text strong {
    color: var(--accent-gold-dark);
    font-weight: 800;
}

.builder-promo-text small {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.builder-promo-text small strong {
    color: var(--accent-neon);
    font-weight: 700;
}

@keyframes builderPromoPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(217, 119, 6, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 6px 32px rgba(217, 119, 6, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.5); }
}

@media (max-width: 640px) {
    .builder-promo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 14px 18px;
    }
    .builder-promo-text { text-align: center; font-size: 0.95rem; }
}

.builder-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.option-item:hover {
    background: var(--bg-secondary);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.option-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-chk {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.option-checkbox:checked ~ .custom-chk {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.custom-chk::after {
    content: '✓';
    color: #000;
    font-weight: 900;
    font-size: 0.85rem;
    display: none;
}

.option-checkbox:checked ~ .custom-chk::after {
    display: block;
}

.option-checkbox:checked ~ .option-content .option-title {
    color: var(--accent-gold);
}

.option-item.checked {
    border-color: var(--accent-gold);
    background: rgba(251, 191, 36, 0.04);
}

.option-content {
    flex-grow: 1;
}

/* 옵션 카드 내부: 제목과 가격을 가로 정렬 */
.option-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.option-title {
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
}

/* 빌더 옵션 가격 표시 (옵션 우측에 골드 컬러로 강조) */
.option-price {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent-gold);
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.option-price small {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 2px;
}

.option-price.custom {
    color: var(--accent-neon);
    font-size: 0.9rem;
}

.option-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* '랜딩페이지' 옵션 핵심 추천 표시 — 컨설턴트가 가장 먼저 체크해야 할 옵션임을 시각적으로 강조 */
.option-item.recommended::after {
    content: '핵심 추천';
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent-gold-dark);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.summary-panel {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: sticky;
    top: 124px;
    align-self: start;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.summary-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
}

.selected-list {
    margin-bottom: 24px;
    min-height: 80px;
}

.empty-message {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 20px 0;
}

.selected-tag-badge {
    display: inline-block;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    animation: fadeIn 0.3s ease forwards;
}

.synergy-box {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.synergy-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent-neon);
    margin-bottom: 6px;
}

/* ==========================================================================
   실시간 견적 박스 — 옵션 선택 시 소계·할인·최종 금액을 즉시 보여주는 핵심 전환 장치
   ========================================================================== */
.quote-box {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.06) 0%, rgba(251, 191, 36, 0.02) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 26px;
    animation: fadeIn 0.3s ease forwards;
}

.quote-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
}

.quote-label {
    color: var(--text-muted);
    font-weight: 500;
}

.quote-value {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.quote-value.discount {
    color: var(--accent-neon);
    font-weight: 700;
}

.quote-row-final {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.quote-row-final .quote-label {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
}

.quote-value.final {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold-soft) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.8px;
}

.quote-custom-note {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(16, 185, 129, 0.08);
    border-left: 3px solid var(--accent-neon);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--accent-neon);
    line-height: 1.5;
}

.quote-fine-print {
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--text-faint);
    line-height: 1.6;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.15);
}

/* 개인정보 처리 동의 체크박스 (법적 필수) */
.privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.privacy-consent input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--accent-gold);
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-consent a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.submit-btn {
    background: #0A0A0A;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #2A2A2A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.submit-btn:disabled {
    background: #E5E5E5;
    color: #A3A3A3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   8. FAQ — 자주 묻는 질문. 마지막 망설임 제거 + AI 검색(GEO) 최적화.
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 820px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.02);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-main);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    word-break: keep-all;
}

/* ==========================================================================
   9. FINAL CTA — 마지막 한 방. 끝까지 본 사람 놓치지 않기.
   ========================================================================== */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.final-cta-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 40px;
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(217, 119, 6, 0.1);
}

.final-cta-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    word-break: keep-all;
}

.final-cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    word-break: keep-all;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 32px 0;
    background-color: var(--bg-secondary);
    color: var(--text-muted);
}

.footer-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand img {
    height: 44px;
    margin-bottom: 14px;
    display: block;
}

.footer-brand {
    max-width: 580px;
}

.footer-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .footer-links {
        align-items: flex-start;
    }
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copy {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-faint);
    text-align: center;
}

/* ==========================================================================
   모달 (상담 신청 완료 피드백)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #FFFFFF;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.modal-notice {
    font-size: 0.95rem;
    color: var(--accent-gold-dark);
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.35);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 24px;
    line-height: 1.55;
}

.modal-notice strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.modal-close-btn {
    background: var(--bg-secondary);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   모바일 스티키 CTA — 스크롤 중에도 항상 노출되는 하단 고정 행동 유도 바
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-cta a {
    display: block;
    text-align: center;
    background: #0A0A0A;
    color: #FFFFFF;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   애니메이션
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   반응형 — 모바일 최적화
   ========================================================================== */
@media (max-width: 768px) {
    /* [한글 주석: Antigravity 글로벌 규칙 적용]
       구현 근거: 
         1. 모바일 터치 스크린에서 버튼의 터치 가능 타겟(Touch Target)이 너무 작거나 겹칠 경우 사용성의 치명적인 감점이 발생하므로, 헤더 CTA 및 모든 액션 버튼의 패딩과 세로 높이를 최소 44px 이상으로 강제 조정하였습니다.
         2. 모바일 브라우저에서 손가락 터치 후 hover 스타일이 사라지지 않고 유지되어 색상이 고정되는 오작동을 해결하기 위해, 탭 액티브 피드백(:active)을 추가하고 기본 hover 트랜지션을 모바일에 최적화했습니다.
         3. 히어로 영역의 비대칭 버튼 구조를 모바일에서는 완전히 세로 100% 구조로 꽉 채워 터치 가용 폭을 확보했습니다. */
         
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    section, header, footer {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    html {
        -webkit-text-size-adjust: 100%; /* 기기 회전 시 브라우저의 임의 텍스트 크기 자동 조율 방지 */
    }

    .hero-title {
        font-size: 2.1rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch; /* 가로 가득 채우기 */
        width: 100%;
        gap: 10px; /* 버튼 간 세로 간격 조율 */
    }
    
    /* 히어로 영역 버튼 모바일 최적화 */
    .btn-primary,
    .btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        height: 52px; /* 확실한 터치 타겟 높이 확보 */
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        padding: 0 24px; /* 높이 고정이므로 세로 패딩은 0 */
        margin: 0;
    }
    
    /* 모바일 터치 액티브 피드백 (호버 잔류 해결) */
    .btn-primary:active {
        background: #333333;
        transform: scale(0.98);
    }
    .btn-secondary:active {
        background: #EEEEEE;
        transform: scale(0.98);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* 그리드 시스템 모바일 최적화: 가로 스크롤 방지를 위해 1열 고정 */
    .pain-grid,
    .service-grid,
    .promise-grid,
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* 빌더 옵션 카드 및 내부 텍스트 모바일 뷰 최적화 */
    .option-item {
        padding: 16px;
        gap: 12px;
    }
    .option-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .option-price {
        font-size: 0.95rem;
    }

    .summary-panel {
        padding: 24px;
        position: relative;
        top: 0;
        margin-top: 20px;
    }
    
    /* 빌더 제출 버튼 모바일 터치 최적화 */
    .submit-btn {
        width: 100%;
        height: 54px; /* 터치 타겟 강화 */
        justify-content: center;
        align-items: center;
        padding: 0;
        font-size: 1.05rem;
    }
    .submit-btn:active:not(:disabled) {
        background: #333333;
        transform: scale(0.98);
    }

    .final-cta-card {
        padding: 40px 20px;
    }
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    /* 헤더 영역 모바일 최적화 및 CTA 터치 타겟 강화 */
    .nav-wrapper {
        height: 68px; /* 헤더 높이 살짝 컴팩트하게 */
        padding: 0 16px;
    }
    .logo-img {
        height: 28px; /* 모바일 헤더 로고 크기 최적화 */
    }
    .logo-text {
        font-size: 1.15rem !important;
    }
    .nav-cta-btn {
        font-size: 0.85rem;
        padding: 10px 16px; /* 터치 높이 확보 (약 40px) */
        border-radius: var(--radius-sm);
    }
    .nav-cta-btn:active {
        background: #2A2A2A;
        transform: scale(0.97);
    }

    /* 모바일에서만 스티키 CTA 노출 (iOS Safe Area 완벽 대응) */
    .mobile-sticky-cta {
        display: block;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
    }
    .mobile-sticky-cta a {
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 0.95rem;
    }
    .mobile-sticky-cta a:active {
        background: #222222;
        transform: scale(0.98);
    }
    
    body {
        padding-bottom: calc(120px + env(safe-area-inset-bottom)) !important; /* 스티키 CTA가 콘텐츠를 가리지 않도록 하단 본문 패딩 부여 */
    }
}
