/* ========================================
   JaktLicens – Process Section CSS
   ======================================== */

.wp-block-jaktlicens-process-steps,
.process {
    padding: 100px 0;
    background: var(--bg-light, #f5f7f5);
}

.process .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process .section-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.process .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    font-weight: 400;
    margin-bottom: 20px;
}

.process .section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Steps Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Step */
.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: var(--bg-white, white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Step Number */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Step Icon */
.step-icon {
    width: 50px;
    height: 50px;
    margin: 20px auto 25px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Step Content */
.process-step h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .process {
        padding: 60px 0;
    }

    .process-step {
        padding: 30px 20px;
    }
}
