/* HCEP KVKK — ana sayfa premium tasarım diline uyumlu */

.home-page .dt-kvkk-modes.section {
    padding-top: 80px;
}

/* ── Mode cards ── */
.dt-kvkk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.dt-kvkk-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-xl, 24px);
    box-shadow: var(--dt-shadow-sm);
    overflow: hidden;
    transition: transform 0.3s var(--dt-ease), box-shadow 0.3s var(--dt-ease), border-color 0.3s var(--dt-ease);
}

.dt-kvkk-card:hover,
.dt-kvkk-card.is-selected {
    transform: translateY(-4px);
    box-shadow: var(--dt-shadow-lg, 0 20px 60px rgba(23, 23, 23, 0.08));
    border-color: rgba(196, 30, 58, 0.2);
}

.dt-kvkk-card--alt:hover,
.dt-kvkk-card--alt.is-selected {
    border-color: rgba(23, 23, 23, 0.2);
}

.dt-kvkk-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.dt-kvkk-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.08);
    color: var(--dt-accent);
}

.dt-kvkk-icon--alt {
    background: rgba(23, 23, 23, 0.06);
    color: var(--dt-ink);
}

.dt-kvkk-icon svg { width: 26px; height: 26px; }

.dt-kvkk-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dt-accent);
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.2);
    padding: 6px 12px;
    border-radius: 99px;
}

.dt-kvkk-badge--alt {
    color: var(--dt-ink);
    background: rgba(23, 23, 23, 0.05);
    border-color: rgba(23, 23, 23, 0.15);
}

.dt-kvkk-card-body { flex: 1; }

.dt-kvkk-card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dt-ink);
    margin: 0 0 6px;
}

.dt-kvkk-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dt-subtle);
    margin: 0 0 20px;
}

.dt-kvkk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dt-kvkk-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--dt-muted);
}

.dt-kvkk-list strong { color: var(--dt-ink); font-weight: 700; }

.dt-kvkk-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.1);
    color: var(--dt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    margin-top: 1px;
}

.dt-kvkk-check--alt {
    background: rgba(23, 23, 23, 0.06);
    color: var(--dt-ink);
}

.dt-kvkk-card-foot {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--dt-border);
}

.dt-kvkk-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dt-ink);
}

.dt-kvkk-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dt-kvkk-status-dot.is-green {
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.dt-kvkk-status-dot.is-ink {
    background: var(--dt-ink);
    box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.1);
}

/* ── Demo toggle ── */
.dt-kvkk-demo-section { background: linear-gradient(180deg, var(--dt-surface) 0%, var(--dt-white) 100%); }

.dt-kvkk-demo {
    max-width: 620px;
    margin: 40px auto 0;
    padding: 28px;
    background: var(--dt-white);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-xl, 24px);
    box-shadow: var(--dt-shadow-md);
}

.dt-kvkk-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 6px;
    background: var(--dt-surface);
    border-radius: 14px;
    margin-bottom: 20px;
}

.dt-kvkk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dt-muted);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s var(--dt-ease), color 0.25s var(--dt-ease), box-shadow 0.25s var(--dt-ease);
}

.dt-kvkk-btn-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 99px;
    background: rgba(23, 23, 23, 0.06);
    color: var(--dt-subtle);
}

.dt-kvkk-btn.active {
    background: var(--dt-white);
    color: var(--dt-ink);
    box-shadow: var(--dt-shadow-sm);
}

.dt-kvkk-btn.active .dt-kvkk-btn-tag {
    background: var(--dt-accent);
    color: #fff;
}

.dt-kvkk-demo-info {
    padding: 18px 20px;
    background: rgba(196, 30, 58, 0.04);
    border: 1px solid rgba(196, 30, 58, 0.12);
    border-radius: 14px;
}

.dt-kvkk-demo-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dt-muted);
}

.dt-kvkk-demo-info strong { color: var(--dt-ink); }

.dt-kvkk-demo-info.is-updating {
    animation: kvkkInfoIn 0.4s var(--dt-ease);
}

@keyframes kvkkInfoIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── IP section ── */
.dt-kvkk-ip { background: var(--dt-white); }
.dt-cap-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
    .dt-kvkk-grid { grid-template-columns: 1fr; }
    .dt-cap-grid--3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .dt-kvkk-demo-info.is-updating { animation: none; }
}
