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

/* Header with parallax */
.our-process .header {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}
.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;
    will-change: transform, opacity;
}
.our-process .header .tagline {
    max-width: 500px;
    will-change: transform, opacity;
}
.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;
}

/* Background canvas for depth */
.our-process .values-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* 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: 10;
}

.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: 10;
    width: 200px;
    justify-content: space-between;
}

.our-process .step-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    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);
}

/* Vignette overlay for depth */
.our-process .values::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(ellipse 120% 100% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
}

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

/* 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;
}

/* Depth background glow - ambient radial gradients */
.our-process .value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Odd cards: glow on right (illustration side) */
.our-process .value-card:nth-child(odd)::before {
    background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(120, 20, 40, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 65% 55%, rgba(80, 15, 30, 0.1) 0%, transparent 50%);
}

/* Even cards: glow on left (illustration side is on right but text/number on left) */
.our-process .value-card:nth-child(even)::before {
    background:
        radial-gradient(ellipse 60% 70% at 30% 50%, rgba(120, 20, 40, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 35% 55%, rgba(80, 15, 30, 0.1) 0%, transparent 50%);
}

.our-process .value-card.active::before {
    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;
    overflow: hidden;
}

/* ========================================
   ASCII FRAME
   ======================================== */

.our-process .card-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(85vw, 1300px);
    height: 70vh;
    pointer-events: none;
}

/* Corner brackets */
.our-process .frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .frame-corner::before,
.our-process .frame-corner::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
}

/* Horizontal lines */
.our-process .frame-corner::before {
    height: 1px;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleX(0);
}

/* Vertical lines */
.our-process .frame-corner::after {
    width: 1px;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scaleY(0);
}

/* Position each corner */
.our-process .frame-corner.top-left {
    top: 0;
    left: 0;
    transform: translate(-20px, 0);
}
.our-process .frame-corner.top-left::before {
    top: 0;
    left: 0;
    transform-origin: left;
}
.our-process .frame-corner.top-left::after {
    top: 0;
    left: 0;
    transform-origin: top;
}

.our-process .frame-corner.top-right {
    top: 0;
    right: 0;
    transform: translate(20px, 0);
}
.our-process .frame-corner.top-right::before {
    top: 0;
    right: 0;
    transform-origin: right;
}
.our-process .frame-corner.top-right::after {
    top: 0;
    right: 0;
    transform-origin: top;
}

.our-process .frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-20px, 0);
}
.our-process .frame-corner.bottom-left::before {
    bottom: 0;
    left: 0;
    transform-origin: left;
}
.our-process .frame-corner.bottom-left::after {
    bottom: 0;
    left: 0;
    transform-origin: bottom;
}

.our-process .frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(20px, 0);
}
.our-process .frame-corner.bottom-right::before {
    bottom: 0;
    right: 0;
    transform-origin: right;
}
.our-process .frame-corner.bottom-right::after {
    bottom: 0;
    right: 0;
    transform-origin: bottom;
}

/* Active state - corners animate in */
.our-process .value-card.active .frame-corner {
    opacity: 1;
}

.our-process .value-card.active .frame-corner.top-left,
.our-process .value-card.active .frame-corner.bottom-left {
    transform: translate(0, 0);
}

.our-process .value-card.active .frame-corner.top-right,
.our-process .value-card.active .frame-corner.bottom-right {
    transform: translate(0, 0);
}

.our-process .value-card.active .frame-corner::before {
    transform: scaleX(1);
    transition-delay: 0.3s;
}

.our-process .value-card.active .frame-corner::after {
    transform: scaleY(1);
    transition-delay: 0.3s;
}

/* Stagger the corners - delayed entrance */
.our-process .value-card .frame-corner.top-left { transition-delay: 0.4s; }
.our-process .value-card .frame-corner.top-right { transition-delay: 0.5s; }
.our-process .value-card .frame-corner.bottom-right { transition-delay: 0.6s; }
.our-process .value-card .frame-corner.bottom-left { transition-delay: 0.7s; }

.our-process .value-card.active .frame-corner.top-left::before,
.our-process .value-card.active .frame-corner.top-left::after { transition-delay: 0.7s; }
.our-process .value-card.active .frame-corner.top-right::before,
.our-process .value-card.active .frame-corner.top-right::after { transition-delay: 0.8s; }
.our-process .value-card.active .frame-corner.bottom-right::before,
.our-process .value-card.active .frame-corner.bottom-right::after { transition-delay: 0.9s; }
.our-process .value-card.active .frame-corner.bottom-left::before,
.our-process .value-card.active .frame-corner.bottom-left::after { transition-delay: 1.0s; }

/* Terminal-style tag */
.our-process .frame-tag {
    position: absolute;
    bottom: -30px;
    left: 0;
    font-family: "Courier New", monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 1.1s;
}

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

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

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

/* Even cards: number on left (text is on left for even cards) */
.our-process .value-card:nth-child(even) .step-number {
    left: 80px;
    right: auto;
    transform: translateY(-50%) translateX(-30px);
}

.our-process .value-card:nth-child(even).active .step-number {
    transform: translateY(-50%) translateX(0);
}

/* 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;
}

/* Illustration wrapper - contains glow, frame, and image */
.our-process .illustration-wrapper {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow effect behind illustration */
.our-process .illustration-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        ellipse 40% 45% at 50% 50%,
        rgba(140, 30, 50, 0.3) 0%,
        rgba(100, 20, 35, 0.18) 30%,
        rgba(60, 15, 25, 0.06) 60%,
        transparent 75%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
    z-index: 0;
}

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

/* Illustration frame - tight corners around image */
.our-process .illustration-frame {
    position: absolute;
    inset: -20px;
    pointer-events: none;
    z-index: 2;
}

/* Illustration corner brackets */
.our-process .ill-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .ill-corner::before,
.our-process .ill-corner::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Horizontal lines */
.our-process .ill-corner::before {
    height: 1px;
    width: 100%;
    transform: scaleX(0);
}

/* Vertical lines */
.our-process .ill-corner::after {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
}

/* Position each corner */
.our-process .ill-corner.top-left {
    top: 0;
    left: 0;
}
.our-process .ill-corner.top-left::before {
    top: 0;
    left: 0;
    transform-origin: left;
}
.our-process .ill-corner.top-left::after {
    top: 0;
    left: 0;
    transform-origin: top;
}

.our-process .ill-corner.top-right {
    top: 0;
    right: 0;
}
.our-process .ill-corner.top-right::before {
    top: 0;
    right: 0;
    transform-origin: right;
}
.our-process .ill-corner.top-right::after {
    top: 0;
    right: 0;
    transform-origin: top;
}

.our-process .ill-corner.bottom-left {
    bottom: 0;
    left: 0;
}
.our-process .ill-corner.bottom-left::before {
    bottom: 0;
    left: 0;
    transform-origin: left;
}
.our-process .ill-corner.bottom-left::after {
    bottom: 0;
    left: 0;
    transform-origin: bottom;
}

.our-process .ill-corner.bottom-right {
    bottom: 0;
    right: 0;
}
.our-process .ill-corner.bottom-right::before {
    bottom: 0;
    right: 0;
    transform-origin: right;
}
.our-process .ill-corner.bottom-right::after {
    bottom: 0;
    right: 0;
    transform-origin: bottom;
}

/* Active state - corners animate in */
.our-process .value-card.active .ill-corner {
    opacity: 1;
}

.our-process .value-card.active .ill-corner::before {
    transform: scaleX(1);
}
.our-process .value-card.active .ill-corner::after {
    transform: scaleY(1);
}

/* Stagger the illustration corners */
.our-process .value-card .ill-corner.top-left { transition-delay: 0.5s; }
.our-process .value-card .ill-corner.top-right { transition-delay: 0.6s; }
.our-process .value-card .ill-corner.bottom-right { transition-delay: 0.7s; }
.our-process .value-card .ill-corner.bottom-left { transition-delay: 0.8s; }

.our-process .value-card.active .ill-corner.top-left::before,
.our-process .value-card.active .ill-corner.top-left::after { transition-delay: 0.7s; }
.our-process .value-card.active .ill-corner.top-right::before,
.our-process .value-card.active .ill-corner.top-right::after { transition-delay: 0.8s; }
.our-process .value-card.active .ill-corner.bottom-right::before,
.our-process .value-card.active .ill-corner.bottom-right::after { transition-delay: 0.9s; }
.our-process .value-card.active .ill-corner.bottom-left::before,
.our-process .value-card.active .ill-corner.bottom-left::after { transition-delay: 1.0s; }

/* Illustration image */
.our-process .value-card .illustration {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 0.2s;
    position: relative;
    z-index: 1;
}

.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-wrapper {
    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: 80px;
    right: auto;
}

/* 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); }
}

/* Illustration credit - Bold editorial style */
.our-process .illustration-credit {
    position: relative;
    background: linear-gradient(135deg, #1a0a0f 0%, #2d1018 50%, #1a0a0f 100%);
    overflow: hidden;
}

/* Marquee container */
.our-process .credit-marquee {
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.our-process .credit-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.our-process .credit-marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.our-process .credit-marquee-content span {
    font-family: "Lexend", sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.our-process .credit-marquee-content span.filled {
    color: rgba(255, 255, 255, 0.9);
    -webkit-text-stroke: none;
}

.our-process .credit-marquee-content .separator {
    font-size: clamp(32px, 5vw, 48px);
    color: rgba(180, 60, 80, 0.6);
    -webkit-text-stroke: none;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Credit details */
.our-process .credit-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.our-process .credit-details .credit-label {
    font-family: "Courier New", monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.our-process .credit-details .credit-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Lexend", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .credit-details .credit-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.our-process .credit-details .credit-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Closing CTA */
/* ========================================
   CLOSING CTA SECTION
   ======================================== */

.our-process .closing-cta {
    position: relative;
    z-index: 0;
    padding: 120px 0 140px;
    background: linear-gradient(to bottom, #1a1215 0%, #0a0a0a 30%);
    overflow: hidden;
}

.our-process .closing-cta__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

.our-process .closing-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left content */
.our-process .closing-cta__content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.our-process .closing-cta.animate .closing-cta__content {
    opacity: 1;
    transform: translateY(0);
}

.our-process .closing-cta__label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.our-process .closing-cta__label .label-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.our-process .closing-cta__label .label-text {
    font-family: "Courier New", monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}

.our-process .closing-cta__title {
    font-family: "Lexend";
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: white;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.our-process .closing-cta__title .title-line {
    display: block;
}

.our-process .closing-cta__title em {
    font-style: normal;
    color: #c75f6b;
}

.our-process .closing-cta__text {
    font-family: "Lexend";
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 40px 0;
    max-width: 320px;
}

.our-process .closing-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    text-decoration: none;
    font-family: "Lexend";
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .closing-cta__btn .btn-arrow {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-process .closing-cta__btn .btn-arrow svg {
    width: 18px;
    height: 18px;
}

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

.our-process .closing-cta__btn:hover .btn-arrow {
    transform: translate(4px, -4px);
}

/* Right visual */
.our-process .closing-cta__visual {
    position: relative;
    z-index: 2;
    aspect-ratio: 1;
    max-width: 400px;
    justify-self: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.our-process .closing-cta.animate .closing-cta__visual {
    opacity: 1;
    transform: translateY(0);
}

/* Frame corners */
.our-process .closing-cta__visual .visual-frame {
    position: absolute;
    inset: 0;
}

.our-process .closing-cta__visual .frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.15);
}

.our-process .closing-cta__visual .frame-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.our-process .closing-cta__visual .frame-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.our-process .closing-cta__visual .frame-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.our-process .closing-cta__visual .frame-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Logo visual */
.our-process .closing-cta__visual .visual-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-process .closing-cta__visual .logo-wrapper {
    position: relative;
    z-index: 2;
}

.our-process .closing-cta__visual .logo-image {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(199, 95, 107, 0.4));
    animation: logo-float 4s ease-in-out infinite;
}

/* Face */
.our-process .closing-cta__visual .logo-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Eyes */
.our-process .closing-cta__visual .logo-eye {
    position: absolute;
    top: 32%;
    width: 6px;
    height: 6px;
    background: black;
    border-radius: 50%;
    animation: eye-blink 4s ease-in-out infinite;
    transition: width 0.2s ease, height 0.2s ease, transform 0.1s ease-out;
}

.our-process .closing-cta__visual .logo-face.interested .logo-eye {
    width: 8px;
    height: 8px;
    animation: none;
}

.our-process .closing-cta__visual .logo-eye--left {
    left: 18%;
}

.our-process .closing-cta__visual .logo-eye--right {
    left: 48%;
}

.our-process .closing-cta__visual .logo-mouth {
    position: absolute;
    top: 52%;
    left: 32%;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.our-process .closing-cta__visual .logo-mouth--smile {
    opacity: 1;
}

.our-process .closing-cta__visual .logo-mouth--oh {
    width: 6px;
    height: 8px;
    background: black;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
}

.our-process .closing-cta__visual .logo-face.interested .logo-mouth--smile {
    opacity: 0;
    transform: scale(0.5);
}

.our-process .closing-cta__visual .logo-face.interested .logo-mouth--oh {
    opacity: 1;
    transform: scale(1);
}

@keyframes eye-blink {
    0%, 40%, 44%, 100% {
        transform: scaleY(1);
    }
    42% {
        transform: scaleY(0.1);
    }
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.our-process .closing-cta__visual .logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(199, 95, 107, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logo-pulse 3s ease-in-out infinite;
}

.our-process .closing-cta__visual .logo-glow--delayed {
    width: 180px;
    height: 180px;
    animation-delay: -1.5s;
    opacity: 0.5;
}

@keyframes logo-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.our-process .closing-cta__visual .logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 1px solid rgba(199, 95, 107, 0.2);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.our-process .closing-cta__visual .logo-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #c75f6b;
    border-radius: 50%;
    transform: translateX(-50%);
}

.our-process .closing-cta__visual .logo-ring--outer {
    width: 220px;
    height: 220px;
    border-color: rgba(199, 95, 107, 0.1);
    animation-direction: reverse;
    animation-duration: 30s;
}

.our-process .closing-cta__visual .logo-ring--outer::before {
    width: 4px;
    height: 4px;
    opacity: 0.6;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbiting dots */
.our-process .closing-cta__visual .visual-orbit {
    position: absolute;
    inset: -20px;
    animation: orbit-rotate 20s linear infinite;
}

.our-process .closing-cta__visual .orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #c75f6b;
    border-radius: 50%;
    opacity: 0.6;
}

.our-process .closing-cta__visual .orbit-dot:nth-child(1) {
    top: 10%;
    left: 50%;
}

.our-process .closing-cta__visual .orbit-dot:nth-child(2) {
    top: 70%;
    left: 10%;
    width: 4px;
    height: 4px;
    opacity: 0.4;
}

.our-process .closing-cta__visual .orbit-dot:nth-child(3) {
    top: 60%;
    right: 5%;
    width: 8px;
    height: 8px;
    opacity: 0.8;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@media (max-width: 1400px) {
    .our-process .value-card-inner {
        gap: 60px;
        padding: 0 40px;
        max-width: 1200px;
    }
    .our-process .card-frame {
        width: min(90vw, 1100px);
    }
    .our-process .value-card .text-section .description {
        max-width: 420px;
    }
    .our-process .value-card .illustration {
        max-width: 400px;
    }
}

@media (max-width: 1200px) {
    .our-process .value-card-inner {
        gap: 50px;
        padding: 0 30px;
        max-width: 1000px;
    }
    .our-process .card-frame {
        width: min(92vw, 950px);
    }
    .our-process .value-card .step-number {
        font-size: 100px;
        right: 40px;
    }
    .our-process .value-card:nth-child(even) .step-number {
        left: 40px;
        right: auto;
    }
    .our-process .value-card .text-section .description {
        max-width: 380px;
        font-size: 14px;
    }
    .our-process .value-card .text-section .title {
        font-size: 24px;
    }
    .our-process .value-card .illustration {
        max-width: 350px;
    }
}

@media (max-width: 1000px) {
    /* Switch to vertical scroll layout at 1000px */
    .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,
    .our-process .card-frame,
    .our-process .values-canvas {
        display: none;
    }
    .our-process .values::after {
        display: none;
    }
    .our-process .value-card::before {
        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 {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        max-width: 600px;
        padding: 0 40px;
    }
    .our-process .value-card .illustration-placeholder,
    .our-process .value-card .illustration-wrapper {
        order: 1 !important;
        max-width: 350px;
    }
    .our-process .value-card .illustration {
        max-width: 350px;
        opacity: 1;
        transform: none;
    }
    .our-process .illustration-glow,
    .our-process .illustration-frame {
        display: none;
    }
    .our-process .value-card .text-section {
        order: 2 !important;
        justify-self: center !important;
        text-align: center !important;
    }
    .our-process .value-card .text-section .title {
        font-size: 24px;
        margin-bottom: 16px;
        opacity: 1;
        transform: none;
    }
    .our-process .value-card .text-section .description {
        text-align: left;
        margin: 0 auto !important;
        font-size: 15px;
        line-height: 1.7;
        max-width: 480px;
        opacity: 1;
        transform: none;
    }
    /* Hide the large floating number - stacked layout makes it awkward */
    .our-process .value-card .step-number {
        display: none;
    }
}

@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;
    }
    .our-process .value-card {
        padding: 60px 0;
    }
    .our-process .value-card-inner {
        padding: 0 24px;
    }
    .our-process .value-card .illustration-placeholder,
    .our-process .value-card .illustration-wrapper {
        max-width: 280px;
    }
    .our-process .value-card .illustration {
        max-width: 280px;
    }
    .our-process .value-card .text-section .title {
        font-size: 22px;
    }
    .our-process .value-card .text-section .description {
        font-size: 14px;
    }
    .our-process .credit-marquee {
        padding: 40px 0;
    }
    .our-process .credit-details {
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }
    .our-process .closing-cta {
        padding: 60px 0 80px;
    }
    .our-process .closing-cta__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .our-process .closing-cta__content {
        order: 1;
    }
    .our-process .closing-cta__label {
        justify-content: center;
    }
    .our-process .closing-cta__text {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .our-process .closing-cta__btn {
        justify-content: center;
    }
    .our-process .closing-cta__visual {
        order: 0;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    .our-process .closing-cta__title {
        font-size: 32px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .our-process .values-canvas {
        display: none;
    }
    .our-process .value-card::before {
        transition: none;
    }
    .our-process .values::after {
        background: none;
    }
    .our-process .closing-cta__canvas {
        display: none;
    }
    .our-process .closing-cta__content,
    .our-process .closing-cta__visual {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .our-process .closing-cta__visual .visual-orbit {
        animation: none;
    }
    .our-process .closing-cta__visual .logo-image {
        animation: none;
    }
    .our-process .closing-cta__visual .logo-glow {
        animation: none;
    }
    .our-process .closing-cta__visual .logo-ring {
        animation: none;
    }
    .our-process .closing-cta__visual .logo-eye {
        animation: none;
    }
}
