/* ============================================================
   Hakkımızda Sayfası — hk- scope
   Light theme | #E91E63 accent | Nunito font
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hk-hero {
    background: #fff;
    padding: 140px 0 88px;
    position: relative;
    overflow: hidden;
}
.hk-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(233,30,99,.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.hk-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233,30,99,.08);
    color: #E91E63;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hk-hero__title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #111827;
    margin-bottom: 20px;
}
.hk-hero__title em { color: #E91E63; font-style: normal; }
.hk-hero__desc {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
}
.hk-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hk-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #E91E63; color: #fff;
    padding: 14px 28px; border-radius: 14px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(233,30,99,.28);
}
.hk-btn-primary:hover { background: #C2185B; transform: translateY(-2px); color: #fff; }
.hk-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: #f3f4f6; color: #374151;
    padding: 14px 28px; border-radius: 14px;
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: all .2s ease;
    border: 1.5px solid #e5e7eb;
}
.hk-btn-outline:hover { background: #fff; border-color: #E91E63; color: #E91E63; transform: translateY(-2px); }

/* Hero Bento Grid */
.hk-hero__bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}
.hk-bento-main {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}
.hk-bento-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.12) 0%, transparent 55%);
}
.hk-bento-main__badge {
    background: rgba(255,255,255,.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}
.hk-bento-main__text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    max-width: 260px;
    position: relative; z-index: 1;
}
.hk-bento-main__watermark {
    position: absolute;
    right: 24px; bottom: 14px;
    font-size: 64px;
    font-weight: 900;
    color: rgba(255,255,255,.1);
    line-height: 1;
    letter-spacing: -3px;
    z-index: 0;
}
.hk-bento-stat {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hk-bento-stat:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.hk-bento-stat__icon {
    width: 38px; height: 38px;
    background: rgba(233,30,99,.08);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #E91E63;
    font-size: 15px;
    margin-bottom: 10px;
}
.hk-bento-stat__num {
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    letter-spacing: -1px;
}
.hk-bento-stat__lbl {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    margin-top: 4px;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.hk-stats {
    background: #1d1d1f;
    padding: 44px 0;
}
.hk-stats__row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.hk-sstat { text-align: center; flex: 1 1 140px; }
.hk-sstat__icon { font-size: 20px; color: #E91E63; margin-bottom: 8px; }
.hk-sstat__num {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.hk-sstat__lbl {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    color: rgba(255,255,255,.5) !important;
    -webkit-text-fill-color: rgba(255,255,255,.5) !important;
}
.hk-sstat-sep {
    width: 1px; height: 40px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ── Section Globals ─────────────────────────────────────── */
.hk-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #E91E63;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hk-section-h2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hk-section-lead {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.75;
    max-width: 580px;
}

/* ── Hikayemiz / Timeline ─────────────────────────────────── */
.hk-story { background: #f9fafb; padding: 96px 0; }

.hk-timeline {
    position: relative;
    margin-top: 64px;
}
.hk-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e5e7eb 10%, #e5e7eb 90%, transparent);
    transform: translateX(-50%);
}
.hk-tl-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0 24px;
    align-items: start;
    margin-bottom: 48px;
}
.hk-tl-item:last-child { margin-bottom: 0; }
.hk-tl-content {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 26px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: box-shadow .2s ease, transform .2s ease;
}
.hk-tl-content:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.hk-tl-item.hk-tl-right .hk-tl-content { grid-column: 3; grid-row: 1; }
.hk-tl-item.hk-tl-left  .hk-tl-content { grid-column: 1; grid-row: 1; }
.hk-tl-center {
    grid-column: 2; grid-row: 1;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 22px;
}
.hk-tl-dot {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px;
    box-shadow: 0 4px 12px rgba(233,30,99,.3);
    flex-shrink: 0;
    position: relative; z-index: 1;
}
.hk-tl-year {
    display: inline-block;
    background: rgba(233,30,99,.08);
    color: #E91E63;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.hk-tl-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 8px; }
.hk-tl-text  { font-size: 14px; color: #6b7280; line-height: 1.65; margin: 0; }
/* right-side items: empty left cell */
.hk-tl-item.hk-tl-right .hk-tl-spacer { grid-column: 1; }
.hk-tl-item.hk-tl-left  .hk-tl-spacer { grid-column: 3; }

/* ── Değerlerimiz ─────────────────────────────────────────── */
.hk-values { background: #fff; padding: 96px 0; }
.hk-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.hk-val-card {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 22px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all .25s ease;
}
.hk-val-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E91E63, #C2185B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.hk-val-card:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.09); transform: translateY(-4px); }
.hk-val-card:hover::before { transform: scaleX(1); }
.hk-val-icon {
    width: 52px; height: 52px;
    background: rgba(233,30,99,.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: #E91E63;
    font-size: 20px;
    margin-bottom: 18px;
    transition: background .2s;
}
.hk-val-card:hover .hk-val-icon { background: rgba(233,30,99,.14); }
.hk-val-title { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 10px; }
.hk-val-text  { font-size: 14px; color: #6b7280; line-height: 1.7; margin: 0; }

/* ── Neden Biz ────────────────────────────────────────────── */
.hk-why { background: #f9fafb; padding: 96px 0; }
.hk-why__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 0;
}
.hk-why__left .hk-section-lead { max-width: 100%; }
.hk-why__list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.hk-why__item {
    display: flex; gap: 14px; align-items: flex-start;
}
.hk-why__item-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(233,30,99,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #E91E63; font-size: 14px;
    margin-top: 2px;
}
.hk-why__item-body {}
.hk-why__item-title { font-size: 15px; font-weight: 800; color: #111827; margin-bottom: 3px; }
.hk-why__item-text  { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
.hk-why__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.hk-why-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all .2s ease;
}
.hk-why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }
.hk-why-card__num {
    font-size: 32px; font-weight: 900;
    color: #E91E63; line-height: 1;
    letter-spacing: -1px;
}
.hk-why-card__lbl { font-size: 12px; font-weight: 700; color: #6b7280; margin-top: 6px; line-height: 1.4; }
.hk-why-card--pink {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    border-color: transparent;
}
.hk-why-card--pink .hk-why-card__num {
    color: #fff !important; -webkit-text-fill-color: #fff !important;
}
.hk-why-card--pink .hk-why-card__lbl {
    color: rgba(255,255,255,.75) !important;
    -webkit-text-fill-color: rgba(255,255,255,.75) !important;
}

/* ── CTA ──────────────────────────────────────────────────── */
.hk-cta {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.hk-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 24px 24px;
}
.hk-cta__inner { position: relative; z-index: 1; text-align: center; }
.hk-cta__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9) !important;
    -webkit-text-fill-color: rgba(255,255,255,.9) !important;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hk-cta__title {
    font-size: clamp(26px, 4vw, 46px); font-weight: 800;
    color: #fff !important; -webkit-text-fill-color: #fff !important;
    letter-spacing: -1px; margin-bottom: 14px;
}
.hk-cta__sub {
    font-size: 16px; line-height: 1.6; margin-bottom: 36px;
    color: rgba(255,255,255,.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,.85) !important;
}
.hk-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hk-cta-btn-solid {
    background: #fff;
    color: #E91E63 !important; -webkit-text-fill-color: #E91E63 !important;
    padding: 14px 30px; border-radius: 14px;
    font-weight: 800; font-size: 15px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s ease;
}
.hk-cta-btn-solid:hover {
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15);
    color: #C2185B !important; -webkit-text-fill-color: #C2185B !important;
    text-decoration: none;
}
.hk-cta-btn-ghost {
    background: transparent;
    color: #fff !important; -webkit-text-fill-color: #fff !important;
    padding: 14px 30px; border-radius: 14px;
    font-weight: 800; font-size: 15px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid rgba(255,255,255,.5);
    transition: all .2s ease;
}
.hk-cta-btn-ghost:hover {
    border-color: #fff; background: rgba(255,255,255,.1);
    color: #fff !important; -webkit-text-fill-color: #fff !important;
    transform: translateY(-2px); text-decoration: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .hk-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .hk-hero { padding: 120px 0 56px; }
    .hk-hero__bento { display: none; }
    .hk-timeline::before { left: 22px; }
    .hk-tl-item { grid-template-columns: 44px 1fr; }
    .hk-tl-center { grid-column: 1; padding-top: 0; }
    .hk-tl-item.hk-tl-right .hk-tl-content,
    .hk-tl-item.hk-tl-left  .hk-tl-content { grid-column: 2; }
    .hk-tl-spacer { display: none; }
    .hk-why__layout { grid-template-columns: 1fr; gap: 40px; }
    .hk-why__right { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .hk-story, .hk-values, .hk-why, .hk-cta { padding: 64px 0; }
    .hk-values__grid { grid-template-columns: 1fr; }
    .hk-hero__ctas { flex-direction: column; }
    .hk-hero__ctas a { text-align: center; justify-content: center; }
    .hk-sstat-sep { display: none; }
    .hk-cta__btns { flex-direction: column; align-items: center; }
    .hk-cta-btn-solid, .hk-cta-btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
}
