﻿/* ================= HERO ================= */

.payout-hero {
    background: linear-gradient(135deg, #0b1e3c, #132f63);
    padding: 120px 0;
    color: white;
}

.payout-hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.payout-hero-content {
    flex: 1;
}

    .payout-hero-content h1 {
        font-size: 50px;
    }

    .payout-hero-content h2 {
        font-size: 22px;
        margin-top: 10px;
        color: #cbd6f0;
    }

    .payout-hero-content p {
        margin-top: 20px;
        font-size: 18px;
    }

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-outline-light {
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

.payout-hero-image img {
    max-width: 480px;
}

/* ================= FEATURES ================= */

.payout-features {
    padding: 100px 0;
    background: #f5f7fa;
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.payout-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

    .payout-card:hover {
        transform: translateY(-8px);
    }

/* ================= USECASE ================= */

.payout-usecase {
    padding: 100px 0;
    background: white;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.usecase-box {
    background: #0b1e3c;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
}

/* ================= WHY ================= */

.payout-why {
    padding: 100px 0;
    background: #f5f7fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ================= CTA ================= */

.payout-cta {
    background: #0b1e3c;
    padding: 80px 0;
    text-align: center;
    color: white;
}
