.process-page {
    overflow: hidden;
    background: var(--cream);
    color: var(--forest2);
}

.process-container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.section-kicker {
    margin: 0;
    color: var(--leaf);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-kicker--light {
    color: #a7f3d0;
}

.section-title {
    max-width: 920px;
    margin: 12px 0 0;
    color: var(--forest2);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.045em;
}

.section-text {
    max-width: 780px;
    margin: 0;
    color: #3f3f46;
    font-size: 18px;
    line-height: 1.75;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.button:hover {
    transform: translateY(-4px);
}

.button--primary {
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.button--secondary {
    border: 1px solid rgba(11, 51, 38, .10);
    background: rgba(255, 255, 255, .70);
    color: var(--forest2);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(14px);
}

.button--light {
    margin-top: 32px;
    background: #fff;
    color: var(--forest2);
}

.button--light:hover {
    background: #d1fae5;
}


/* Hero */

.process-hero {
    position: relative;
    overflow: hidden;
}

.process-hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(64px);
    pointer-events: none;
}

.process-hero__glow--right {
    top: -160px;
    right: 0;
    width: 512px;
    height: 512px;
    background: rgba(47, 125, 75, .20);
}

.process-hero__glow--left {
    left: 0;
    bottom: 0;
    width: 320px;
    height: 320px;
    background: rgba(167, 243, 208, .30);
}

.process-hero__grid {
    position: relative;
    display: grid;
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 96px;
}

.process-hero__content {
    max-width: 860px;
}

.process-hero__title {
    max-width: 1040px;
    margin: 16px 0 0;
    color: var(--forest2);
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.055em;
}

.process-hero__text {
    max-width: 780px;
    margin: 24px 0 0;
    color: #3f3f46;
    font-size: 18px;
    line-height: 1.75;
}

.process-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.process-preview {
    position: relative;
}

.process-preview__window {
    padding: 24px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 40px;
    background: rgba(255, 255, 255, .65);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.process-preview__dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.process-preview__dots span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.process-preview__dots span:nth-child(1) {
    background: #fca5a5;
}

.process-preview__dots span:nth-child(2) {
    background: #fde68a;
}

.process-preview__dots span:nth-child(3) {
    background: #86efac;
}

.process-preview__layout {
    display: grid;
    gap: 16px;
}

.process-preview__line {
    height: 32px;
    border-radius: 999px;
    background: #d1fae5;
}

.process-preview__line--large {
    width: 66%;
}

.process-preview__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.process-preview__cards div {
    height: 96px;
    border-radius: 24px;
}

.process-preview__cards div:nth-child(1) {
    background: #ecfdf5;
}

.process-preview__cards div:nth-child(2) {
    background: #d1fae5;
}

.process-preview__cards div:nth-child(3) {
    background: var(--cream);
}

.process-preview__lines {
    display: grid;
    gap: 12px;
    padding-top: 12px;
}

.process-preview__lines div {
    height: 16px;
    border-radius: 999px;
    background: #f4f4f5;
}

.process-preview__lines div:nth-child(2) {
    width: 83%;
}

.process-preview__lines div:nth-child(3) {
    width: 75%;
}

.process-preview__badge {
    position: absolute;
    right: -12px;
    bottom: -24px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .80);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.process-preview__badge strong {
    display: block;
    color: var(--forest2);
    font-size: 28px;
    line-height: 1;
}

.process-preview__badge span {
    color: #52525b;
    font-size: 14px;
    font-weight: 800;
}


/* Workflow */

.process-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.process-section__header {
    margin-bottom: 48px;
}

.process-section__header--grid {
    display: grid;
    gap: 24px;
    align-items: end;
}

.process-steps {
    display: grid;
    gap: 24px;
}

.process-step {
    padding: 28px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 32px;
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    backdrop-filter: blur(16px);
    transition: transform .3s ease, box-shadow .3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.process-step__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.process-step__number {
    color: var(--leaf);
    font-size: 14px;
    font-weight: 900;
}

.process-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #d1fae5;
    font-size: 24px;
}

.process-step__title {
    margin: 0;
    color: var(--forest2);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
}

.process-step__intro {
    margin: 12px 0 0;
    color: #52525b;
    line-height: 1.75;
}

.process-step__details {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.process-step__details li {
    display: flex;
    gap: 8px;
    color: #3f3f46;
    font-size: 14px;
    font-weight: 800;
}

.process-step__details li span:first-child {
    color: var(--leaf);
}


/* Benefits */

.process-benefits {
    padding-top: 96px;
    padding-bottom: 96px;
    background: rgba(255, 255, 255, .70);
}

.process-benefits__grid {
    display: grid;
    gap: 24px;
}

.process-benefit {
    padding: 28px;
    border: 1px solid rgba(11, 51, 38, .10);
    border-radius: 32px;
    background: rgba(248, 244, 232, .70);
    box-shadow: 0 1px 4px rgba(16, 32, 24, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.process-benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.process-benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: #fff;
    font-size: 24px;
}

.process-benefit h3 {
    margin: 0;
    color: var(--forest2);
    font-size: 22px;
    font-weight: 900;
}

.process-benefit p {
    margin: 12px 0 0;
    color: #52525b;
    line-height: 1.75;
}


/* CTA */

.process-cta {
    padding-top: 96px;
    padding-bottom: 96px;
}

.process-cta__box {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 40px;
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.process-cta__glow {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: rgba(47, 125, 75, .25);
    filter: blur(64px);
}

.process-cta__content {
    position: relative;
    max-width: 780px;
}

.process-cta h2 {
    margin: 16px 0 0;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.055em;
}

.process-cta p:not(.section-kicker) {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.75;
}


/* Responsive */

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-cta__box {
        padding: 64px;
    }
}

@media (min-width: 1024px) {
    .process-hero__grid {
        grid-template-columns: 1fr .9fr;
        align-items: center;
    }

    .process-section__header--grid {
        grid-template-columns: .8fr 1.2fr;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .process-hero__grid {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .process-hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .process-preview__badge {
        right: 12px;
    }

    .process-cta__box {
        padding: 28px;
        border-radius: 32px;
    }
}