/* FEATURES PAGE */
.features-page {
    overflow: hidden
}

.feature-hero .hero-content {
    max-width: 860px
}

.hero-actions {
    margin-top: 28px
}

.feature-intro,
.feature-difference {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 40px
}

.feature-intro {
    text-align: center
}

.feature-intro>p {
    max-width: 780px;
    margin: 0 auto
}

.feature-workflow {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.feature-workflow-step {
    min-width: 108px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid #dfe7ef;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
    font-size: 13px;
    font-weight: 600;
    color: #334155
}

.feature-workflow-step i {
    color: #10b981;
    font-size: 20px
}

.feature-workflow-arrow {
    color: #94a3b8;
    font-size: 12px
}

.feature-showcase {
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 40px;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 72px
}

.feature-showcase+.feature-showcase {
    border-top: 1px solid #e8edf3
}

.feature-showcase-reverse .feature-showcase-copy {
    order: 2
}

.feature-showcase-reverse .feature-showcase-media {
    order: 1
}

.feature-showcase-copy h2,
.feature-difference h2 {
    margin: 10px 0 20px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -.03em
}

.feature-showcase-copy p {
    color: #475569;
    font-size: 17px;
    line-height: 1.8
}

.feature-number {
    display: block;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em
}

.feature-list {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    line-height: 1.6
}

.feature-list li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

.feature-showcase-media {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: radial-gradient(circle at top left, rgba(16, 185, 129, .12), transparent 42%), #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .08)
}

.feature-showcase-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px
}

.feature-difference {
    margin-top: 40px;
    margin-bottom: 90px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px
}

.feature-difference-copy {
    max-width: 760px;
    margin-bottom: 46px
}

.feature-difference-copy p {
    color: #475569;
    font-size: 17px;
    line-height: 1.8
}

.feature-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px
}

.feature-comparison-column {
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px
}

.feature-comparison-column h3 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: 21px
}

.feature-comparison-column ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 15px;
    list-style: none
}

.feature-comparison-column li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    line-height: 1.55
}

.feature-comparison-column i {
    width: 18px;
    margin-top: 4px;
    color: #94a3b8;
    text-align: center
}

.feature-comparison-highlight {
    border-color: rgba(16, 185, 129, .45);
    box-shadow: 0 18px 40px rgba(16, 185, 129, .08)
}

.feature-comparison-highlight i {
    color: #10b981
}


.image-lightbox {
    display: block;
    cursor: zoom-in;
}

.image-lightbox img {
    transition: transform .25s ease,
                box-shadow .25s ease;
}

.image-lightbox:hover img {
    transform: scale(1.02);
}

.lightbox {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(15,23,42,.92);

    z-index: 5000;
}

.lightbox.open {
    display: flex;
}

.lightbox img {

    max-width: 92vw;
    max-height: 92vh;

    border-radius: 12px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.45);
}

.lightbox-close {

    position: absolute;
    top: 24px;
    right: 34px;

    color: white;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;

    user-select: none;
}



@media(max-width:900px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 70px;
        padding-bottom: 70px
    }

    .feature-showcase-reverse .feature-showcase-copy,
    .feature-showcase-reverse .feature-showcase-media {
        order: initial
    }

    .feature-comparison {
        grid-template-columns: 1fr
    }

    .feature-workflow-arrow {
        display: none
    }
}

@media(max-width:640px) {

    .feature-intro,
    .feature-showcase,
    .feature-difference {
        padding-left: 20px;
        padding-right: 20px
    }

    .feature-workflow {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .feature-workflow-step {
        min-width: 0
    }

    .feature-showcase-media {
        min-height: 220px;
        padding: 10px
    }

    .feature-difference {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 18px
    }
}