
.reseller-cta {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 38px 28px;
    text-align: center;
    background: linear-gradient(135deg, #001a4d 0%, #003b8e 100%);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0, 32, 91, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.reseller-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 24%);
    pointer-events: none;
}

.reseller-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(0, 32, 91, 0.24);
}

.reseller-cta__badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.14);
    color: #7fd3ff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.reseller-cta__title {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
}

.reseller-cta__text {
    margin: 0 0 24px 0;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.5;
}

.reseller-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #36b5f5;
    color: #ffffff;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reseller-cta:hover .reseller-cta__button {
    background: #1da7ee;
}

.reseller-cta__button i {
    font-size: 14px;
}

/* mobile */
@media (max-width: 768px) {
    .reseller-cta {
        margin: 40px 18px 30px 18px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .reseller-cta__title {
        font-size: 30px;
    }

    .reseller-cta__text {
        font-size: 16px;
    }

    .reseller-cta__button {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
}
	