/* Premium CTA Section Styling */
.cta-section-premium {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    color: white;
}

.cta-badge {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e9ecef;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e9ecef;
    font-size: 0.95rem;
}

.cta-feature i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.cta-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
}

.cta-btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-btn-premium:hover .btn-shine {
    left: 100%;
}

.cta-btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

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

.cta-btn-premium span {
    position: relative;
    z-index: 2;
}

.cta-btn-premium i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.cta-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.cta-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* SVG Animations */
.pulse-circle {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        r: 120; 
        opacity: 0.1; 
    }
    50% { 
        r: 130; 
        opacity: 0.2; 
    }
}

.building-main {
    animation: buildingFloat 4s ease-in-out infinite;
}

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

.building-side {
    animation: buildingFloat 4s ease-in-out infinite 0.5s;
}

.window {
    animation: windowBlink 2s ease-in-out infinite;
}

@keyframes windowBlink {
    0%, 90%, 100% { opacity: 0.9; }
    95% { opacity: 0.3; }
}

.money-circle.float-1 {
    animation: float1 3s ease-in-out infinite;
}

.money-circle.float-2 {
    animation: float2 3.5s ease-in-out infinite 0.5s;
}

.money-circle.float-3 {
    animation: float3 4s ease-in-out infinite 1s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

.chart-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 100; }
    50%, 100% { stroke-dashoffset: 0; }
}

.document {
    animation: documentFloat 3s ease-in-out infinite 1.5s;
}

@keyframes documentFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

.dot-1, .dot-2, .dot-3 {
    animation: dotFloat 2s ease-in-out infinite;
}

.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.7s; }
.dot-3 { animation-delay: 1.4s; }

@keyframes dotFloat {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.7; }
    50% { transform: scale(1.2) translateY(-3px); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cta-section-premium {
        padding: 3rem 0;
    }
    
    .cta-content {
        gap: 2rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-btn-premium {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .cta-features {
        align-items: center;
    }
    
    .illustration-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-btn-premium {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .illustration-container {
        max-width: 250px;
    }
}