/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    padding: 100px 40px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c8503c;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #d4cfc9;
}

.section-title {
    font-family: serif;
    font-size: 52px;
    font-weight: 500;
    color: #2d2a26;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 19px;
    color: #6b6560;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== PROCESS BLOCKS CONTAINER ========== */
.process-blocks {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* ========== INDIVIDUAL PROCESS BLOCK ========== */
.process-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Alternating layouts */
.process-block:nth-child(even) {
    direction: rtl;
}

.process-block:nth-child(even) > * {
    direction: ltr;
}

/* Image container */
.process-image {
    position: relative;
}

.process-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 24px 60px rgba(0, 0, 0, 0.12);
}

.process-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Floating accent image */
.process-image-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 16px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #f8f6f4;
}

.process-block:nth-child(odd) .process-image-accent {
    bottom: -40px;
    right: -40px;
}

.process-block:nth-child(even) .process-image-accent {
    bottom: -40px;
    left: -40px;
}

.process-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative elements */
.process-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
}

.process-block:nth-child(odd) .process-decoration {
    top: -30px;
    left: -30px;
}

.process-block:nth-child(even) .process-decoration {
    top: -30px;
    right: -30px;
}

/* Content */
.process-content {
    padding: 20px 0;
}

/* Step badge */
.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.process-badge-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #c8503c 0%, #a8402f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.process-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #6b6560;
}

/* Title */
.process-title {
    font-family: serif;
    font-size: 40px;
    font-weight: 500;
    color: #2d2a26;
    margin-bottom: 16px;
    line-height: 1.2;
}

.process-tagline {
    font-size: 18px;
    color: #6b6560;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 440px;
}

/* Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff4d6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: #d4a853;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2a26;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 14px;
    color: #6b6560;
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.process-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #c8503c 0%, #a8402f 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(200, 80, 60, 0.25);
}

.process-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 80, 60, 0.35);
}

.process-cta svg {
    width: 18px;
    height: 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .process-block {
        gap: 60px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-image-main img {
        height: 400px;
    }

    .process-image-accent {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 900px) {
    .section-header {
        padding: 80px 24px 60px;
    }

    .section-title {
        font-size: 40px;
    }

    .process-blocks {
        padding: 0 24px;
        gap: 80px;
    }

    .process-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-block:nth-child(even) {
        direction: ltr;
    }

    .process-image-accent {
        bottom: -24px;
        right: -16px !important;
        left: auto !important;
        width: 120px;
        height: 120px;
    }

    .process-decoration {
        display: none;
    }

    .process-content {
        padding: 0;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }

    .process-image-main img {
        height: 300px;
    }

    .step-item {
        padding: 16px;
    }

    .step-item:hover {
        transform: none;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }
}