/* --- MANIFESTO (KURUMSAL) ÖZEL CSS --- */
.vadi-manifesto-section {
    padding: 180px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Arka plandaki dev Vision yazısı */
.manifesto-bg-title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 950;
    color: rgba(122, 148, 96, 0.03); /* Çok hafif yeşil tonlu beyaz */
    z-index: 1;
    pointer-events: none;
    letter-spacing: -10px;
}

.manifesto-wrapper { position: relative; z-index: 5; }

/* Header */
.m-label { font-weight: 800; color: var(--primary-green); letter-spacing: 5px; font-size: 0.8rem; }
.m-title { font-size: clamp(3rem, 7vw, 6rem); font-weight: 950; color: var(--black); margin: 20px 0 60px; letter-spacing: -2px; }

/* Core Layout */
.manifesto-core {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Resim ve Üzerine Binen Kart */
.m-image-container {
    position: relative;
    padding-bottom: 50px;
}

.m-main-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.9);
}

.m-floating-card {
    position: absolute;
    bottom: 0;
    right: -50px;
    background: var(--black);
    color: white;
    padding: 60px;
    width: 450px;
    border-radius: 4px;
    box-shadow: 40px 40px 80px rgba(0,0,0,0.15);
}

.m-floating-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary-green); }
.m-floating-card p { font-size: 1rem; line-height: 1.8; opacity: 0.8; margin-bottom: 30px; }
.m-signature { font-size: 0.8rem; font-weight: 700; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; letter-spacing: 2px; }

/* Sağ Metin Bloğu */
.m-subtitle { font-size: 4rem; line-height: 1; margin-bottom: 40px; }
.m-italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; color: var(--primary-green); }
.m-desc { font-size: 1.2rem; color: #555; line-height: 1.9; margin-bottom: 60px; }

/* Statik Kolon */
.m-stats-column { display: flex; flex-direction: column; gap: 40px; }
.ms-item { border-left: 3px solid var(--primary-green); padding-left: 30px; }
.ms-num { font-size: 2.5rem; font-weight: 900; display: block; color: var(--black); }
.ms-lab { font-size: 0.75rem; font-weight: 700; color: #999; letter-spacing: 2px; }

/* Footer Link */
.manifesto-footer { margin-top: 100px; }
.m-action-link {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s;
}

.m-action-link svg { width: 40px; fill: none; stroke: var(--primary-green); stroke-width: 2; transition: 0.4s; }
.m-action-link:hover { color: var(--primary-green); transform: translateX(20px); }

/* --- 📱 MANIFESTO MOBİL UYUM (MİMARİ DOKU KORUNDU) --- */
@media (max-width: 1100px) {
    .vadi-manifesto-section {
        padding: 100px 0; /* Boşluklar mobilde optimize edildi */
    }

    .manifesto-bg-title {
        font-size: 35vw; /* Mobilde arka plan yazısı daha dekoratif */
        top: 5%;
        letter-spacing: -5px;
    }

    .manifesto-core {
        grid-template-columns: 1fr;
        gap: 60px; /* Görsel ve metin bloğu arası mesafe */
    }

    /* Görsel ve Üzerine Binen Kart Düzenlemesi */
    .m-image-container {
        padding-bottom: 0;
        margin-bottom: 40px; /* Altındaki metinle karışmaması için */
    }

    .m-main-img {
        height: 450px; /* Mobilde daha dengeli bir yükseklik */
        border-radius: 4px;
    }

    .m-floating-card {
        position: relative;
        right: 0;
        width: 90%; /* Kenarlardan çok hafif boşluk bırakır */
        margin: -80px auto 0; /* Resmin üzerine şık bir şekilde biner */
        padding: 40px 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        z-index: 10;
    }

    .m-floating-card h3 {
        font-size: 1.5rem;
    }

    /* Sağ Metin Bloğu */
    .m-subtitle {
        font-size: 2.8rem; /* Mobilde çok büyük durmaması için */
        margin-bottom: 25px;
        line-height: 1.1;
    }

    .m-desc {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    /* İstatistikler Mobilde Yan Yana */
    .m-stats-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .ms-item {
        flex: 1;
        min-width: 140px; /* Küçük ekranlarda yan yana kalmalarını sağlar */
        padding-left: 20px;
    }

    .ms-num {
        font-size: 2rem;
    }

    .manifesto-footer {
        margin-top: 60px;
        text-align: center; /* Mobilde linki ortaladık */
    }

    .m-action-link:hover {
        transform: translateX(10px); /* Mobilde kayma miktarı azaltıldı */
    }
}

@media (max-width: 768px) {
    .m-title {
        font-size: 2.5rem;
    }

    .m-subtitle {
        font-size: 2.2rem;
    }

    .m-floating-card {
        width: 100%;
        margin-top: -60px;
    }
}