/* 
========================================================================
   PREMIUM REDESIGN CSS (V6 - REFINED TYPOGRAPHY + PAGE THEMES)
   강조색: 노랑/주황 → 크림 화이트 + 딥 앰버 골드 계열 (고급스러운 톤)
========================================================================
*/

/* =====================
   1. CSS VARIABLES (V6 COLOR SYSTEM)
   ===================== */
:root {
    /* 히어로 강조 — 탁한 주황/노랑 대신 따뜻한 크림 & 딥 앰버로 격상 */
    --accent-hero: #F5E6C8;       /* 크림 화이트 (헤드라인 강조) */
    --accent-amber: #D97706;       /* 딥 앰버 골드 (버튼, 포인트) */
    --accent-warm: #92400E;       /* 브라운 골드 (호버, 서브) */

    /* 페이지별 테마 색상 */
    --theme-sewer: #065F46;       /* 딥 에메랄드 그린 */
    --theme-sink:  #1E3A5F;       /* 딥 네이비 */
    --theme-toilet:#3B1F5E;       /* 딥 퍼플 */
    --theme-other: #7C2D12;       /* 딥 번트 오렌지 */

    /* 텍스트 가시성 확보 */
    --text-on-dark: #F1F5F9;      /* 다크 배경 위 기본 텍스트 */
    --text-muted-on-dark: rgba(241,245,249,0.75); /* 다크 배경 위 서브 텍스트 */
    --text-section-desc: #475569; /* 밝은 배경 위 설명문 */
}

/* =====================
   2. ANIMATIONS
   ===================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}
@keyframes pulseAmber {
    0%   { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.55); }
    70%  { box-shadow: 0 0 0 18px rgba(217, 119, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes lineGrow {
    from { height: 0; }
    to   { height: 100%; }
}

.anim-float { animation: float 4s ease-in-out infinite; }

/* =====================
   3. HERO V6 (REFINED)
   ===================== */
.hero-v5 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero_bg_premium.png') center / cover no-repeat fixed;
    color: var(--text-on-dark);
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero-v5::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(15,10,5,0.92) 100%);
    z-index: 0;
    pointer-events: none;
}
/* 페이지별 히어로 배경 오버라이드 */
.hero-v5.hero-sewer { background-image: url('images/sewer_hero_bg.png'); }
.hero-v5.hero-sink   { background-image: url('images/sink_hero_bg.png'); }
.hero-v5.hero-toilet { background-image: url('images/toilet_hero_bg.png'); }
.hero-v5.hero-other  { background-image: url('images/other_hero_bg.png'); }

.hero-v5.hero-sewer::before  { background: linear-gradient(160deg, rgba(3,30,20,0.85) 0%, rgba(0,0,0,0.92) 100%); }
.hero-v5.hero-sink::before   { background: linear-gradient(160deg, rgba(5,15,35,0.85) 0%, rgba(0,0,0,0.92) 100%); }
.hero-v5.hero-toilet::before { background: linear-gradient(160deg, rgba(18,5,35,0.85) 0%, rgba(0,0,0,0.92) 100%); }
.hero-v5.hero-other::before  { background: linear-gradient(160deg, rgba(40,10,5,0.85) 0%, rgba(0,0,0,0.92) 100%); }

.hero-v5-inner {
    position: relative; z-index: 1;
    width: 100%; max-width: 1000px;
    padding: 0 24px;
}
.hero-v5-eyebrow {
    display: inline-block;
    background: rgba(245,230,200,0.12);
    border: 1px solid rgba(245,230,200,0.4);
    color: var(--accent-hero);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
@keyframes textPop {
    0% { transform: scale(0.9) translateY(20px); opacity: 0; filter: blur(10px); }
    100% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

.hero-v5-title {
    font-size: clamp(44px, 7.5vw, 88px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0,0,0,0.8), 0 8px 24px rgba(0,0,0,0.6);
}
/* 일반 흰색 줄 (첫번째 줄) 확실히 보이게 */
.hero-v5-title > br + span,
.hero-v5-title > span:not(.text-gradient) {
    color: #FFFFFF;
}
/* 강조 텍스트: 강렬하고 밝은 옐로우/골드 빛 */
.hero-v5-title .text-gradient {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700 0%, #FFFFFF 30%, #FFD700 70%, #FFFBF0 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite, textPop 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    text-shadow: none;
}
.hero-v5-sub {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 500;
    color: var(--text-muted-on-dark);
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Sticky 전화 버튼 */
.hero-sticky-btn {
    position: fixed;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--accent-amber);
    color: #fff;
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 800;
    padding: 18px 36px;
    border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(217,119,6,0.45);
    animation: pulseAmber 2.5s infinite;
    white-space: nowrap;
    border: 2px solid rgba(255,255,255,0.25);
    transition: transform 0.2s ease;
}
.hero-sticky-btn:hover { transform: translateX(-50%) scale(1.03); }

/* =====================
   4. SECTION 공통
   ===================== */
.section-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-bottom: 14px;
    display: block;
}
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}
.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #111111 !important; /* Force dark */
    letter-spacing: -1px;
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    color: #475569 !important; /* Force dark */
    line-height: 1.7;
}
.orange-text { color: var(--accent-amber) !important; }

/* Container padding override & z-index for pseudo background overlays */
.container { position: relative; z-index: 10; }

@media (max-width: 768px) {
    .container { padding: 0 24px !important; }
}

/* 글로벌 텍스트 가독성 (모바일 줄바꿈 방지) */
h1, h2, h3, h4, h5, h6, p, span, div {
    word-break: keep-all;
    overflow-wrap: break-word;
}
@media (max-width: 768px) {
    .section-title br,
    .content-heading br,
    .card-news-title br,
    .cta-title br {
        display: none;
    }
}

/* =====================
   5. PAIN SECTION
   ===================== */
.pain-section {
    padding: 110px 0;
    background: #F8F7F4;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.pain-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
.pain-icon {
    font-size: 56px;
    color: #DC2626;
    margin-bottom: 20px;
    display: block;
}
.pain-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1a1a1a;
}
.pain-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-section-desc);
}

/* =====================
   6. CONTENT (체류 콘텐츠) — 각 페이지 고유 섹션
   ===================== */
.content-section {
    padding: 100px 0;
    background: #fff;
}
.content-section.alt-bg {
    background: #F8F7F4;
}
.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 56px;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.content-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    aspect-ratio: 4/3;
    background: #1a1a1a;
}
.content-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.content-img-wrap:hover img { transform: scale(1.04); }

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.content-heading {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.content-body {
    font-size: 16px;
    color: var(--text-section-desc);
    line-height: 1.8;
    margin-bottom: 28px;
}
.check-list-v6 {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.check-list-v6 li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    background: #f8fafc;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.check-list-v6 li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: rgba(217,119,6,0.2);
}
.check-list-v6 li::before {
    content: '✓';
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    margin-top: 0;
    box-shadow: 0 4px 10px rgba(217,119,6,0.3);
}

/* 증상 원인 단계 — 스테이지 카드 */
.stage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    position: relative;
}
.stage-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: left;
    position: relative;
}
.stage-card::after {
    content: '→';
    position: absolute;
    right: -14px; top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--accent-amber);
    z-index: 2;
}
.stage-card:last-child::after { display: none; }
.stage-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-amber);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.stage-icon-wrap {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}
.stage-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.stage-desc {
    font-size: 12px;
    color: var(--text-section-desc);
    line-height: 1.5;
}
.danger { color: #DC2626 !important; }
.warn   { color: #D97706 !important; }
.safe   { color: #059669 !important; }

/* =====================
   7. PRICING SECTION
   ===================== */
.pricing-section {
    padding: 110px 0;
    background: url('images/card_bg_premium.png') center / cover no-repeat fixed;
    position: relative;
    color: var(--text-on-dark);
}
.pricing-section::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,8,5,0.88);
    z-index: 0;
    pointer-events: none;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    position: relative; z-index: 1;
    margin-top: 48px;
}
.price-ticket {
    background: rgba(245,230,200,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245,230,200,0.15);
    border-radius: 18px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.price-ticket:hover {
    background: rgba(245,230,200,0.1);
    border-color: var(--accent-amber);
    transform: translateY(-4px);
}
.price-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-on-dark);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.price-name i {
    font-size: 44px !important;
}
.price-amount {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent-hero);
    font-family: 'Rajdhani', sans-serif;
    white-space: nowrap;
    margin-top: 8px;
}
.price-amount span {
    font-size: 14px;
    color: var(--text-muted-on-dark);
    font-weight: 500;
    font-family: inherit;
}
.price-note {
    position: relative; z-index: 1;
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted-on-dark);
    line-height: 1.7;
}

/* =====================
   8. KAKAO CHAT UI
   ===================== */
.kakao-section {
    padding: 100px 0;
    background: #F8F7F4;
}
.kakao-chat-container {
    background: #b2c7d9;
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 620px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.kakao-chat-date {
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,0.25);
    padding: 5px 16px;
    border-radius: 50px;
    align-self: center;
}
.kakao-msg-row { display: flex; gap: 12px; align-items: flex-start; }
.kakao-msg-row.me { flex-direction: row-reverse; }
.kakao-profile {
    width: 46px; height: 46px; border-radius: 16px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.kakao-bubble {
    max-width: 73%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.55;
}
.kakao-msg-row.other .kakao-bubble {
    background: #fff;
    color: #111;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.kakao-msg-row.me .kakao-bubble {
    background: #FEE500;
    color: #111;
    border-top-right-radius: 4px;
}
.kakao-name {
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 4px;
    font-weight: 700;
}
.kakao-time {
    font-size: 10px;
    color: #718096;
    align-self: flex-end;
    margin-bottom: 2px;
    white-space: nowrap;
}

/* =====================
   9. REVIEW WALL
   ===================== */
.review-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 36px;
}
.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-section-desc);
}
.review-stars { color: #D97706; letter-spacing: 1px; }
.review-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.review-body {
    font-size: 14px;
    color: var(--text-section-desc);
    line-height: 1.65;
}

/* =====================
   10. PROCESS TIMELINE
   ===================== */
.process-section {
    padding: 110px 0;
    background: #fff;
}
.process-container {
    max-width: 760px;
    margin: 56px auto 0;
    position: relative;
}
.process-container::before {
    content: '';
    position: absolute;
    top: 30px; bottom: 30px;
    left: 39px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-amber) 0%, rgba(217,119,6,0.1) 100%);
    animation: lineGrow 1.2s ease both;
}
.process-step {
    position: relative;
    padding-left: 96px;
    margin-bottom: 44px;
}
.process-step:last-child { margin-bottom: 0; }
.step-number {
    position: absolute;
    left: 9px; top: 0;
    width: 60px; height: 60px;
    background: var(--accent-amber);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    font-weight: 900;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 8px 20px rgba(217,119,6,0.35);
    z-index: 2;
}
.step-content {
    background: #F8F7F4;
    padding: 28px 28px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.05);
}
.step-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-section-desc);
}

/* =====================
   11. CARD NEWS (ABOUT)
   ===================== */
.card-news-section {
    padding: 110px 0;
    background: url('images/card_bg_premium.png') center / cover no-repeat fixed;
    position: relative;
    color: var(--text-on-dark);
}
.card-news-section::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,8,5,0.88);
    z-index: 0;
    pointer-events: none;
}
.card-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative; z-index: 1;
    margin-top: 48px;
}
.card-news-item {
    background: rgba(245,230,200,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(245,230,200,0.15);
    border-radius: 22px;
    padding: 40px 28px;
    transition: all 0.35s ease;
}
.card-news-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-amber);
    background: rgba(245,230,200,0.1);
}
.card-news-badge {
    background: var(--accent-amber);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.card-news-title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text-on-dark);
}
.card-news-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted-on-dark);
}

/* =====================
   12. INFO BOX (경고/팁 박스)
   ===================== */
.info-box {
    border-radius: 16px;
    padding: 24px 28px;
    margin: 28px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-box.warn-box {
    background: #FEF9EE;
    border: 1px solid #FDE68A;
}
.info-box.danger-box {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
}
.info-box.safe-box {
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
}
.info-box-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-box-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1a1a1a;
}
.info-box-desc {
    font-size: 14px;
    color: var(--text-section-desc);
    line-height: 1.65;
}

/* =====================
   13. MOBILE RESPONSIVE
   ===================== */
@media (max-width: 900px) {
    .content-two-col { grid-template-columns: 1fr; direction: ltr; }
    .content-two-col.reverse { direction: ltr; }
    .stage-grid { grid-template-columns: repeat(2, 1fr); }
    .stage-card::after { display: none; }
    .card-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .pain-grid { grid-template-columns: 1fr; }
    .stage-grid { grid-template-columns: 1fr; }
    .process-step { padding-left: 60px; }
    .step-number { width: 42px; height: 42px; font-size: 16px; left: 4px; }
    .process-container::before { left: 24px; }
    .price-ticket { padding: 24px 20px; gap: 12px; }
    .price-name { font-size: 18px; }
    .price-amount { font-size: 28px; }
    .hero-sticky-btn { font-size: 15px; padding: 15px 24px; }
}

/* =====================
   14. V6 NEW SECTIONS (FORM, RADAR, ESTIMATE, PARTNERS)
   ===================== */

/* Hero Layout & Form */
.hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; text-align: left; }
.hero-form-container {
    background: rgba(15, 10, 5, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245,230,200,0.15);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.hero-form-title { font-size: 22px; font-weight: 800; color: var(--accent-hero); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted-on-dark); margin-bottom: 8px; font-weight: 600;}
.hero-form-container input, .hero-form-container textarea, .hero-form-container select {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 15px; outline: none; transition: 0.3s;
    appearance: none; -webkit-appearance: none; font-family: inherit;
}
.hero-form-container input:focus, .hero-form-container textarea:focus, .hero-form-container select:focus { border-color: var(--accent-amber); background: rgba(255,255,255,0.1); }
.hero-form-container select option { background: #1a1008; color: #fff; }
.submit-btn {
    width: 100%; padding: 18px; background: linear-gradient(135deg, var(--accent-amber), var(--accent-warm));
    color: #fff; font-size: 16px; font-weight: 800; border: none; border-radius: 12px;
    cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(217,119,6,0.3); margin-top: 10px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217,119,6,0.4); }

/* Dispatch Fleet Section (Upgraded) */
.dispatch-section { padding: 90px 0; background: #0A0A0A; color: #fff; position: relative; overflow: hidden; }
.dispatch-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(255,193,7,0.15) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

.fleet-dashboard {
    background: rgba(25, 25, 25, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin-top: 30px;
    overflow: hidden;
    text-align: left;
    position: relative;
    z-index: 10;
}

/* AI Network Animation */
.ai-network-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(10, 20, 15, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.core-text {
    font-size: 11px;
    font-weight: 800;
    color: #4ade80;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid #4ade80;
    animation: ripple 3s infinite linear;
}
.core-ring.r-2 { animation-delay: 1.5s; }

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.network-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.network-lines line {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 1;
    stroke-dasharray: 4;
    animation: dashPulse 2s infinite linear;
}

@keyframes dashPulse {
    0% { stroke: rgba(255, 255, 255, 0.1); }
    50% { stroke: rgba(74, 222, 128, 0.4); }
    100% { stroke: rgba(255, 255, 255, 0.1); }
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.node-dot {
    width: 12px; height: 12px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulseFade 2s infinite;
}

.node-dot.dispatch {
    background: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber);
}

.node-label {
    font-size: 11px;
    color: #aaa;
    background: rgba(0,0,0,0.6);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Positioning the nodes */
.network-node.n1 { top: 25%; left: 20%; }
.network-node.n2 { top: 25%; left: 80%; }
.network-node.n3 { top: 60%; left: 15%; }
.network-node.n4 { top: 60%; left: 85%; }
.network-node.n5 { top: 85%; left: 35%; }
.network-node.n6 { top: 85%; left: 65%; }

.fleet-dashboard-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-top: 20px;
}


.fleet-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 700;
}

.pulse-green {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 1.5s infinite;
}

.status-stats {
    color: #ccc;
}
.status-stats strong {
    color: var(--accent-amber);
}

.tech-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.tech-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(255,193,7,0.1);
    border-color: rgba(255,193,7,0.4);
    transform: translateY(-2px);
}

.tech-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-amber);
    border: 2px solid rgba(255,193,7,0.5);
}

.tech-card.active-standby .tech-avatar {
    border-color: #4ade80;
    color: #4ade80;
}

.tech-info {
    flex: 1;
}

.tech-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-standby {
    font-size: 11px;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-dispatch {
    font-size: 11px;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-amber);
    padding: 2px 6px;
    border-radius: 4px;
}

.tech-zone {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 2px;
}

.tech-spec {
    font-size: 12px;
    color: var(--accent-amber);
}

.live-feed-container {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.live-feed-title {
    font-size: 14px;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.live-feed-title i {
    color: #ef4444;
}
.pulse-icon {
    animation: pulseFade 2s infinite;
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.feed-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    align-items: center;
}

.feed-time {
    color: #4ade80;
    font-weight: bold;
    white-space: nowrap;
}

.feed-text {
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulseFade {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Review Split Layout */
.review-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; align-items: start;}
.kakao-chat-container.split-left { margin: 0; max-width: 100%; }

/* V6 FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-summary::after {
    content: '+';
    font-size: 24px;
    color: var(--accent-amber);
    transition: transform 0.2s;
}
.faq-item[open] .faq-summary::after {
    transform: rotate(45deg);
}
.faq-content {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    border-top: 1px solid rgba(0,0,0,0.04);
    margin-top: -8px;
    padding-top: 16px;
}

/* Estimate UI */
.estimate-section { padding: 110px 0; background: #F8F7F4; }
.estimate-paper {
    background: #fff; max-width: 800px; margin: 48px auto 0;
    padding: 50px; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    position: relative; border-top: 12px solid var(--accent-amber);
}
.estimate-paper::before {
    content: 'ESTIMATE'; position: absolute; top: 20px; right: 30px;
    font-size: 40px; font-weight: 900; color: rgba(0,0,0,0.03); letter-spacing: 5px;
}
.estimate-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid #eee; padding-bottom: 24px; margin-bottom: 32px; }
.estimate-logo { font-size: 24px; font-weight: 900; color: #111; }
.estimate-info { text-align: right; font-size: 14px; color: #666; line-height: 1.6; }
.estimate-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.estimate-table th, .estimate-table td { padding: 18px 16px; text-align: left; border-bottom: 1px solid #eee; font-size: 15px; }
.estimate-table th { color: #888; font-weight: 700; background: #fafafa;}
.estimate-total { text-align: right; font-size: 26px; font-weight: 900; color: var(--accent-warm); padding-top: 10px;}
.estimate-total span { font-size: 16px; color: #666; font-weight: 600; margin-right: 12px;}
.estimate-stamp {
    position: absolute; right: 50px; bottom: 50px;
    width: 110px; height: 110px; border: 4px solid #DC2626; color: #DC2626;
    border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 900; transform: rotate(-15deg); opacity: 0.85; line-height: 1.2; text-align: center;
}

/* Partners Rolling */
.partners-section { padding: 60px 0; background: #fff; overflow: hidden; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); transform: translateZ(0); isolation: isolate; }
.partners-track { display: flex; width: max-content; animation: scrollPartners 15s linear infinite; gap: 40px; align-items: center; }
.partner-logo { height: 50px; display: flex; align-items: center; justify-content: center; }
.partner-logo img { max-height: 100%; width: auto; opacity: 0.6; filter: grayscale(100%); transition: 0.3s; }
.partner-logo img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Form Inputs */
.form-input, .form-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.form-group label {
    font-weight: 700;
    color: #444;
    font-size: 14px;
}

/* CTA Section */
.cta-section { padding: 120px 0; background: linear-gradient(135deg, var(--theme-sink), #0A0A0A); color: #fff; text-align: center; position: relative;}
.cta-title { font-size: clamp(32px, 5vw, 48px); font-weight: 900; margin-bottom: 24px; line-height: 1.2;}
.cta-btn-large {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--accent-amber); color: #fff; padding: 20px 48px; border-radius: 50px;
    font-size: 20px; font-weight: 800; text-decoration: none;
    box-shadow: 0 12px 30px rgba(217,119,6,0.4); transition: transform 0.3s;
}
.cta-btn-large:hover { transform: translateY(-4px) scale(1.02); }

/* =====================================================
   모바일 히어로 레이아웃 — 전환율 개선
   데스크탑에서는 숨김, 768px 이하에서 표시
   ===================================================== */
.hero-mobile-stats, .hero-mobile-cta, .hero-mobile-inquiry-btn { display: none; }

@media (max-width: 768px) {
    /* 히어로 섹션 - 100vh 강제를 풀고 자연스럽게 흘러내리도록 스크롤과 여백 조절 */
    .hero-v5 { 
        padding: 0 !important;
        min-height: auto !important; 
        height: auto !important; 
        display: block !important; 
    }
    .hero-v5-inner { 
        padding: 0 !important; 
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* 첫 화면 텍스트 전담 블록 - 모바일 100svh를 오직 거대한 텍스트로만 꽉 채우는 여유의 미 구현 */
    .hero-split > div:first-child {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100svh !important; /* 모바일 첫 화면 뷰포트를 완전히 독차지 */
        box-sizing: border-box !important;
        padding: 70px 24px 40px !important;
    }

    /* 메인 히어로 내 상담신청폼 모바일 노출 허용 */
    .hero-split .hero-form-container {
        display: block !important;
        margin-top: 24px !important;
    }

    /* 최하단에 단독 안착된 모바일/통합 빠른상담신청폼의 웅장한 독립 스타일 */
    .bottom-inquiry-section .hero-form-container {
        display: block !important;
        margin: 0 auto !important; /* 아래로 크게 밀어내어 여유로운 스크롤 반응 유도 */
        width: calc(100% - 40px) !important;
        max-width: 460px !important;
        background: rgba(15, 10, 5, 0.9) !important;
        border: 1.5px solid rgba(245,230,200,0.28) !important;
        padding: 36px 24px !important;
        border-radius: 24px !important;
        box-sizing: border-box !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.6) !important;
    }
    .bottom-inquiry-section .hero-form-title {
        font-size: 20px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        color: var(--accent-hero) !important;
    }
    .bottom-inquiry-section .form-group {
        margin-bottom: 16px !important;
    }
    .bottom-inquiry-section .form-group label {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    .bottom-inquiry-section .hero-form-container input, 
    .bottom-inquiry-section .hero-form-container select {
        padding: 13px 14px !important;
        font-size: 15px !important;
    }

    /* 중복 전화/카톡 즉시 연결 버튼 모바일 숨김 */
    .hero-mobile-cta {
        display: none !important;
    }

    /* 모바일 전용 빠른 온라인 문의하기 버튼 비활성화 */
    .hero-mobile-inquiry-btn {
        display: none !important;
    }

    /* 컬럼 세로 정렬 */
    .hero-split {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    .hero-split > div:first-child {
        width: 100% !important;
        text-align: center !important;
    }

    /* 배지(eyebrow) - 글씨 크기 확대 */
    .hero-v5-eyebrow {
        display: inline-block !important;
        border: 1.5px solid var(--accent-amber) !important;
        border-radius: 50px !important;
        padding: 8px 20px !important;
        font-size: 14px !important;
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    /* 헤드라인 — 모바일 텍스트를 대폭 확 키워 시각적 압도감 형성 (bluepipe 레퍼런스 스타일) */
    .hero-v5-title {
        font-size: clamp(38px, 12.5vw, 48px) !important; /* 엄청나게 거대하고 시원한 제목 */
        line-height: 1.22 !important;
        letter-spacing: -1.5px !important;
        margin-bottom: 20px !important;
        word-break: keep-all !important;
        text-align: center !important;
        color: #FFFFFF !important;
    }

    /* 부제 — 폰트 크기 증량 및 행간 정돈 */
    .hero-v5-sub {
        font-size: 17px !important;
        line-height: 1.7 !important;
        margin-bottom: 28px !important;
        text-align: center !important;
        color: rgba(255,255,255,0.92) !important;
    }

    /* 통계 스트립 가독성 향상 */
    .hero-mobile-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 18px;
        padding: 14px 0 !important;
        margin-bottom: 24px !important; /* 하단 마진 24px 제공으로 겹침 완벽 방어 */
        width: 100% !important;
        max-width: 440px !important;
    }
    .hms-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        border-right: 1px solid rgba(255,255,255,0.15);
        padding: 0 4px;
    }
    .hms-item:last-child { border-right: none; }
    .hms-item strong {
        font-size: 26px !important; /* 강력하고 선명하게 확대 */
        font-weight: 900;
        color: var(--accent-amber);
        line-height: 1;
    }
    .hms-item span {
        font-size: 11px;
        color: rgba(255,255,255,0.7);
        font-weight: 700;
        text-align: center;
    }
}


@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .review-split { grid-template-columns: 1fr !important; justify-items: center !important; }
    .kakao-chat-container.split-left { margin: 0 auto !important; max-width: 480px !important; width: 92% !important; justify-self: center !important; transform: none !important; opacity: 1 !important; }
    .fleet-dashboard-inner { grid-template-columns: 1fr; }
    .ai-network-wrapper { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .hero-form-container { padding: 24px 20px; }
    .form-group input, .form-group textarea { padding: 12px; font-size: 14px; }
    .estimate-paper { padding: 30px 20px; }
    .estimate-table th, .estimate-table td { padding: 12px 8px; font-size: 14px; }
    .estimate-stamp { width: 80px; height: 80px; font-size: 12px; right: 20px; bottom: 20px; border-width: 3px; }
    .fleet-status-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Contact Page Enhancements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 600px) {
    .kakao-bubble { font-size: 15px; }
    .kakao-time { font-size: 11px; }
    .kakao-name { font-size: 13px; }
    .stage-desc { font-size: 13px; }
    .card-news-desc { font-size: 16px; }
    .hero-v5-title { font-size: clamp(32px, 8vw, 44px); }
    .section-title { font-size: clamp(24px, 6vw, 32px); }
    .cta-btn-large {
        width: 90%;
        max-width: 360px;
        padding: 16px 20px;
        font-size: 16px;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

/* =====================================================
   모바일 가독성 최적화 - 공통 패딩 & 타이포그래피 미세 튜닝
   ===================================================== */
@media (max-width: 768px) {
    /* 각 섹션의 과도한 모바일 여백 축소 (스크롤 최적화) */
    .pain-section, 
    .content-section, 
    .process-section, 
    .faq-section, 
    .pricing-section, 
    .kakao-section, 
    .dispatch-section, 
    .estimate-section, 
    .card-news-section,
    .cta-section,
    .np-simulator-section,
    .np-autopsy-section,
    .np-video-section,
    .dki-ba-section {
        padding: 55px 0 !important;
    }

    /* 본문 텍스트 줄간격 대폭 개선 (뭉침 및 빽빽함 해소) */
    p, 
    .content-body, 
    .stage-desc, 
    .check-list-v6 li, 
    .card-news-desc, 
    .step-desc, 
    .review-body, 
    .kakao-bubble, 
    .faq-content,
    .info-box-desc,
    .dki-check-sub {
        line-height: 1.76 !important;
        letter-spacing: -0.3px !important;
        font-size: 16px !important;
    }

    /* 섹션 제목 크기 최적화 및 강제 줄바꿈 방지 */
    .section-title {
        font-size: 24px !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
        letter-spacing: -1px !important;
    }
    .section-desc {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    /* 체크리스트 항목 패딩 최적화 */
    .check-list-v6 li {
        padding: 14px 16px !important;
        gap: 12px !important;
    }

    /* 자가 진단기(dki-checker) 모바일 가독성 및 여백 확보 */
    .dki-checker-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .dki-checklist {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important; /* 체크박스 간 세로 여백 증량 */
        margin: 0 auto !important; /* 모바일 중앙 정렬 */
        width: 92% !important;
        max-width: 480px !important;
        box-sizing: border-box !important;
    }
    .dki-check-item {
        padding: 18px 16px !important; /* 모바일에서 쾌적한 터치 영역 */
        border-radius: 16px !important;
        gap: 14px !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        background: rgba(255,255,255,0.03) !important;
    }
    .dki-check-box {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }
    .dki-check-title {
        font-size: 16px !important;
        font-weight: 800 !important;
        line-height: 1.35 !important;
        color: #FFFFFF !important;
    }
    .dki-check-sub {
        font-size: 12.5px !important;
        margin-top: 6px !important;
        color: rgba(255,255,255,0.65) !important;
    }
    .dki-urgency-tag {
        font-size: 11px !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        margin-left: auto !important; /* 오른쪽 정렬 고정 */
    }
    .dki-result-card {
        padding: 24px !important;
        border-radius: 20px !important;
        margin-top: 10px !important;
    }

    /* 실시간 AI 배차 현황(fleet-section) 모바일 노드 겹침 및 텍스트 최적화 */
    .fleet-dashboard {
        padding: 20px 16px !important;
        border-radius: 20px !important;
        margin-top: 24px !important;
    }
    .fleet-dashboard-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important; /* AI 배차망과 기사 카드 간의 간격 넉넉히 제공 */
    }
    .ai-network-wrapper {
        max-width: 270px !important; /* 모바일에서 겹침을 방지하기 위한 크기 축소 */
        aspect-ratio: 1 !important;
        margin: 0 auto !important;
        border-radius: 16px !important;
        background: rgba(10, 20, 15, 0.6) !important;
    }
    .network-core {
        width: 60px !important; /* 중앙 AI 코어 축소 */
        height: 60px !important;
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important;
    }
    .core-text {
        font-size: 9.5px !important;
        line-height: 1.15 !important;
    }
    .node-dot {
        width: 10px !important;
        height: 10px !important;
    }
    .node-label {
        font-size: 9px !important; /* 글자 크기 축소하여 라벨 겹침 방지 */
        padding: 1px 5px !important;
        border-radius: 3px !important;
    }
    .tech-cards-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important; /* 모바일 기사 카드 세로 나열 쾌적화 */
    }
    .tech-card {
        padding: 14px !important;
        border-radius: 12px !important;
    }
    .tech-avatar {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
    }
    .tech-name {
        font-size: 15px !important;
        margin-bottom: 2px !important;
    }
    .tech-zone {
        font-size: 12px !important;
    }
    .tech-spec {
        font-size: 11.5px !important;
    }
    .live-feed-container {
        padding: 14px !important;
        margin-top: 6px !important;
    }
    .live-feed-list {
        max-height: 120px !important;
    }

    /* 2차 피해 계산기(np-simulator-section) 모바일 정중앙 대칭 정렬 및 여백 완벽 검수 */
    .np-sim-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* 모든 요소를 한 치의 오차 없이 정중앙 정렬 */
        gap: 12px !important;
        max-width: 480px !important;
        margin: 32px auto 0 !important;
        width: 100% !important;
    }
    .np-sim-item {
        background: rgba(255,255,255,0.04) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 16px !important;
        padding: 16px 20px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 92% !important; /* 모바일에서 꽉 차지 않고 대칭 여백을 주어 쾌적함 증가 */
        max-width: 380px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .np-sim-label {
        font-size: 14px !important;
        color: rgba(255,255,255,0.7) !important;
        margin-bottom: 0 !important;
        font-weight: 700 !important;
    }
    .np-sim-plus, .np-sim-equals {
        font-size: 22px !important;
        color: var(--accent-amber) !important;
        text-align: center !important;
        margin: 8px auto !important;
        font-weight: 900 !important;
        transform: none !important; /* 기존의 90도 회전을 무력화하여 정확히 세워 정중앙 배치 */
        display: block !important;
        width: 100% !important;
    }
    .np-sim-total {
        background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(146,64,14,0.3)) !important;
        border: 2px solid var(--accent-amber) !important;
        border-radius: 20px !important;
        padding: 20px 20px !important;
        box-shadow: 0 8px 30px rgba(217,119,6,0.2) !important;
        width: 92% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
    .np-sim-total .np-sim-label {
        color: #FFFFFF !important;
        font-size: 15px !important;
    }
    .np-sim-total-num {
        font-size: 24px !important;
        color: var(--accent-amber) !important;
    }
    .np-sim-note {
        font-size: 12px !important;
        line-height: 1.65 !important;
        margin-top: 16px !important;
        text-align: center !important;
        color: rgba(255,255,255,0.5) !important;
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 자가 진단 결과 카드 모바일 중앙 정렬 방어 */
    .dki-result-card {
        padding: 24px !important;
        border-radius: 20px !important;
        margin: 16px auto 0 !important;
        width: 92% !important;
        max-width: 480px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    .np-sim-counter {
        font-size: 20px !important;
        font-weight: 900 !important;
        color: #FFFFFF !important;
        margin: 0 !important;
    }
    .np-sim-unit {
        font-size: 13px !important;
        color: rgba(255,255,255,0.6) !important;
        display: inline-block !important;
        margin-left: 3px !important;
    }
    .np-sim-plus, .np-sim-equals {
        font-size: 20px !important;
        color: var(--accent-amber) !important;
        text-align: center !important;
        margin: 6px 0 !important;
        font-weight: 900 !important;
    }
    .np-sim-total {
        background: linear-gradient(135deg, rgba(217,119,6,0.15), rgba(146,64,14,0.3)) !important;
        border: 2px solid var(--accent-amber) !important;
        border-radius: 20px !important;
        padding: 24px 20px !important;
        box-shadow: 0 8px 30px rgba(217,119,6,0.2) !important;
    }
    .np-sim-total .np-sim-label {
        color: #FFFFFF !important;
        font-size: 16px !important;
    }
    .np-sim-total-num {
        font-size: 26px !important;
        color: var(--accent-amber) !important;
    }
    .np-sim-note {
        font-size: 12px !important;
        line-height: 1.6 !important;
        margin-top: 16px !important;
        text-align: center !important;
        color: rgba(255,255,255,0.5) !important;
    }

    /* 비포 & 애프터(dki-ba-section) 가로 빼꼼 스와이프 슬라이더로 전면 개편 */
    .dki-ba-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 24px !important;
        padding: 0 16px !important;
    }
    .dki-ba-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .dki-ba-tab {
        padding: 8px 16px !important;
        font-size: 13px !important;
        border-radius: 50px !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    .dki-ba-compare {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 8px 20px 24px !important;
        margin: 20px 0 0 0 !important;
        width: 100vw !important;
        position: relative !important;
        left: -20px !important;
    }
    .dki-ba-compare::-webkit-scrollbar {
        display: none !important;
    }
    .dki-ba-col {
        width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .dki-ba-img-wrap {
        aspect-ratio: 16 / 11 !important;
        max-height: 190px !important;
        width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }
    .dki-ba-img-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .dki-ba-divider {
        display: none !important;
    }
    .dki-ba-caption {
        font-size: 13px !important;
        line-height: 1.55 !important;
        margin-top: 6px !important;
        text-align: center !important;
        color: rgba(255,255,255,0.7) !important;
        white-space: normal !important;
    }

    /* 실제 현장 소리 비디오(np-video-section) 가로 빼꼼 스와이프 슬라이더로 전면 개편 */
    .np-video-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 8px 20px 24px !important;
        margin: 20px 0 0 0 !important;
        width: 100vw !important;
        position: relative !important;
        left: -20px !important;
    }
    .np-video-grid::-webkit-scrollbar {
        display: none !important;
    }
    .np-video-card {
        width: 82vw !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        max-height: 200px !important;
        aspect-ratio: 16 / 9 !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
        border: 1px solid rgba(255,255,255,0.06) !important;
        margin-left: 2px !important;
    }
    .np-site-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .np-unmute-btn {
        padding: 5px 10px !important;
        font-size: 11px !important;
        border-radius: 6px !important;
        backdrop-filter: blur(4px) !important;
    }
    .np-video-caption {
        font-size: 11px !important;
        padding: 5px 10px !important;
        border-radius: 6px !important;
    }

    /* 고객 리얼 후기(review-wall) 가로 빼꼼 스와이프 슬라이더 개편 */
    .review-wall {
        display: flex !important;
        flex-direction: row !important; /* 세로가 아닌 가로 배치 */
        overflow-x: auto !important; /* 가로 스크롤 활성화 */
        scroll-snap-type: x mandatory !important; /* 스냅 효과 */
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 10px 20px 24px !important; /* 아래쪽 섀도우 확보 */
        margin: 24px 0 0 0 !important;
        width: 100vw !important;
        position: relative !important;
        left: -20px !important;
        grid-template-columns: none !important; /* 인라인 스타일 무력화 */
    }
    .review-wall::-webkit-scrollbar {
        display: none !important;
    }
    .review-card {
        width: 78vw !important; /* 78% 너비로 우측 22%에 다음 후기 카드가 빼꼼 노출 */
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        background: #FFFFFF !important;
        border: 1px solid rgba(0,0,0,0.06) !important;
        border-radius: 20px !important;
        padding: 24px 20px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }
    .review-header {
        font-size: 13.5px !important;
        margin-bottom: 12px !important;
    }
    .review-stars {
        color: #D97706 !important;
        font-size: 14px !important;
    }
    .review-title {
        font-size: 17px !important;
        font-weight: 800 !important;
        color: #1A1A1A !important;
        margin-bottom: 8px !important;
    }
    .review-body {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
        color: #4B5563 !important;
    }

    /* 카카오톡 대화방 모바일 가독성 미세 튜닝 */
    .kakao-chat-container {
        padding: 20px 16px !important;
        border-radius: 20px !important;
        gap: 16px !important;
        overflow: hidden !important; /* 자식이 절대 삐져나가지 못하게 차단 */
        box-sizing: border-box !important;
    }
    .kakao-chat-container.split-left {
        margin: 0 auto !important;
        justify-self: center !important;
        transform: none !important; /* AOS 애니메이션으로 인한 모바일 우측 쏠림 강제 차단 */
        opacity: 1 !important;
    }
    .kakao-msg-row {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .kakao-bubble {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
        padding: 10px 14px !important;
        border-radius: 12px !important;
        max-width: 62% !important; /* 프로필 및 시간과의 합산 너비 초과 방지 */
        word-break: break-all !important; /* 긴 텍스트 자동 개행 */
        box-sizing: border-box !important;
    }
    
    /* 다크 테마 섹션 내의 회색 글자 가독성 보강 (밝은 실버/그레이로 긴급 교체) */
    .dispatch-section p,
    .dispatch-section .status-stats,
    .dispatch-section .tech-zone,
    .np-simulator-section p,
    .np-simulator-section .np-sim-note,
    .np-video-section p,
    .np-video-section .np-video-caption,
    .dki-ba-section p,
    .dki-ba-section .dki-ba-caption,
    .card-news-section p,
    .card-news-section .card-news-desc,
    .cta-section p,
    .np-accordion-section p,
    .np-accordion-section .np-acc-body p,
    .np-accordion-section .np-acc-list li {
        color: #E2E8F0 !important;
    }

    /* 자가 진단 결과 카드 및 시뮬레이터 정렬 완벽 보정 */
    .dki-result-card, .np-sim-total, .np-sim-item {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    /* 장비별 아코디언 모바일 정중앙 대칭 정돈 */
    .np-accordion {
        width: 92% !important;
        max-width: 680px !important;
        margin: 24px auto 0 !important;
    }

    /* 독일제 초정밀 진단기 섹션 모바일 정렬 보완 */
    .content-two-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .content-text {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .check-list-v6 {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 460px !important;
        margin: 24px auto 0 !important;
        box-sizing: border-box !important;
    }
    .check-list-v6 li {
        text-align: left !important;
        justify-content: flex-start !important;
        display: flex !important;
        align-items: flex-start !important;
        border-radius: 14px !important;
    }
}








