/* Home pricing call to action.

   Replaces the plan tables that used to sit on the home page. Kept in the same
   visual family as the rest of the site: Open Sans, the #3fa6e5 brand blue and
   the same rounded-panel feel as the pricing cards. */

.home-pricing-cta {
    padding-top: 50px;
    padding-bottom: 80px;
    background-color: #fff;
}

.home-pricing-cta .cta-panel {
    position: relative;
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
    padding: 54px 40px 46px;
    text-align: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #f7fbff 0%, #eef5fd 100%);
    border: 1px solid #dce9f7;
}

/* Soft halo behind the panel; purely decorative, so it is drawn with a
   pseudo-element rather than adding an image request. */
.home-pricing-cta .cta-panel::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 166, 229, 0.14), rgba(63, 166, 229, 0) 70%);
    pointer-events: none;
}

.home-pricing-cta .cta-eyebrow {
    display: inline-block;
    position: relative;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3fa6e5;
    margin-bottom: 14px;
}

.home-pricing-cta .cta-title {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2233;
    line-height: 1.25;
    margin: 0 0 14px;
}

.home-pricing-cta .cta-text {
    position: relative;
    max-width: 520px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.home-pricing-cta .cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    background: #3fa6e5;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px -8px rgba(63, 166, 229, 0.6);
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-pricing-cta .cta-btn:hover,
.home-pricing-cta .cta-btn:focus {
    background: #2f93d1;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(63, 166, 229, 0.7);
}

.home-pricing-cta .cta-btn svg {
    transition: transform .2s ease;
}

.home-pricing-cta .cta-btn:hover svg {
    transform: translateX(3px);
}

.home-pricing-cta .cta-note {
    position: relative;
    margin: 18px 0 0;
    font-size: 0.88rem;
    color: #8b95a5;
}

@media (max-width: 575.98px) {
    .home-pricing-cta {
        padding-bottom: 56px;
    }

    .home-pricing-cta .cta-panel {
        padding: 40px 22px 34px;
        border-radius: 14px;
    }

    .home-pricing-cta .cta-title {
        font-size: 1.5rem;
    }

    .home-pricing-cta .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
