/* ============ HAKKIMIZDA SAYFASI ============ */
.ab {
    background: var(--blush);
}

.ab-crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--rose-deep);
    padding: 22px 11px 0;
}

.ab-crumbs a:hover {
    text-decoration: underline;
}

.ab-crumbs span {
    color: var(--ink-40);
}

.ab-crumbs b {
    font-weight: 400;
    color: var(--ink-60);
}

/* ---- hero ---- */
.ab-hero {
    padding: 40px 0 96px;
    position: relative;
    overflow: hidden;
}

.ab-hero__grid {
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    gap: 56px;
    align-items: center;
}

.ab-hero__media {
    position: relative;
}

.ab-hero__ph {
    border-radius: var(--r-lg);
    aspect-ratio: 4/5;
    box-shadow: var(--sh-3);
}

.ab-hero__ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-hero__badge {
    position: absolute;
    left: -22px;
    bottom: -22px;
    background: #fff;
    border-radius: var(--r-md);
    box-shadow: var(--sh-2);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 250px;
}

.ab-hero__badge svg {
    flex: none;
    width: 30px;
    height: 30px;
    stroke: var(--rose-deep);
    stroke-width: 1.5;
    fill: none;
}

.ab-hero__badge b {
    display: block;
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--ink);
}

.ab-hero__badge span {
    font-size: 12px;
    color: var(--ink-60);
}

.ab-hero__text .h-sec {
    margin-top: 14px;
}

.ab-hero__body {
    margin-top: 20px;
    color: var(--ink-60);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 56ch;
}

.ab-hero__body p {
    margin-bottom: 14px;
}

.ab-hero__body p:last-child {
    margin-bottom: 0;
}

.ab-founder {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ab-founder__sig {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--plum);
    line-height: 1;
}

.ab-founder__meta {
    border-left: 1px solid var(--line);
    padding-left: 16px;
}

.ab-founder__meta b {
    display: block;
    font-size: 14px;
    color: var(--ink);
}

.ab-founder__meta span {
    font-size: 12px;
    color: var(--ink-40);
}

.ab-hero__acts {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---- misyon / vizyon şeridi ---- */
.ab-mission {
    padding: 0 0 96px;
}

.ab-mission__box {
    position: relative;
    background: linear-gradient(120deg, var(--plum) 0%, var(--wine) 55%, var(--plum-2) 100%);
    border-radius: var(--r-lg);
    padding: 60px 64px;
    color: var(--cream);
    text-align: center;
    overflow: hidden;
}

.ab-mission__box::before {
    content: "”";
    position: absolute;
    top: -40px;
    left: 30px;
    font-family: var(--f-display);
    font-size: 220px;
    color: rgba(255, 249, 245, 0.06);
    line-height: 1;
    pointer-events: none;
}

.ab-mission__box .eyebrow {
    justify-content: center;
    color: var(--rose-soft);
}

.ab-mission__box h2 {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-top: 14px;
    position: relative;
}

.ab-mission__box p {
    max-width: 70ch;
    margin: 18px auto 0;
    color: rgba(255, 249, 245, 0.78);
    font-size: 1.02rem;
    line-height: 1.85;
    position: relative;
}

/* ---- değerlerimiz ---- */
.ab-values {
    padding: 0 0 100px;
}

.ab-values__head {
    text-align: center;
    margin-bottom: 46px;
}

.ab-values__head .eyebrow {
    justify-content: center;
}

.ab-values__head .h-sec {
    margin-top: 14px;
}

.ab-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ab-value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 26px;
    text-align: center;
    box-shadow: var(--sh-1);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.ab-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-2);
}

.ab-value-card__ic {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--rose-soft), var(--sand));
}

.ab-value-card__ic svg {
    width: 26px;
    height: 26px;
    stroke: var(--rose-deep);
    stroke-width: 1.6;
    fill: none;
}

.ab-value-card__no {
    display: block;
    font-family: var(--f-display);
    font-style: italic;
    color: var(--rose-soft);
    -webkit-text-stroke: 1px var(--rose-deep);
    font-size: 13px;
    margin-bottom: 8px;
}

.ab-value-card h3 {
    font-size: 1.1rem;
}

.ab-value-card p {
    margin-top: 10px;
    color: var(--ink-60);
    font-size: 13.7px;
    line-height: 1.7;
}

/* ---- alt CTA ---- */
.ab-cta {
    padding: 0 0 100px;
}

.ab-cta__box {
    background: linear-gradient(150deg, var(--rose-soft), var(--sand));
    border-radius: var(--r-lg);
    padding: 56px 40px;
    text-align: center;
}

.ab-cta__box .h-sec {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.ab-cta__box p {
    margin: 14px auto 26px;
    max-width: 52ch;
    color: var(--ink-60);
}

.ab-cta__acts {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .ab-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-hero__badge {
        left: 16px;
        bottom: -18px;
    }

    .ab-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-mission__box {
        padding: 46px 30px;
    }
}

@media (max-width: 640px) {
    .ab-hero {
        padding: 24px 0 60px;
    }

    .ab-hero__ph {
        aspect-ratio: 4/3.4;
    }

    .ab-hero__badge {
        position: static;
        margin-top: 16px;
        max-width: none;
    }

    .ab-values__grid {
        grid-template-columns: 1fr;
    }

    .ab-mission,
    .ab-values,
    .ab-cta {
        padding-bottom: 64px;
    }

    .ab-cta__box {
        padding: 40px 22px;
    }
}
