body {
    background: black;
}
.our-process {
    margin: 0;
    padding: 0;
}

/* Header */
.our-process .header {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #1a1a1a;
}
.our-process .header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.our-process .header .left-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.our-process .header .page-title {
    font-size: 48px;
    margin-bottom: 0;
}
.our-process .header .tagline {
    max-width: 500px;
}
.our-process .header .right-side {
    display: flex;
    justify-content: flex-end;
}

/* ========================================
   HORIZONTAL SCROLL EXPERIENCE
   ======================================== */

.our-process .values-scroll-container {
    position: relative;
    height: 400vh;
}

.our-process .values {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: black;
}

/* Progress bar */
.our-process .progress-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 100;
}

.our-process .progress-bar-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s ease-out;
}

/* Step indicators */
.our-process .step-indicators {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 50px;
    z-index: 100;
    width: 200px;
    justify-content: space-between;
}

.our-process .step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .step-dot.active {
    background: white;
    transform: scale(1.5);
}

.our-process .step-dot.passed {
    background: rgba(255,255,255,0.5);
}

/* Track */
.our-process .values-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

/* Cards */
.our-process .value-card {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.3;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .value-card.active {
    opacity: 1;
}

/* Card inner layout */
.our-process .value-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1400px;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Large step number */
.our-process .value-card .step-number {
    font-size: 120px;
    font-weight: 200;
    color: rgba(255,255,255,0.06);
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(-40%);
}

.our-process .value-card.active .step-number {
    opacity: 1;
    transform: translateY(-50%);
}

/* Illustration area */
.our-process .illustration-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4/3;
    max-width: 480px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    color: #444;
    font-size: 12px;
    letter-spacing: 0.15em;
    gap: 8px;
    justify-self: center;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.1s;
}

.our-process .value-card.active .illustration-placeholder {
    opacity: 1;
    transform: translateY(0);
}

.our-process .illustration-placeholder .label {
    font-size: 11px;
    opacity: 0.5;
    letter-spacing: 0.1em;
}

.our-process .value-card .illustration {
    justify-self: center;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.1s;
}

.our-process .value-card.active .illustration {
    opacity: 1;
    transform: translateY(0);
}

/* Text section */
.our-process .value-card .text-section {
    justify-self: start;
}

.our-process .value-card .text-section .title {
    font-size: 28px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.15s;
}

.our-process .value-card.active .text-section .title {
    opacity: 1;
    transform: translateY(0);
}

.our-process .value-card .text-section .description {
    max-width: 480px;
    line-height: 1.8;
    font-size: 15px;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.25s;
}

.our-process .value-card.active .text-section .description {
    opacity: 1;
    transform: translateY(0);
}

.our-process .value-card .text-section .description em {
    color: white;
    font-style: normal;
}

/* Alternating layout */
.our-process .value-card:nth-child(even) .illustration-placeholder,
.our-process .value-card:nth-child(even) .illustration {
    order: 2;
}
.our-process .value-card:nth-child(even) .text-section {
    order: 1;
    justify-self: end;
    text-align: right;
}
.our-process .value-card:nth-child(even) .text-section .description {
    margin-left: auto;
}
.our-process .value-card:nth-child(even) .step-number {
    left: auto;
    right: 80px;
}

/* Scroll hint */
.our-process .scroll-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.our-process .scroll-hint.visible {
    opacity: 1;
}

.our-process .scroll-hint span {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.our-process .scroll-hint .arrow {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Closing CTA */
.our-process .closing {
    position: relative;
    z-index: 0;
    padding-top: 100px;
    padding-bottom: 140px;
    background-color: #0a0a0a;
    background-image: url('../assets/images/concrete.jpg');
    background-size: cover;
    background-position: center;
}

.our-process .closing .closing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.our-process .closing .ascii-tag {
    opacity: 0.3;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.our-process .closing .title {
    font-size: 36px;
    letter-spacing: -0.01em;
}

.our-process .closing .button {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .closing .button:hover {
    background-color: white;
    color: black;
    border-color: white;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .our-process .value-card-inner {
        gap: 60px;
        padding: 0 60px;
    }
    .our-process .value-card .step-number {
        font-size: 100px;
        left: 60px;
    }
    .our-process .value-card:nth-child(even) .step-number {
        right: 60px;
    }
}

@media (max-width: 1000px) {
    .our-process .value-card-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        max-width: 600px;
    }
    .our-process .value-card .illustration-placeholder,
    .our-process .value-card .illustration {
        order: 1 !important;
        max-width: 400px;
    }
    .our-process .value-card .text-section {
        order: 2 !important;
        justify-self: center !important;
        text-align: center !important;
    }
    .our-process .value-card .text-section .description {
        text-align: left;
        margin: 0 auto !important;
    }
    .our-process .value-card .step-number {
        font-size: 80px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-50%);
        top: 15%;
    }
    .our-process .value-card.active .step-number {
        transform: translateX(-50%) translateY(-50%);
    }
}

@media (max-width: 768px) {
    .our-process .header {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .our-process .header .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .our-process .header .page-title {
        font-size: 36px;
    }
    /* Disable horizontal scroll on mobile */
    .our-process .values-scroll-container {
        height: auto;
    }
    .our-process .values {
        position: relative;
        height: auto;
        overflow: visible;
    }
    .our-process .values-track {
        flex-direction: column;
    }
    .our-process .progress-bar,
    .our-process .step-indicators,
    .our-process .scroll-hint {
        display: none;
    }
    .our-process .value-card {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 80px 0;
        opacity: 1;
        border-bottom: 1px solid #1a1a1a;
    }
    .our-process .value-card-inner {
        padding: 0 24px;
    }
    .our-process .value-card .step-number {
        position: relative;
        font-size: 48px;
        color: rgba(255,255,255,0.1);
        top: auto;
        left: auto !important;
        transform: none;
        margin-bottom: 20px;
        opacity: 1;
    }
    .our-process .value-card.active .step-number {
        transform: none;
    }
    .our-process .value-card .illustration-placeholder,
    .our-process .value-card .illustration,
    .our-process .value-card .text-section .title,
    .our-process .value-card .text-section .description {
        opacity: 1;
        transform: none;
    }
    .our-process .value-card .illustration-placeholder {
        max-width: 320px;
        height: 200px;
    }
    .our-process .value-card .text-section .title {
        font-size: 22px;
    }
    .our-process .closing {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .our-process .closing .title {
        font-size: 26px;
    }
}
