/* =========================================
   Demo CTA Block Styles - Premium Design
   ========================================= */

.demo-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

/* Premium Gradient Mesh Background */
.demo-cta__gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 80, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

/* Animated Glow Orbs */
.demo-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.demo-cta__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 80, 0, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.demo-cta__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Decorative Shapes */
.demo-cta__shape {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.demo-cta__shape--1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: pulse 4s ease-in-out infinite;
}

.demo-cta__shape--2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 80, 0, 0.1) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite 1s;
}

.demo-cta__shape--3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    border-color: rgba(139, 92, 246, 0.2);
    animation: pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.demo-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.demo-cta__content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

/* Premium Badge */
.demo-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.demo-cta__badge svg {
    color: #ff5000;
}

.demo-cta__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-cta__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Premium Button with Glow Effect */
.demo-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 60px;
    padding: 0 40px;
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 0 0 0 rgba(255, 80, 0, 0.4),
        0 10px 30px -5px rgba(255, 80, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.demo-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.demo-cta__button:hover::before {
    left: 100%;
}

.demo-cta__button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 8px rgba(255, 80, 0, 0.15),
        0 20px 40px -5px rgba(255, 80, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff6020 0%, #f56010 100%);
    color: white;
    text-decoration: none;
}

.demo-cta__button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.demo-cta__button:hover svg {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .demo-cta {
        padding: 70px 0;
    }

    .demo-cta__title {
        font-size: 36px;
    }

    .demo-cta__description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .demo-cta__button {
        width: 100%;
        justify-content: center;
        height: 56px;
        font-size: 16px;
    }

    .demo-cta__orb--1 {
        width: 300px;
        height: 300px;
    }

    .demo-cta__orb--2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .demo-cta {
        padding: 60px 0;
    }

    .demo-cta__title {
        font-size: 30px;
    }

    .demo-cta__description {
        font-size: 15px;
    }

    .demo-cta__button {
        height: 52px;
        padding: 0 32px;
    }
}