/* ============================================
   Penetration Testing Page Styles
   ============================================ */

/* ── Hero ── */
.pentest-hero {
    position: relative;
    min-height: 100vh;
    background: #081F2C;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.pentest-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(185, 28, 28, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(124, 45, 146, 0.15) 0%, transparent 60%);
}

/* Hex grid decoration */
.hex-grid {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,53 30,68 2,53 2,17' fill='none' stroke='rgba(185,28,28,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 70px;
    opacity: 0.6;
}

.pentest-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pentest-hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(185, 28, 28, 0.2);
    color: #f87171;
    border: 1px solid rgba(185, 28, 28, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.pentest-hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pentest-hero-text .hero-highlight {
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pentest-hero-text .hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.pentest-hero-text .hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
}

.pentest-hero-text .stat-item {
    text-align: left;
}

.pentest-hero-text .stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pentest-hero-text .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-light {
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
    border-color: rgba(185, 28, 28, 0.6);
    background: rgba(185, 28, 28, 0.1);
    color: #fff;
}

/* Terminal Visual */
.pentest-hero-visual {
    display: flex;
    justify-content: center;
}

.terminal {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(185, 28, 28, 0.15);
    font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
    background: #161b22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.terminal-title {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
}

.terminal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.terminal-line {
    font-size: 0.82rem;
    line-height: 1.5;
    white-space: pre;
}

.terminal-line .prompt {
    color: #E31B48;
    margin-right: 8px;
    font-weight: 700;
}

.terminal-line .cmd {
    color: #e2e8f0;
}

.terminal-line.output {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.45);
}

.terminal-line.output.success { color: #4ade80; }
.terminal-line.output.warn    { color: #facc15; }
.terminal-line.output.danger  { color: #f87171; }

.highlight-red {
    color: #f87171;
    font-weight: 700;
    background: rgba(248, 113, 113, 0.1);
    padding: 0 4px;
    border-radius: 3px;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── What We Test Section ── */
.pentest-services {
    padding: 100px 0;
    background: #f8f9fb;
}

.pentest-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pentest-services .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #081F2C;
    margin-bottom: 12px;
}

.pentest-services .section-header p {
    color: #6B7280;
    font-size: 1.05rem;
}

.pentest-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pentest-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.pentest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E31B48, #BC2E91);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pentest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(185, 28, 28, 0.25);
}

.pentest-card:hover::before {
    opacity: 1;
}

.pentest-card.featured {
    border-color: rgba(185, 28, 28, 0.3);
    background: linear-gradient(135deg, #fff 0%, rgba(185, 28, 28, 0.02) 100%);
}

.pentest-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.pentest-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pentest-card-icon svg {
    width: 24px;
    height: 24px;
}

.pentest-card-icon.network  { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.pentest-card-icon.webapp   { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.pentest-card-icon.social   { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.pentest-card-icon.cloud    { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
.pentest-card-icon.mobile   { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.pentest-card-icon.redteam  { background: rgba(185, 28, 28, 0.12); color: #B91C1C; }

.pentest-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #081F2C;
    margin-bottom: 10px;
}

.pentest-card > p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.pentest-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pentest-card ul li {
    color: #374151;
    font-size: 0.87rem;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.pentest-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #E31B48;
    font-weight: 700;
    font-size: 1rem;
}

.pentest-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pentest-card-tags span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #B91C1C;
    background: rgba(185, 28, 28, 0.08);
    border: 1px solid rgba(185, 28, 28, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* ── Methodology Section ── */
.pentest-methodology {
    padding: 100px 0;
    background: #081F2C;
    position: relative;
    overflow: hidden;
}

.pentest-methodology::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 45, 146, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pentest-methodology .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pentest-methodology .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.pentest-methodology .section-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.method-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.method-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(185, 28, 28, 0.35);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.3), rgba(124, 45, 146, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 44px;
    height: 44px;
    background: rgba(185, 28, 28, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    margin-bottom: 16px;
}

.step-icon svg {
    width: 22px;
    height: 22px;
}

.method-step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.method-step p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── Why Choose Us ── */
.pentest-why {
    padding: 100px 0;
    background: #ffffff;
}

.pentest-why .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pentest-why .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #081F2C;
    margin-bottom: 12px;
}

.pentest-why .section-header p {
    color: #6B7280;
    font-size: 1.05rem;
}

.arrow {
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #f8f9fb;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1), rgba(124, 45, 146, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B91C1C;
    margin-bottom: 20px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #081F2C;
    margin-bottom: 10px;
}

.why-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── CTA Section ── */
.pentest-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #081F2C 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.pentest-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pentest-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 45, 146, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(185, 28, 28, 0.2);
    color: #f87171;
    border: 1px solid rgba(185, 28, 28, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.cta-inner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.btn-cta-outline:hover {
    border-color: rgba(185, 28, 28, 0.5);
    background: rgba(185, 28, 28, 0.1);
    color: #ffffff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pentest-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .pentest-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .pentest-hero-text .hero-stats {
        justify-content: center;
    }
    .pentest-hero-text .stat-item {
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .pentest-hero-text .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .pentest-hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .pentest-hero-text h1 {
        font-size: 2.4rem;
    }
    .pentest-services-grid,
    .methodology-steps,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .cta-inner h2 {
        font-size: 2rem;
    }
    .terminal {
        font-size: 0.75rem;
    }
    .terminal-line {
        white-space: normal;
        word-break: break-all;
    }
}

/* ============================================
   Engagement Request Form
   ============================================ */

.pentest-form-section {
    padding: 100px 0;
    background: #081F2C;
    position: relative;
    overflow: hidden;
}

.pentest-form-section::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(185,28,28,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pentest-form-section::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,45,146,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.required { color: #E31B48; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: #111827;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E31B48;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185,28,28,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: #fafafa;
}

.checkbox-option:hover {
    border-color: #E31B48;
    background: rgba(185,28,28,0.03);
}

.checkbox-option.consent {
    border: none;
    padding: 0;
    background: transparent;
    align-items: flex-start;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 5px;
    background: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-top: 1px;
}

.checkbox-option input:checked ~ .checkbox-box {
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    border-color: #E31B48;
}

.checkbox-option input:checked ~ .checkbox-box::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.checkbox-option:has(input:checked) {
    border-color: rgba(185,28,28,0.4);
    background: rgba(185,28,28,0.04);
}

.checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.checkbox-label strong {
    font-size: 0.83rem;
    color: #374151;
    font-weight: 600;
}

.checkbox-label small {
    font-size: 0.73rem;
    color: #9CA3AF;
}

.checkbox-option.consent .checkbox-label {
    font-size: 0.83rem;
    color: #6B7280;
    line-height: 1.5;
    flex-direction: row;
    flex-wrap: wrap;
}

.checkbox-option.consent .checkbox-label a {
    color: #E31B48;
    text-decoration: none;
}

.checkbox-option.consent .checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 24px rgba(185,28,28,0.35);
    margin-top: 8px;
}

.form-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(185,28,28,0.45);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 36px 20px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 24px;
}

.form-success h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #166534;
    margin: 0;
}

.form-success p {
    color: #15803d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .form-card { padding: 28px 20px; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Certifications Section ── */
.pentest-certifications {
    padding: 80px 0;
    background: #f8fafc;
}

.pentest-certifications .section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #0f172a;
    text-align: center;
    margin-bottom: 12px;
}

.pentest-certifications .section-header p {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 48px;
}

.pentest-certifications .certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pentest-certifications .certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pentest-certifications .certification-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pentest-certifications .certification-item img {
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
}

.pentest-certifications .certification-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

@media (max-width: 768px) {
    .pentest-certifications .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .pentest-certifications .certification-item {
        padding: 16px 10px;
    }
    .pentest-certifications .certification-item img {
        max-width: 70px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .pentest-certifications .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
