/* HostCry shared banners — aligned with modern plan switcher / intro styling */

/* ---------- Milestone stats strip ---------- */
.hc-milestone-banner {
    position: relative;
    padding: 72px 0 80px;
    background: #12063a;
    color: #f1f5f9;
    overflow: hidden;
}

.hc-milestone-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 55% at 20% 0%, rgba(235, 43, 99, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 100%, rgba(139, 92, 246, 0.2), transparent 50%);
    pointer-events: none;
}

.hc-milestone-banner .container {
    position: relative;
    z-index: 1;
}

.hc-milestone-banner__head {
    margin-bottom: 2.5rem;
}

.hc-milestone-banner__intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    font-weight: 500;
}

.hc-milestone-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    border-radius: 12px;
    background: linear-gradient(135deg, #eb2b63, #8b5cf6);
    box-shadow: 0 8px 28px rgba(235, 43, 99, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-milestone-banner__cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.4);
}

.hc-milestone-banner__stat {
    height: 100%;
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-milestone-banner__stat:hover {
    border-color: rgba(235, 43, 99, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hc-milestone-banner__stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #eb2b63, #8b5cf6);
    color: #fff;
}

.hc-milestone-banner__stat-icon i {
    font-size: 1.35rem;
    line-height: 1;
}

.hc-milestone-banner__stat-value {
    margin: 0 0 0.35rem;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hc-milestone-banner__stat-label {
    margin: 0;
    font-size: 0.95rem;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .hc-milestone-banner {
        padding: 56px 0 64px;
    }

    .hc-milestone-banner__stat-value {
        font-size: 1.65rem;
    }
}

/* ---------- Need support CTA ---------- */
.hc-need-support {
    background: #f1f5f9;
    padding: 48px 0;
}

.hc-need-support__card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.hc-need-support__title {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hc-need-support__lead {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 36rem;
}

.hc-need-support__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hc-need-support__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-need-support__btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.4);
}

.hc-need-support__btn i {
    font-size: 1.25rem;
}

.hc-need-support__phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .hc-need-support__card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .hc-need-support__actions {
        justify-content: center;
        flex-direction: column;
    }

    .hc-need-support__btn {
        justify-content: center;
    }
}
