:root {
    --cta-bg-1: #18243A;
    --cta-bg-2: #239322;
}

.cta-section-3559c639 {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--cta-bg-1) 0%, var(--cta-bg-2) 100%);
    border-radius: 24px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 40px 0;
}

.cta-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite alternate;
}

.cta-shape-1 {
    background: #239322;
    width: 400px; height: 400px;
    top: -100px; right: -100px;
}

.cta-shape-2 {
    background: #18243A;
    width: 500px; height: 500px;
    bottom: -200px; left: -200px;
    animation-delay: -5s;
}

.cta-grid-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-section-3559c639.is-visible .cta-content {
    opacity: 1;
    transform: translateX(0);
}

.cta-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    color: #E5E7EB;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #239322;
    color: #fff;
    box-shadow: 0 10px 20px rgba(35, 147, 34, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(35, 147, 34, 0.5);
    color: #fff;
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #18243A;
    transform: translateY(-3px);
}

.cta-visual {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.2s;
}

.cta-section-3559c639.is-visible .cta-visual {
    opacity: 1;
    transform: translateX(0);
}

.cta-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.cta-float-icon {
    position: absolute;
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #239322;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-1 { top: -20px; left: -20px; animation-delay: 0s; }
.icon-2 { bottom: 40px; right: -25px; animation-delay: -1.5s; color: #18243A; }
.icon-3 { top: 50%; left: -30px; animation-delay: -3s; }

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

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

@media (max-width: 992px) {
    .cta-container { flex-direction: column; text-align: center; }
    .cta-content { transform: translateY(30px); }
    .cta-visual { transform: translateY(30px); margin-top: 40px; }
    .cta-section-3559c639.is-visible .cta-content,
    .cta-section-3559c639.is-visible .cta-visual { transform: translateY(0); }
    .cta-actions { justify-content: center; }
    .cta-heading { font-size: 36px; }
}

@media (max-width: 768px) {
    .cta-section-3559c639 { padding: 60px 20px; }
    .cta-heading { font-size: 28px; }
    .cta-btn { width: 100%; margin-bottom: 10px; }
    .cta-float-icon { display: none; }
}