/**
 * HyzenPro CTA Submit Widget - CSS
 */

.hyzen-cta {
    padding: 1.5rem 1rem;
    background: #171717;
    /* Dark background as per reference */
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hyzen-cta {
        padding: 2.5rem 2rem;
    }
}

.hyzen-cta .hyzen-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Badge Styling */
.hyzen-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.hyzen-cta-badge svg {
    color: #ffffff;
}

/* Headline Styling */
.hyzen-cta-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hyzen-cta-content h2 {
        font-size: 4rem;
    }
}

/* Description Styling */
.hyzen-cta-desc {
    font-size: 1.125rem;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Group */
.hyzen-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

/* Primary Button (White) */
.hyzen-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.25rem;
    background: #ffffff;
    color: #171717;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hyzen-cta-btn-primary:hover {
    background: #f3f3f3;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hyzen-cta-btn-primary svg {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.hyzen-cta-btn-primary:hover svg {
    transform: rotate(45deg);
}

/* Secondary Button (Outline White) */
.hyzen-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.25rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hyzen-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-4px);
}

@media (max-width: 480px) {
    .hyzen-cta-buttons {
        flex-direction: column;
    }

    .hyzen-cta-btn-primary,
    .hyzen-cta-btn-secondary {
        width: 100%;
    }
}

/* Decorative Backgrounds */
.hyzen-cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

.hyzen-cta-blob {
    position: absolute;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.hyzen-cta-blob-1 {
    top: -10rem;
    left: -10rem;
}

.hyzen-cta-blob-2 {
    bottom: -10rem;
    right: -10rem;
}

/* Pulse Animation */
.hyzen-animate-pulse {
    animation: hyzenCtaPulse 8s infinite alternate ease-in-out;
}

@keyframes hyzenCtaPulse {
    from {
        opacity: 0.3;
        transform: scale(1);
    }

    to {
        opacity: 0.6;
        transform: scale(1.2);
    }
}