h2 {
    margin-bottom: 20px;
}
.steps-container{
    margin: 40px auto 0px;
}

@media (max-width: 767px) {
    h2 {
        margin-bottom: 10px;
    }
    .steps-container{
        margin: 0px auto 0px;
    }
}

.image-text a{
    color: var(--main-color);
}
.image-text span{
    font-weight: 600;
}
.image-text h3 img {
    height: 45px;
    vertical-align: middle;
    margin-right: 8px;
}

.image-text .centered-list li {
    padding-left: 0;
}

.image-text .centered-list li::before {
    content: ""
}

.centered-list li img {
    height: 20px;
    vertical-align: middle;
    margin-right: 3px;
}

.image-text {
    margin: 50px 0;
}


.wrapper {
    margin: 20px auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
}

.wrapper .panel {
    padding: 24px;
    border-radius: 20px;
}

.wrapper .panel-purple {
    background: #f3f0ff;
    grid-row: 1 / span 2;
}

.wrapper .panel h3 {
    margin: 0 0 20px;
    font-size: 18px;
}

.wrapper .panel p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #555;
}

.panel-purple {
    background: #f3f0ff;
}

.panel-orange {
    background: #fff3e6;
}

.panel-green {
    background: #eafaf1;
}

.wrapper .panel-orange {
    grid-column: 2;
}

.wrapper .panel-green {
    grid-column: 2;
}

.wrapper .icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wrapper .icon-grid.small {
    grid-template-columns: repeat(3, 1fr);
}

.wrapper .item {
    border-radius: 14px;
    text-align: center;
}

.wrapper .item img {
    margin-bottom: 6px;
}

.wrapper .item span {
    justify-items: center;
}

/* More */
.wrapper .item.more {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
}

.black-background {
    background: black;
    color: white;
}

@media (max-width: 768px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .wrapper .panel {
        padding: 20px 10px;
    }

    .wrapper .panel h3 {
        font-size: 14px;
    }
    .image-text{
        margin: 20px 0;
    }
}

/* =============================
           GRID LAYOUT
        ============================= */
.grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    grid-template-areas:
    "left top top"
    "left bottom1 bottom2"
    "left bottom1 bottom2"
    "left bottom1 bottom2";
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.grid .card-left {
    grid-area: left;
}

.grid .card-top {
    grid-area: top;
}

.grid .card-bottom-1 {
    grid-area: bottom1;
}

.grid .card-bottom-2 {
    grid-area: bottom2;
}

.grid .card-top p {
    width: 270px
}

/* =============================
   CARD BASE
============================= */
.grid .card {
    position: relative;
    background: linear-gradient(135deg, #7b3ff2, #8f5bff);
    color: #fff;
    border-radius: 16px;
    padding: 20px 0px;
    overflow: hidden;
}

.grid .card .text {
    padding-left: 30px;
}

.grid .card h3 {
    margin: 5px 0 10px;
    font-size: 18px;
}

.grid .card p {
    margin: 0 10px 0 0;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.9;
}

/* =============================
   IMAGE PREVIEW (PC)
============================= */
.grid .preview {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.grid .preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-left: 30px;
    cursor:default;
    transition: none;
}

.preview img:hover {
    transform: none;
}

/* =============================
   LEFT BIG CARD
============================= */
.grid {
    height: 620px;
}

/* =============================
   TOP CARD (PC only)
============================= */
.grid .card-top {
    /*padding-right: 240px;*/
    padding-bottom: 16px;
}

.grid .card-top .preview {
    right: 0;
    top: 0;
    bottom: 0;
    margin-top: 60px;
}

/* =============================
   MOBILE: ALL IMAGES BELOW
============================= */
@media (max-width: 767px) {
    .grid {

    }

    .grid .card-left {
        height: auto;
    }

    .grid {
        height: auto;
        margin-top: 10px;
        margin-bottom: 20px;
        grid-template-columns: 1fr;
        grid-template-areas:
      "left"
      "top"
      "bottom1"
      "bottom2";
    }

    .grid .card {
        padding: 0px;
    }

    .grid .card .text {
        padding-top: 20px;
    }

    .grid .preview {
        position: static !important;
        width: 100% !important;
        margin-top: 12px !important;
        transform: none !important;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
    .custom-pand {
        padding-left: 20px;
        padding-right: 20px;
    }
    .grid {
        margin-top: 20px;
        height: 560px;
        margin-bottom: 20px;
    }

    .grid .card-bottom-1 {
        height: 320px;
    }

    .grid .card-bottom-2 {
        height: 320px;
    }

    .grid .card-top p {
        width: 180px
    }

    .grid .card .text {
        padding-left: 20px;
    }

    .grid .card-top .preview {
        margin-top: 80px;
    }

    .grid .card .text img {
        height: 32px;
    }

    .grid .card p {
        font-size: 13px;
    }

    .grid .card h3 {
        text-align: left;
    }
}

/* =============================
           LAYOUT
        ============================= */
.feature {
    max-width: 1100px;
    margin: 40px auto 60px;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 32px;
}

/* =============================
   LEFT LIST
============================= */
.feature .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature input {
    display: none;
}

.feature .item {
    position: relative;
    background: #2b2b2b;
    border-radius: 16px;
    padding: 20px 20px 20px 44px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s ease;
    border-left: 3px solid #505050;
}

.feature .item:hover {
    background: #333;
}

.feature .item h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.feature .item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #cfcfcf;
}

/* active (PC) */
#f1:checked ~ .list label[for="f1"],
#f2:checked ~ .list label[for="f2"] {
    background: #343434;
    border-left: 3px solid #7b5cff;
}

#f1:checked ~ .list label[for="f1"]::before,
#f2:checked ~ .list label[for="f2"]::before {
    opacity: 1;
}

/* =============================
   RIGHT IMAGE (PC)
============================= */
.feature .preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.feature .preview .img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: default;
}

#f1:checked ~ .preview .img-1 {
    opacity: 1;
}

#f2:checked ~ .preview .img-2 {
    opacity: 1;
}

/* =============================
   MOBILE IMAGES
============================= */
.feature .mobile-img {
    display: none;
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
}

.feature .mobile-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* =============================
   MOBILE
============================= */
@media (max-width: 1023px) {
    .feature {
        grid-template-columns: 1fr;
        margin: 10px auto 20px;
    }

    .feature .preview {
        display: none;
    }

    .feature .item::before {
        display: none;
    }

    .feature .mobile-img {
        display: block;
    }

    .feature .mobile-img img {
        height: 500px;
    }

    .feature .item {
        cursor: default;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .feature .mobile-img img {
        height: 240px;
    }
}
