/* home — anasayfaya ozel stiller */
/* site.css SONRASI yuklenir. */

/* ─────────── HERO ─────────── */
.home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #2e1f7a 0%, #3730A3 45%, #4F46E5 100%);
    border-radius: 22px;
    padding: 56px 32px 48px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(46, 31, 122, .28);
}

    .home-hero::before {
        content: '';
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .07);
        top: -200px;
        right: -160px;
        pointer-events: none;
    }

    .home-hero::after {
        content: '';
        position: absolute;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .07);
        bottom: -150px;
        left: -120px;
        pointer-events: none;
    }

.home-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.home-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -.5px;
}

.home-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin: 0 auto 30px;
    max-width: 580px;
}

/* Doğrulama kutusu — hero imza ögesi */
.verify-box {
    background: rgba(255, 255, 255, .98);
    border-radius: 18px;
    padding: 26px 26px 22px;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
    text-align: left;
}

.verify-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.verify-head-ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 6px 16px rgba(79, 70, 229, .3);
}

.verify-head-txt .t {
    font-weight: 800;
    color: var(--text);
    font-size: 17px;
    line-height: 1.2;
}

.verify-head-txt .s {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.5;
}

.verify-box-row {
    display: flex;
    gap: 10px;
}

    .verify-box-row .lms-input {
        flex: 1;
        margin: 0;
        height: 48px;
        font-size: 15px;
        letter-spacing: .5px;
    }

    .verify-box-row .lms-btn {
        white-space: nowrap;
        height: 48px;
        padding: 0 22px;
    }

.verify-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

    .verify-trust span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 12.5px;
        color: #475569;
        font-weight: 600;
    }

    .verify-trust i {
        color: var(--success);
        font-size: 16px;
    }

/* Hero CTA */
.home-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

.home-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    transition: transform .15s, box-shadow .15s;
}

    .home-btn-solid:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
        color: var(--primary);
    }

.home-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    transition: background .15s;
}

    .home-btn-ghost:hover {
        background: rgba(255, 255, 255, .2);
        color: #fff;
    }

/* ─────────── Bölüm ritmi & başlıkları ─────────── */
.home-section {
    margin-top: 64px;
}

.home-anchor {
    scroll-margin-top: 80px;
}

.home-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.home-section-head {
    text-align: center;
    margin-bottom: 30px;
}

    .home-section-head h2 {
        font-size: 27px;
        font-weight: 800;
        margin: 0 0 8px;
        letter-spacing: -.3px;
    }

    .home-section-head p {
        color: var(--muted);
        margin: 0;
        font-size: 15px;
    }

/* ─────────── Özellik kartları ─────────── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px 22px;
    transition: transform .15s, box-shadow .15s;
}

    .feat-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.feat-ico {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    margin-bottom: 16px;
}

.feat-ico-award {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
}

.feat-ico-shield {
    background: linear-gradient(135deg, #059669, #10B981);
}

.feat-ico-bulk {
    background: linear-gradient(135deg, #4F46E5, #6366F1);
}

.feat-ico-chart {
    background: linear-gradient(135deg, #7C3AED, #8B5CF6);
}

.feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 7px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ─────────── Nasıl Çalışır — 3 adım ─────────── */
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
}

.step-num {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 46px;
    font-weight: 800;
    color: rgba(79, 70, 229, .10);
    line-height: 1;
    pointer-events: none;
}

.step-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, .10);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 8px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ─────────── Hakkımızda ─────────── */
.home-about {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 34px;
    margin-top: 64px;
}

    .home-about h2 {
        font-size: 24px;
        font-weight: 800;
        margin: 0 0 16px;
        letter-spacing: -.3px;
    }

    .home-about p {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
        margin: 0 0 14px;
        max-width: 820px;
    }

        .home-about p:last-child {
            margin-bottom: 0;
        }

/* ─────────── İletişim ─────────── */
.home-contact {
    margin-top: 64px;
    border-radius: 18px;
    padding: 46px 34px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #3730A3, #4F46E5);
}

    .home-contact h2 {
        font-size: 25px;
        font-weight: 800;
        margin: 0 0 10px;
        letter-spacing: -.3px;
    }

    .home-contact p {
        color: rgba(255, 255, 255, .85);
        font-size: 15px;
        margin: 0 0 24px;
    }

.home-contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
    flex-wrap: wrap;
}

    .home-contact-actions .lms-btn {
        background: #fff;
        color: var(--primary);
        box-shadow: none;
    }

.home-contact-phone {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    opacity: .95;
}

    .home-contact-phone:hover {
        color: #fff;
        text-decoration: underline;
    }

/* ─────────── Responsive ─────────── */
@media (max-width: 720px) {
    .step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .home-title {
        font-size: 30px;
    }

    .home-hero {
        padding: 40px 20px;
    }

    .home-section {
        margin-top: 48px;
    }

    .home-about, .home-contact {
        margin-top: 48px;
        padding: 32px 22px;
    }

    .verify-box-row {
        flex-direction: column;
    }

    .verify-trust {
        gap: 12px;
    }
}
