/* 폰트 설정 */
@font-face {
    font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansTTFBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansTTFMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GmarketSans';
    src: url('../fonts/GmarketSansTTFLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

:root {
    /* 컬러 시스템 */
    --color-primary: #2546da;     /* 메인 컬러 */
    --color-secondary: #004c8c;    /* 메인 컬러의 진한 버전 */
    --color-accent: #2d43c2;       /* 포인트 컬러 */
    --color-background: #f9fcff;   /* 연한 배경색 */
    --color-neutral: #6b7280;      /* 중성 컬러 */
    --color-light: #e5e7eb;        /* 연한 회색 */
    --color-dark: #1f2937;         /* 진한 회색 */
    --color-text: #374151;         /* 텍스트 컬러 */
    --color-text-light: #6b7280;   /* 연한 텍스트 컬러 */
    --color-white: #FFFFFF;
    --color-success: #10b981;      /* 성공 컬러 */
    --color-error: #ef4444;        /* 에러 컬러 */

    /* 폰트 패밀리 */
    --font-title: 'TheJamsil', sans-serif;
    --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

.text-color-accent{color: var(--color-accent);}
/* 기본 스타일 */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 헤더 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
}

.gnb ul {
    display: flex;
    gap: 40px;
}

.gnb a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.3s;
}

.gnb a:hover {
    color: var(--color-primary);
}

.gnb .cta-button {
    padding: 10px 24px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 30px;
    transition: background-color 0.3s;
}

.gnb .cta-button:hover {
    background-color: #223396;
    color: #fff;
}

/* 히어로 섹션 */
.hero-section {
    position: relative;
    min-height: 800px;
    background-image: url('../images/main_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
    width: 100%;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.733),
        rgba(0, 0, 0, 0.945)
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.hero-title-sub{color: var(--color-accent);margin-bottom: 20px;display: block;font-size: 18px;font-weight: 600;}

.hero-content {
    flex: 1;
    max-width: 700px;
    color: var(--color-white);
    z-index: 3;
    position: relative;
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0; /* 섹션 하단에 위치 */
    width: 50%;
    max-width: 600px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
}


.hero-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    /* margin-bottom: 20px; */ /* 이 부분을 제거하여 하단에 정확히 맞춥니다. */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.title-main {
    font-family: 'GmarketSans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.title-main strong{color: #7caaff;}

.subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 히어로 섹션 특징 요소들 */
.hero-features {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    justify-content: start;
}

.hero-feature {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #7caaff;
    border-radius: 30px;
    padding: 12px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(55, 110, 212, 0.3);
}

.hero-feature span {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

/* 문제점 및 공감 섹션 */
.pain-points {
    padding: 100px 0;
    background-color: var(--color-background);
}

.title-section {
    font-family: 'GmarketSans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.title-section span {font-weight: 300;}
.title-section strong{color: var(--color-primary);}
.title-section.white{color: var(--color-white) !important;}

.title-section.deco{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
    color: var(--color-light) !important;
}

.first-place{
    background: url('../images/icon_win.png') no-repeat center center;
    background-size: contain;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(236, 175, 43);
    font-size: 52px;
}

.pain-points-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pain-points-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pain-points-list li p {
    flex: 1;
    line-height: 1.6;
    font-size: 24px;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0; /* 원형 모양 유지 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon::before {
    content: '✓';
    color: var(--color-white);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

/* 솔루션 섹션 */
.solution {
    padding: 100px 0;
    background-image: url('../images/ect_bg3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.solution::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 24, 78, 0.95);
    z-index: 1;
}

.solution-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 860px;
    margin: 0 auto;
}

.solution-card {
    padding: 40px;
    background-color: #fffffff6;
    border-radius: 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card-title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.solution-card:hover {
    transform: translateX(10px);
}

.solution-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #233a7c;
    margin-bottom: 24px;
}

.solution-card ul li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.solution-card ul li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

/* 솔루션 카드 추가 스타일 */
.solution-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
    color: var(--color-primary);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* 프로세스 섹션 */
.process {
    padding: 100px 0;
    background-color: var(--color-background);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'GmarketSans', sans-serif;
    font-size: 24px;
    color: var(--color-text-light);
    font-weight: 700;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--color-background);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(10, 89, 192, 0.1);
}

.step-icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark);
    margin-top: 20px;
}

.process-step p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* 프로세스 화살표 스타일 */
.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    z-index: 9;
}

.process-arrow img {
    width: 80px;
}

/* 성공사례 섹션 */
.success {
    padding: 100px 0;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-story {
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-icon {
    font-size: 40px;
    color: #bcc2cf;
    flex-shrink: 0;
}

.user-details {
    flex: 1;
}

.user-details .client {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
    font-size: 16px;
}

.user-details .rating {
    margin-bottom: 0;
    font-size: 14px;
}

.rating {
    margin-bottom: 16px;
}

.testimony {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--color-text);
}

.client {
    font-weight: 500;
    color: var(--color-text-light);
}

/* 성공사례 섹션 추가 스타일 */
.success-emphasis {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-top: 50px;
    font-family: 'GmarketSans', sans-serif;
}

/* 성과 지표 섹션 */
.performance-section {
    padding: 40px 0;
    background: #f8fafc;
}

.performance-section .title-section {
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dark);
}

.performance-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #b8b8b8;
    margin-bottom: 10px;
    line-height: 1.4;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
}

/* 성과 지표 섹션 */
.performance-section {
    padding: 70px 0 80px 0;
    background-image: url('../images/img_lawyer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.performance-section .section-inner {
    position: relative;
    z-index: 2;
}

.performance-section .title-section {
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dark);
}

.performance-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1;
}


.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: #eeeeee;
    line-height: 1;
}

.unit {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
}

/* 실시간 상담 현황 섹션 */
.live-status-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.live-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.live-status-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.live-status-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    padding: 40px 30px 30px;
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-status-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.status-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 25px 30px;
    background:var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    position: relative;
}

.status-table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.status-table-header span {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-status-swiper {
    height: 450px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.live-status-swiper .swiper-slide {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1.5fr 1.5fr 1.5fr !important;
    gap: 20px !important;
    padding: 20px 30px !important;
    border-bottom: 1px solid rgba(10, 89, 192, 0.1) !important;
    font-size: 16px !important;
    align-items: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 60px !important;
    text-align: center !important;
    position: relative;
    overflow: hidden;
}

.live-status-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.live-status-swiper .swiper-slide:hover {
    background: linear-gradient(135deg, rgba(10, 89, 192, 0.05), rgba(0, 76, 140, 0.05)) !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 20px rgba(10, 89, 192, 0.15) !important;
}

.live-status-swiper .swiper-slide:hover::before {
    transform: scaleY(1);
}

.live-status-swiper .swiper-slide span {
    font-size: 16px !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-status-swiper .swiper-slide .date {
    color: var(--color-primary)!important;
}

.live-status-swiper .swiper-slide .name {
    color: var(--color-dark) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.live-status-swiper .swiper-slide .phone {
    color: var(--color-text) !important;
}

.live-status-swiper .swiper-slide .business {
    color: var(--color-primary) !important;
}

.live-status-swiper .swiper-slide .sales {
    color: var(--color-text) !important;
}

/* 신뢰 요소 스타일 */

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 24px;
    background-color: var(--color-background);
    border-radius: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-24h {
    background-image: url('../images/icon-24h.svg');
}

.icon-ssl {
    background-image: url('../images/icon-ssl.svg');
}

.trust-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

/* 문의하기 섹션 */
.contact {
    padding: 100px 0;
    background-color: var(--color-background);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fafb;
    color: var(--color-text);
    font-family: inherit;
    position: relative;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(10, 89, 192, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    height: 60px;
    resize: vertical;
    line-height: 1.5;
}

/* 셀렉트 박스 커스텀 스타일 */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230a59c0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background-color: #f9fafb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.checkbox:hover {
    border-color: #d1d5db;
    background-color: #ffffff;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.checkbox label {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
    color: var(--color-text);
}

.checkbox:has(input[type="checkbox"]:checked) {
    border-color: var(--color-primary);
    background-color: rgba(10, 89, 192, 0.05);
}

.privacy-link {
    color: var(--color-primary);
    text-decoration: underline;
}

/* 필수 표시 스타일 */
.required {
    color: var(--color-error);
    font-weight: 600;
}

/* 오류 상태 스타일 */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--color-error);
    background-color: #fef2f2;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group.error .situation-container {
    border-color: var(--color-error);
    background-color: #fef2f2;
}

/* 오류 메시지 스타일 */
.error-message {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 6px;
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-group.error .error-message {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 체크박스 그룹 스타일 */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--color-primary);
    background-color: rgba(10, 89, 192, 0.02);
}

.checkbox-item input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-item label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: var(--color-primary);
    font-weight: 600;
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: var(--color-primary);
    background-color: rgba(10, 89, 192, 0.05);
}

/* 신청자의 현재 상황 스타일 */
.situation-container {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    margin-top: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.situation-container:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.situation-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 8px;
    cursor: pointer;
}

.situation-option:last-child {
    margin-bottom: 0;
}

.situation-option:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.situation-option input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.situation-option label {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
    flex: 1;
    color: var(--color-text);
    font-weight: 500;
}

.situation-option input[type="checkbox"]:checked + label {
    color: var(--color-primary);
    font-weight: 600;
}

.situation-option:has(input[type="checkbox"]:checked) {
    background-color: rgba(10, 89, 192, 0.08);
    border: 1px solid rgba(10, 89, 192, 0.2);
}

.submit-button {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--color-accent), #3d40f8);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(68, 94, 239, 0.2), 0 2px 4px -1px rgba(239, 68, 68, 0.1);
}

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

.submit-button:hover {
    background: linear-gradient(135deg, #4d2be5, var(--color-accent));
    transform: translateY(-2px);
    
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(0);
}

/* 푸터 */
.footer {
    padding: 60px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p{
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
    color: #d1d5db;
    font-weight: 400;
}
.footer .logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer .logo img {
    max-width: 200px;
    height: auto;
}

.snsbox {
    text-align: center;
}

.snsbox .num {
    font-size: 18px;
    color: var(--color-white);
}

.snsbox .num em {
    font-style: normal;
    font-weight: 700;
}

.snsbox .num a {
    color: #7caaff;
    text-decoration: none;
    font-weight: 700;
}



.sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sns a {
    color: var(--color-light);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--color-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sns a:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.copy {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-light);
    opacity: 0.8;
}

.copy span {
    display: inline-block;
    margin: 2px 0;
}

.copy address {
    margin-top: 20px;
    font-style: normal;
    opacity: 0.6;
    font-size: 12px;
}

/* 로딩 오버레이 스타일 */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: loadingPulse 0.3s ease-out;
}

@keyframes loadingPulse {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 14px;
    color: var(--color-text-light);
}

/* 성공 모달 스타일 */
.success-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.3s ease-out;
}

.success-modal.active {
    display: flex;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-modal-content {
    background: white;
    border-radius: 24px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-modal-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 40px;
    color: var(--color-success);
}

.success-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.success-modal-body {
    padding: 40px 30px;
    text-align: center;
}

.success-modal-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 30px;
}

.success-modal-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.success-modal-button {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 70, 218, 0.3);
}

.success-modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 70, 218, 0.4);
}

.success-modal-button:active {
    transform: translateY(0);
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background-color: #0c1b46;
    color: var(--color-white);
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.close {
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
    line-height: 1.6;
}

.modal-body h4 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    padding-top: 20px;
    border-top: 1px solid var(--color-light);
}

.modal-body h4:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.modal-body p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: var(--color-text);
    text-align: justify;
}

.modal-body p:last-child {
    margin-bottom: 0;
}



/* 컨설팅 기능 스타일 */
.consulting-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.consulting-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.consulting-item:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-wrapper i {
    font-size: 24px;
    color: #5566af;
    transition: transform 0.3s;
}

.consulting-item:hover .icon-wrapper i {
    transform: scale(1.1);
}

.consulting-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.consulting-item p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-light);
}

/* 반응형 스타일 */
@media (max-width: 1200px) {
    .hero-inner {
        padding: 0 20px;
    }

    .hero-image {
        width: 45%;
        max-width: 500px;
    }

    .hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 1024px) {
    .title-main {
        font-size: 42px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon i {
        font-size: 28px;
    }

    .step-number {
        font-size: 20px;
        top: 16px;
        left: 16px;
    }

    .pain-points-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .consulting-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .consulting-item {
        padding: 16px;
    }

    .icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .icon-wrapper i {
        width: 28px;
        height: 28px;
    }

    .icon-wrapper i {
        font-size: 22px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 968px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        z-index: 3;
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: auto;
        align-items: center;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 100%;
        /* margin-bottom: 0; */ /* 모바일에서도 하단 여백 제거 */
    }

    .title-main {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .solution-card h3{font-size: 20px;}
    .title-section.deco{flex-direction: column;}
    .first-place{width: 80px;height: 80px;font-size:22px;}
    /* 헤더 모바일 반응형 */
    .header {
        padding: 10px 0;
    }
    
    .header-inner {
        padding: 0 16px;
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .logo img {
        height: 30px;
    }
    
    .gnb ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .gnb a {
        font-size: 16px;
        padding: 6px;
    }
    
    .gnb .cta-button {
        font-size: 14px;
        padding: 6px 10px;
        border-radius: 20px;
    }

    /* 메인 섹션 모바일 반응형 */
    .hero-section {
        min-height: auto;
        padding-top: 150px;
        flex-direction: column;
    }

    .hero-inner {
        padding: 0 16px;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .title-main {
        font-size: 24px;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
        margin: 20px 0;
    }
    
    .hero-feature {
        padding: 8px 12px;
    }
    
    .hero-feature span {
        font-size: 12px;
    }

    .hero-image {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        transform: none;
        height: auto;
        display: block;
        
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        animation: none;
    }

    /* 섹션 공통 모바일 반응형 */
    .section-inner {
        padding: 0 16px;
    }
    
    .title-section {
        font-size: 22px;
        line-height: 1.3;
    }

    /* 문제점 섹션 모바일 반응형 */
    .pain-points-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pain-points-list li {
        padding: 12px;
    }
    
    .pain-points-list li p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* 솔루션 섹션 모바일 반응형 */
    .solution {
        padding: 60px 0;
    }
    
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .consulting-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .consulting-item {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .consulting-item .icon-wrapper {
        margin-bottom: 8px;
    }
    
    .consulting-item h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .consulting-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 프로세스 섹션 모바일 반응형 */
    .process {
        padding: 60px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .step-number {
        font-size: 16px;
        top: 8px;
        left: 8px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
    .process-arrow img{width: 40px;}
    .process-step p {
        font-size: 14px;
    }

    /* 성공사례 섹션 모바일 반응형 */
    .success {
        padding: 60px 0;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-story {
        padding: 20px;
    }
    
    .user-info {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .user-icon {
        font-size: 28px;
    }
    
    .user-details .client {
        font-size: 14px;
    }
    
    .user-details .rating {
        font-size: 12px;
    }
    
    .testimony {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* 성과 지표 섹션 모바일 반응형 */
    .performance-section {
        padding: 60px 0;
    }
    
    .performance-section .title-section {
        margin-bottom: 40px;
        font-size: 24px;
        padding: 0 20px;
    }
    
    .performance-stats {
        gap: 10px;
        padding: 0 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .counter {
        font-size: 22px;
    }
    
    .unit {
        font-size: 20px;
    }
    
    .lawyer-title {
        font-size: 24px;
        padding: 0 16px;
        line-height: 1.3;
    }

    /* 실시간 상담 현황 모바일 반응형 */
    .live-status-section {
        padding: 40px 0;
    }
    
    .live-status-box {
        margin: 0 16px;
        border-radius: 16px;
    }
    
    .live-status-title {
        font-size: 20px;
        padding: 25px 16px 20px;
    }
    
    .status-table-header {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5px;
        padding: 15px 8px;
        font-size: 11px;
    }
    
    .status-table-header span:nth-child(4),
    .live-status-swiper .swiper-slide span:nth-child(4) {
        display: none;
    }
    
    .live-status-swiper .swiper-slide {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        gap: 5px !important;
        padding: 12px 8px !important;
        font-size: 11px !important;
        height: 45px !important;
    }
    
    .live-status-swiper .swiper-slide span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .live-status-swiper {
        height: 300px;
    }

    /* 신뢰 요소 모바일 반응형 */
    .trust-elements {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-item i {
        font-size: 24px;
    }
    
    .trust-item span {
        font-size: 14px;
    }

    /* 문의하기 섹션 모바일 반응형 */
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .checkbox label {
        font-size: 13px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .situation-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* 푸터 모바일 반응형 */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-inner {
        padding: 0 16px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    
    .footer-contact p {
        font-size: 13px;
    }
    
    .snsbox {
        flex-direction: column;
        gap: 10px;
    }
    
    .snsbox .num {
        font-size: 14px;
    }
    
    .sns {
        justify-content: center;
        gap: 15px;
    }
    
    .sns a {
        width: 35px;
        height: 35px;
    }
    
    .copy {
        padding: 20px 16px;
        text-align: center;
    }
    
    .copy span {
        font-size: 12px;
    }
    
    .copy address {
        font-size: 12px;
        line-height: 1.4;
    }

    .consulting-item {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 16px;
    }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        
    }

    .icon-wrapper i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .consulting-item h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .consulting-item p {
        font-size: 13px;
    }

    .icon-wrapper i {
        font-size: 20px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .solution-note {
        margin-top: 24px;
        padding-top: 16px;
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-number {
        font-size: 18px;
        top: 12px;
        left: 12px;
    }

    /* 모바일에서 화살표 세로 회전 */
    .process-arrow {
        top: auto;
        bottom: -25px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }
    


    /* 모바일에서 실시간 상담 현황 */
    .live-status-section {
        padding: 60px 0;
    }

    .live-status-box {
        margin: 0 16px;
        border-radius: 16px;
    }

    .live-status-title {
        font-size: 22px;
        padding: 30px 20px 25px;
    }

    .live-status-title::after {
        width: 40px;
        height: 2px;
    }

    .status-table-header {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 10px;
        padding: 20px 16px;
        font-size: 13px;
    }

    .status-table-header span {
        text-align: center;
        width: 100%;
    }

    .live-status-swiper .swiper-slide {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
        gap: 10px !important;
        padding: 15px 16px !important;
        font-size: 13px !important;
        height: 50px !important;
    }

    .live-status-swiper .swiper-slide span {
        width: 100% !important;
        text-align: center !important;
        font-size: 12px !important;
    }
    
    .live-status-swiper {
        height: 350px;
    }
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 퀵메뉴 */
.quick-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    min-width: 140px;
}

.quick-menu-item#kakaoConsultBtn {
    background: #2e221a;
    color: #f5f5f5;
}

/* 전화 버튼 스타일 */
.quick-menu-item#phoneConsultBtn {
    background: #28a745;
    color: white;
}

.quick-menu-item#phoneConsultBtn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.quick-menu-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.quick-menu-item .kakao-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.quick-menu-item span {
    white-space: nowrap;
}
.pc-none{ display: none;}

/* 로딩 오버레이 모바일 반응형 */
@media (max-width: 768px) {
    .loading-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .loading-text {
        font-size: 16px;
    }

    .loading-subtext {
        font-size: 13px;
    }

    .success-modal-content {
        width: 85%;
        max-width: 380px;
    }

    .success-modal-header {
        padding: 30px 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .success-icon i {
        font-size: 35px;
    }

    .success-modal-title {
        font-size: 20px;
    }

    .success-modal-body {
        padding: 30px 20px;
    }

    .success-modal-message {
        font-size: 14px;
    }

    .success-modal-footer {
        padding: 0 20px 25px;
    }

    .success-modal-button {
        padding: 14px 40px;
        font-size: 15px;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .mobile-none{ display: none;}
    .pc-none{ display: block;}
    .quick-menu {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .quick-menu-item {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 120px;
    }
    
    .quick-menu-item i {
        font-size: 14px;
        width: 18px;
    }
    
    .quick-menu-item .kakao-icon {
        width: 18px;
        height: 18px;
    }
}

/* 더 작은 모바일 화면 (480px 이하) */
@media (max-width: 480px) {
    /* 로딩 오버레이 초소형 반응형 */
    .loading-content {
        padding: 25px 15px;
        margin: 0 15px;
    }

    .loading-spinner {
        width: 45px;
        height: 45px;
    }

    .loading-text {
        font-size: 15px;
    }

    .loading-subtext {
        font-size: 12px;
    }

    .success-modal-content {
        width: 90%;
        max-width: 340px;
    }

    .success-modal-header {
        padding: 25px 15px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .success-icon i {
        font-size: 30px;
    }

    .success-modal-title {
        font-size: 18px;
    }

    .success-modal-body {
        padding: 25px 15px;
    }

    .success-modal-message {
        font-size: 13px;
        line-height: 1.5;
    }

    .success-modal-footer {
        padding: 0 15px 20px;
    }

    .success-modal-button {
        padding: 12px 35px;
        font-size: 14px;
    }

    /* 헤더 초소형 반응형 */
    .header-inner {
        padding: 0 12px;
        gap: 10px;
    }
    
    .logo img {
        height: 25px;
    }
    
    .gnb ul {
        gap: 8px;
    }
    



    /* 메인 섹션 초소형 반응형 */
    
    .hero-inner {
        padding: 0 12px;
        gap: 20px;
    }
    

    
    .hero-feature {
        padding: 6px 10px;
    }
    

    
    .hero-image {
        position: static;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        transform: none;
        height: auto;
        display: block;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* 섹션 공통 초소형 반응형 */
    .section-inner {
        padding: 0 12px;
    }
    
    .title-section {
        font-size: 24px;
        margin-bottom: 40px;
    }



    /* 솔루션 섹션 초소형 반응형 */
    .solution {
        padding: 40px 0;
    }
    
    .solution-card {
        padding: 15px;
    }
    
    .card-title {
        font-size: 16px;
    }
    

    
    .consulting-item .icon-wrapper {
        margin-bottom: 8px;
    }
    

    /* 프로세스 섹션 초소형 반응형 */
    .process {
        padding: 40px 0;
    }
    
    .process-step {
        padding: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-number {
        font-size: 14px;
        top: 18px;
        left: 18px;
    }
    
    .process-step h3 {
        font-size: 16px;
        margin-bottom: 0px;
    }
    
    .process-step p {
        font-size: 13px;
    }

    /* 성공사례 섹션 초소형 반응형 */
    .success {
        padding: 40px 0;
    }
    
    .success-story {
        padding: 15px;
    }
    
    .user-icon {
        font-size: 24px;
    }
    
    .user-details .client {
        font-size: 13px;
    }
    
    .user-details .rating {
        font-size: 11px;
    }
    
    .testimony {
        font-size: 13px;
    }
    
    /* 성과 지표 섹션 초소형 반응형 */
    .performance-section {
        padding: 40px 0;
    }
    
    .performance-section .title-section {
        margin-bottom: 30px;
        font-size: 20px;
        padding: 0 16px;
    }
    

    
    .lawyer-title {
        font-size: 20px;
        padding: 0 12px;
    }

    /* 실시간 상담 현황 초소형 반응형 */
    .live-status-section {
        padding: 30px 0;
    }
    
    .live-status-box {
        margin: 0 12px;
    }
    
    .live-status-title {
        font-size: 18px;
        padding: 20px 12px 15px;
    }
    
    .status-table-header {
        grid-template-columns: 0.8fr 0.7fr 1.2fr 1fr;
        padding: 12px 6px;
        font-size: 10px;
        gap: 3px;
    }
    
    .status-table-header span:nth-child(4),
    .live-status-swiper .swiper-slide span:nth-child(4) {
        display: none;
    }
    
    .live-status-swiper .swiper-slide {
        grid-template-columns: 0.8fr 0.7fr 1.2fr 1fr !important;
        padding: 10px 6px !important;
        font-size: 10px !important;
        height: 40px !important;
        gap: 3px !important;
    }
    
    .live-status-swiper .swiper-slide span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .live-status-swiper {
        height: 250px;
    }

    /* 신뢰 요소 초소형 반응형 */
    .trust-item {
        padding: 12px;
    }
    
    .trust-item i {
        font-size: 20px;
    }
    
    .trust-item span {
        font-size: 13px;
    }

    /* 문의하기 섹션 초소형 반응형 */
    .contact {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .checkbox label {
        font-size: 12px;
    }

    /* 푸터 초소형 반응형 */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-inner {
        padding: 0 12px;
        gap: 15px;
    }

    
    .footer-contact p {
        font-size: 12px;
    }
    
    .snsbox .num {
        font-size: 13px;
    }
    
    .sns a {
        width: 30px;
        height: 30px;
    }
    
    .copy {
        padding: 15px 12px;
    }
    
    .copy span {
        font-size: 11px;
    }
    
    .copy address {
        font-size: 11px;
    }

    /* 퀵메뉴 초소형 반응형 */
    .quick-menu {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .quick-menu-item {
        padding: 10px 12px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .quick-menu-item i {
        font-size: 12px;
        width: 16px;
    }
    
    .quick-menu-item .kakao-icon {
        width: 14px;
        height: 14px;
    }
} 