@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

.v2-scope {
    /* 색상 토큰 - 스스로닷컴 블루 유지 + 현대적 감각 */
    --v2-primary: #48a1ef;
    --v2-primary-light: #E6F0FA;
    --v2-primary-gradient: #48a1ef;
    /* Changed to flat color as requested */
    --v2-secondary: #FF6B00;
    /* 제보하기 등 강조색 */

    --v2-white: #FFFFFF;
    --v2-gray-50: #F8FAFC;
    --v2-gray-100: #F1F5F9;
    --v2-gray-200: #E2E8F0;
    --v2-gray-500: #64748B;
    --v2-gray-800: #1E293B;
    --v2-gray-900: #0F172A;

    /* 타이포그래피 */
    --v2-font-main: 'Pretendard', -apple-system, sans-serif;

    /* 간격 및 시스템 */
    --v2-container-max: 1200px;
    --v2-radius-md: 12px;
    --v2-radius-lg: 20px;
    --v2-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --v2-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --v2-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 고정 헤더로 인한 가림 현상 방지 오프셋 */
#jeboGuide,
#report-guide-a,
#criminal-cases {
    scroll-margin-top: 100px;
}

.v2-scope {
    font-family: var(--v2-font-main);
    color: var(--v2-gray-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 기초 리셋 (네임스페이스 내) */
.v2-scope *,
.v2-scope *::before,
.v2-scope *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.v2-scope a {
    text-decoration: none;
    color: inherit;
}

.v2-scope ul {
    list-style: none;
}

.v2-scope button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 공통 레이아웃 */
.v2-container {
    width: 100%;
    max-width: var(--v2-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.v2-section {
    padding: 80px 0;
    overflow: hidden;
}


.v2-intro-desc {
    word-break: keep-all;
    overflow-wrap: break-word;
}


@media (max-width: 768px) {
    .v2-section {
        padding: 60px 0;
    }
}

/* 버튼 시스템 */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--v2-radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--v2-transition);
}

.v2-scope .v2-btn-primary {
    background: var(--v2-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(72, 161, 239, 0.2);
}

.v2-scope .v2-btn-primary:hover {
    background: #3b82f6;
    /* Slightly darker flat blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 80, 170, 0.4);
}

.v2-btn-outline {
    border: 1.5px solid var(--v2-primary);
    color: var(--v2-primary);
}

.v2-btn-outline:hover {
    background: var(--v2-primary-light);
}

.v2-btn-white {
    background: var(--v2-white);
    color: var(--v2-primary);
}

.v2-btn-white:hover {
    background: var(--v2-gray-50);
    transform: translateY(-2px);
}

/* 헤더 스타일 */
.v2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--v2-transition);
}

.v2-header--scrolled {
    height: 70px;
    background: var(--v2-white);
    box-shadow: var(--v2-shadow-sm);
}

.v2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.v2-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--v2-primary);
}

.v2-logo span {
    font-weight: 400;
    color: var(--v2-gray-500);
}

.v2-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.v2-nav-list {
    display: flex;
    gap: 40px;
}

.v2-nav-link {
    font-weight: 500;
    color: var(--v2-gray-800);
    transition: var(--v2-transition);
}

.v2-nav-link:hover {
    color: var(--v2-primary);
}

.v2-auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v2-auth-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--v2-gray-500);
}

.v2-btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* User Menu Dropdown */
.v2-auth-wrapper {
    display: flex;
    align-items: center;
}

.v2-user-menu-container {
    position: relative;
}

.v2-user-name-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--v2-gray-800);
    padding: 8px 12px;
    border-radius: var(--v2-radius-md);
    transition: var(--v2-transition);
}

.v2-user-name-btn span {
    font-size: 0.7rem;
    color: var(--v2-gray-500);
    transition: transform 0.3s ease;
}

.v2-user-name-btn[aria-expanded="true"] span {
    transform: rotate(180deg);
}

.v2-user-name-btn:hover {
    background: var(--v2-gray-50);
}

.v2-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 200px;
    background: var(--v2-white);
    border-radius: var(--v2-radius-md);
    box-shadow: var(--v2-shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.v2-user-menu-container.v2-dropdown-active .v2-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v2-dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-gray-800);
    transition: var(--v2-transition);
}

.v2-dropdown-item:hover {
    background: var(--v2-gray-50);
    color: var(--v2-primary);
}

.v2-dropdown-divider {
    height: 1px;
    background: var(--v2-gray-100);
    margin: 8px 0;
}

.v2-text-red {
    color: var(--v2-secondary) !important;
}

/* 푸터 스타일 */
.v2-footer {
    background: var(--v2-gray-900);
    color: var(--v2-white);
    padding: 80px 0 40px;
}

.v2-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.v2-footer-logo {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.v2-footer-logo span {
    font-weight: 400;
    opacity: 0.6;
}

.v2-footer-desc {
    color: var(--v2-gray-500);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.v2-footer-links {
    display: flex;
    gap: 80px;
}

.v2-link-group h3 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.v2-link-group ul li {
    margin-bottom: 12px;
}

.v2-link-group a {
    color: var(--v2-gray-500);
    transition: var(--v2-transition);
}

.v2-link-group a:hover {
    color: var(--v2-white);
}

.v2-footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--v2-gray-500);
}

.v2-copyright {
    font-size: 0.8rem;
    color: var(--v2-gray-500);
}

/* 모바일 대응 */
@media (max-width: 1024px) {
    .v2-nav {
        display: none;
    }

    /* Make buttons and menu items scale appropriately in mobile menu */
    .v2-auth-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--v2-gray-100);
    }

    .v2-user-name-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

/* 모바일 메뉴 토글 버튼 */
.v2-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.v2-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--v2-primary);
    transition: var(--v2-transition);
}

@media (max-width: 1024px) {
    .v2-menu-toggle {
        display: flex;
    }
}

/* 소셜 미디어 아이콘 */
.v2-social {
    display: flex;
    gap: 12px;
}

.v2-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--v2-transition);
}

.v2-social-icon:hover {
    background: var(--v2-primary);
    transform: translateY(-3px);
}

.v2-social-icon.youtube {
    background: #FF0000;
}


@media (max-width: 768px) {
    .v2-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 애니메이션 효과 */
.v2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.v2-reveal.v2-visible {
    opacity: 1;
    transform: translateY(0);
}

.v2-delay-1 {
    transition-delay: 0.1s;
}

.v2-delay-2 {
    transition-delay: 0.2s;
}

.v2-delay-3 {
    transition-delay: 0.3s;
}

/* Hero Section */
.v2-hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--v2-primary-light);
    background-image: linear-gradient(rgba(230, 240, 250, 0.9), rgba(230, 240, 250, 0.9)), url('../../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.v2-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.v2-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--v2-gray-900);
}

.v2-hero-title span {
    color: var(--v2-primary);
}

.v2-hero-desc {
    font-size: 1.25rem;
    color: var(--v2-gray-500);
    margin-bottom: 40px;
}

.v2-hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Badge for Variations */
.v2-badge-hero {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    z-index: 10;
}

.v2-badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* --- Hero Version 2: Split & Center --- */
.v2-hero-v2-scope {
    background: #f0f4f8;
    /* Soft subtle background */
    padding: 120px 0 0;
    /* Bottom padding removed for image overlap */
    position: relative;
    overflow: hidden;
}

.v2-hero-v2-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    gap: 40px;
}

.v2-hero-v2-content {
    flex: 1;
    max-width: 600px;
    padding-bottom: 120px;
    text-align: center;
    /* Centered Text */
    z-index: 2;
    /* Move slightly to ensure it feels "left" relative to the page, 
       but text itself is centered within this block */
    margin: 0 auto 0 0;
}

/* Ensure reusable typography classes work well here */
.v2-hero-v2-content .v2-hero-title {
    font-size: 3.5rem;
    line-height: 1.25;
    margin-bottom: 24px;
}

.v2-hero-v2-content .v2-hero-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

.v2-hero-v2-content .v2-hero-btns {
    justify-content: center;
}

.v2-hero-v2-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* Align image to right */
    align-items: flex-end;
    height: 100%;
}

.v2-hero-v2-img {
    max-width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    /* Optional: If the image isn't perfectly transparent, we can try blending
    mix-blend-mode: multiply; 
    But assuming user provides cut-out. */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    /* Soft shadow for depth */
}

/* Responsive for Hero V2 */
@media (max-width: 1024px) {
    .v2-hero-v2-layout {
        flex-direction: column;
        text-align: center;
    }

    .v2-hero-v2-content {
        margin: 0 auto;
        padding-bottom: 40px;
    }

    .v2-hero-v2-visual {
        justify-content: center;
        margin-top: 20px;
    }

    .v2-hero-v2-img {
        max-height: 450px;
    }
}

/* Section Common */
.v2-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.v2-section-subtitle {
    font-size: 1.125rem;
    color: var(--v2-gray-500);
    text-align: center;
    margin-bottom: 60px;
}

/* Section 1: 제보하기 */
.v2-section-report {
    background: var(--v2-white);
}

.v2-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.v2-report-card {
    background: var(--v2-gray-50);
    padding: 40px;
    border-radius: var(--v2-radius-lg);
    border: 1px solid var(--v2-gray-200);
    transition: var(--v2-transition);
    position: relative;
    overflow: hidden;
}

.v2-report-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--v2-shadow-lg);
    border-color: var(--v2-primary);
}

.v2-report-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--v2-primary-light);
    border-radius: 0 0 0 100%;
    opacity: 0.3;
}

.v2-card-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: inline-block;
}

.v2-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.v2-card-desc {
    color: var(--v2-gray-500);
    margin-bottom: 24px;
}

.v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.v2-tag {
    font-size: 0.825rem;
    padding: 4px 12px;
    background: var(--v2-white);
    border: 1px solid var(--v2-gray-200);
    border-radius: 100px;
    color: var(--v2-gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .v2-hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .v2-hero {
        padding: 140px 0 80px;
    }

    .v2-hero-title {
        font-size: 2.25rem;
    }

    .v2-card-grid {
        grid-template-columns: 1fr;
    }

    .v2-section-title {
        font-size: 2rem;
    }
}

/* Section 2: 법률 서비스 */
.v2-section-services {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--v2-white);
}

.v2-section-services .v2-section-title,
.v2-section-services .v2-section-subtitle {
    color: var(--v2-white);
}

.v2-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.v2-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--v2-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--v2-transition);
}

.v2-service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--v2-primary);
    transform: translateY(-5px);
}

.v2-service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.v2-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.v2-service-desc {
    color: var(--v2-gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.v2-service-link {
    color: var(--v2-primary);
    font-weight: 600;
    transition: var(--v2-transition);
}

.v2-service-link:hover {
    color: var(--v2-primary-light);
}

/* Section 3: 한문철TV */
.v2-section-youtube {
    background: #F8FAFD;
    color: var(--v2-gray-900);
    padding: 0px 0;
    overflow: hidden;
}

.v2-youtube-layout {
    display: grid;
    /* User requested 4.5 : 5.5 ratio */
    grid-template-columns: 0.45fr 0.55fr;
    gap: 30px;
    align-items: center;
}

.v2-text-left {
    text-align: left;
    color: var(--v2-gray-900);
}

.v2-section-subtitle.v2-text-left {
    color: var(--v2-gray-500);
    margin-bottom: 40px;
}

/* Stats Counters */
.v2-stats-counter {
    display: flex;
    flex-direction: row;
    gap: 24px;
    /* Prevent wrapping on PC if possible, or wrap carefully */
    flex-wrap: wrap;
    align-items: flex-start;
}

.v2-stat-box {
    border-left: 3px solid var(--v2-primary);
    padding-left: 16px;
    display: flex;
    flex-direction: column;
}

.v2-stat-top {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
}

.v2-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--v2-primary);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

.v2-stat-unit-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-gray-800);
}

.v2-stat-label {
    font-size: 0.9rem;
    color: var(--v2-gray-500);
    font-weight: 500;
}

/* Vertical Marquee Grid */
.v2-youtube-visual {
    height: 600px;
    position: relative;
    overflow: hidden;
    mask-image: none;
    -webkit-mask-image: none;
}

.v2-marquee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.v2-marquee-column {
    position: relative;
    display: block;
}

/* Stagger styling */
.v2-marquee-column-stagger {
    margin-top: -80px;
}

.v2-marquee-track {
    display: block;
    animation: marquee-up 20s linear infinite;
}

.v2-marquee-column-stagger .v2-marquee-track {
    animation-duration: 20s;
}

.v2-marquee-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    margin-bottom: 10px;
}

.v2-marquee-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.v2-marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .v2-youtube-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-youtube-visual {
        height: 400px;
    }

    .v2-stat-num {
        font-size: 2.5rem;
    }

    .v2-section-subtitle.v2-text-left {
        text-align: left;
    }

    .v2-section-title.v2-text-left {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .v2-section-youtube {
        padding: 60px 0;
    }

    /* Mobile Stats: Vertical Stack, Larger Font, Inline Row */
    .v2-stats-counter {
        flex-direction: column;
        gap: 20px;
    }

    .v2-stat-box {
        flex-direction: row;
        /* Inline layout */
        align-items: center;
        gap: 12px;
        border-left: 4px solid var(--v2-primary);
        /* Thicker border */
        padding-left: 15px;
    }

    .v2-stat-top {
        margin-bottom: 0;
        align-items: center;
    }

    /* Larger numbers for mobile */
    .v2-stat-num {
        font-size: 2.5rem;
    }

    .v2-stat-unit-text {
        font-size: 1.25rem;
    }

    .v2-stat-label {
        font-size: 1.1rem;
        margin-left: 4px;
        /* Space between unit and label */
    }

    /* Mobile Marquee: Single Column Zigzag */
    .v2-youtube-visual {
        /* Approximate height for 3 images visible. 
            If image ratio is 16:9, width 90%. 
            Let's say screen width 360px -> image width 324px -> height ~182px.
            3 images ~ 550px + gaps. 
            So 600px is okay or adjust.
         */
        height: 500px;
    }

    .v2-marquee-grid {
        display: block;
        /* Stack columns? No, remove grid */
        /* Actually we have 2 columns in HTML. 
           We should hide one column or merge them?
           Mobile usually single column.
           Let's hide the second column (.v2-marquee-column-stagger) and style the first one nicely.
        */
    }

    .v2-marquee-column-stagger {
        display: none;
        /* Hide second column on mobile */
    }

    .v2-marquee-column {
        width: 100%;
    }

    .v2-marquee-item {
        width: 95%;
        margin-bottom: 15px;
        /* More spacing */
    }

    /* Zigzag: Odd left (margin-right auto), Even right (margin-left auto) */
    /* Note: .v2-marquee-track contains direct children .v2-marquee-item */
    .v2-marquee-track .v2-marquee-item:nth-child(odd) {
        margin-right: auto;
        margin-left: 0;
        /* Left aligned, right space is 10% automatically if width is 90% */
    }

    .v2-marquee-track .v2-marquee-item:nth-child(even) {
        margin-left: auto;
        /* Push to right */
        margin-right: 0;
    }
}

/* Section 2: 형사사건 & 메모 */
.v2-section-services {
    /* 기존 배경 유지하면서 내용 수정 */
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--v2-white);
    position: relative;
    padding: 100px 0;
}

.v2-criminal-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.v2-criminal-info {
    flex: 1;
    max-width: 600px;
}

.v2-badge-criminal {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(72, 161, 239, 0.2);
    color: #48a1ef;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 100px;
    margin-bottom: 24px;
}

.v2-text-white {
    color: var(--v2-white);
}

.v2-criminal-desc {
    font-size: 1.125rem;
    color: var(--v2-gray-200);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.v2-phone-box {
    margin-top: 40px;
}

.v2-phone-label {
    display: block;
    font-size: 1rem;
    color: var(--v2-gray-500);
    margin-bottom: 8px;
}

.v2-phone-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--v2-white);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(72, 161, 239, 0.3);
    transition: var(--v2-transition);
}

.v2-phone-number:hover {
    color: var(--v2-primary);
    text-shadow: 0 0 30px rgba(72, 161, 239, 0.6);
}

/* Memo Form */
.v2-memo-form-container {
    flex: 1;
    max-width: 480px;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--v2-gray-900);
}

.v2-memo-header {
    margin-bottom: 17px;
    text-align: center;
}

.v2-memo-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--v2-gray-900);
}

.v2-memo-header p {
    font-size: 0.95rem;
    color: var(--v2-gray-500);
}

.v2-input-group {
    margin-bottom: 16px;
}

.v2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.v2-input,
.v2-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--v2-gray-200);
    border-radius: var(--v2-radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--v2-transition);
    background: var(--v2-gray-50);
}

.v2-input:focus,
.v2-textarea:focus {
    outline: none;
    border-color: var(--v2-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(72, 161, 239, 0.1);
}

.v2-textarea {
    resize: none;
}

.v2-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 30px;
    font-size: 0.9rem;
    color: var(--v2-gray-500);
}

.v2-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--v2-primary);
}

/* Character Counter */
.v2-memo-textarea-group {
    position: relative;
}

.v2-char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--v2-gray-500);
    margin-top: 6px;
    padding-right: 4px;
}

/* Privacy Popup / Tooltip */
.v2-privacy-group {
    position: relative;
    flex-wrap: wrap;
    /* Allow wrapping if needed */
}

.v2-privacy-detail-btn {
    font-size: 0.85rem;
    color: var(--v2-primary);
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-left: 4px;
}

.v2-privacy-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: var(--v2-white);
    border: 1px solid var(--v2-gray-200);
    border-radius: var(--v2-radius-md);
    box-shadow: var(--v2-shadow-lg);
    padding: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
}

.v2-privacy-tooltip.v2-tooltip-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v2-privacy-tooltip-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--v2-gray-900);
}

.v2-privacy-tooltip-content {
    font-size: 0.85rem;
    color: var(--v2-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.v2-privacy-tooltip-content p {
    margin-bottom: 4px;
}

.v2-privacy-close-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--v2-gray-100);
    color: var(--v2-gray-800);
    text-align: center;
    border-radius: var(--v2-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--v2-transition);
}

.v2-privacy-close-btn:hover {
    background: var(--v2-gray-200);
}

.v2-btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.v2-btn:disabled {
    background: var(--v2-gray-200);
    color: var(--v2-gray-500);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Responsive for Section 2 */
@media (max-width: 1024px) {
    .v2-criminal-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .v2-criminal-info {
        max-width: 100%;
    }

    .v2-section-title.v2-text-left {
        text-align: center;
    }

    .v2-memo-form-container {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .v2-phone-number {
        font-size: 2.5rem;
    }

    .v2-memo-form-container {
        padding: 30px 20px;
    }
}

/* Section 1: 통합 제보 가이드 */
.v2-section-report {
    background: #ffffff;
    padding: 120px 0;
}

.v2-report-single-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.v2-report-content {
    flex: 1;
    max-width: 600px;
}

.v2-badge-report {
    display: inline-block;
    padding: 6px 14px;
    background: #FFF1F2;
    color: #E11D48;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 100px;
    margin-bottom: 24px;
}

.v2-report-desc {
    font-size: 1.15rem;
    color: var(--v2-gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.v2-usage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.v2-usage-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.v2-usage-icon {
    font-size: 1.5rem;
    margin-top: -2px;
}

.v2-usage-list div {
    display: flex;
    flex-direction: column;
}

.v2-usage-list strong {
    font-size: 1.05rem;
    color: var(--v2-gray-900);
    margin-bottom: 4px;
}

.v2-usage-list span {
    font-size: 0.85rem;
    color: var(--v2-gray-500);
}

/* Mega Button */
.v2-btn-mega {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 32px;
    background: var(--v2-primary-gradient);
    border-radius: 20px;
    color: white;
    text-align: left;
    transition: var(--v2-transition);
    box-shadow: 0 10px 30px rgba(0, 80, 170, 0.2);
    position: relative;
    overflow: hidden;
}

.v2-btn-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.v2-btn-mega:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 80, 170, 0.3);
}

.v2-btn-mega:hover::before {
    transform: translateX(100%);
}

.v2-btn-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.v2-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.v2-btn-text strong {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.v2-btn-text small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.v2-btn-arrow {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
    margin-left: 20px;
    transition: var(--v2-transition);
}

.v2-btn-mega:hover .v2-btn-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Visual Area */
.v2-report-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.v2-visual-circle {
    width: 400px;
    height: 400px;
    background: var(--v2-primary-light);
    border-radius: 50%;
    position: relative;
    /* You can add a background image here later */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348a1ef" opacity="0.1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 1024px) {
    .v2-report-single-layout {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .v2-report-content {
        max-width: 100%;
    }

    .v2-usage-list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .v2-btn-mega {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .v2-visual-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .v2-usage-list {
        grid-template-columns: 1fr;
    }

    .v2-btn-mega {
        padding: 20px;
    }

    .v2-btn-icon {
        font-size: 2rem;
    }

    .v2-btn-text strong {
        font-size: 1.2rem;
    }
}

/* ========================================= */
/* Section 1 Variations Styles               */
/* ========================================= */

/* --- Version A: Trust & Clean (Refined Current) --- */
.v2-report-a-scope {
    background: #ffffff;
    padding: 120px 0;
    border-bottom: 1px solid #f1f5f9;
}

.v2-report-a-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.v2-report-a-content {
    flex: 1;
    max-width: 600px;
}

.v2-badge-report-a {
    display: inline-block;
    padding: 6px 14px;
    background: #EFF6FF;
    color: #3B82F6;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.v2-report-a-desc {
    font-size: 1.15rem;
    color: var(--v2-gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.v2-usage-list-a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.v2-usage-list-a li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--v2-gray-800);
}

.v2-icon-a {
    font-size: 1.25rem;
}

.v2-btn-mega-a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 32px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.v2-btn-mega-a:hover {
    background: #dbeafe;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
}

.v2-btn-icon-a {
    font-size: 2rem;
}

.v2-btn-text-a {
    display: flex;
    flex-direction: column;
}

.v2-btn-text-a strong {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.v2-btn-text-a small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.v2-scope .v2-report-a-visual-btn {
    width: 400px;
    height: 400px;
    background: #F8FAFC;
    border-radius: 40px;
    border: 3px dashed #CBD5E1;
    /* Dashed border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    color: #64748B !important;
}

.v2-report-a-visual-btn:hover {
    background: #EFF6FF;
    /* Light Blue Hover */
    border-color: #3B82F6;
    /* Blue Border Hover */
    transform: scale(1.02);
    /* Slight grow */
    color: #3B82F6;
    /* Blue Text Hover */
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.v2-report-a-visual-btn:active {
    transform: scale(0.98);
    /* Click effect */
}

.v2-report-a-visual-btn .v2-visual-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.v2-report-a-visual-btn:hover .v2-visual-icon {
    transform: scale(1.1) rotate(-10deg);
    /* Icon animation on hover */
}

.v2-report-a-visual-btn .v2-visual-text strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.v2-report-a-visual-btn .v2-visual-text small {
    font-size: 1rem;
    opacity: 0.8;
}

/* --- Version B: Visual Impact (Dark & Bold) --- */
.v2-report-b-scope {
    background: #111827;
    padding: 140px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.v2-report-b-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.v2-report-b-bg-text {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.v2-report-b-content {
    max-width: 700px;
}

.v2-badge-report-b {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
}

.v2-title-b {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v2-desc-b {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 50px;
    font-weight: 300;
}

.v2-btn-b {
    display: inline-block;
    padding: 20px 60px;
    background: #ef4444;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v2-btn-b:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* --- Version C: Process Focus (Steps) --- */
.v2-report-c-scope {
    background: #F0FDF4;
    /* Light Green Tint */
    padding: 60px 0;
}

.v2-header-c {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
}

.v2-badge-report-c {
    color: #166534;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.v2-header-c h2 {
    font-size: 2.5rem;
    color: #14532D;
    margin-bottom: 16px;
}

.v2-steps-c {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
}

.v2-step-item {
    flex: 1;
    max-width: 300px;
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.v2-step-item:hover {
    transform: translateY(-10px);
}

.v2-step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #DCFCE7;
    color: #166534;
    border-radius: 50%;
    line-height: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.v2-step-item h3 {
    font-size: 1.25rem;
    color: #14532D;
    margin-bottom: 12px;
}

.v2-step-item p {
    color: #4ade80;
    color: #16a34a;
    font-size: 0.95rem;
}

.v2-step-arrow {
    font-size: 2rem;
    color: #86EFAC;
    margin-top: 60px;
}

.v2-action-c {
    text-align: center;
}

.v2-btn-c {
    display: inline-block;
    padding: 18px 48px;
    background: #166534;
    color: white;
    font-weight: 600;
    border-radius: 100px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px -5px rgba(22, 101, 52, 0.3);
    transition: all 0.3s ease;
}

.v2-btn-c:hover {
    background: #14532d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(22, 101, 52, 0.4);
}

/* --- Version D: Card Grid (Feature Focus) --- */
.v2-report-d-scope {
    background: #FFF7ED;
    /* Orange Tint */
    padding: 120px 0;
}

.v2-layout-d {
    display: flex;
    gap: 60px;
    align-items: center;
}

.v2-header-d {
    flex: 0.4;
}

.v2-badge-report-d {
    color: #C2410C;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
}

.v2-header-d h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: #431407;
    margin-bottom: 24px;
}

.v2-header-d p {
    font-size: 1.1rem;
    color: #9A3412;
    margin-bottom: 40px;
    line-height: 1.7;
}

.v2-btn-d-main {
    display: inline-block;
    padding: 16px 36px;
    background: #EA580C;
    color: white;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.v2-btn-d-main:hover {
    background: #C2410C;
    transform: translateX(5px);
}

.v2-grid-d {
    flex: 0.6;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.v2-card-d {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.v2-card-d:first-child {
    grid-column: span 2;
}

.v2-card-d:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.v2-icon-d {
    font-size: 2rem;
    margin-bottom: 16px;
}

.v2-card-d h3 {
    font-size: 1.1rem;
    color: #431407;
    margin-bottom: 8px;
}

.v2-card-d p {
    font-size: 0.9rem;
    color: #9A3412;
}

/* --- Version E: Minimalist Banner --- */
.v2-report-e-scope {
    padding: 60px 0;
    background: #ffffff;
}

.v2-banner-e {
    background: linear-gradient(90deg, #6366F1, #8B5CF6);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.2);
}

.v2-badge-report-e {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.v2-content-e h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.v2-content-e p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.v2-scope .v2-btn-e {
    background: white;
    color: #A78BFA !important;
    /* Brighter, catchy purple */
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.v2-scope .v2-btn-e:hover {
    transform: scale(1.05);
    background: #F5F3FF;
    color: #8B5CF6 !important;
    /* Keep purple on hover */
}

/* --- Responsive Adjustments for Variations --- */
@media (max-width: 1024px) {

    /* A */
    .v2-report-a-layout {
        flex-direction: column;
        text-align: center;
    }

    .v2-report-a-visual-btn {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* C */
    .v2-steps-c {
        flex-direction: column;
        align-items: center;
    }

    .v2-step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    /* D */
    .v2-layout-d {
        flex-direction: column;
        text-align: center;
    }

    .v2-grid-d {
        width: 100%;
    }

    /* E */
    .v2-banner-e {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .v2-btn-e {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    /* B */
    .v2-title-b {
        font-size: 3rem;
    }

    .v2-report-b-bg-text {
        display: none;
    }
}

/* ========================================= */
/* Intro Sections (Susulaw & Hanmuncheol TV) */
/* ========================================= */

.v2-intro-section {
    padding: 40px 0;
    overflow: hidden;
}

.v2-bg-white {
    background-color: #ffffff;
}

.v2-bg-gray {
    background-color: #f8fafc;
}

.v2-intro-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.v2-intro-reverse {
    flex-direction: row-reverse;
}

.v2-intro-content {
    flex: 1;
    max-width: 600px;
}

.v2-intro-visual {
    flex: 1;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* overflow: hidden; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
}

.v2-badge-intro {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v2-badge-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.v2-badge-red {
    background: #FEF2F2;
    color: #DC2626;
}

.v2-intro-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    color: #1e293b;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.v2-intro-highlight {
    font-size: 3.5rem;
    color: var(--v2-gray-900);
    display: block;
    margin-bottom: 5px;
}

.v2-intro-highlight-red {
    font-size: 3.5rem;
    color: var(--v2-gray-900);
    display: flex;
    /* Flex to align icon and text */
    align-items: center;
    /* Center vertically */
    gap: 15px;
    /* Space between icon and text */
    margin-bottom: 5px;
}

.v2-youtube-icon {
    width: 65px;
    height: 65px;
    color: #FF0000;
    /* YouTube Red */
}

.v2-intro-subtitle {
    font-size: 2rem;
    color: #64748b;
    font-weight: 500;
}

.v2-intro-desc {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.v2-intro-desc strong {
    color: #334155;
    font-weight: 700;
}

.v2-visual-susulaw,
.v2-visual-youtube {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
}

.v2-intro-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    /* Consistent branding */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.v2-img-rounded {
    border-radius: 24px;
    /* Slightly less rounded for TV screen if preferred */
}

.v2-intro-visual-placeholder {
    display: none;
}

/* Stats for Hanmuncheol TV */
.v2-intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.v2-intro-stat-item {
    display: flex;
    flex-direction: column;
}

.v2-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 4px;
}

.v2-stat-num small {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    margin-left: 2px;
}

.v2-stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .v2-intro-layout {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .v2-intro-reverse {
        flex-direction: column;
    }

    .v2-intro-content {
        max-width: 100%;
    }

    .v2-intro-visual {
        width: 100%;
        height: 400px;
    }
}

/* --- Hero Ver. A : Modified (Split Layout) --- */
.v2-hero-a-split {
    text-align: left !important;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom to sit image on edge */
    justify-content: center;
    min-height: 520px;
    /* Reduced somewhat to fit new image size */
    padding-top: 140px !important;
    /* Increased for more headroom */
    padding-bottom: 0 !important;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.v2-hero-a-layout {
    display: flex;
    align-items: flex-end;
    /* Visual bottom alignment */
    justify-content: center;
    /* Center the group */
    width: 100%;
    max-width: 1200px;
    gap: 80px;
    /* Significantly increased gap */
    margin: 0 auto;
    padding-left: 0;
}

.v2-hero-a-text {
    flex: 0 0 auto;
    z-index: 10;
    /* Position text vertically centered visually relative to the section, 
       since image is stuck to bottom */
    margin-bottom: 125px;
    text-align: left;
}

/* Image on the right */
.v2-hero-a-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    /* Ensure no extra spacing below */
    margin-bottom: -5px;
}

.v2-hero-a-img {
    height: auto;
    max-height: 510px;
    /* User Requested 510px */
    width: auto;
    max-width: none;
    /* Allow it to be wide if needed */
    object-fit: contain;
}

/* Text Adjustments to prevent wrapping */
.v2-hero-a-split .v2-hero-title {
    font-size: 3rem;
    /* Slightly adjusted */
    white-space: nowrap;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
}

.v2-hero-a-split .v2-hero-desc {
    font-size: 1.125rem;
    white-space: nowrap;
    text-align: left;
    max-width: 100%;
    margin-bottom: 40px;
    color: var(--v2-gray-500);
}

.v2-hero-a-split .v2-hero-btns {
    justify-content: flex-start;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .v2-hero-a-split .v2-hero-title {
        font-size: 2.5rem;
    }

    .v2-hero-a-split .v2-hero-desc {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .v2-hero-a-split {
        display: block;
        text-align: center !important;
        padding-bottom: 0 !important;
        height: auto;
        min-height: auto;
    }

    .v2-hero-a-layout {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding-left: 0;
    }

    .v2-hero-a-text {
        flex: none;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .v2-hero-a-split .v2-hero-title,
    .v2-hero-a-split .v2-hero-desc {
        white-space: normal;
        text-align: center;
    }

    .v2-hero-a-split .v2-hero-btns {
        justify-content: center;
    }

    .v2-hero-a-visual {
        flex: none;
        max-width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .v2-hero-a-img {
        max-height: 400px;
        margin-right: 0;
    }
}

/* ========================================= */
/* FAQ Section                               */
/* ========================================= */
.v2-section-faq {
    background-color: var(--v2-gray-50);
}

.v2-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-faq-item {
    background: var(--v2-white);
    border: 1px solid var(--v2-gray-200);
    border-radius: var(--v2-radius-md);
    overflow: hidden;
    transition: var(--v2-transition);
}

.v2-faq-item:hover {
    border-color: var(--v2-primary);
    box-shadow: var(--v2-shadow-sm);
}

.v2-faq-item.active {
    border-color: var(--v2-primary);
    box-shadow: var(--v2-shadow-sm);
}

.v2-faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--v2-gray-900);
    cursor: pointer;
    background: none;
    border: none;
}

.v2-faq-question:hover {
    color: var(--v2-primary);
}

.v2-faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.v2-faq-toggle-icon::before,
.v2-faq-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--v2-gray-500);
    transform: translate(-50%, -50%);
    transition: var(--v2-transition);
}

.v2-faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.v2-faq-item.active .v2-faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.v2-faq-item.active .v2-faq-toggle-icon::before {
    background-color: var(--v2-primary);
}

.v2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: var(--v2-gray-50);
}

.v2-faq-item.active .v2-faq-answer {
    max-height: 500px;
    /* Sufficient height for content */
    border-top: 1px solid var(--v2-gray-100);
}

.v2-faq-answer-content {
    padding: 24px;
    color: var(--v2-gray-500);
    line-height: 1.7;
}

.v2-faq-link-wrapper {
    margin-top: 16px;
    text-align: right;
}

.v2-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--v2-primary);
    transition: var(--v2-transition);
}

.v2-faq-link:hover {
    color: var(--v2-gray-900);
    text-decoration: underline;
}

/* ========================================= */
/* Logo Rotation Animation                   */
/* ========================================= */
.v2-logo-container {
    perspective: 1000px;
    display: inline-flex;
    align-items: center;
    width: 160px;
    /* Fixed width to prevent layout shift */
}

/* ========================================= */
/* Mobile Optimization                       */
/* ========================================= */
@media (max-width: 768px) {

    /* 1. Global Typography & Layout */
    .v2-scope h1,
    .v2-scope h2,
    .v2-scope h3,
    .v2-scope p,
    .v2-scope span,
    .v2-scope li,
    .v2-scope a {
        word-break: keep-all;
        word-wrap: break-word;
    }

    .v2-section {
        padding: 50px 0;
        /* Increased slightly for separation */
    }

    .v2-container {
        padding: 0 20px;
    }

    .v2-section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .v2-section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }


    /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
    /* Reordering: Title -> Image -> Body */
    .v2-intro-layout,
    .v2-intro-layout.v2-intro-reverse {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-top: 20px;
        /* Extra top spacing for separation */
    }

    /* Use display: contents to unwrap the content div so we can reorder children independently */
    .v2-intro-content {
        display: contents;
    }

    /* Order 1: Title */
    .v2-intro-title {
        order: 1;
        text-align: center;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* Order 2: Visual (Image) */
    .v2-intro-visual {
        order: 2;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .v2-intro-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }

    /* Order 3: Description Body */
    .v2-intro-desc {
        order: 3;
        text-align: left;
        font-size: 1rem;
        margin-bottom: 10px;
    }


    /* 3. Report Guide A */
    .v2-report-a-layout {
        flex-direction: column;
        gap: 20px;
    }

    .v2-report-a-content {
        padding: 0;
        text-align: center;
    }

    .v2-report-a-content .v2-section-title {
        text-align: center;
        margin-bottom: 10px;
    }

    .v2-report-a-desc {
        text-align: center;
        margin-bottom: 20px;
    }

    .v2-usage-list-a {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .v2-report-a-visual-btn {
        width: 100% !important;
        /* Full container width */
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
        /* Force square shape based on width */
        padding: 0;
        box-sizing: border-box;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        /* Tighter gap */
        border-radius: 20px;
    }

    .v2-visual-icon {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .v2-visual-text {
        text-align: center;
    }

    /* Reduce bottom margin for Section C (Report Process) */
    .v2-steps-c {
        margin-bottom: 30px !important;
        /* Reduced from default */
    }


    /* 4. Report Guide C (Step Process) */
    .v2-steps-c {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .v2-step-arrow {
        transform: rotate(90deg);
        margin: 0;
        color: var(--v2-gray-300);
    }

    .v2-step-item {
        width: 100%;
        max-width: 320px;
    }


    /* 5. Report Guide D (Card Grid) */
    .v2-layout-d {
        gap: 24px;
    }

    .v2-grid-d {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .v2-header-d {
        text-align: center;
        margin-bottom: 16px;
    }

    /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */
    .v2-section-services,
    .v2-section-youtube {
        padding: 70px 0 !important;
        /* Increased from 40px (~1.7x) */
    }

    .v2-criminal-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Memo Header Left Alignment */
    .v2-memo-header {
        text-align: left;
    }

    .v2-criminal-info {
        text-align: center;
    }

    .v2-criminal-info .v2-section-title {
        text-align: center;
    }

    .v2-phone-box {
        justify-content: center;
    }

    .v2-memo-form-container {
        padding: 24px 20px;
    }

    /* FAQ Mobile */
    .v2-faq-question {
        padding: 16px;
        font-size: 1rem;
    }

    .v2-faq-answer-content {
        padding: 16px;
    }

    /* Mobile Menu - Active State */
    .v2-nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 80px;
        /* Below header */
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f1f1f1;
        z-index: 999;
    }

    .v2-nav.active .v2-nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }


    .v2-privacy-tooltip-content {
        text-align: left;
    }

    .v2-criminal-desc {
        text-align:left;
        padding-left:5px;
    }

}

.v2-logo-text {
    display: inline-block;
    /* Transition is managed by JS */
}