/* ==========================================================================
   ÖZELLİKLER SAYFASI — Premium Redesign
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ozellik-hero {
    text-align: center;
    padding-bottom: 1rem;
}
.ozellik-hero .hero-desc {
    margin-inline: auto;
    max-width: 600px;
}

/* ── Feature Section Wrapper ─────────────────────────────────────────────── */
.feature-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.feature-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.feature-section.alt-bg {
    background: linear-gradient(
        180deg,
        rgba(var(--brand-primary-rgb), 0.03) 0%,
        transparent 100%
    );
}
[data-mode="dark"] .feature-section.alt-bg {
    background: linear-gradient(
        180deg,
        rgba(var(--brand-primary-rgb), 0.06) 0%,
        transparent 100%
    );
}

/* ── Bento Split Grid ─────────────────────────────────────────────────────── */
.bento-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.bento-split.flip { direction: rtl; }
.bento-split.flip > * { direction: ltr; }

@media (max-width: 1024px) {
    .bento-split {
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    .bento-split,
    .bento-split.flip {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2.5rem;
    }
}

/* ── Content Side ─────────────────────────────────────────────────────────── */
.bento-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-primary);
    opacity: 0.7;
}
[data-mode="dark"] .feature-number { opacity: 0.9; }
.feature-number span {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(var(--brand-primary-rgb), 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}

.bento-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0;
}

.bento-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
    max-width: 480px;
}

/* ── Feature Chips ────────────────────────────────────────────────────────── */
.feature-chips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.chip {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(var(--brand-primary-rgb), 0.04);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: default;
}
.chip:hover {
    background: rgba(var(--brand-primary-rgb), 0.08);
    border-color: rgba(var(--brand-primary-rgb), 0.2);
    transform: translateX(4px);
}
[data-mode="dark"] .chip {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.07);
}
[data-mode="dark"] .chip:hover {
    background: rgba(var(--brand-primary-rgb), 0.12);
    border-color: rgba(var(--brand-primary-rgb), 0.25);
}
.chip-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(var(--brand-primary-rgb), 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
[data-mode="dark"] .chip-icon {
    background: rgba(var(--brand-primary-rgb), 0.2);
}
.chip-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}
.chip-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Visual Side ──────────────────────────────────────────────────────────── */
.bento-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow dekor */
.bento-visual::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-primary-rgb), 0.15), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* ── Mock Card Base ───────────────────────────────────────────────────────── */
.mock-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow:
        0 4px 6px rgba(0,0,0,0.03),
        0 20px 60px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.mock-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 8px 12px rgba(0,0,0,0.05),
        0 32px 80px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.8);
}
[data-mode="dark"] .mock-card {
    background: rgba(20,22,28,0.7);
    border-color: rgba(255,255,255,0.08);
    box-shadow:
        0 4px 6px rgba(0,0,0,0.2),
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.04);
}
[data-mode="dark"] .mock-card:hover {
    box-shadow:
        0 8px 12px rgba(0,0,0,0.3),
        0 32px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Yüzen aksan rozet */
.mock-badge-float {
    position: absolute;
    top: -14px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.mock-badge-float.green {
    background: #27c93f;
    color: #fff;
}
.mock-badge-float.purple {
    background: var(--brand-primary);
    color: #fff;
}
.mock-badge-float.orange {
    background: var(--brand-accent);
    color: #fff;
}

/* ── Mock: Soru Duvarı ────────────────────────────────────────────────────── */
.mock-soru-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 1.1rem;
}
[data-mode="dark"] .mock-soru-header { border-color: rgba(255,255,255,0.06); }
.mock-soru-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(var(--brand-primary-rgb), 0.2);
}
.mock-soru-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mock-soru-meta { flex: 1; }
.mock-soru-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}
.mock-soru-name em {
    font-style: normal;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}
.mock-soru-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.mock-soru-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.mock-tag {
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}
.mock-tag.purple { background: rgba(var(--brand-primary-rgb), 0.1); color: var(--brand-primary); }
.mock-tag.gray   { background: rgba(0,0,0,0.05); color: var(--text-muted); }
[data-mode="dark"] .mock-tag.gray { background: rgba(255,255,255,0.07); color: var(--text-muted); }

.mock-soru-body {
    margin-bottom: 1.1rem;
}
.mock-soru-body p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.mock-soru-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.mock-soru-option {
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text-main);
    transition: background 0.15s;
}
.mock-soru-option.correct {
    background: rgba(39,201,63,0.1);
    border-color: rgba(39,201,63,0.3);
    color: #19a832;
}
[data-mode="dark"] .mock-soru-option.correct { color: #27c93f; }
[data-mode="dark"] .mock-soru-option {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.07);
}

.mock-soru-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}
[data-mode="dark"] .mock-soru-footer { border-color: rgba(255,255,255,0.05); }
.mock-soru-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.mock-soru-stats span { display: flex; align-items: center; gap: 0.3rem; }
.mock-soru-btn {
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.mock-soru-btn:hover { opacity: 0.85; }

/* ── Mock: Analiz Chart ───────────────────────────────────────────────────── */
.mock-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.mock-chart-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mock-chart-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}
.mock-chart-delta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #19a832;
    background: rgba(39,201,63,0.1);
    border-radius: var(--radius-full);
    padding: 0.2rem 0.6rem;
}
[data-mode="dark"] .mock-chart-delta { color: #27c93f; }
.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1.5rem;
}
.mock-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: rgba(var(--brand-primary-rgb), 0.12);
    transition: height 1s ease;
    position: relative;
}
[data-mode="dark"] .mock-bar {
    background: rgba(var(--brand-primary-rgb), 0.2);
}
.mock-bar.active {
    background: linear-gradient(0deg, var(--brand-primary), rgba(var(--brand-primary-rgb), 0.6));
}
.mock-bar-label {
    position: absolute;
    bottom: -1.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
.mock-ai-tip {
    padding: 0.9rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(var(--brand-primary-rgb), 0.08);
    border: 1px solid rgba(var(--brand-primary-rgb), 0.15);
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.5;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}
.mock-ai-tip-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Mock: Atama Robotu ───────────────────────────────────────────────────── */
.mock-atama-search {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.mock-atama-input {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(var(--brand-primary-rgb), 0.2);
    background: rgba(var(--brand-primary-rgb), 0.04);
    font-size: 0.85rem;
    color: var(--text-main);
    font-family: inherit;
}
[data-mode="dark"] .mock-atama-input {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: var(--text-main);
}
.mock-atama-btn {
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.mock-atama-btn:hover { opacity: 0.85; }
.mock-atama-rows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.mock-atama-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.025);
    border: 1px solid rgba(0,0,0,0.05);
}
[data-mode="dark"] .mock-atama-row {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
}
.mock-atama-row-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.mock-atama-row-val {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
}
.mock-atama-row-val.primary { background: rgba(var(--brand-primary-rgb), 0.12); color: var(--brand-primary); }
.mock-atama-row-val.gold    { background: rgba(245,158,11,0.12); color: #d97706; }
.mock-atama-row-val.gray    { background: rgba(0,0,0,0.05); color: var(--text-muted); }
[data-mode="dark"] .mock-atama-row-val.gray { background: rgba(255,255,255,0.08); }

/* ── Mock: Profil ─────────────────────────────────────────────────────────── */
.mock-profile-cover {
    height: 90px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, #9b59b6 50%, var(--brand-accent) 100%);
    margin: -1.75rem -1.75rem 0;
    position: relative;
}
.mock-profile-av {
    width: 68px; height: 68px;
    border-radius: 50%;
    border: 3px solid var(--card-bg, #fff);
    overflow: hidden;
    margin: -34px auto 0.75rem;
    position: relative;
    z-index: 1;
}
[data-mode="dark"] .mock-profile-av { border-color: rgba(20,22,28,1); }
.mock-profile-av img { width: 100%; height: 100%; object-fit: cover; }
.mock-profile-body { text-align: center; }
.mock-profile-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.mock-profile-role {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.2rem 0 1rem;
}
.mock-badges-row {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.1rem;
}
.mock-badge-pill {
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}
.mock-badge-pill.blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
.mock-badge-pill.green  { background: rgba(39,201,63,0.1);  color: #19a832; }
.mock-badge-pill.orange { background: rgba(var(--brand-accent-rgb, 212,98,42), 0.1); color: var(--brand-accent); }
[data-mode="dark"] .mock-badge-pill.green { color: #27c93f; }
.mock-profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}
[data-mode="dark"] .mock-profile-stats { border-color: rgba(255,255,255,0.06); }
.mock-stat {
    text-align: center;
}
.mock-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
}
.mock-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ── Section Divider ──────────────────────────────────────────────────────── */
.feature-divider {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-primary), transparent);
    margin-bottom: 0.25rem;
}

/* ── Responsive tweaks ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .feature-section { padding: 4rem 0; }
    .bento-visual { order: -1; }
    .bento-split.flip .bento-visual { order: -1; }
    .mock-card { max-width: 100%; }
    .bento-desc { max-width: 100%; }
    .chip:hover { transform: none; }
}
