/* ========== HOW WE WORK PAGE ========== */
.hww-page {
    width: 85%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Left Photo */
.hww-photo {
    flex: 0 0 47%;
    position: relative;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 50px 0;
}

.hww-photo-wrapper {
    position: relative;
    width: 80%;
    height: 82%;
    overflow: hidden;
}

.hww-photo-wrapper img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hww-photo-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    z-index: 2;
}

/* Right Content */
.hww-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: var(--color-white);
    padding: 60px 50px;
}

.hww-text-wrapper {
    max-width: 560px;
}

.hww-heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

/* Steps */
.hww-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hww-step {
    position: relative;
    padding-left: 56px;
}

.hww-step::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 36px;
    bottom: -32px;
    width: 1px;
    background: var(--color-light-gray);
}

.hww-step:last-child::before {
    display: none;
}

.hww-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.hww-step-number {
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hww-step-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-navy);
    letter-spacing: 0.01em;
}

.hww-step p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    line-height: 1.75;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hww-content {
        padding: 50px 30px;
    }

    .hww-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hww-page {
        width: 100%;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hww-photo {
        flex: none;
        height: 40vh;
    }

    .hww-content {
        flex: none;
        padding: 40px 30px 80px;
    }
}
