
/* Yatay padding yok: tam genişlik hero + mobil menü viewport’a yapışsın (eski 20px sol boşluk/nav kayması) */
body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; }
h1, h2, h3 { color: #2c3e50; }
h1 { font-size: 2.2em; margin-bottom: 0.5em; }
h2 { font-size: 1.8em; border-bottom: 2px solid #eee; padding-bottom: 0.5em; margin-top: 1.5em; }
h3 { font-size: 1.4em; margin-top: 1em; }
p { margin-bottom: 1em; }

/* Genel liste stilleri */
ul {
    list-style: disc; /* Varsayılan madde işaretleri için ul stilini koru */
    margin-left: 20px;
    margin-bottom: 1em;
}
ol {
    margin-bottom: 1em;
    padding-left: 0; /* Ana ol için padding'i kaldır, numarayı kontrol etmek için */
    list-style: none; /* Varsayılan numaralandırmayı kaldır */
    counter-reset: my-counter; /* Bir sayıcı başlat */
}
ol li {
    counter-increment: my-counter; /* Her liste öğesi için sayıcıyı artır */
    position: relative;
    padding-left: 45px; /* Numara için daha fazla boşluk bırak ve metni hizala */
    margin-bottom: 0.8em;
}
ol li::before {
    content: counter(my-counter) "."; /* Sayıcıyı göster */
    color: #3498db; /* Numara rengi */
    font-weight: bold;
    font-size: 1.4em; /* Numara boyutunu daha da büyüt */
    position: absolute;
    left: 0px; /* Numarayı en sola hizala */
    top: 0;
    line-height: 1.6; /* Metinle aynı hizaya getir */
}

/* Yöntemler kısmı için özel numaralandırma - sadece ana li elementleri için */
.methods-list {
    counter-reset: methods-counter !important;
}
.methods-list > li {
    counter-increment: methods-counter !important;
}
.methods-list > li::before {
    content: counter(methods-counter) "." !important;
}

/* h3 içindeki ul'lerin stillerini korumak için, bu kural sadece ol'leri etkileyecek */
ol li ul {
    list-style: disc; /* İç içe ul'lerin madde işaretlerini koru */
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 20px; /* İç içe ul'ler için varsayılan girintiyi geri getir */
}
ol li ul li {
    padding-left: 0; /* İç içe ul li'lerde özel padding'i sıfırla */
}
ol li ul li::before {
    content: none; /* İç içe ul li'lerde numara gösterme */
}

/* Koyu kırmızı: #e74c3c beyaz üzerinde WCAG AA kontrastını geçmez; vurgu korunur */
strong { color: #9f1d1d; }
/* Makale gövdesinde kalın metin, paragraf rengiyle uyumlu (anahtar kelime vurgusu kırmızı olmasın) */
.article-content strong {
    color: inherit;
    font-weight: 700;
}
.container { max-width: 960px; margin: auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.contact-info { background: #f9f9f9; padding: 15px; border-left: 5px solid #3498db; margin-top: 20px; }
.article-cta { text-align: center; margin-top: 30px; padding: 20px; background-color: #f0f8ff; border-radius: 5px; }
.cta-button {
    display: inline-block;
    background-color: #1e40af;
    color: #fff;
    padding: 12px 25px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.cta-button:hover {
    background-color: #1e3a8a;
}

/* İlk ekranda görünür İstanbul hattı (makale üstü) */
.article-lead-phone {
    margin: 0 auto 1.25rem auto;
    padding: 0.8rem 1.1rem;
    width: fit-content;
    max-width: calc(100% - 0.5rem);
    box-sizing: border-box;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.22);
}
.article-lead-phone a {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.article-lead-phone a:hover {
    text-decoration: underline;
}
/* Mobilde gösterme — numara alt CTA ve footer’da kalır */
@media (max-width: 767px) {
    .article-lead-phone {
        display: none !important;
    }
}

/* Sadece mobil: numara başlığın devamında */
.article-title-phone-mobile {
    display: none;
}
@media (max-width: 767px) {
    .article-title-phone-mobile {
        display: block;
        margin-top: 0.4em;
        font-weight: 700;
        font-size: clamp(1.05rem, 5.5vw, 1.35rem);
        line-height: 1.35;
    }
    .article-content h1 .article-title-phone-mobile a {
        color: #1e40af;
        text-decoration: none;
        white-space: nowrap;
    }
    .article-content h1 .article-title-phone-mobile a:active {
        color: #1e3a8a;
    }
}
@media (min-width: 768px) {
    .article-lead-phone a {
        font-size: 1.3rem;
    }
}

/* CTA: masaüstünde tam numara, mobilde kısa metin */
.cta-button .cta-phone-desktop {
    display: none;
}
.cta-button .cta-text-mobile {
    display: inline;
}
@media (min-width: 768px) {
    .cta-button .cta-phone-desktop {
        display: inline;
    }
    .cta-button .cta-text-mobile {
        display: none;
    }
}

/* —— Makale hero: tam genişlik + üst menüye yapışık (article-page--fullbleed-hero) —— */
/* Global `header { position: fixed }` yalnızca site üst çubuğuna; makale hero’su normal akışta kalmalı. */
header.article-hero {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: none;
    height: auto !important;
    min-height: 0 !important;
    z-index: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.article-page.article-page--fullbleed-hero {
    padding-top: 0 !important;
}

/* Kenardan kenara hero; altında metin kartı ayrı */
.article-page--fullbleed-hero > header.article-hero {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 2rem 1.25rem 2.15rem;
    border-radius: 0;
    background: linear-gradient(135deg, #1a2a6c 0%, #243d78 48%, #4a1f3a 100%) !important;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.28);
    text-align: center;
    overflow: visible;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-page--fullbleed-hero > .article-container {
    margin-top: 1.25rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.article-content.article-content--post-hero {
    padding: 1.75rem 1.35rem 2rem !important;
    margin-top: 0;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
    .article-content.article-content--post-hero {
        padding: 2.25rem 2.25rem 2.25rem !important;
    }
}

@media (max-width: 480px) {
    .article-content.article-content--post-hero {
        padding: 1.5rem 1.15rem 1.75rem !important;
    }
}

/* İç bölümler (kart içindeki hero ile aynı) */
.article-hero .article-hero__inner {
    max-width: 44rem;
    margin: 0 auto;
}
.article-hero .article-hero__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    line-height: 1.4;
}
.article-hero .article-hero__badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}
.article-hero h1.article-hero__title,
.article-hero .article-hero__title {
    margin: 0 0 0.65rem;
    padding: 0;
    font-size: clamp(2rem, 5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    color: #f8fafc !important;
    letter-spacing: -0.02em;
    border: none;
}
.article-hero .article-hero__slogan {
    margin: 0 0 0.5rem;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    font-weight: 600;
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.5;
}
.article-hero .article-hero__tagline {
    margin: 0 0 1.35rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(226, 232, 240, 0.88);
    line-height: 1.55;
}
.article-hero .article-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    min-height: 48px;
    box-sizing: border-box;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border: none;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(22, 163, 74, 0.45);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.article-hero .article-hero__cta:hover {
    filter: brightness(1.06);
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.55);
    transform: translateY(-1px);
}
.article-hero .article-hero__cta:active {
    transform: translateY(0);
}
.article-hero .article-hero__cta-icon {
    flex-shrink: 0;
}
.article-hero .article-hero__cta-text {
    text-align: left;
    line-height: 1.25;
}
.article-hero .article-hero__cta-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.95;
}
.article-hero .article-hero__cta-num {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
@media (min-width: 480px) {
    .article-hero .article-hero__cta-label {
        display: inline;
        margin-right: 0.25rem;
    }
    .article-hero .article-hero__cta-num {
        font-size: 1.2rem;
    }
}
.article-hero .article-hero__cta-note {
    margin: 0.65rem 0 0;
    font-size: 0.78rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.4;
}

/* Hero gradient üzerinde global kırmızı strong okunmaz; mint vurgu (eyebrow ile uyumlu, yeterli kontrast) */
.article-hero strong,
.article-hero .article-hero__accent {
    color: #a7f3d0 !important;
    font-weight: 700;
}

.article-hero .article-hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin: 1.5rem 0 0;
    padding: 1.1rem 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.article-hero .article-hero__feature {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.4rem 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.92);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.article-hero .article-hero__feature-icon {
    display: flex;
    color: #5eead4;
    flex-shrink: 0;
}
@media (max-width: 479px) {
    .article-hero .article-hero__feature {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 8.5rem;
        justify-content: center;
        font-size: 0.76rem;
    }
}
@media (max-width: 768px) {
    .article-page--fullbleed-hero > header.article-hero {
        padding: 1.75rem 1rem 1.85rem;
        padding-inline-end: max(1rem, env(safe-area-inset-right, 0px));
    }
}
@media (max-width: 480px) {
    .article-page--fullbleed-hero > header.article-hero {
        padding-top: 1.5rem;
        padding-inline-start: max(0.85rem, env(safe-area-inset-left, 0px));
        padding-inline-end: max(0.85rem, env(safe-area-inset-right, 0px));
    }
}
@media (min-width: 768px) {
    .article-page--fullbleed-hero > header.article-hero {
        padding: 2.65rem 1.75rem 2.35rem;
    }
    .article-hero .article-hero__features {
        gap: 0.75rem 1.25rem;
    }
}

/* Eski yerleşim: hero hâlâ .article-content içindeyse (kart üstü) */
.article-content .article-hero {
    margin: -2rem -2rem 1.75rem -2rem;
    padding: 2.25rem 1.35rem 2rem;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #1a2a6c 0%, #243d78 48%, #4a1f3a 100%) !important;
    box-shadow: 0 12px 40px rgba(26, 42, 108, 0.35);
    text-align: center;
    overflow: visible;
    display: block;
    clear: both;
}
@media (max-width: 768px) {
    .article-content .article-hero {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        padding: 1.85rem 1.1rem 1.65rem;
        padding-inline-end: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-bottom: 2rem;
    }
}
@media (max-width: 480px) {
    .article-content .article-hero {
        margin: -1rem -1rem 1.25rem -1rem;
        padding-top: 1.65rem;
        padding-bottom: 1.75rem;
        padding-inline-start: 0.85rem;
        padding-inline-end: max(0.85rem, env(safe-area-inset-right, 0px));
        border-radius: 10px 10px 0 0;
    }
}
@media (min-width: 768px) {
    .article-content .article-hero {
        margin: -2rem -2rem 2rem -2rem;
        padding: 2.75rem 2rem 2.25rem;
    }
}
