﻿/* ── HERO ── */
.vision-hero {
    min-height: 65vh;
    padding: 90px 5vw 80px;
    background: linear-gradient(150deg, var(--green-50) 0%, #e8f5f0 50%, var(--green-100) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .vision-hero::after {
        content: '';
        position: absolute;
        right: -5vw;
        top: 0;
        bottom: 0;
        width: 50%;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='250' cy='250' r='220' fill='none' stroke='%232a7a4a' stroke-width='1' opacity='0.15'/%3E%3Ccircle cx='250' cy='250' r='160' fill='none' stroke='%232a7a4a' stroke-width='1' opacity='0.12'/%3E%3Ccircle cx='250' cy='250' r='100' fill='none' stroke='%232a7a4a' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='250' cy='250' r='40' fill='%232a7a4a' opacity='0.08'/%3E%3C/svg%3E") center/contain no-repeat;
        animation: floatA 12s ease-in-out infinite;
    }

.vision-hero-inner {
    max-width: 640px;
    position: relative;
    z-index: 1;
}

    .vision-hero-inner h1 {
        font-family: var(--font-display);
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: var(--text-dark);
        margin-bottom: 24px;
        animation: fadeUp .7s .1s ease both;
    }

        .vision-hero-inner h1 em {
            font-style: normal;
            color: var(--green-600);
        }

    .vision-hero-inner p {
        font-size: 1.1rem;
        color: var(--text-mid);
        line-height: 1.8;
        font-weight: 300;
        max-width: 520px;
        animation: fadeUp .7s .2s ease both;
    }

/* ── VISION PILLARS ── */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding: 80px 5vw;
}

.vision-pillar {
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
}

    .vision-pillar:nth-child(2) {
        background: var(--green-900);
        border-color: var(--green-800);
        transform: translateY(-16px);
    }

        .vision-pillar:nth-child(2) h4 {
            color: white;
        }

        .vision-pillar:nth-child(2) > p {
            color: rgba(255,255,255,0.55);
        }

    .vision-pillar:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .vision-pillar:nth-child(2):hover {
        transform: translateY(-24px);
    }

.vp-num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--green-500);
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 3px 10px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 20px;
}

.vision-pillar:nth-child(2) .vp-num {
    background: rgba(255,255,255,0.1);
    color: var(--green-300);
    border-color: rgba(255,255,255,0.15);
}

.vp-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--green-600);
}

.vision-pillar:nth-child(2) .vp-icon {
    color: var(--green-400);
}

.vision-pillar h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.vision-pillar > p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ── 2030 GOALS ── */
.future-section {
    padding: 80px 5vw;
    background: var(--cream);
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 56px;
}

.future-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

.future-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.future-num-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .future-num-card:hover {
        border-color: var(--green-300);
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .future-num-card .fnc-val {
        font-family: var(--font-display);
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--green-600);
    }

    .future-num-card .fnc-lbl {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 4px;
        font-weight: 400;
    }

.future-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.road-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .road-item:hover {
        border-color: var(--green-300);
        transform: translateX(4px);
    }

.road-year {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green-600);
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 4px 10px;
    border-radius: 40px;
    white-space: nowrap;
    align-self: center;
    flex-shrink: 0;
}

.road-text h5 {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.road-text p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 300;
}

/* ── QUOTE ── */
.vision-quote-section {
    padding: 80px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.quote-block {
    background: var(--green-50);
    border-radius: var(--radius-xl);
    padding: 52px;
    border: 1px solid var(--green-200);
    position: relative;
}

    .quote-block::before {
        content: '\201C';
        font-family: Georgia, serif;
        font-size: 8rem;
        color: var(--green-200);
        line-height: 1;
        position: absolute;
        top: 16px;
        left: 40px;
        pointer-events: none;
    }

.quote-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.quote-author {
    margin-top: 24px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--green-700);
}

.vision-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--cream);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

    .vv-item:hover {
        border-color: var(--green-300);
        background: var(--green-50);
    }

.vv-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.vv-item:hover .vv-icon {
    background: var(--green-600);
    color: white;
}

.vv-text h5 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.vv-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }

    .vision-pillar:nth-child(2) {
        transform: none;
    }

        .vision-pillar:nth-child(2):hover {
            transform: translateY(-8px);
        }

    .future-grid, .vision-quote-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-hero::after {
        display: none;
    }
}
