
    .hero-banner > * {
        margin-bottom: 2rem;
        background-color: black;
    }

.hero-banner .banner-section {
        background: linear-gradient(180deg, #e7f1ff 0%, #fff 100%);
        padding: 1rem;
    }

.hero-banner .banner-section h1 {
            color: var(--dark-text);
            font-size: 40px;
            font-weight: 700;
            line-height: 52px;
            text-align: center;
        }

.hero-banner .banner-section h1 span {
                color: var(--active-blue);
            }

.hero-banner .banner-section .info-container {
            padding: 16px;
        }

.hero-banner .banner-section .description {
            margin-top: 12px;
            color: var(--dark-text);
            font-size: 20px;
            font-weight: 500;
            line-height: 28px;
            text-align: center;
        }

.hero-banner .banner-section .stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
        }

.hero-banner .banner-section .stats > *:not(:first-child) {
                margin-top: 24px;
            }

.hero-banner .banner-section .test-carmatik {
            display: block;
            border-radius: 8px;
            border: 1px solid var(--active-blue);
            background: var(--active-blue);
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
            padding: 12px 16px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            margin: 48px auto;
            width: 60%;
        }

.hero-banner .banner-section .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--dark-text);
            font-size: 1rem;
            font-weight: 600;
        }

.hero-banner .banner-section .stat .value {
                color: var(--active-blue);
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 8px;
            }

.hero-banner .banner-section .presentation-img-container {
            display: flex;
        }

.hero-banner .banner-section .presentation-img-wrapper {
            overflow: hidden;
            position: relative;
        }

.hero-banner .banner-section .presentation-img {
            width: 100%;
            clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
        }

.hero-banner .banner-section .styling-line {
            position: absolute;
            top: 0;
            left: -16px;
        }

.hero-banner .banner-section .line-2 {
            top: auto;
            top: initial;
            left: auto;
            left: initial;
            bottom: 0;
            right: 0;
        }

.hero-banner .key-benefits-section h3 {
            color: var(--active-blue);
            text-align: center;
            font-size: 20px;
            font-weight: 600;
        }

.hero-banner .key-benefits-section .benefits-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: stretch;
            padding: 16px;
        }

.hero-banner .key-benefits-section .benefits-list > * {
                margin-top: 16px;
            }

.hero-banner .key-benefits-section .benefit {
            display: flex;
            padding: 12px;
            align-items: center;
            border-radius: 10px;
            box-shadow: 0px 0px 3px 0px rgba(16, 24, 40, 0.35);
            background: var(--white);
            width: 100%;
        }

.hero-banner .key-benefits-section .benefit img {
                margin-right: 12px;
            }

.hero-banner .matik-section {
        display: grid;
        grid-gap: 16px;
        gap: 16px;
        padding: 16px;
        grid-template-areas:
            "message message"
            "matik matik";
        justify-content: center;
        align-items: end;
    }

.hero-banner .matik-section .matik {
            grid-area: matik;
            max-width: 40vw;
            justify-self: center;
        }

.hero-banner .matik-section .message-bubble {
            grid-area: message;
            padding: 10px 20px;
            gap: 10px;
            border-radius: 12px 12px 0px 12px;
            background: #eef3f8;
            color: var(--dark-text);
            font-weight: 600;
            line-height: 24px; /* 150% */
        }

@media (min-width: 1024px) {
        .hero-banner .banner-section {
            display: flex;
            justify-content: center;
            padding: 2rem;
        }

            .hero-banner .banner-section .info-container {
                max-width: 50%;
            }
            .hero-banner .banner-section h1 {
                text-align: inherit;
            }

            .hero-banner .banner-section .description {
                text-align: inherit;
            }

            .hero-banner .banner-section .stats {
                flex-direction: row;
                justify-content: space-between;
            }
                .hero-banner .banner-section .stats :first-child {
                    margin-top: 24px;
                }

                .hero-banner .banner-section .stats .test-carmatik {
                    margin: 48px auto 0 auto;
                }

                .hero-banner .banner-section .stats .value {
                    font-size: 2rem;
                    text-align: left;
                }
            .hero-banner .key-benefits-section .benefits-list {
                align-items: center;
                width: 700px;
                margin: 0 auto;
            }

                .hero-banner .key-benefits-section .benefits-list > * {
                    margin: 0 0 20px 20px;
                }

            .hero-banner .key-benefits-section .benefit {
                width: auto;
            }

        .hero-banner .matik-section {
            grid-template-areas: "message1 matik message2";
            grid-template-columns: repeat(3, 1fr);
            margin: 64px 20%;
        }

            .hero-banner .matik-section .message-1 {
                align-self: start;
            }
}
