.unified-cta-premium {
    background: transparent;
    padding: 80px 60px;
    position: relative;
}

.unified-cta-container {
    max-width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-card-premium {
    background: linear-gradient(135deg, #0a1929 0%, #1a2f4d 50%, #0a1929 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 35px 25px 25px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 580px;
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    max-width: fit-content;
    max-height: 450px;
}

.cta-card-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse at 50% 0%,
            rgba(14, 165, 233, 0.15) 0%,
            rgba(59, 130, 246, 0.1) 30%,
            transparent 70%
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(96, 213, 248, 0.12) 0%,
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(14, 165, 233, 0.06) 0%,
            rgba(96, 213, 248, 0.03) 50%,
            transparent 100%
        );
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-card-premium:hover::after {
    background: radial-gradient(
            ellipse at 50% 0%,
            rgba(14, 165, 233, 0.25) 0%,
            rgba(59, 130, 246, 0.18) 30%,
            transparent 70%
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(96, 213, 248, 0.2) 0%,
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(14, 165, 233, 0.12) 0%,
            rgba(96, 213, 248, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 100%
        );
}

.cta-card-premium > * {
    position: relative;
    z-index: 1;
}

.cta-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 50px 130px rgba(0, 0, 0, 0.7),
        0 30px 70px rgba(14, 165, 233, 0.3), 0 15px 35px rgba(14, 165, 233, 0.4),
        0 0 60px rgba(14, 165, 233, 0.2), inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(14, 165, 233, 0.2);
}

.cta-badge {
    display: none;
}

.cta-icon-premium {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.15) 0%,
        rgba(59, 130, 246, 0.1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    flex-shrink: 0;
}

.cta-assessment .cta-icon-premium {
    margin-top: 0;
}

.cta-assessment {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.assessment-content-section {
    flex: 0 0 auto;
    padding: 55px 50px 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.assessment-action-section {
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    box-shadow: none;
    border-radius: 0 0 32px 32px;
    padding: 45px 50px 38px 50px;
    position: absolute;
    z-index: 1;
    bottom: 5%;
}

.assessment-action-section .cta-buttons-group {
    margin-top: 0;
}

.cta-icon-premium::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.3),
        rgba(96, 213, 248, 0.2)
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-card-premium:hover .cta-icon-premium::before {
    opacity: 1;
}

.cta-icon-premium i {
    font-size: 3.2rem;
    color: #60d5f8;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.5));
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-card-premium:hover .cta-icon-premium {
    transform: scale(1.08);
}

.cta-card-premium:hover .cta-icon-premium i {
    filter: drop-shadow(0 10px 25px rgba(14, 165, 233, 0.7));
}

.cta-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-assessment .cta-card-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 500px;
}

.cta-assessment .cta-card-description {
    margin-bottom: 30px;
}

.cta-card-description strong {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.text-highlight-cyan {
    color: #60d5f8;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(96, 213, 248, 0.5);
}

.cta-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0;
    padding: 15px 20px;
    background: rgba(14, 165, 233, 0.15);
    border-left: 3px solid rgba(96, 213, 248, 0.8);
    border-radius: 8px;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-form-premium {
    width: 100%;
    display: flex;
    gap: 12px;
}

.cta-input-premium {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    outline: none;
}

.cta-input-premium::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-input-premium:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.cta-btn-premium {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.8) 0%,
        rgba(59, 130, 246, 0.7) 100%
    );
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    padding: 16px 28px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    white-space: nowrap;
    text-decoration: none;
}

.cta-btn-premium:hover {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 1) 0%,
        rgba(59, 130, 246, 0.9) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.cta-btn-premium i {
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-btn-premium:hover i {
    transform: translateX(4px);
}

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

.cta-buttons-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: auto;
    justify-content: center;
}

.assessment-action-section .cta-buttons-group {
    margin-top: 0;
}

.cta-btn-primary {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 1) 0%,
        rgba(59, 130, 246, 0.95) 100%
    );
    border: 1px solid rgba(96, 213, 248, 0.5);
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-btn-primary:hover {
    background: linear-gradient(
        135deg,
        rgba(96, 213, 248, 1) 0%,
        rgba(14, 165, 233, 1) 100%
    );
    border-color: rgba(96, 213, 248, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.6),
        0 8px 20px rgba(96, 213, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 30px rgba(96, 213, 248, 0.3);
}

.cta-btn-secondary {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 1;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.cta-btn-secondary:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2),
        0 6px 15px rgba(96, 213, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 25px rgba(255, 255, 255, 0.15);
}

.cta-divider-premium {
    position: relative;
    width: 3px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line-cta {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(14, 165, 233, 0.3) 8%,
        rgba(14, 165, 233, 0.5) 18%,
        rgba(59, 130, 246, 0.7) 28%,
        rgba(96, 213, 248, 0.85) 38%,
        rgba(255, 255, 255, 0.5) 46%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.5) 54%,
        rgba(96, 213, 248, 0.85) 62%,
        rgba(59, 130, 246, 0.7) 72%,
        rgba(14, 165, 233, 0.5) 82%,
        rgba(14, 165, 233, 0.3) 92%,
        transparent 100%
    );
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.7),
        0 0 80px rgba(96, 213, 248, 0.5), 0 0 120px rgba(255, 255, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.divider-glow-cta {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(96, 213, 248, 0.4) 20%,
        rgba(14, 165, 233, 0.3) 45%,
        transparent 70%
    );
    filter: blur(25px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@media (max-width: 1200px) {
    .unified-cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-divider-premium {
        width: 100%;
        height: 4px;
    }

    .divider-line-cta {
        width: 100%;
        height: 4px;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(14, 165, 233, 0.3) 8%,
            rgba(14, 165, 233, 0.5) 18%,
            rgba(59, 130, 246, 0.7) 28%,
            rgba(96, 213, 248, 0.85) 38%,
            rgba(255, 255, 255, 0.5) 46%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.5) 54%,
            rgba(96, 213, 248, 0.85) 62%,
            rgba(59, 130, 246, 0.7) 72%,
            rgba(14, 165, 233, 0.5) 82%,
            rgba(14, 165, 233, 0.3) 92%,
            transparent 100%
        );
    }

    .divider-glow-cta {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .unified-cta-premium {
        padding: 60px 25px;
    }

    .cta-card-premium {
        padding: 45px 35px;
        height: auto;
        max-height: none;
    }

    .cta-assessment {
        padding: 0;
    }

    .assessment-content-section {
        padding: 45px 35px 20px 35px;
    }

    .assessment-action-section {
        padding: 20px 35px 35px 35px;
        position: relative;
        bottom: auto;
    }

    .cta-icon-premium {
        width: 90px;
        height: 90px;
    }

    .cta-icon-premium i {
        font-size: 2.5rem;
    }

    .cta-card-title {
        font-size: 1.6rem;
    }

    .cta-card-description {
        font-size: 0.95rem;
    }

    .cta-quote {
        font-size: 0.85rem;
    }

    .cta-form-premium {
        flex-direction: column;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .unified-cta-premium {
        padding: 50px 20px;
    }

    .cta-card-premium {
        padding: 35px 28px;
        max-height: none;
    }

    .assessment-content-section {
        padding: 35px 28px 18px 28px;
    }

    .assessment-action-section {
        padding: 18px 28px 30px 28px;
        position: relative;
        bottom: auto;
    }

    .cta-icon-premium {
        width: 80px;
        height: 80px;
    }

    .cta-icon-premium i {
        font-size: 2.2rem;
    }

    .cta-card-title {
        font-size: 1.4rem;
    }

    .cta-card-description {
        font-size: 0.9rem;
    }
}
