/* Hakkımızda modülü — mevcut style.css değişkenleriyle uyumlu */

.about-page-header {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--gray-dark) 100%);
    color: var(--white);
    text-align: center;
}

.about-page-header .page-title {
    color: var(--primary-yellow);
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.about-page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0 70px;
    background: var(--white);
}

.about-prose {
    max-width: 820px;
    margin: 0 auto;
}

.about-prose p {
    color: var(--gray-medium);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-why {
    padding: 70px 0 64px;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--primary-black) 45%, #111 100%);
    color: var(--white);
}

.about-why .section-title {
    color: var(--white);
}

.about-why .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.5rem;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-why-card {
    background: linear-gradient(145deg, #161616 0%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 26px 22px 24px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-why-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-yellow);
    box-shadow: 0 18px 40px rgba(255, 215, 0, 0.14);
}

.about-why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-why-card:hover .about-why-card-icon {
    transform: scale(1.08);
    border-color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.12);
}

.h-icon-about {
    width: 1.65rem;
    height: 1.65rem;
    color: var(--primary-yellow);
    transition: transform 0.35s ease;
}

.about-why-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    line-height: 1.15;
    margin-bottom: 4px;
}

.about-why-card-title {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.about-why-card-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.about-bottom {
    padding: 0 0 80px;
    background: linear-gradient(180deg, #111 0%, var(--primary-black) 100%);
}

.about-bottom-inner {
    max-width: 920px;
    margin: 0 auto;
}

.about-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.45), transparent);
    margin: 0 0 36px;
}

.about-ready-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.about-cta {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.about-cta-heading {
    color: var(--primary-yellow);
    font-size: 1.55rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-cta-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    line-height: 1.65;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 12px 22px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    min-height: 46px;
}

.about-cta-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.about-cta-whatsapp:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.about-cta-phone {
    background: transparent;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.about-cta-phone:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--white);
    transform: translateY(-3px);
}

.about-cta-primary {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}

.about-cta-primary:hover {
    background: transparent;
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

@media (max-width: 992px) {
    .about-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        padding: 110px 0 32px;
    }

    .about-page-header .page-title {
        font-size: 1.85rem;
    }

    .about-page-header .page-subtitle {
        font-size: 0.92rem;
    }

    .about-content {
        padding: 32px 0 36px;
    }

    .about-prose p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }

    .about-why {
        padding: 36px 0 32px;
    }

    .about-why .section-title {
        font-size: 1.65rem;
    }

    .about-why .section-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1.1rem;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .about-why-card {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .about-why-card:hover {
        transform: translateY(-3px);
    }

    .about-why-card-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .h-icon-about {
        width: 1.15rem;
        height: 1.15rem;
    }

    .about-why-stat {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .about-why-card-title {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .about-why-card-desc {
        font-size: 0.72rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .about-bottom {
        padding-bottom: 40px;
    }

    .about-ready-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .about-cta {
        padding: 22px 16px;
    }

    .about-cta-heading {
        font-size: 1.25rem;
    }

    .about-cta-text {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-cta-btn {
        width: 100%;
        min-height: 42px;
        font-size: 0.88rem;
        padding: 10px 16px;
    }
}

@media (max-width: 400px) {
    .about-why-grid {
        gap: 8px;
    }

    .about-why-card {
        padding: 10px 8px;
    }

    .about-why-stat {
        font-size: 1.05rem;
    }

    .about-why-card-title {
        font-size: 0.75rem;
    }

    .about-why-card-desc {
        font-size: 0.68rem;
        -webkit-line-clamp: 2;
    }
}
