﻿.hero-section {
    min-height: 70vh;
    width: 100%;
    background: linear-gradient(90deg, #071632 0%, #122744 45%, #2b3d57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hero-left {
    flex: 1;
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
}

.hero-title {
    font-size: 72px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: #f5f7fb;
}

.hero-desc {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: #ffffff;
    color: #10233f;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        background: #f3f6fb;
    }

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.06);
    }

.hero-right {
    flex: 0 0 520px;
    display: flex;
    justify-content: center;
}

.wallet-card {
    width: 100%;
    max-width: 540px;
    background: rgba(67, 83, 108, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

.wallet-card-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #dfe8f5;
}

    .wallet-card-image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.wallet-card h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #f7f9fc;
}

.wallet-card ul {
    list-style: disc;
    padding-left: 28px;
}

.wallet-card li {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

    .wallet-card li strong {
        color: #ffffff;
        font-weight: 700;
    }

@media (max-width: 1100px) {
    .hero-container {
        gap: 50px;
    }

    .hero-title {
        font-size: 58px;
    }

    .hero-desc {
        font-size: 20px;
    }

    .hero-right {
        flex: 0 0 460px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: 50px 24px;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
        width: 100%;
    }

    .hero-right {
        flex: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        font-size: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-eyebrow {
        font-size: 12px;
    }

    .btn {
        width: 100%;
    }

    .wallet-card {
        padding: 16px;
        border-radius: 22px;
    }

        .wallet-card h3 {
            font-size: 26px;
        }

        .wallet-card li {
            font-size: 16px;
        }
}
