@media (max-width:576px) {
    .article-body {
        padding: 20px;
    }
}
:root {
    --brand: #6c5ce7;
    --brand-2: #00cec9;
    --bg: #0b0d12;
    --text: #e6e8ef;
    --muted: #98a0b3
}

[data-theme="light"]:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280
}

body {
    font-family: Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif
}

.navbar {
    backdrop-filter: saturate(1.2) blur(6px)
}

.brand-pill {
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #fff;
    padding: .35rem .65rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .5px
}

.hero {
    position: relative;
    overflow: hidden
}

    .hero::before {
        content: "";
        position: absolute;
        inset: -20%;
        background: radial-gradient(60% 60% at 10% 10%, rgba(108,92,231,.25),transparent),radial-gradient(50% 50% at 90% 10%, rgba(0,206,201,.2),transparent);
        z-index: 0
    }

    .hero .content {
        position: relative;
        z-index: 1
    }

.section {
    padding: 80px 0
}

.section-title {
    font-weight: 700
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(108,92,231,.12)
}

.card {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px
}

.gradient-cta {
    background: linear-gradient(135deg,var(--brand),var(--brand-2));
    color: #fff
}

.timeline {
    position: relative
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(108,92,231,.25)
    }

.timeline-step {
    position: relative;
    padding-left: 64px
}

    .timeline-step::before {
        content: "";
        position: absolute;
        left: 12px;
        top: .35rem;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--brand)
    }

.badge-soft {
    background: rgba(108,92,231,.12);
    color: var(--brand)
}

.footer {
    border-top: 1px solid rgba(0,0,0,.08)
}

html {
    scroll-behavior: smooth
}

.article-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.article-card {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.article-header {
    background: linear-gradient(135deg, #6c5ce7 50%, #00cec9);
    color: #fff;
    border-radius: 18px 18px 0 0;
    padding: 28px 24px;
}

    .article-header .subtitle {
        opacity: .95;
        font-weight: 500;
    }

.article-body {
    padding: 28px;
}

.prose {
    line-height: 1.75;
    font-size: 1.05rem;
    color: #374151;
}

    .prose h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
        margin-bottom: .75rem;
        font-weight: 700;
        color: #111827;
        position: relative;
        padding-left: 14px;
    }

        .prose h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: .25rem;
            bottom: .25rem;
            width: 6px;
            border-radius: 4px;
            background: linear-gradient(180deg, #6c5ce7, #00cec9);
        }

.lead {
    font-size: 1.1rem;
    color: #4b5563;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: #10b981;
}

.step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 1rem;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fafafa;
}

    .step .no {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        flex: 0 0 36px;
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 700;
        background: linear-gradient(135deg, #6c5ce7, #00cec9);
        box-shadow: 0 2px 10px rgba(108,92,231,.25);
    }

.seo-badges .badge {
    background: rgba(108,92,231,.1);
    color: #6c5ce7;
    border: 1px solid rgba(108,92,231,.25);
}
.randevu-button {
    position: fixed;
    background-color: transparent;
    z-index: 999;
    bottom: 70px;
    right: 10px;
    padding: 3px;
    border-radius: 17px;
    text-decoration: none
}

    .randevu-button:hover {
        background-color: lightblue !important;
    }
