/* Our Process */

.process-page {
    background: #000;
    color: #f2f2e8;
    overflow: hidden;
}

.process-hero {
    position: relative;
    min-height: 430px;
    background: #000;
    overflow: hidden;
}

.process-hero-image {
    position: absolute;
    inset: 0;
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
}

.process-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 74px;
}

.process-hero-copy {
    width: 70%;
}

.process-eyebrow,
.process-hero h1,
.process-claim-button,
.process-step-number,
.process-step-card h2,
.process-commitment-copy h2,
.process-commitment-card h3,
.process-quote-panel p,
.process-quote-panel cite {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.process-eyebrow {
    margin: 0 0 12px;
    color: #9dff45;
    font-size: 18px;
    line-height: 1.2;
}

.process-hero h1 {
    margin: 0 0 22px;
    color: #f2f2e8;
    font-size: clamp(46px, 5.2vw, 82px);
    line-height: 0.98;
}

.process-hero-copy > p:last-child {
    max-width: 620px;
    margin: 0;
    color: #e7e7dc;
    font-size: 18px;
    line-height: 1.72;
}

.process-claim-button {
    display: inline-flex;
    width: fit-content;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    padding: 0 28px;
    border: 1px solid #9dff45;
    border-radius: 6px;
    color: #9dff45;
    text-decoration: none;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.44);
}

.process-steps-section {
    margin-top: 30px;
}

.process-steps-panel,
.process-commitment-panel,
.process-quote-panel {
    border: 1px solid rgba(138, 255, 0, 0.58);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.78);
    box-shadow: 0 0 26px rgba(138, 255, 0, 0.1);
}

.process-steps-panel {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
}

.process-step-card {
    position: relative;
    padding: 20px 18px 24px;
    text-align: center;
    border-right: 1px solid rgba(138, 255, 0, 0.26);
}

.process-step-card:last-child {
    border-right: 0;
}

.process-step-number {
    margin: 0 0 14px;
    color: #9dff45;
    font-size: 18px;
}

.process-step-card img,
.process-commitment-card img {
    object-fit: cover;
    border: 1px solid rgba(138, 255, 0, 0.48);
    border-radius: 50%;
    filter: brightness(0) saturate(100%) invert(92%) sepia(81%) saturate(1012%) hue-rotate(31deg) brightness(102%) contrast(101%);
}

.process-step-card img {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
}

.process-step-card h2 {
    margin: 0 0 12px;
    color: #f2f2e8;
    font-size: 22px;
    line-height: 1.22;
}

.process-step-card p:last-child {
    margin: 0;
    color: #deded0;
    font-size: 14px;
    line-height: 1.62;
}

.process-commitment-section {
    padding-top: 8px;
}

.process-commitment-panel {
    display: grid;
    grid-template-columns: minmax(300px, 1.55fr) repeat(4, minmax(0, 1fr));
    overflow: hidden;
}

.process-commitment-copy,
.process-commitment-card {
    padding: 22px 28px;
    border-right: 1px solid rgba(138, 255, 0, 0.26);
}

.process-commitment-card:last-child {
    border-right: 0;
}

.process-commitment-copy h2 {
    margin: 0 0 14px;
    color: #9dff45;
    font-size: 25px;
}

.process-commitment-copy p {
    margin: 0;
    color: #e2e2d7;
    line-height: 1.7;
}

.process-commitment-card {
    text-align: center;
}

.process-commitment-card img {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
}

.process-commitment-card h3 {
    margin: 0 0 8px;
    color: #f2f2e8;
    font-size: 21px;
}

.process-commitment-card p {
    margin: 0;
    color: #d8d8c8;
    line-height: 1.55;
}

.process-quote-section {
    padding: 8px 0 48px;
}

.process-quote-panel {
    display: grid;
    grid-template-columns: 110px minmax(360px, 0.9fr) 1fr;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 24px 34px;
    background: #010200;
}

.process-quote-panel > span {
    color: #8aff00;
    font-family: Georgia, serif;
    font-size: 112px;
    line-height: 0.78;
}

.process-quote-panel p {
    margin: 0;
    color: #f2f2e8;
    font-size: clamp(24px, 2.35vw, 32px);
    line-height: 1.18;
}

.process-quote-panel cite {
    display: block;
    margin-top: 10px;
    color: #9dff45;
    font-size: 15px;
    font-style: normal;
}

.process-signal-image {
    display: block;
    width: 100%;
    min-height: 62px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .process-steps-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-step-card:nth-child(3n) {
        border-right: 0;
    }

    .process-step-card:nth-child(n+4) {
        border-top: 1px solid rgba(138, 255, 0, 0.26);
    }

    .process-commitment-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .process-hero,
    .process-hero-inner {
        min-height: 620px;
    }

    .process-hero-image {
        background-size: auto 78%;
        background-position: right bottom;
    }

    .process-hero-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 130px;
    }

    .process-hero-copy {
        width: 100%;
    }

    .process-hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .process-claim-button {
        margin-top: 28px;
    }

    .process-steps-panel,
    .process-commitment-panel,
    .process-quote-panel {
        grid-template-columns: 1fr;
    }

    .process-step-card,
    .process-step-card:nth-child(3n),
    .process-commitment-copy,
    .process-commitment-card {
        border-right: 0;
    }

    .process-step-card,
    .process-commitment-card {
        border-top: 1px solid rgba(138, 255, 0, 0.26);
    }

    .process-step-card:first-child,
    .process-commitment-card:first-of-type {
        border-top: 0;
    }

    .process-quote-panel {
        padding: 24px;
    }
}
