/* =========================================================
   Şirket Bilgileri — company-info.css
   Scope: .ci-page
   Tüm renkler tx-theme.css, tüm fontlar tx-typography.css
   token'larından çekilir.
   ========================================================= */

.ci-page {
    background: var(--tx-white);
    overflow-x: clip;
}

/* ---------- HERO ---------- */
.ci-hero {
    padding: 50px 0 30px;
    background: var(--tx-white);
}

.ci-hero-inner {
    max-width: 980px;
}

.ci-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--tx-navy-500), transparent 92%);
    color: var(--tx-navy-700);
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-xs);
    font-weight: var(--tx-font-semibold);
    letter-spacing: var(--tx-tracking-wide);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ci-hero-badge i {
    color: var(--tx-navy-500);
}

.ci-hero-title {
    color: var(--tx-navy-900);
    margin: 0 0 16px;
}

.ci-hero-title-accent {
    color: var(--tx-navy-500);
}

.ci-hero-desc {
    color: var(--tx-text-muted);
    margin: 0;
    max-width: 820px;
    font-size: var(--tx-text-base);
    line-height: var(--tx-leading-relaxed);
}

/* ---------- BÖLÜM ---------- */
.ci-section {
    padding: 30px 0 80px;
    background: var(--tx-white);
}

/* ---------- BİLGİ KARTI ---------- */
.ci-card {
    position: relative;
    background: var(--tx-white);
    border: 1px solid var(--tx-cream-soft);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--tx-shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.ci-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tx-shadow-md);
    border-color: var(--tx-navy-100);
}

.ci-card-title {
    color: var(--tx-navy-900);
    font-family: var(--tx-font-display);
    font-size: var(--tx-text-xl);
    font-weight: var(--tx-font-bold);
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 14px;
}

.ci-card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--tx-navy-500) 0%, var(--tx-navy-600) 100%);
}

/* ---------- ETİKET-DEĞER SATIRI ---------- */
.ci-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    border-top: 1px solid var(--tx-cream-soft);
}

.ci-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.ci-label {
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-xs);
    font-weight: var(--tx-font-bold);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--tx-text-muted);
}

.ci-value {
    font-family: var(--tx-font-sans);
    font-size: var(--tx-text-base);
    line-height: var(--tx-leading-relaxed);
    color: var(--tx-navy-900);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
    .ci-hero {
        padding: 36px 0 24px;
    }

    .ci-section {
        padding: 24px 0 60px;
    }

    .ci-card {
        padding: 24px;
    }

    .ci-value {
        font-size: var(--tx-text-sm);
    }
}
