/* ===================================
   365 DIALER - PCI COMPLIANCE PAGE STYLES
   Custom styles for PCI Compliance Feature page
   =================================== */

/* ===== PCI HERO VISUAL ===== */
.pci-visual {
    position: relative;
    width: 400px;
    max-width: 100%;
}

.pci-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.security-laptop {
    position: relative;
}

.laptop-screen {
    width: 280px;
    height: 180px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 15px 15px 0 0;
    padding: 15px;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lock-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-navy);
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(118, 252, 251, 0.6); }
}

.security-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.security-bars span {
    width: 30px;
    height: 8px;
    background: var(--gradient-secondary);
    border-radius: 4px;
    animation: loadingBar 1.5s ease-in-out infinite;
}

.security-bars span:nth-child(1) { animation-delay: 0s; }
.security-bars span:nth-child(2) { animation-delay: 0.2s; }
.security-bars span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingBar {
    0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.laptop-base {
    width: 320px;
    height: 15px;
    background: linear-gradient(145deg, #2a2a4e 0%, #1a1a2e 100%);
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: var(--border-color);
    border-radius: 0 0 5px 5px;
}

.floating-shield {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-navy);
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    box-shadow: var(--shadow-lg);
    animation: floatCard 5s ease-in-out infinite reverse;
}

.security-checkmark {
    position: absolute;
    bottom: 60px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: rgba(120, 253, 196, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mint);
    animation: floatCard 3s ease-in-out infinite;
}

/* ===== PCI BENEFITS SECTION ===== */
.pci-benefits-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.pci-benefits-layout {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.pci-benefits-header .section-badge,
.pci-benefits-header .section-title,
.pci-benefits-header .section-description {
    text-align: left;
}

.pci-benefits-header .section-title {
    font-size: 2.5rem;
}

.pci-benefits-header .section-description {
    margin-bottom: 30px;
}

.pci-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.pci-benefit-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.pci-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.pci-benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.pci-benefit-card:hover .benefit-icon {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    transform: scale(1.1);
}

.pci-benefit-card .benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pci-benefit-card .benefit-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== CRM PARTNERS SECTION ===== */
.crm-partners-section {
    background: var(--bg-primary);
    padding: var(--section-padding);
}

.crm-partners-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.crm-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-normal);
}

.crm-partner-item:hover {
    transform: translateY(-5px);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyan);
    transition: all var(--transition-normal);
}

.crm-partner-item:hover .partner-icon {
    border-color: var(--cyan);
    box-shadow: var(--shadow-glow);
}

.crm-partner-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===== OTHER PRODUCTS SECTION ===== */
.other-products-section {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.other-product-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.other-product-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.other-product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyan);
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.other-product-card:hover .other-product-icon {
    background: var(--gradient-secondary);
    color: var(--dark-navy);
    transform: scale(1.1);
}

.other-product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.other-product-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 12px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .pci-visual {
        width: 350px;
    }

    .pci-benefits-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pci-benefits-header {
        text-align: center;
    }

    .pci-benefits-header .section-badge,
    .pci-benefits-header .section-title,
    .pci-benefits-header .section-description {
        text-align: center;
    }

    .pci-benefits-header .btn {
        display: inline-flex;
    }
}

@media (max-width: 992px) {
    .pci-visual {
        display: none;
    }

    .pci-benefits-grid {
        grid-template-columns: 1fr;
    }

    .other-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .crm-partners-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .other-products-grid {
        grid-template-columns: 1fr;
    }

    .crm-partners-grid {
        gap: 25px;
    }

    .partner-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .pci-benefits-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .pci-benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .pci-benefit-card .benefit-icon {
        margin: 0 auto;
    }

    .other-product-card {
        padding: 30px 20px;
    }

    .other-product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .partner-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .crm-partners-grid {
        gap: 20px;
    }
}
