/* Page-specific overrides for professional snagging inspection. */
.round-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--nbn-light-blue);
    color: #005BBB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin: 0 auto 1rem;
}

.inspection-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    position: relative;
}

.inspection-step {
    position: relative;
    background: white;
    border: 1px solid var(--nbn-border);
    border-radius: 0.9rem;
    padding: 2rem 1.3rem 1.5rem;
    text-align: center;
    min-height: 240px;
    box-shadow: 0 12px 28px rgba(13, 43, 69, 0.05);
}

    .inspection-step.featured {
        border: 2px solid #005BBB;
        background: #F8FBFF;
    }

.step-number {
    position: absolute;
    top: -16px;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #005BBB;
    color: white;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspection-step h3 {
    font-size: 1.05rem;
    font-weight: 800;
}

.inspection-step p,
.inspection-step li {
    font-size: 0.93rem;
}

.inspection-step ul {
    text-align: left;
    padding-left: 1rem;
    margin-bottom: 0;
}