/* Security & Compliance Page Styles */

/* IT Services - SVG Container */
.product-image-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.product-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Packages Grid */
.services-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

/* Services Process Grid (3 columns) */
.services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    text-align: center;
}

/* Consulting Process Grid (5 columns) */
.consulting-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.process-phase {
    text-align: center;
}

/* Working Style Grid (2 columns) */
.working-style-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.working-style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.working-style-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.working-style-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Use Cases Grid (2 columns) */
.use-cases-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.use-case-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
    display: flex;
    gap: 1.5rem;
}

.use-case-icon {
    flex-shrink: 0;
}

.use-case-icon-circle {
    width: 60px;
    height: 60px;
    background: #2c2c2c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.use-case-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.process-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: white;
    border: 3px solid #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.process-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.process-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Product Section Layouts */
.product-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.product-layout-left {
    grid-template-columns: 1fr 2fr;
}

.product-layout-right {
    grid-template-columns: 2fr 1fr;
}

.product-layout:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Product Image */
.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

/* Product Content */
.product-badge {
    display: inline-block;
    background: #2c2c2c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Feature Grid inside products */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item-title {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.3rem;
}

.feature-item-description {
    font-size: 0.9rem;
    color: #666;
}

.product-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s;
}

.product-link:hover {
    background: #444;
}

/* Security Icons Grid */
.security-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.security-icon-box {
    text-align: center;
}

.security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.security-icon-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Optimizations */
@media (max-width: 968px) {
    /* Stack all product layouts vertically */
    .product-layout,
    .product-layout-left,
    .product-layout-right {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    /* Services packages - 2 columns on tablet */
    .services-packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .services-process-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Consulting process - 2 columns on tablet */
    .consulting-process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }

    /* Working style - 1 column on tablet */
    .working-style-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .working-style-box {
        padding: 2rem;
    }

    /* Use cases - 1 column on tablet */
    .use-cases-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Ensure image comes first on mobile */
    .product-layout-right > div:first-child {
        order: 2;
    }

    .product-layout-right > div:last-child {
        order: 1;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-description {
        font-size: 1rem;
    }

    /* Feature grid - 1 column on mobile */
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Security icons - 2x2 grid on mobile */
    .security-icons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .security-icon {
        width: 60px;
        height: 60px;
    }

    .security-icon-title {
        font-size: 0.95rem;
    }

    .security-icon-subtitle {
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .product-title {
        font-size: 1.4rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
    }

    .services-packages-grid {
        grid-template-columns: 1fr !important;
    }

    /* Consulting process - 1 column on mobile */
    .consulting-process-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .working-style-box {
        padding: 1.5rem;
    }

    .use-case-box {
        padding: 1.5rem;
        gap: 1rem;
    }

    .product-image-container {
        padding: 1.5rem;
    }
}
