/* ============================================================
   DoreKids Landing — /cocuk-dis-hekimligi/
   Tüm class'lar .dk- prefix'li, sayfa-spesifik.
   Sıcak renk paleti (coral/mint/warm) çocuk içeriği için korunmuş.
   ============================================================ */

.dk-intro,
.dk-tedaviler,
.dk-dorebot,
.dk-yas {
    --dk-primary: #2D2545;
    --dk-accent: #9C6BFF;
    --dk-accent-light: #EDE5FF;
    --dk-warm: #FFF8F0;
    --dk-warm-dark: #FFF0E0;
    --dk-coral: #FF7E6B;
    --dk-mint: #5CD6C8;
    --dk-sky: #64B5F6;
    --dk-yellow: #FFD54F;
    --dk-text: #2D2545;
    --dk-text-light: #6B6480;
    --dk-white: #FFFFFF;
    --dk-bg: #FAFAFE;
    --dk-radius: 8px;
    --dk-radius-lg: 16px;
    --dk-radius-xl: 24px;
    font-family: 'Roboto', sans-serif;
    color: var(--dk-text);
    line-height: 1.6;
}

/* ============ ORTAK BAŞLIK STİLİ ============ */
.dk-section-header,
.dk-yas-header {
    text-align: center;
    margin-bottom: 48px;
}
.dk-section-label,
.dk-yas-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dk-accent-light);
    color: var(--dk-accent);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.dk-section-title,
.dk-yas-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dk-primary);
    line-height: 1.25;
    margin: 0 0 12px;
}
.dk-section-subtitle,
.dk-yas-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--dk-text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   BÖLÜM 1 — INTRO (Dr. Ceyda Tanıtımı)
   ============================================================ */
.dk-intro {
    background: var(--dk-white);
    overflow: hidden;
}
.dk-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}
.dk-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Fotoğraf alanı */
.dk-intro-photo-wrap { position: relative; }
.dk-intro-photo-frame {
    position: relative;
    border-radius: var(--dk-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 37, 69, 0.12);
}
.dk-intro-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Floating badges (3 adet) */
.dk-float-badge {
    position: absolute;
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(45, 37, 69, 0.10);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dk-text);
    z-index: 2;
    animation: dk-float 3s ease-in-out infinite;
}
.dk-float-badge .dk-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.dk-float-badge:nth-child(1) { top: -16px; right: -16px; animation-delay: 0s; }
.dk-float-badge:nth-child(1) .dk-badge-icon { background: var(--dk-accent-light); }
.dk-float-badge:nth-child(2) { bottom: 60px; left: -24px; animation-delay: 1s; }
.dk-float-badge:nth-child(2) .dk-badge-icon { background: #E0F7F5; }
.dk-float-badge:nth-child(3) { bottom: -12px; right: 30px; animation-delay: 2s; }
.dk-float-badge:nth-child(3) .dk-badge-icon { background: #FFF3E0; }

@keyframes dk-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Dekoratif noktalar */
.dk-intro-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--dk-accent) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
    z-index: 0;
}

/* İçerik */
.dk-intro-content { padding: 10px 0; }
.dk-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dk-accent-light);
    color: var(--dk-accent);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.dk-intro-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--dk-primary);
    line-height: 1.2;
    margin: 0 0 6px;
}
.dk-intro-title {
    font-size: 17px;
    font-weight: 400;
    color: var(--dk-accent);
    margin: 0 0 24px;
}
.dk-intro-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.75;
    margin: 0 0 32px;
}

/* İstatistikler */
.dk-intro-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.dk-stat-card {
    flex: 1;
    min-width: 120px;
    background: var(--dk-warm);
    border-radius: var(--dk-radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dk-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(45, 37, 69, 0.08);
}
.dk-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dk-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.dk-stat-card:nth-child(1) .dk-stat-number { color: var(--dk-accent); }
.dk-stat-card:nth-child(2) .dk-stat-number { color: var(--dk-coral); }
.dk-stat-card:nth-child(3) .dk-stat-number { color: var(--dk-mint); }
.dk-stat-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--dk-text-light);
    line-height: 1.4;
}

/* Müsaitlik banner */
.dk-availability {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--dk-primary), #3D3560);
    border-radius: var(--dk-radius-lg);
    padding: 18px 24px;
    color: var(--dk-white);
}
.dk-availability-dot {
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    flex-shrink: 0;
    animation: dk-pulse 2s ease-in-out infinite;
}
@keyframes dk-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50%      { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.dk-availability-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
}
.dk-availability-text strong {
    font-weight: 500;
    display: block;
}
.dk-availability-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dk-accent);
    color: var(--dk-white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--dk-radius);
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.dk-availability-cta:hover {
    background: #8555E6;
    color: var(--dk-white);
    text-decoration: none;
}

/* Güven barı */
.dk-trust-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px 80px;
}
.dk-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.dk-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--dk-white);
    border: 1px solid #F0EDF5;
    border-radius: var(--dk-radius-lg);
    padding: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dk-trust-item:hover {
    border-color: var(--dk-accent-light);
    box-shadow: 0 4px 16px rgba(156, 107, 255, 0.08);
}
.dk-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.dk-trust-item:nth-child(1) .dk-trust-icon { background: var(--dk-accent-light); }
.dk-trust-item:nth-child(2) .dk-trust-icon { background: #E0F7F5; }
.dk-trust-item:nth-child(3) .dk-trust-icon { background: #FFF3E0; }
.dk-trust-item:nth-child(4) .dk-trust-icon { background: #E8F0FE; }
.dk-trust-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dk-text);
    line-height: 1.4;
}
.dk-trust-sub {
    font-size: 12px;
    font-weight: 300;
    color: var(--dk-text-light);
    margin-top: 2px;
}

/* INTRO RESPONSIVE */
@media (max-width: 960px) {
    .dk-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .dk-intro-photo-wrap { max-width: 400px; margin: 0 auto; }
    .dk-intro-inner { padding: 60px 20px; }
    .dk-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .dk-intro-name { font-size: 26px; }
    .dk-availability { flex-wrap: wrap; gap: 12px; }
    .dk-availability-cta { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
    .dk-trust-grid { grid-template-columns: 1fr; }
    .dk-intro-stats { flex-direction: column; }
    .dk-stat-card { min-width: unset; }
    .dk-float-badge:nth-child(1) { right: -8px; top: -10px; }
    .dk-float-badge:nth-child(2) { left: -8px; }
    .dk-float-badge { padding: 10px 14px; font-size: 12px; }
    .dk-float-badge .dk-badge-icon { width: 30px; height: 30px; font-size: 15px; }
    .dk-intro-inner { padding: 40px 16px; }
    .dk-trust-bar { padding: 0 16px 60px; }
}

/* ============================================================
   BÖLÜM 2 — TEDAVİLER GRID
   ============================================================ */
.dk-tedaviler {
    background: var(--dk-bg);
}
.dk-tedaviler-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}

/* Kategori legend */
.dk-category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.dk-cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #E8E5EE;
    background: var(--dk-white);
    color: var(--dk-text-light);
}
.dk-cat-tab[data-cat="koruyucu"] { border-color: #D4EDDA; background: #F0FFF4; color: #2E7D32; }
.dk-cat-tab[data-cat="tedavi"]   { border-color: #D6E9FF; background: #F0F7FF; color: #1565C0; }
.dk-cat-tab[data-cat="ortodonti"]{ border-color: #EDE5FF; background: #F8F4FF; color: #7C4DFF; }
.dk-cat-tab[data-cat="acil"]     { border-color: #FFE0DB; background: #FFF5F3; color: #D84315; }

/* Kart grid */
.dk-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.dk-tedavi-card {
    position: relative;
    background: var(--dk-white);
    border-radius: var(--dk-radius-xl);
    padding: 32px 28px;
    border: 1.5px solid #F0EDF5;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: var(--dk-text);
}
.dk-tedavi-card:hover {
    border-color: var(--dk-accent-light);
    box-shadow: 0 12px 40px rgba(156, 107, 255, 0.10);
    transform: translateY(-4px);
    text-decoration: none;
    color: var(--dk-text);
}
.dk-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.dk-card-tag[data-tag="koruyucu"] { background: #E8F5E9; color: #2E7D32; }
.dk-card-tag[data-tag="tedavi"]   { background: #E3F2FD; color: #1565C0; }
.dk-card-tag[data-tag="ortodonti"]{ background: #EDE7F6; color: #7C4DFF; }
.dk-card-tag[data-tag="acil"]     { background: #FBE9E7; color: #D84315; }

.dk-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
/* Kart icon background — sırayla */
.dk-tedavi-card:nth-child(1) .dk-card-icon { background: #E8F5E9; }
.dk-tedavi-card:nth-child(2) .dk-card-icon { background: #E0F7FA; }
.dk-tedavi-card:nth-child(3) .dk-card-icon { background: #FFF3E0; }
.dk-tedavi-card:nth-child(4) .dk-card-icon { background: #FCE4EC; }
.dk-tedavi-card:nth-child(5) .dk-card-icon { background: #E3F2FD; }
.dk-tedavi-card:nth-child(6) .dk-card-icon { background: #F3E5F5; }
.dk-tedavi-card:nth-child(7) .dk-card-icon { background: #EDE7F6; }
.dk-tedavi-card:nth-child(8) .dk-card-icon { background: #FBE9E7; }

.dk-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 10px;
    line-height: 1.3;
}
.dk-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
}
.dk-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F5F3F8;
}
.dk-card-age {
    font-size: 12px;
    font-weight: 400;
    color: var(--dk-text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.dk-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dk-accent);
    transition: gap 0.2s ease;
}
.dk-tedavi-card:hover .dk-card-link { gap: 8px; }
.dk-card-link-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}
.dk-tedavi-card:hover .dk-card-link-arrow { transform: translateX(2px); }

/* Ortodonti duo kart */
.dk-card-orto-duo {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #FDFBFF 0%, #F8F4FF 100%);
    border-color: #E8E0F5;
}
.dk-card-orto-duo:hover {
    border-color: var(--dk-accent);
    box-shadow: 0 12px 40px rgba(156, 107, 255, 0.10);
    transform: translateY(-4px);
}
.dk-orto-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}
.dk-orto-header .dk-card-icon { margin-bottom: 0; flex-shrink: 0; }
.dk-orto-header .dk-card-title { margin-bottom: 6px; }
.dk-orto-intro {
    font-size: 14px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.7;
    margin: 0;
}
.dk-orto-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.dk-orto-option {
    position: relative;
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 24px 20px;
    border: 1.5px solid #EDE5FF;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--dk-text);
}
.dk-orto-option:hover {
    border-color: var(--dk-accent);
    box-shadow: 0 8px 24px rgba(156, 107, 255, 0.12);
    transform: translateY(-3px);
    text-decoration: none;
    color: var(--dk-text);
}
.dk-orto-option-icon {
    font-size: 28px;
    margin-bottom: 14px;
}
.dk-orto-option-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 8px;
    line-height: 1.3;
}
.dk-orto-option-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin: 0 0 16px;
}
.dk-orto-option-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #F5F3F8;
}
.dk-orto-option-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--dk-accent), #7C4DFF);
    color: var(--dk-white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dk-orto-invisalign {
    border-color: #DDD5F0;
    background: linear-gradient(180deg, #FFFFFF 60%, #FDFBFF 100%);
}
.dk-orto-bottom {
    background: var(--dk-white);
    border-radius: var(--dk-radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dk-orto-bottom-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.5;
}
.dk-orto-bottom-text strong {
    font-weight: 500;
    color: var(--dk-primary);
}
.dk-orto-bottom-text a {
    color: var(--dk-accent);
    font-weight: 500;
}

/* Travma full-width kart */
.dk-tedavi-card.dk-card-full {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #FFF9F7 0%, #FFF5F3 100%);
    border-color: #FFE0DB;
}
.dk-card-full .dk-card-icon {
    margin-bottom: 0;
    width: 64px;
    height: 64px;
    font-size: 30px;
    flex-shrink: 0;
    background: #FBE9E7;
}
.dk-card-full .dk-card-body { flex-grow: 1; }
.dk-card-full .dk-card-footer {
    border-top: none;
    padding-top: 8px;
    justify-content: flex-start;
}
.dk-card-full:hover {
    border-color: var(--dk-coral);
    box-shadow: 0 12px 40px rgba(255, 126, 107, 0.10);
}

/* Tedaviler bottom CTA */
.dk-tedaviler-cta {
    text-align: center;
    margin-top: 48px;
}
.dk-tedaviler-cta-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--dk-text-light);
    margin-bottom: 20px;
}
.dk-tedaviler-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dk-primary);
    color: var(--dk-white);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--dk-radius);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.dk-tedaviler-cta-btn:hover {
    background: #3D3560;
    color: var(--dk-white);
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(45, 37, 69, 0.15);
}

/* TEDAVİLER RESPONSIVE */
@media (max-width: 768px) {
    .dk-tedaviler-inner { padding: 60px 16px; }
    .dk-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .dk-section-title { font-size: 26px; }
    .dk-tedavi-card { padding: 24px 20px; }
    .dk-tedavi-card.dk-card-full { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
    .dk-card-full .dk-card-icon { margin-bottom: 16px; }
    .dk-orto-options { grid-template-columns: 1fr; }
    .dk-orto-header { flex-direction: column; gap: 12px; }
    .dk-category-tabs { gap: 6px; }
    .dk-cat-tab { font-size: 12px; padding: 6px 14px; }
}

/* ============================================================
   BÖLÜM 3 — DOREBOT
   ============================================================ */
.dk-dorebot {
    background: var(--dk-white);
    overflow: hidden;
}
.dk-dorebot-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}
.dk-dorebot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.dk-dorebot-content { order: 1; }
.dk-dorebot-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF8F0, #FFF0E0);
    color: var(--dk-coral);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.dk-dorebot-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dk-primary);
    line-height: 1.25;
    margin: 0 0 8px;
}
.dk-dorebot-title-accent { color: var(--dk-accent); }
.dk-dorebot-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--dk-text-light);
    margin: 0 0 24px;
    line-height: 1.5;
}
.dk-dorebot-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.8;
    margin: 0 0 32px;
}

/* Feature cards */
.dk-dorebot-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.dk-dorebot-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--dk-warm);
    border-radius: var(--dk-radius-lg);
    padding: 18px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dk-dorebot-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(45, 37, 69, 0.06);
}
.dk-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.dk-dorebot-feature:nth-child(1) .dk-feature-icon { background: #E0F7FA; }
.dk-dorebot-feature:nth-child(2) .dk-feature-icon { background: #FFF3E0; }
.dk-dorebot-feature:nth-child(3) .dk-feature-icon { background: #E8F5E9; }
.dk-dorebot-feature:nth-child(4) .dk-feature-icon { background: #EDE7F6; }
.dk-feature-text { flex-grow: 1; }
.dk-feature-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--dk-primary);
    margin: 0 0 3px;
    line-height: 1.3;
}
.dk-feature-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.6;
}

/* Quote box */
.dk-dorebot-quote {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dk-primary), #3D3560);
    border-radius: var(--dk-radius-lg);
    padding: 20px 24px;
    color: var(--dk-white);
}
.dk-dorebot-quote-emoji {
    font-size: 32px;
    flex-shrink: 0;
}
.dk-dorebot-quote-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
.dk-dorebot-quote-text strong {
    color: var(--dk-white);
    font-weight: 500;
}

/* Foto */
.dk-dorebot-photo-wrap { order: 2; position: relative; }
.dk-dorebot-photo-frame {
    position: relative;
    border-radius: var(--dk-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 37, 69, 0.12);
}
.dk-dorebot-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.dk-dorebot-deco {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}
.dk-dorebot-deco-1 { width: 80px; height: 80px; background: var(--dk-accent-light); top: -20px; right: -20px; opacity: 0.6; }
.dk-dorebot-deco-2 { width: 50px; height: 50px; background: #FFE0DB; bottom: 40px; left: -16px; opacity: 0.7; }
.dk-dorebot-deco-3 { width: 30px; height: 30px; background: #E0F7FA; bottom: -10px; right: 60px; opacity: 0.8; }

.dk-dorebot-speech {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(45, 37, 69, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: dk-bot-float 3s ease-in-out infinite;
}
.dk-dorebot-speech-icon { font-size: 22px; }
.dk-dorebot-speech-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--dk-primary);
    line-height: 1.4;
}
.dk-dorebot-speech-text span {
    display: block;
    font-size: 11px;
    font-weight: 300;
    color: var(--dk-text-light);
    margin-top: 1px;
}
@keyframes dk-bot-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.dk-dorebot-name-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(45, 37, 69, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--dk-radius);
    padding: 8px 14px;
    z-index: 3;
}
.dk-dorebot-name-badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--dk-white);
    line-height: 1.3;
}
.dk-dorebot-name-badge-text span {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

/* DOREBOT RESPONSIVE */
@media (max-width: 960px) {
    .dk-dorebot-grid { grid-template-columns: 1fr; gap: 40px; }
    .dk-dorebot-content { order: 2; }
    .dk-dorebot-photo-wrap { order: 1; max-width: 440px; margin: 0 auto; }
    .dk-dorebot-inner { padding: 60px 20px; }
    .dk-dorebot-title { font-size: 26px; }
}
@media (max-width: 560px) {
    .dk-dorebot-inner { padding: 40px 16px; }
    .dk-dorebot-speech { left: -8px; bottom: 16px; }
    .dk-dorebot-feature { padding: 14px 16px; }
    .dk-dorebot-quote { flex-direction: column; text-align: center; gap: 12px; }
    .dk-dorebot-deco-1 { width: 50px; height: 50px; top: -12px; right: -12px; }
    .dk-dorebot-deco-2 { left: -8px; }
}

/* ============================================================
   BÖLÜM 4 — YAŞ REHBERİ (TAB)
   ============================================================ */
.dk-yas {
    background: var(--dk-bg);
}
.dk-yas-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}

/* Tab nav */
.dk-yas-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}
.dk-yas-nav::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #E8E5EE;
    border-radius: 2px;
    z-index: 0;
}
.dk-yas-tab {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
}
.dk-yas-tab-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: var(--dk-white);
    border: 3px solid #E8E5EE;
    box-shadow: 0 2px 8px rgba(45, 37, 69, 0.06);
    transition: all 0.3s ease;
}
.dk-yas-tab-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--dk-text-light);
    white-space: nowrap;
}
.dk-yas-tab-age {
    font-size: 11px;
    font-weight: 300;
    color: #A9A3B8;
}

/* Active tab — yaşa özel renkler */
.dk-yas-tab.dk-active .dk-yas-tab-text { color: var(--dk-primary); font-weight: 600; }
.dk-yas-tab.dk-active .dk-yas-tab-age { color: var(--dk-accent); }
.dk-yas-tab.dk-active[data-age="0"] .dk-yas-tab-dot { background: #FF7E6B; border-color: #FF7E6B; color: #fff; box-shadow: 0 4px 20px rgba(255, 126, 107, 0.3); transform: scale(1.1); }
.dk-yas-tab.dk-active[data-age="1"] .dk-yas-tab-dot { background: #F9A825; border-color: #F9A825; color: #fff; box-shadow: 0 4px 20px rgba(249, 168, 37, 0.3); transform: scale(1.1); }
.dk-yas-tab.dk-active[data-age="2"] .dk-yas-tab-dot { background: #26A69A; border-color: #26A69A; color: #fff; box-shadow: 0 4px 20px rgba(38, 166, 154, 0.3); transform: scale(1.1); }
.dk-yas-tab.dk-active[data-age="3"] .dk-yas-tab-dot { background: #42A5F5; border-color: #42A5F5; color: #fff; box-shadow: 0 4px 20px rgba(66, 165, 245, 0.3); transform: scale(1.1); }
.dk-yas-tab:not(.dk-active):hover .dk-yas-tab-dot {
    border-color: var(--dk-accent-light);
    transform: scale(1.05);
}

/* Paneller */
.dk-yas-panels { position: relative; }
.dk-yas-panel { display: none; }
.dk-yas-panel.dk-active {
    display: block;
    animation: dk-fadeIn 0.4s ease;
}
@keyframes dk-fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dk-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Panel header */
.dk-panel-header {
    grid-column: 1 / -1;
    background: var(--dk-white);
    border-radius: var(--dk-radius-xl);
    padding: 32px;
    border: 1.5px solid #F0EDF5;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.dk-panel-header-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}
.dk-panel-header-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 8px;
    line-height: 1.3;
}
.dk-panel-header-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.7;
    margin: 0;
}
.dk-yas-panel[data-panel="0"] .dk-panel-header-icon { background: #FBE9E7; }
.dk-yas-panel[data-panel="1"] .dk-panel-header-icon { background: #FFF8E1; }
.dk-yas-panel[data-panel="2"] .dk-panel-header-icon { background: #E0F2F1; }
.dk-yas-panel[data-panel="3"] .dk-panel-header-icon { background: #E3F2FD; }
.dk-yas-panel[data-panel="0"] .dk-panel-header { border-color: #FFCCBC; }
.dk-yas-panel[data-panel="1"] .dk-panel-header { border-color: #FFE082; }
.dk-yas-panel[data-panel="2"] .dk-panel-header { border-color: #B2DFDB; }
.dk-yas-panel[data-panel="3"] .dk-panel-header { border-color: #BBDEFB; }

/* Panel cards */
.dk-panel-card {
    background: var(--dk-white);
    border-radius: var(--dk-radius-lg);
    padding: 24px;
    border: 1.5px solid #F0EDF5;
}
.dk-panel-card:hover {
    border-color: var(--dk-accent-light);
    box-shadow: 0 4px 16px rgba(156, 107, 255, 0.06);
}
.dk-panel-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dk-primary);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

/* Checklist */
.dk-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dk-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    color: var(--dk-text-light);
    line-height: 1.6;
}
.dk-checklist li::before {
    content: '✓';
    color: var(--dk-mint);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Warning card */
.dk-panel-warning {
    grid-column: 1 / -1;
    background: #FFF9F0;
    border-color: #FFE0B2;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
}
.dk-panel-warning:hover {
    border-color: #FFE0B2;
}
.dk-panel-warning-icon { font-size: 20px; flex-shrink: 0; }
.dk-panel-warning-text {
    font-size: 14px;
    font-weight: 400;
    color: #E65100;
    line-height: 1.6;
}
.dk-panel-warning-text strong { font-weight: 600; }
.dk-panel-warning-text a {
    color: #E65100;
    font-weight: 500;
    text-decoration: underline;
}

/* YAŞ RESPONSIVE */
@media (max-width: 768px) {
    .dk-yas-inner { padding: 60px 16px; }
    .dk-yas-title { font-size: 26px; }
    .dk-yas-nav { justify-content: space-between; padding: 0 8px; }
    .dk-yas-nav::before { width: 80%; }
    .dk-yas-tab { padding: 0 8px; }
    .dk-yas-tab-dot { width: 48px; height: 48px; font-size: 18px; }
    .dk-yas-tab-text { font-size: 11px; }
    .dk-yas-tab-age { font-size: 10px; }
    .dk-panel-grid { grid-template-columns: 1fr; }
    .dk-panel-header { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .dk-panel-card { padding: 20px 16px; }
}
