/* ─── KILO YÖNETİMİ PAGE STYLES ─── */

.hero-kilo {
    background: var(--grad-hero);
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + 120px);
    padding-bottom: 140px;
    overflow: hidden;
    position: relative;
}


.hero-kilo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(20, 145, 155, .18) 0%, transparent 60%);
    pointer-events: none;
}

.hero-kilo__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-kilo__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: .05em;
    margin-bottom: 24px;
}

.hero-kilo__tag-icon {
    color: var(--secondary);
}

.hero-kilo__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-kilo__title em {
    font-style: italic;
    color: var(--secondary);
    font-weight: 400;
}

.hero-kilo__sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-kilo__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-kilo__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.hero-kilo__stat-num {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
    font-weight: 400;
}

.hero-kilo__stat-num span {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
}

.hero-kilo__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

/* Hero sağ kart */
.hero-kilo__card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(168, 218, 220, .15);
    border-radius: 24px;
    padding: 36px;
    backdrop-filter: blur(8px);
}

.hero-kilo__card-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lteal);
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .hero-kilo {
        background-image: url('../images/kilo.png'), var(--grad-hero);
        background-position: right bottom, center;
        background-size: auto 95%, cover;
        background-repeat: no-repeat, no-repeat;
    }

    .hero-kilo__inner {
        width: 100%;
        max-width: 1200px !important;
        margin: 0 auto;
        align-items: flex-start;
        text-align: left;
    }

    .hero-kilo__inner>div {
        max-width: 600px;
    }

    .hero-kilo__actions,
    .hero-kilo__stats {
        justify-content: flex-start;
    }
}


.hero-kilo__card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.hero-kilo__card-item:last-child {
    border-bottom: none;
}

.hero-kilo__card-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(168, 218, 220, .15);
    border: 1px solid rgba(168, 218, 220, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lteal);
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-kilo__card-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.5;
}

.hero-kilo__card-price {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-kilo__card-amount {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--white);
    font-weight: 400;
}

.hero-kilo__card-period {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

.hero-kilo__card-cta {
    display: block;
    text-align: center;
    margin-top: 16px;
    background: var(--midteal);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-kilo__card-cta:hover {
    background: var(--lteal);
    color: var(--teal);
}

/* ─── PROBLEM ─── */
.problem-kilo {
    padding: 100px 0;
    background: var(--cream);
}

.problem-kilo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-kilo__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-kilo__card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(26, 43, 48, .06);
}

.problem-kilo__card-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.problem-kilo__card-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.problem-kilo__card-desc {
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.6;
}

.problem-kilo__note {
    margin-top: 28px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(13, 92, 99, .08), rgba(20, 145, 155, .06));
    border-left: 3px solid var(--teal);
    border-radius: 0 12px 12px 0;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.problem-kilo__note strong {
    color: var(--teal);
}

/* ─── HOW IT WORKS (GLP-1) ─── */
.mechanism-kilo {
    padding: 100px 0;
    background: var(--surface);
}

.mechanism-kilo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
}

.mechanism-kilo__visual {
    background: var(--grad-primary);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.mechanism-kilo__visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(168, 218, 220, .1);
    top: -80px;
    right: -80px;
}

.mechanism-kilo__badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mechanism-kilo__visual-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 8px;
}

.mechanism-kilo__visual-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 32px;
}

.mechanism-kilo__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mechanism-kilo__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mechanism-kilo__step:last-child {
    border-bottom: none;
}

.mechanism-kilo__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mechanism-kilo__step-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 3px;
}

.mechanism-kilo__step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

.mechanism-kilo__points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mechanism-kilo__point-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.mechanism-kilo__point-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.mechanism-kilo__point-desc {
    font-size: 14.5px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ─── PROGRAM ─── */
.program-kilo {
    padding: 100px 0;
    background: var(--cream);
}

.program-kilo__header {
    text-align: center;
    margin-bottom: 60px;
}

.program-kilo__header .section-sub {
    margin: 14px auto 0;
}

.program-kilo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-kilo__card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 2px 16px rgba(26, 43, 48, .07);
    display: flex;
    flex-direction: column;
}

.program-kilo__card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.program-kilo__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface);
    flex-shrink: 0;
    color: var(--teal);
}

.program-kilo__card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
}

.program-kilo__card-title {
    font-weight: 700;
    font-size: 17px;
    color: var(--charcoal);
}

.program-kilo__card-desc {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    flex: 1;
}

.program-kilo__card-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 43, 48, .1);
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── SÜREÇ ─── */
.process-kilo__detail {
    margin-top: 64px;
    background: var(--cream);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.process-kilo__detail-q {
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.process-kilo__detail-a {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.65;
}



/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-kilo__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-kilo__card {
        max-width: 480px;
    }

    .problem-kilo__grid,
    .mechanism-kilo__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .program-kilo__grid {
        grid-template-columns: 1fr 1fr;
    }

    .doctors-kilo__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .program-kilo__grid {
        grid-template-columns: 1fr;
    }

    .process-kilo__steps {
        grid-template-columns: 1fr;
    }

    .process-kilo__steps::before {
        display: none;
    }

    .process-kilo__detail {
        grid-template-columns: 1fr;
    }

    .stories-kilo__grid {
        grid-template-columns: 1fr;
    }

    .faq-kilo__grid {
        grid-template-columns: 1fr;
    }

    .faq-kilo__aside {
        position: static;
    }
}

/* ─── KILO PAGE SECTION OVERRIDES ─── */
#process.how {
    background: var(--surface);
}

#fiyatlandirma.pricing {
    background: var(--cream);
    padding-top: 80px;
    padding-bottom: 80px;
}