﻿
:root {
    --navy: #1F3A60;
    --navy-light: #2C4A78;
    --gray-bg: #F5F7FA;
    --orange: #FF8A00;
    --text-dark: #1A1A1A;
}


h1, h2, h3, h4, h5 {
    color: var(--orange) !important;
}

h6 {
    color: darkslategrey;
}

.footer h6, h4 {
    color: var(--orange) !important;
}

.footer h4 {
    color: var(--orange) !important;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: .25s ease;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 35px rgba(0,0,0,.08);
    }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
}

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-name {
    font-weight: 600;
    font-size: .95rem;
    color: #ff7c29 !important;
}

.testimonial-title {
    font-size: .82rem;
    color: #ff7c29 !important;
}

.testimonial-body {
    font-size: .9rem;
    line-height: 1.6;
    color: #444;
}

.rating {
    color: #f3b600;
    margin-bottom: 10px;
    font-size: .9rem;
}

.apple-card {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 16px;
    padding: 15px;
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.05), inset -3px -3px 8px rgba(255,255,255,0.7), 6px 6px 16px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .apple-card:hover {
        transform: translateY(-4px);
        box-shadow: inset 3px 3px 10px rgba(0,0,0,0.06), inset -3px -3px 10px rgba(255,255,255,0.8), 10px 10px 25px rgba(0,0,0,0.12);
    }

.chapters-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* masaüstü 3 kolon */
    gap: 40px;
    padding-right: 10px; /* tasarım dengesi için */
}

.chapter-block {
    break-inside: avoid;
    margin-bottom: 25px;
    padding-left: 12px;
    border-left: 4px solid var(--orange);
}

    .chapter-block h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .chapter-block ul {
        padding-left: 0;
        list-style: none;
    }

    .chapter-block li {
        font-size: .92rem;
        margin-bottom: 4px;
        color: #222;
    }

@media (max-width: 768px) {
    .chapters-wrapper {
        grid-template-columns: 1fr;
    }
}

.purchase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px; /* biraz küçüldü */
    padding: 16px 14px; /* 🔽 asıl fark burada */
    text-decoration: none;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: all .25s ease;
    height: 100%;
    text-align: center;
}

/* LOGO ALANI */
.purchase-logo {
    height: 80px; /* 🔽 60 → 44 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* 🔽 14 → 8 */
}

    /* LOGO */
    .purchase-logo img {
        max-height: 120px; /* 🔽 100 → 28 (kritik) */
        max-width: 100%;
        object-fit: contain;
    }


/* HOVER – DAHA HAFİF */
.purchase-card:hover {
    transform: translateY(-3px); /* 🔽 6 → 3 */
    box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}

