/* Stili specifici di cyber-security.php.
   Estratto il 2026-08-25 dal blocco inline nella pagina. */

.hero-wrapper { background: url('/assets/img/hero-cybersecurity.webp') center center / cover no-repeat; position: relative; }

        /* ============================================
           PERCHE SCEGLIERMI
        ============================================ */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .why-choose-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }

        .why-choose-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .why-choose-card h3 {
            font-size: 1.25rem;
            color: var(--secondary);
            margin-bottom: 16px;
        }

        .why-choose-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* ============================================
           GUIDA SERVIZI SICUREZZA DETTAGLIATA
        ============================================ */
        .security-guide-section {
            padding: 100px 0;
            background: var(--white);
        }

        .security-detail {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 40px;
            padding: 50px;
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
            border-left: 5px solid #dc2626;
            transition: all 0.3s;
        }

        .security-detail:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }

        .security-detail:nth-child(even) {
            border-left-color: var(--primary);
        }

        .security-icon-large {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
            flex-shrink: 0;
        }

        .security-detail:nth-child(even) .security-icon-large {
            background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
            box-shadow: 0 10px 30px rgba(252, 179, 33, 0.3);
        }

        .security-content h3 {
            font-size: 1.75rem;
            margin-bottom: 8px;
            color: var(--secondary);
        }

        .security-subtitle {
            font-size: 1.1rem;
            color: #dc2626;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .security-detail:nth-child(even) .security-subtitle {
            color: var(--primary-dark);
        }

        .security-description {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 24px;
            color: var(--text-light);
        }

        .security-includes {
            background: var(--gray-50);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .security-includes h4 {
            font-size: 1rem;
            margin-bottom: 16px;
            color: var(--secondary);
            font-family: 'Poppins', sans-serif;
        }

        .security-includes ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .security-includes li {
            padding-left: 28px;
            position: relative;
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .security-includes li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .security-detail:nth-child(even) .security-includes li::before {
            color: var(--primary);
        }

        .security-ideal {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .security-ideal-for,
        .security-price {
            flex: 1;
            min-width: 200px;
        }

        .security-ideal-for h4,
        .security-price h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            margin-bottom: 12px;
            font-family: 'Poppins', sans-serif;
        }

        .security-ideal-for ul {
            list-style: none;
        }

        .security-ideal-for li {
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
            font-size: 0.95rem;
            color: var(--text);
        }

        .security-ideal-for li::before {
            content: '\2022';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
        }

        .security-detail:nth-child(even) .security-ideal-for li::before {
            color: var(--primary);
        }

        .security-price p {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary);
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
            padding: 16px 20px;
            border-radius: 12px;
            display: inline-block;
        }

        .security-detail:nth-child(even) .security-price p {
            background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
        }

        .security-warning {
            margin-top: 16px;
            padding: 16px;
            background: rgba(220, 38, 38, 0.08);
            border-left: 3px solid #dc2626;
            border-radius: 0 12px 12px 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .security-warning strong {
            color: #dc2626;
        }

        /* TABELLA COMPARATIVA SICUREZZA */
        .security-comparison-section {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .comparison-table-wrapper {
            overflow-x: auto;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            min-width: 800px;
        }

        .comparison-table th {
            background: var(--secondary);
            color: var(--white);
            padding: 20px 16px;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .comparison-table th:first-child { border-radius: 16px 0 0 0; }
        .comparison-table th:last-child { border-radius: 0 16px 0 0; }

        .comparison-table td {
            padding: 18px 16px;
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.95rem;
            color: var(--text);
        }

        .comparison-table tr:last-child td { border-bottom: none; }
        .comparison-table tr:last-child td:first-child { border-radius: 0 0 0 16px; }
        .comparison-table tr:last-child td:last-child { border-radius: 0 0 16px 0; }

        .comparison-table tbody tr { transition: all 0.3s; }
        .comparison-table tbody tr:hover {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.02) 100%);
        }

        .comparison-table td:first-child {
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            color: var(--secondary);
        }

        .priority-tag {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .priority-critical { background: rgba(220, 38, 38, 0.15); color: #dc2626; }
        .priority-high { background: rgba(234, 88, 12, 0.15); color: #ea580c; }
        .priority-medium { background: rgba(251, 188, 4, 0.15); color: #f9ab00; }
        .priority-standard { background: rgba(34, 197, 94, 0.15); color: #16a34a; }

        .cta-note {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }

        @media (max-width: 1024px) {
            .why-choose-grid { grid-template-columns: 1fr; }
            .security-detail { grid-template-columns: 80px 1fr; gap: 30px; padding: 40px; }
            .security-icon-large { width: 80px; height: 80px; border-radius: 20px; }
            .security-includes ul { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .security-detail { grid-template-columns: 1fr; padding: 30px; gap: 20px; }
            .security-icon-large { width: 70px; height: 70px; }
            .security-content h3 { font-size: 1.4rem; }
            .security-ideal { flex-direction: column; gap: 24px; }
            .comparison-table { font-size: 0.85rem; }
            .comparison-table th, .comparison-table td { padding: 14px 12px; }
            .security-guide-section, .security-comparison-section { padding: 80px 0; }
            .why-choose-card { padding: 30px; }
        }
