/* =====================================================================
   GoreWin — "Hakkında" bölümü + kapanış CTA
   ===================================================================== */

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
}
.about__title { text-align: left; margin-bottom: 18px; }
.about__copy p { color: var(--muted); font-size: 15.5px; }
.about__copy strong { color: var(--text-strong); }

.about__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about__points {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 12px;
}
.about__points li {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), border-color .28s ease;
}
.about__points li:hover { transform: translateX(5px); border-color: var(--accent-line); }

.about__points span {
    grid-row: 1 / 3;
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-line);
    color: var(--accent-text);
    font-size: 17px;
}
.about__points b {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-head);
    font-size: 15.5px;
    color: var(--text-strong);
}

/* ---------- Kapanış CTA ---------- */
.cta-sec { padding: clamp(52px, 7vw, 96px) 0; }

.cta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(30px, 4vw, 52px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #001325;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: var(--shadow-lg);
}
.cta__glow { display: none; }
.cta__copy { position: relative; max-width: 560px; }
.cta__copy h2 {
    color: #ffffff;
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 8px;
}
.cta__copy p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 15.5px;
}
.cta__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
/* Koyu kart üstündeki hayalet buton her iki temada da okunur kalsın */
.cta__actions .btn--ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .22);
    color: #ffffff;
    box-shadow: none;
}
.cta__actions .btn--ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(214, 255, 65, .45);
    color: var(--lime);
}

@media (max-width: 940px) {
    .about__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cta { flex-direction: column; align-items: flex-start; }
    .cta__actions { width: 100%; }
    .cta__actions .btn { flex: 1; }
}
