/* ============ Homepage Custom CTA Section ============ */
/* Plus Jakarta Sans - Still using Google Fonts (different from Inter) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.homepage-custom-cta {
    padding: 60px 0;
    background: #f1f5f9;
}

.homepage-custom-cta .container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.custom-cta-box {
    background: linear-gradient(90deg, #2243A4 0%, #2243A4 97.87%);
    border-radius: 28px;
    padding: 45px;
    /* max-width: 920px; */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 25px 50px -12px rgba(30, 58, 138, 0.5);
}

.custom-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.04) 0%, transparent 30%);
    pointer-events: none;
}

.custom-cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: ctaShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.custom-cta-content {
    position: relative;
    z-index: 1;
}

/* Eyebrow Badge */
.custom-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ddecff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.custom-cta-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 12px #4ade80;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Headline */
.custom-cta-headline {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.custom-cta-headline .highlight {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

/* Subtext */
.custom-cta-subtext {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 532px;
    margin-left: auto;
    margin-right: auto;
}

.custom-cta-subtext strong {
    color: #ffffff;
    font-weight: 600;
}

/* Buttons */
.custom-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
}

.custom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.custom-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.custom-cta-btn:hover svg {
    transform: scale(1.1);
}

.custom-cta-btn-primary {
    background: #ffffff;
    color: #1e3a8a;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.15);
}

.custom-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 4px rgba(255,255,255,0.2);
}

.custom-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.custom-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Colorful Floating Trust Icons */
.custom-cta-floating-trust {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.floating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 35px;
    height: 35px;
}

/* Green - Human Written */
.floating-icon-green {
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(74, 222, 128, 0.5));
    animation: float1 3s ease-in-out infinite;
}

/* Amber - On Time */
.floating-icon-amber {
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.5));
    animation: float2 3.5s ease-in-out infinite;
}

/* Purple - Revisions */
.floating-icon-purple {
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(192, 132, 252, 0.5));
    animation: float3 2.8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.floating-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .homepage-custom-cta {
        padding: 40px 0;
    }

    .custom-cta-box {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .custom-cta-headline {
        font-size: 1.875rem;
    }

    .custom-cta-subtext {
        font-size: 1.05rem;
    }

    .custom-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-cta-btn {
        justify-content: center;
        padding: 16px 24px;
    }

    .custom-cta-floating-trust {
        gap: 36px;
    }

    .floating-icon svg {
        width: 34px;
        height: 34px;
    }

    .floating-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .custom-cta-box {
        padding: 32px 20px;
    }

    .custom-cta-eyebrow {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .custom-cta-headline {
        font-size: 1.5rem;
    }

    .custom-cta-subtext {
        font-size: 0.95rem;
    }

    .custom-cta-buttons {
        margin-bottom: 36px;
    }

    .custom-cta-btn {
        padding: 14px 20px;
        font-size: 0.875rem;
    }

    .custom-cta-floating-trust {
        gap: 18px;
    }

    .floating-icon svg {
        width: 30px;
        height: 30px;
    }

    .floating-label {
        font-size: 0.75rem;
    }
   .floating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 85px;
}
}
/* ============ End Homepage Custom CTA Section ============ */
