/* =========================
GENEL
========================= */

.home-page {
    overflow: hidden;
}

/* =========================
HERO
========================= */

.home-hero {
    padding: 90px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(184, 242, 74, 0.18), transparent 30%),
        radial-gradient(circle at left center, rgba(0, 180, 120, 0.12), transparent 28%),
        #0b0b0b;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    color: #b8f24a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* SEO H1 */
.home-hero-content h1 {
    font-size: 16px;
    color: #b8f24a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* SLOGAN */
.hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    max-width: 760px;
}

.hero-title span {
    color: #b8f24a;
}

/* KOŞAN KADIN */
.hero-runners {
    display: flex;
    gap: 10px;
}

.runner {
    width: 40px;
    height: 40px;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* renk */
.runner.white { stroke: #fff; }
.runner.green { stroke: #b8f24a; }

/* GERÇEK KOŞMA */
@keyframes runForward {
    0% { transform: translateX(0); }
    50% { transform: translateX(18px); }
    100% { transform: translateX(0); }
}

.runner {
    animation: runForward 0.8s infinite ease-in-out;
}

.runner.green {
    animation-delay: 0.2s;
}

/* AÇIKLAMA */
.hero-desc {
    max-width: 620px;
    font-size: 18px;
    color: #d0d0d0;
    margin: 25px 0;
    line-height: 1.6;
}

/* BUTTON */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
SAĞ TARAF
========================= */

.home-hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, #b8f24a 0%, rgba(184,242,74,0.15) 45%, transparent 80%);
    filter: blur(20px);
}

.hero-card {
    position: relative;
    z-index: 2;
    width: 320px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-card p {
    color: #ccc;
}

/* =========================
PREVIEW
========================= */

.home-preview {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 30px;
}

.section-head span {
    color: #b8f24a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-head h2 {
    font-size: 42px;
    margin-top: 10px;
}

/* GRID */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.preview-box {
    padding: 30px;
    border-radius: 20px;
    background: #121212;
    border: 1px solid rgba(184,242,74,0.14);
    transition: 0.3s;
}

.preview-box:hover {
    transform: translateY(-4px);
    border-color: rgba(184,242,74,0.4);
}

.preview-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.preview-box p {
    color: #cfcfcf;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-visual {
        display: none;
    }

    .hero-runners {
        display: none;
    }
}