/* =========================================
   WEBGUIDE WORDPRESS - PAGE SPECIFIC CSS
   ========================================= */

/* Hero bölümü 'webguide-money-page.css' üzerinden stil alıyor. */

/* =========================================
   WP FEATURES SECTION (EKOSİSTEM TASARIMI)
   ========================================= */
.wp-features-section {
    padding: 6rem 0;
    background-color: #fff;
    border-top: 1px solid var(--clr-border);
}

.wp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* KART GENEL */
.wp-feature-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--clr-primary);
}

/* Küçük Kartlar (Kare) */
.wp-feature-card:not(.large-card) {
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Büyük Kartlar (Dikdörtgen - Span 2) */
.large-card {
    grid-column: span 2;
    flex-direction: row; /* Yan yana */
    align-items: center;
    padding: 3rem;
    gap: 2rem;
    background: #f8fafc; /* Hafif gri zemin */
}

/* Büyük Kart - İçerik */
.wp-card-content {
    flex: 1;
}

/* Büyük Kart - Görsel Alanı */
.wp-card-visual {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* İkon Kutusu (Küçük Kartlar) */
.wp-icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--clr-surface);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-secondary); /* WP Mavisi yerine Secondary */
    transition: all 0.3s ease;
}

.wp-feature-card:hover .wp-icon-box {
    background-color: var(--clr-secondary);
    color: #fff;
    transform: rotate(10deg);
}

.wp-icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

/* Tipografi */
.wp-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.wp-feature-card p {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- ÖZEL GÖRSELLER (CSS ÇİZİM) --- */

/* Editör Simülasyonu (Bloklar) */
.editor-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0.8;
}

.editor-block {
    width: 100%;
    height: 30px;
    background: #e2e8f0;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.editor-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #cbd5e1;
}

.editor-block.short { width: 70%; }

.large-card:hover .editor-block {
    background: #cbd5e1;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Topluluk Baloncukları */
.community-visual {
    position: relative;
    height: 150px;
}

.user-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    background-color: var(--clr-primary); /* Fallback */
    transition: transform 0.3s ease;
}

/* Temsili Avatar Renkleri */
.b1 { background-color: #4f46e5; left: 20%; top: 50%; transform: translateY(-50%); z-index: 1; }
.b2 { background-color: #059669; left: 50%; top: 20%; transform: translate(-50%, 0); z-index: 2; }
.b3 { background-color: #e11d48; left: 80%; top: 60%; transform: translate(-100%, -50%); z-index: 3; }

.large-card:hover .b1 { transform: translateY(-60%); }
.large-card:hover .b2 { transform: translate(-50%, -10%); }
.large-card:hover .b3 { transform: translate(-100%, -40%); }


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .wp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large-card {
        grid-column: span 2;
        flex-direction: column; /* Mobilde alt alta */
        text-align: center;
        padding: 2rem;
    }
    .wp-card-visual {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .wp-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .large-card {
        grid-column: span 1;
    }
    .wp-feature-card:not(.large-card) {
        aspect-ratio: auto; /* Kare zorunluluğunu kaldır */
        padding: 2rem;
    }
}