/* ==========================================================================
   Sample Report Page Specific Styles - sample-report.css
   ========================================================================== */

/* 전체 페이지 레이아웃 - 전체 화면 너비 허용 */
body {
    background-color: #000000 !important;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard Variable', Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

/* 상단 섹션 컨테이너 - 검은색 배경 */
.top-section {
    background-color: #000000;
    width: 100%;
}

.container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000000;
    width: 1440px; /* 컨테이너만 1440px로 제한 */
}

/* Hero 섹션 - 패딩 줄임 */
.hero-section {
    position: relative;
    width: 100%;
    padding: 80px 0 100px; /* 100px 0 150px에서 줄임 */
    text-align: left;
    background-color: #000000;
    color: #FFFFFF;
}

.hero-content {
    /* 컨테이너 내부에서 레이아웃 */
}

.hero-subtitle {
    font-family: 'Pretendard Variable';
    font-weight: 800;
    font-size: 70px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 15px; /* 20px에서 15px로 줄임 */
}

.hero-title {
    font-family: 'Pretendard Variable';
    font-weight: 800;
    font-size: 70px;
    line-height: 72px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 25px; /* 30px에서 25px로 줄임 */
}

.hero-title .highlight-text {
    color: #DB4827;
}

.hero-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 35px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 40px; /* 60px에서 40px로 줄임 */
}

/* CTA 섹션 */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 40px; /* 60px에서 40px로 줄임 */
}

.hero-cta-button {
    width: 375px;
    height: 77px;
    background: #DB4827;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Pretendard Variable';
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-button:hover {
    background: #c43e21;
    transform: translateY(-2px);
}

.hero-email-form {
    display: flex;
    position: relative;
}

.hero-email-input {
    width: 650px;
    height: 77px;
    background: #FFFFFF;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 150px 0 20px;
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.05em;
    color: #333;
}

.hero-email-input::placeholder {
    color: #DFDFDF;
}

.hero-email-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 139px;
    height: 77px;
    background: #DB4827;
    border: none;
    border-radius: 0 15px 15px 0;
    font-family: 'Pretendard Variable';
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-email-submit:hover {
    background: #c43e21;
}

/* 메인 컨텐츠 영역 - 흰색 배경 */
.main-content {
    background-color: #FFFFFF;
    padding: 0 0 80px 0; /* 하단에 80px 패딩 추가 */
    margin-bottom: 0;
}

/* 통계 섹션 - 마진 줄임 */
.stats-section {
    margin: 100px 0; /* 150px에서 100px로 줄임 */
    padding: 60px 0; /* 80px에서 60px로 줄임 */
    background-color: #FFFFFF;
    text-align: center;
}

.stats-title {
    font-family: 'Pretendard Variable';
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
    margin-bottom: 40px; /* 60px에서 40px로 줄임 */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px; /* 80px에서 60px로 줄임 */
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'Pretendard Variable';
    font-weight: 800;
    font-size: 52px; /* 통일된 폰트 크기 */
    line-height: 62px; /* 통일된 줄 높이 */
    color: #DB4827;
    margin-bottom: 15px; /* 20px에서 15px로 줄임 */
    min-height: 62px; /* 최소 높이 설정으로 균일한 높이 보장 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 세 번째 통계 항목 - 이제 다른 항목과 동일한 크기 사용 */
.stat-item:nth-child(3) .stat-number {
    font-size: 52px; /* 다른 항목과 동일한 크기 */
    line-height: 62px;
    white-space: nowrap; /* 줄바꿈 방지만 유지 */
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-family: 'Pretendard Variable';
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    margin-bottom: 8px; /* 10px에서 8px로 줄임 */
}

.stat-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #666666;
}

/* 진짜 반응 진짜 데이터 섹션 - 마진 줄임 */
.real-data-section {
    margin: 80px 0; /* 150px에서 80px로 줄임 */
    background: #FFFFFF;
    padding: 60px 0; /* 100px에서 60px로 줄임 */
    text-align: center;
    width: 100%;
}

/* 섹션 내부 콘텐츠는 제한된 너비 */
.real-data-section .real-data-title,
.real-data-section .real-data-description,
.real-data-section .report-tags {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.real-data-subtitle {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #DB4827;
    margin-bottom: 25px; /* 30px에서 25px로 줄임 */
}

.real-data-title {
    font-family: 'Pretendard Variable';
    font-weight: 800;
    font-size: 72px;
    line-height: 86px;
    letter-spacing: -0.03em;
    color: #000000;
    margin-bottom: 30px; /* 40px에서 30px로 줄임 */
}

.real-data-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #666666;
    margin-bottom: 50px; /* 80px에서 50px로 줄임 */
}

/* 인사이트 섹션 - 마진 대폭 줄임 */
.insights-section {
    margin: 60px 0 40px 0; /* 150px에서 60px로, 하단은 40px로 줄임 */
    text-align: center;
    background-color: #FFFFFF;
    padding: 50px 0 30px 0; /* 80px에서 50px로 줄임 */
    width: 100%;
}

/* 인사이트 섹션 콘텐츠 제한 */
.insights-section .insights-title,
.insights-section .insights-description,
.insights-section .insights-tags {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.insights-title {
    font-family: 'Pretendard Variable';
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #000000;
    margin-bottom: 25px; /* 30px에서 25px로 줄임 */
}

.insights-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #666666;
    margin-bottom: 40px; /* 80px에서 40px로 줄임 */
}

.insights-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px; /* 60px에서 30px로 줄임 */
    flex-wrap: wrap;
}

.insights-tag {
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 25px;
    font-family: 'Pretendard Variable';
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

/* 리포트 섹션 - 여백 더 줄임 */
.report-section {
    margin: 50px 0; /* 100px에서 50px로 줄임 */
    background-color: #FFFFFF;
    padding: 40px 0; /* 60px에서 40px로 줄임 */
    width: 100%;
}

/* 리포트 아이템 스타일 - 간격 줄임 */
.report-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* 80px에서 60px로 줄임 */
    align-items: center;
    max-width: 1200px;
    margin: 30px auto; /* 50px에서 30px로 줄임 */
    padding: 0 20px;
}

/* 첫 번째 리포트 아이템 상단 간격 제거 */
.report-item:first-child {
    margin-top: 0;
}

/* 마지막 리포트 아이템 하단 간격 제거 */
.report-item:last-child {
    margin-bottom: 0;
}

.report-image-container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 25px; /* 30px에서 25px로 줄임 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* 그림자 줄임 */
    border: 1px solid #E5E5E5;
}

.report-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.report-content {
    padding: 15px; /* 20px에서 15px로 줄임 */
}

.report-content-title {
    font-family: 'Pretendard Variable';
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000000;
    margin-bottom: 15px; /* 20px에서 15px로 줄임 */
}

.report-content-title .highlight {
    color: #DB4827;
}

.report-content-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #666666;
}

/* 공통 스타일들 */
.report-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px; /* 40px에서 30px로 줄임 */
    flex-wrap: wrap;
}

.report-tag {
    padding: 10px 20px;
    background: rgba(219, 72, 39, 0.1);
    border: 1px solid #DB4827;
    border-radius: 25px;
    font-family: 'Pretendard Variable';
    font-weight: 500;
    font-size: 16px;
    color: #DB4827;
}

/* 방향성 확인 섹션 - 마진 줄임 */
.direction-section {
    margin: 60px 0; /* 150px에서 60px로 줄임 */
    background: #FFFFFF;
    padding: 50px 0; /* 100px에서 50px로 줄임 */
    text-align: center;
    width: 100%;
}

.direction-title {
    font-family: 'Pretendard Variable';
    font-weight: 800;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.03em;
    color: #000000;
    margin-bottom: 30px; /* 40px에서 30px로 줄임 */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.direction-description {
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #666666;
    margin-bottom: 40px; /* 60px에서 40px로 줄임 */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.direction-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.direction-tag {
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 25px;
    font-family: 'Pretendard Variable';
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

/* 최종 CTA - 마진 줄임 */
.final-cta {
    width: 100vw;
    height: 589px;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(93.12deg, #DB4827 2.92%, #DB4827 10.8%, #EDA493 84.57%, #FFFFFF 99.43%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0; /* 80px에서 0으로 변경 - 검은색 마진 제거 */
    margin-bottom: 200px;
}

.final-cta-title {
    font-family: 'Pretendard Variable';
    font-weight: 700;
    font-size: 60px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0 0 50px 0; /* 60px에서 50px로 줄임 */
    max-width: 1253px; /* Services와 동일하게 변경 */
}

.final-cta-button {
    width: 396px;
    height: 77px;
    background: #DB4827;
    border: none;
    border-radius: 20px;
    font-family: 'Pretendard Variable';
    font-weight: 400;
    font-size: 35px;
    line-height: 42px;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: #c43e21;
    transform: translateY(-2px);
}
