/* Product CTA Section Styles */
.product-cta-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.product-cta-content {
    background-color: var(--color-dark-darker);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(77, 208, 225, 0.2);
}

/* Network Pattern Background */
.product-cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(77, 208, 225, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(77, 208, 225, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(77, 208, 225, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 10% 80%, rgba(77, 208, 225, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(77, 208, 225, 0.2) 2px, transparent 2px);
    background-size: 
        80px 80px,
        80px 80px,
        100px 100px,
        90px 90px,
        90px 90px;
    background-position:
        0 0,
        100% 100%,
        50% 50%,
        10% 80%,
        90% 20%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* Network Lines */
.product-cta-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(77, 208, 225, 0.1) 20%, transparent 40%),
        linear-gradient(45deg, transparent 0%, rgba(77, 208, 225, 0.1) 20%, transparent 40%),
        linear-gradient(90deg, transparent 0%, rgba(77, 208, 225, 0.08) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(77, 208, 225, 0.08) 50%, transparent 100%);
    background-size: 
        200px 200px,
        200px 200px,
        150px 150px,
        150px 150px;
    background-position:
        20% 30%,
        80% 70%,
        0 0,
        0 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.product-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.product-cta-title .highlight-text {
    color: var(--color-primary);
}

.product-cta-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
}

.product-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-download-now {
    background: linear-gradient(135deg, var(--color-accent-green), var(--color-primary-light));
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    border: none;
    cursor: pointer;
}

.btn-download-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-green));
}

.btn-download-now:active {
    transform: translateY(0);
}

.btn-contact-sales {
    background: transparent;
    color: var(--color-primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

.btn-contact-sales:hover {
    background: rgba(77, 208, 225, 0.1);
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-contact-sales:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-cta-section {
        padding: 80px 0;
    }

    .product-cta-content {
        padding: 60px 40px;
        border-radius: 20px;
    }

    .product-cta-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .product-cta-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .product-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-download-now,
    .btn-contact-sales {
        width: 100%;
        max-width: 280px;
        padding: 14px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .product-cta-section {
        padding: 60px 0;
    }

    .product-cta-content {
        padding: 50px 30px;
        border-radius: 16px;
    }

    .product-cta-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .product-cta-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-download-now,
    .btn-contact-sales {
        padding: 12px 30px;
        font-size: 14px;
    }
}


