/* 수확량 분석 페이지 전용 스타일 - ai-diagnosis.css 구조 참조 */

/* 기본 설정 */
* {
    box-sizing: border-box;
}

/* 히어로 섹션 */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 200px);
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 120px;
        padding: 0 40px;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.harvest-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.harvest-title-highlight {
    background: linear-gradient(90deg, #05b981 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .harvest-title {
        font-size: 55px;
        line-height: 1.25;
    }
}

@media (min-width: 1024px) {
    .harvest-title {
        font-size: 75px;
        line-height: 1.2;
    }
}

@media (min-width: 1280px) {
    .harvest-title {
        font-size: 75px;
        line-height: 1.15;
    }
}

.harvest-subtitle {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

@media (min-width: 768px) {
    .harvest-subtitle {
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .harvest-subtitle {
        font-size: 24px;
        margin-left: 0;
        margin-right: 0;
    }
}

.harvest-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .harvest-buttons {
        justify-content: flex-start;
    }
}

.harvest-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

@media (min-width: 768px) {
    .hero-image-container {
        height: 500px;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-image-container {
        height: 600px;
        max-width: 700px;
    }
}

@media (min-width: 768px) {
    .hero-chart-container {
        height: 500px;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-chart-container {
        height: 600px;
        max-width: 700px;
    }
}

/* 섹션 헤더 */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 55px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 55px;
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 55px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #374151;
    margin-top: 16px;
    font-weight: 400;
}

/* 주요 기능 섹션 */
.harvest-features-section {
    padding: 100px 20px;
}

@media (min-width: 768px) {
    .harvest-features-section {
        padding: 120px 40px;
    }
}

.harvest-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .harvest-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .harvest-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.harvest-feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.harvest-feature-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.harvest-feature-card:hover {
    transform: translateY(-8px);
    border-color: #e2e8f0;
}

.harvest-feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.harvest-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #05b981 0%, #00895c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    transition: all 0.3s ease;
}

.harvest-feature-card:hover .harvest-feature-icon {
    transform: scale(1.1);
}

.harvest-feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e293b;
    position: relative;
    z-index: 1;
}

.harvest-feature-card p {
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* 분석 과정 섹션 */
.harvest-process-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%);
}

@media (min-width: 768px) {
    .harvest-process-section {
        padding: 120px 40px;
    }
}

.harvest-process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .harvest-process-content {
        flex-direction: row;
        gap: 120px;
    }
}

.harvest-process-text {
    flex: 1;
}

.harvest-process-text h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.harvest-process-text p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #05b981 0%, #00895c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 15px;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.harvest-process-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 분석 예시 섹션 */
.harvest-examples-section {
    padding: 100px 20px;
}

@media (min-width: 768px) {
    .harvest-examples-section {
        padding: 120px 40px;
    }
}

.harvest-examples-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .harvest-examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .harvest-examples-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.harvest-example-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.harvest-example-card:hover {
    transform: translateY(-4px);
    border-color: #e2e8f0;
}

.example-image {
    margin-bottom: 16px;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
}

.example-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.example-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* 정확도 섹션 */
.accuracy-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

@media (min-width: 768px) {
    .accuracy-section {
        padding: 120px 40px;
    }
}

.accuracy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.accuracy-stats {
    display: grid;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .accuracy-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.accuracy-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    min-height: 140px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.accuracy-stat:hover {
    transform: translateY(-4px);
    border-color: #e2e8f0;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #05b981;
    margin: 0 0 8px 0;
    line-height: 1.2;
    display: block;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 42px;
        line-height: 1.2;
    }
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    display: block;
}

/* Swiper 스타일 (기존 유틸리티 재사용) */
.mockup-swiper {
    width: 100%;
    max-width: 500px;
}

.mockup-image-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mockup-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* 반응형 조정 */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        min-height: calc(100vh - 160px);
    }

    .harvest-title {
        font-size: 48px;
        line-height: 1.2;
    }

    .harvest-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .harvest-buttons {
        flex-direction: column;
        align-items: center;
    }

    .harvest-buttons .btn-primary,
    .harvest-buttons .btn-secondary {
        max-width: 300px;
    }

    .accuracy-stats {
        gap: 24px;
    }

    .accuracy-stat {
        min-height: 120px;
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .stat-label {
        font-size: 13px;
        line-height: 1.3;
    }

    .hero-image-container {
        height: 350px;
        max-width: 100%;
    }
}