/* ============================================================
   ORTODONTİK PROBLEMLER — /ortodontik-problemler/
   Static sayfa, kendi mor hero'su var (proje hero'su kullanılmaz).
   Tüm class'lar .ort- prefix'li, sayfa-spesifik.
   ============================================================ */

.ort { color: var(--c-primary); }

/* HERO — kompakt, full-bleed */
.ort-hero {
    background: linear-gradient(150deg, #2D2545 0%, #3d2f6b 50%, #2D2545 100%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 56px 22px 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ort-hero::before,
.ort-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ort-hero::before {
    top: -40%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(156,107,255,0.15) 0%, transparent 70%);
}
.ort-hero::after {
    bottom: -30%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(184,138,255,0.10) 0%, transparent 70%);
}
.ort-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ort-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(156,107,255,0.2);
    color: #B88AFF;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ort-hero h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}
.ort-hero h1 span { color: #B88AFF; }
.ort-hero-lede {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 640px;
}
.ort-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 24px;
}
.ort-hero-stat-num {
    font-size: 28px;
    font-weight: 500;
    color: var(--c-accent);
    display: block;
    line-height: 1;
}
.ort-hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

/* GİRİŞ */
.ort-intro {
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.ort-intro h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--c-primary);
    line-height: 1.3;
    margin: 0 0 14px;
}
.ort-intro h2 span { color: var(--c-accent); }
.ort-intro p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--c-text);
    margin: 0 0 14px;
}
.ort-intro a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.ort-intro a:hover { color: #B88AFF; }
.ort-intro-visual {
    background: var(--c-bg-alt);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    border: 1px solid var(--c-border-soft);
}
.ort-intro-icon {
    width: 80px;
    text-align: center;
}
.ort-intro-icon img {
    width: 56px; height: 44px;
    object-fit: contain;
    margin: 0 auto 6px;
    display: block;
}
.ort-intro-icon span {
    font-size: 11px;
    font-weight: 500;
    color: var(--c-text-muted);
    line-height: 1.3;
    display: block;
}

/* PROBLEM KARTLARI */
.ort-problems-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 24px;
}
.ort-problems-header h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 0 0 10px;
}
.ort-problems-header p {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PROBLEM DETAY KARTLARI */
.ort-prob {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    border-top: 1px solid var(--c-border-soft);
}
.ort-prob:first-child { border-top: none; }
.ort-prob.reverse { direction: rtl; }
.ort-prob.reverse > * { direction: ltr; }

/* Video/görsel alanı */
.ort-prob-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border-soft);
}
.ort-prob-media video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.ort-prob-media-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(45,37,69,0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Metin alanı */
.ort-prob-text h3 {
    font-size: 22px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}
.ort-prob-text h3 span { color: var(--c-accent); }
.ort-prob-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text-muted);
    margin: 0 0 14px;
    font-style: italic;
}
.ort-prob-text p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--c-text);
    margin: 0 0 14px;
}
.ort-prob-text a.ort-inline-link {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}
.ort-prob-text a.ort-inline-link:hover { color: #B88AFF; }

/* Belirti chips */
.ort-prob-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0;
}
.ort-prob-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: #F3EEFF;
    color: var(--c-accent);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}
.ort-prob-chip svg {
    width: 10px; height: 10px;
    fill: var(--c-accent);
}

/* Detay butonu — yüksek özgüllük */
.ort a.ort-prob-btn,
.ort a.ort-prob-btn:link,
.ort a.ort-prob-btn:visited,
.ort a.ort-prob-btn:hover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(156,107,255,0.25);
    margin: 0;
}
.ort a.ort-prob-btn:hover {
    background: #B88AFF;
    box-shadow: 0 4px 18px rgba(156,107,255,0.35);
}
.ort .ort-prob-btn svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round;
}

/* iTero bölümü */
.ort-itero {
    background: linear-gradient(135deg, #2D2545 0%, #3d2f6b 100%);
    border-radius: var(--radius);
    padding: 48px 40px;
    margin: 24px 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.ort-itero::before {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(156,107,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ort-itero-text { position: relative; z-index: 1; }
.ort-itero-badge {
    display: inline-flex;
    background: rgba(156,107,255,0.2);
    color: #B88AFF;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.ort-itero-text h2 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
}
.ort-itero-text h2 span { color: #B88AFF; }
.ort-itero-text p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}
.ort-itero-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.ort-itero-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.ort-itero-feat svg {
    width: 16px; height: 16px;
    stroke: #B88AFF;
    fill: none; stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
}
.ort-itero-img {
    position: relative; z-index: 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.ort-itero-img img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius);
}

/* iTero buton (mor zemin üzerinde) */
.ort a.ort-itero-btn,
.ort a.ort-itero-btn:link,
.ort a.ort-itero-btn:visited,
.ort a.ort-itero-btn:hover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(156,107,255,0.3);
    transition: background 0.2s;
}
.ort a.ort-itero-btn:hover { background: #B88AFF; }
.ort .ort-itero-btn svg {
    width: 18px; height: 18px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round;
}

/* CTA — full bleed */
.ort-cta {
    background: linear-gradient(135deg, #2D2545 0%, #3d2f6b 100%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 56px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ort-cta::before {
    content: '';
    position: absolute;
    top: -40%; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(156,107,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.ort-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.ort-cta h2 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
}
.ort-cta p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px;
    line-height: 1.6;
}
.ort a.ort-cta-btn,
.ort a.ort-cta-btn:link,
.ort a.ort-cta-btn:visited,
.ort a.ort-cta-btn:hover {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--c-accent);
    color: #fff;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(156,107,255,0.35);
    transition: background 0.2s;
}
.ort a.ort-cta-btn:hover { background: #B88AFF; }
.ort .ort-cta-btn svg {
    width: 18px; height: 18px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round;
}

/* Bölüm aralayıcıları */
.ort-section { padding: 56px 0 64px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .ort-hero { padding: 48px 18px 56px; }
    .ort-hero-stats { gap: 24px; }
    .ort-hero-stat-num { font-size: 22px; }
    .ort-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0;
    }
    .ort-prob {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }
    .ort-prob.reverse { direction: ltr; }
    .ort-prob-text h3 { font-size: 19px; }
    .ort-itero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 22px;
        margin: 16px 0 40px;
    }
    .ort-itero-text h2 { font-size: 19px; }
    .ort-cta { padding: 40px 18px; }
    .ort-cta h2 { font-size: 20px; }
}
