/* =========================================================================
   Home Page Styles
   ========================================================================= */

/*--------------------------------------------------------------
# Technology Shift Section
--------------------------------------------------------------*/
.home-tech-shift-section {
    padding: 120px 0 60px;
    background: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
}

.home-tech-shift-section * {
    box-sizing: border-box;
}

.tech-shift-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Section Header */
.tech-shift-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 893px;
    width: 100%;
    text-align: center;
}

.tech-shift-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(34, 140, 34, 0.6);
    margin: 0;
}

.tech-shift-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #1E2939;
    margin: 0;
}

.tech-shift-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    color: #0A1837;
    margin: 0;
    max-width: 800px;
}

/* Comparison Card Row */
.tech-shift-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.tech-shift-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

/* Dark Image Panel */
.tech-shift-image-panel {
    width: 100%;
    aspect-ratio: 605 / 560;
    background: #121212;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-shift-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Card label badge (Traditional AI / Spatio-Temporal) */
.tech-shift-card-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.tech-shift-card-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-shift-card-badge-dot.red {
    background: #DF3838;
}

.tech-shift-card-badge-dot.green {
    background: #1B6F1B;
}

.tech-shift-card-badge-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #FFFFFF;
}

/* Card text content below image */
.tech-shift-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.tech-shift-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

.tech-shift-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #0A1837;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .tech-shift-title {
        font-size: 36px;
    }

    .tech-shift-subtitle {
        font-size: 18px;
    }

    .tech-shift-cards {
        flex-direction: column;
    }

    .tech-shift-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .home-tech-shift-section {
        padding: 80px 0 40px;
    }

    .tech-shift-title {
        font-size: 28px;
    }

    .tech-shift-card-title {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Value Proposition Section
--------------------------------------------------------------*/
.home-value-prop-section {
    padding: 120px 0 80px;
    width: 100%;
    box-sizing: border-box;
}

.home-value-prop-section * {
    box-sizing: border-box;
}

.value-prop-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Section Header */
.value-prop-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 711px;
}

.value-prop-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(34, 140, 34, 0.6);
    margin: 0;
}

.value-prop-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

/* Cards Row */
.value-prop-cards {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

/* Individual Card */
.value-prop-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 0;
    gap: 24px;
    border-radius: 24px;
    overflow: hidden;
    min-height: 560px;
}

/* Card sizes: first two share ~50%, third takes ~35% */
.value-prop-card:nth-child(1),
.value-prop-card:nth-child(2) {
    flex: 1 1 0;
}

.value-prop-card:nth-child(3) {
    flex: 1.1 1 0;
}

/* Gradient backgrounds per card */
.value-prop-card--orange {
    background: linear-gradient(213.8deg, #FCE6D2 15.84%, #FEF3E8 79.95%);
}

.value-prop-card--blue {
    background: linear-gradient(188.49deg, #CDECF0 26.44%, #E8F5F7 93.51%);
}

.value-prop-card--purple {
    background: linear-gradient(229.93deg, #EDE0FF 26.88%, #FBF6FF 72.85%);
}

/* Card text content */
.value-prop-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.value-prop-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: -0.01em;
    color: #0A1837;
    margin: 0;
}

.value-prop-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #0A1837;
    margin: 0;
}

/* Card image area */
.value-prop-card-image {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.value-prop-card-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .value-prop-title {
        font-size: 32px;
    }

    .value-prop-cards {
        flex-direction: column;
    }

    .value-prop-card {
        min-height: 440px;
    }

    .value-prop-card-title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .home-value-prop-section {
        padding: 80px 0 40px;
    }

    .value-prop-title {
        font-size: 28px;
    }

    .value-prop-card {
        min-height: 380px;
    }

    .value-prop-card-title {
        font-size: 22px;
    }
}
