﻿/* ── BADGES ── */
.modal-badge-no {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px 12px;
}

.modal-badge-hizmet {
    font-size: 11px;
    background: rgba(107, 63, 160, 0.2);
    color: #a78bca;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modal-badge-egitim {
    font-size: 11px;
    background: rgba(232, 64, 0, 0.15);
    color: #f87171;
    border: 1px solid rgba(232, 64, 0, 0.25);
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modal-badge-trend {
    font-size: 11px;
    background: rgba(186, 117, 23, 0.18);
    color: #EF9F27;
    border: 1px solid rgba(186, 117, 23, 0.28);
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.modal-badge-analiz {
    font-size: 11px;
    background: rgba(29, 158, 117, 0.18);
    color: #5DCAA5;
    border: 1px solid rgba(29, 158, 117, 0.25);
    border-radius: 20px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ── HEADER ── */
.modal-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-header-icon i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: .3px;
}

.modal-lead {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.modal-quote {
    border-left: 2px solid #6B3FA0;
    padding: 8px 14px;
    margin: 0;
    background: rgba(107, 63, 160, 0.08);
    border-radius: 0 8px 8px 0;
    color: #a78bca;
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
}

/* ── DIVIDER ── */
.modal-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 1.25rem 0;
}

/* ── SERVICE CARD ── */
.modal-service-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: .9rem 1rem;
    transition: .2s;
}

.modal-service-card:hover {
    border-color: rgba(107, 63, 160, 0.4);
    background: rgba(107, 63, 160, 0.07);
}

.msc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msc-icon i {
    font-size: 16px;
    color: #fff;
}

.msc-tag {
    font-size: 10px;
    background: rgba(107, 63, 160, 0.2);
    color: #a78bca;
    border: 1px solid rgba(107, 63, 160, 0.25);
    border-radius: 20px;
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 5px;
}

.msc-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
}

.msc-text {
    color: rgba(255, 255, 255, 0.4);
    /* font-size: 14px; */
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ── LIST CARD (Eğitim) ── */
.modal-list-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1rem;
}

.modal-list-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.modal-list-head-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-list-head-icon i {
    font-size: 15px;
    color: #fff;
}

.modal-list-head-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.modal-styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.5;
}

.modal-styled-list li:first-child {
    border-top: none;
}

.modal-li-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    flex-shrink: 0;
    margin-top: 5px;
}

/* ── NOTE BOX ── */
.modal-note-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: .85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.modal-note-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(107, 63, 160, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-note-icon i {
    font-size: 14px;
    color: #8B5CC8;
}

.modal-note-text {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}

/* ── FOOTER BUTTONS ── */
.btn-modal-contact {
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
}

.btn-modal-contact:hover {
    background: linear-gradient(135deg, #4A2D85, #8B5CC8);
    color: #fff;
}

.btn-modal-close {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 13px;
}

.btn-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.msc-subtitle {
    font-size: 12px;
    color: #8B5CC8;
    font-style: italic;
    margin: 0 0 6px;
    line-height: 1.5;
}

/* ── MODAL DETAIL (fullscreen layout) ── */
.modal-detail {
    width: 95%;
    /* Ekran genişliğinin %95'ini kaplasın */
    max-width: 1400px;
    /* Çok büyük ekranlarda (örn: 4K) devasa olmasın diye üst sınır (isteğe bağlı arttırılabilir) */
    margin: 2rem auto;
    /* Üstten/alttan 2rem boşluk bırakır, sağdan/soldan otomatik ortalar */
    padding: 1rem 2rem 3rem;
    /* İçerik kenarlara yapışmasın diye sağa ve sola da padding (2rem) ekledik */
}

.modal-detail-grid {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 130px;
    align-items: start;
}

@media (max-width: 991px) {
    .modal-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.modal-detail-intro {
    position: sticky;
    top: 1rem;
}

@media (max-width: 991px) {
    .modal-detail-intro {
        position: static;
    }
}

.modal-detail-title {
    color: #fff;
    font-size: 2.25rem;
    /* font-weight: 800; */
    margin: 0 0 1.25rem;
    letter-spacing: -0.5px;
}

@media (max-width: 575px) {
    .modal-detail-title {
        font-size: 1.75rem;
    }
}

.modal-detail-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.modal-detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3D2270, #6B3FA0);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all .3s ease;
}

.modal-detail-cta i {
    font-size: 1rem;
}

.modal-detail-cta:hover {
    background: linear-gradient(135deg, #4A2D85, #8B5CC8);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 63, 160, 0.4);
}

/* ── ACCORDION ── */
.modal-detail-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-acc-item {
    /* background: rgba(255, 255, 255, 0.03); */
    background: linear-gradient(180deg,
            color-mix(in srgb, #16182b, white 6%) 0%, #16182b 45%,
            color-mix(in srgb, #16182b, black 22%) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}

.modal-acc-item.is-open {
    border-color: rgba(107, 63, 160, 0.4);
    /* background: rgba(107, 63, 160, 0.06); 
    */
    background: linear-gradient(180deg,
            color-mix(in srgb, #16182b, white 6%) 0%, #16182b 45%,
            color-mix(in srgb, #16182b, black 22%) 100%);
}

.modal-acc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
}

.modal-acc-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #6B3FA0;
    flex-shrink: 0;
    min-width: 2ch;
}

.modal-acc-heading {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.modal-acc-tag {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    background: rgba(107, 63, 160, 0.2);
    color: #a78bca;
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
}

.modal-acc-title {
    /* color: #fff; */
    color: var(--accent-color);
    font-size: 1.90rem;
    font-weight: 700;
}

.modal-acc-chevron {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: transform .3s ease, color .3s ease;
}

.modal-acc-toggle[aria-expanded="true"] .modal-acc-chevron {
    color: #a78bca;
    transform: rotate(180deg);
}

.modal-acc-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.modal-acc-body p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.5rem;
    line-height: 1.75;
    margin: 0;
}

.modal-acc-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 0 1rem;
}

.modal-acc-group-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 4px 0;
    color: #a78bca;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.0px;
    text-transform: uppercase;
}

.modal-acc-group-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(167, 139, 202, 0.4), rgba(255, 255, 255, 0.06));
}

@media (max-width: 575px) {
    .modal-acc-toggle {
        gap: 12px;
        padding: 1rem;
    }

    .modal-acc-body {
        padding: 0 1rem 1.25rem 1rem;
    }

    .modal-acc-num {
        font-size: 1.25rem;
    }

    .modal-acc-title {
        font-size: 1rem;
    }
}

/* ── M_ARKANA BAK SECTION (homepage) ── */
.markanabak-top {
    margin-bottom: 2.5rem;
}

.markanabak-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.markanabak-eyebrow::after {
    content: "";
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.markanabak-title {
    color: #fff;
   font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 1.1rem;
}

.markanabak-title sup {
    font-size: 0.32em;
    top: -1.4em;
    font-weight: 600;
}

.markanabak-subtitle {
    color: var(--accent-color);
    font-style: italic;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    line-height: 1.5;
    margin: 0 0 1.75rem;
}

.markanabak-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 1rem;
    max-width: 640px;
}

.markanabak-desc:last-child {
    margin-bottom: 0;
}

/* X constellation visual */
.markanabak-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.markanabak-x {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(110, 116, 196, 0.35));
}

/* Bottom cards */
.markanabak-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1.5rem;
}

.markanabak-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.markanabak-card:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.mb-card-head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.6rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.mb-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 82%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.mb-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1 1 auto;
    min-width: 0;
}

.mb-card-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.mb-card-teaser {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.5;
}

.mb-card-chevron {
    flex-shrink: 0;
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: transform 0.3s ease, color 0.25s ease;
}

.mb-card-head:not(.collapsed) .mb-card-chevron {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.mb-card-body {
    padding: 0 1.6rem 1.6rem;
}

.mb-card-body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.mb-card-body p:last-child {
    margin-bottom: 0;
}

.mb-card-output {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mb-card-output span {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 991px) {
    .markanabak-visual {
        margin-top: 2rem;
    }

    .markanabak-cards {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ / YAKLAŞIM SECTION (homepage) ── */
.faq-9.faq .faq-intro {
    padding-right: 2rem;
}

.faq-9.faq .faq-title {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 1.5rem;
}

.faq-9.faq .faq-divider {
    width: 54px;
    height: 4px;
    border-radius: 4px;
    background: var(--accent-color);
    margin-bottom: 1.5rem;
}

.faq-9.faq .faq-subtitle {
    color: var(--accent-color);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1.5rem;
}

.faq-9.faq .faq-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0;
    max-width: 460px;
}

/* Curved arrow + big X logo */
.faq-x-visual {
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.faq-curve-arrow {
    color: var(--accent-color);
    opacity: 0.85;
    flex-shrink: 0;
}

.faq-x-logo {
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    font-size: 6rem;
    line-height: 0.8;
    background: linear-gradient(160deg, #8f95e6 0%, #6e74c4 45%, #4b50a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 12px 30px rgba(110, 116, 196, 0.5));
}

.faq-x-logo sup {
    font-size: 0.32em;
    font-weight: 700;
    top: -1.9em;
}

/* Right column cards */
.faq-x-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-x-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-x-item:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.faq-x-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-x-ico {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    display: grid;
    place-items: center;
}

.faq-x-ico svg {
    width: 100%;
    height: 100%;
}

.faq-x-sep {
    flex-shrink: 0;
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.12);
}

.faq-x-heading {
    flex: 1 1 auto;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-x-chev {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    transition: transform 0.3s ease, color 0.25s ease;
}

.faq-x-head:not(.collapsed) .faq-x-chev {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.faq-x-detail {
    padding: 0 1.75rem 1.6rem calc(48px + 1.5rem + 1.75rem);
}

.faq-x-detail p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.97rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991px) {
    .faq-9.faq .faq-intro {
        padding-right: 0;
    }

    .faq-9.faq .faq-description {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .faq-x-head {
        gap: 1rem;
        padding: 1.25rem 1.25rem;
    }

    .faq-x-sep {
        display: none;
    }

    .faq-x-detail {
        padding: 0 1.25rem 1.3rem calc(48px + 1rem + 1.25rem);
    }
}

/* ── HAKKIMIZDA / ABOUT SECTION (homepage) ── */
.about-section .about-top {
    margin-bottom: 3rem;
}

.about-heading {
    color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 1.5rem;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 1.5rem;
}

.about-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 1rem;
    max-width: 620px;
}

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

.about-visual {
    display: flex;
    justify-content: center;
}

.about-graphic {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 0 45px rgba(110, 116, 196, 0.28));
}

/* Cards */
.about-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 2rem 1.9rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.about-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 86%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about-card-icon svg {
    width: 32px;
    height: 32px;
}

.about-card-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin: 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.97rem;
    line-height: 1.5;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.about-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.about-list-lined li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

/* Referanslar button */
.about-actions {
    margin-top: 2.5rem;
}

.about-ref-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.8rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    border-radius: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.about-ref-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.about-ref-btn i {
    transition: transform 0.25s ease;
}

.about-ref-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {

    .about-subtitle,
    .about-desc {
        max-width: 100%;
    }

    .about-actions {
        text-align: center;
    }
}

/* ── HEADER: transparent at top, subtle backdrop on scroll ── */
body.scrolled .header {
    background-color: rgba(3, 17, 25, 0.72);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}