.heroSection {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #141414;
    overflow: hidden;
        .home-page-background {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: 33.33% 33.33% 23.34% 10%;
            grid-template-rows: 1fr;
            width: 100%;
            height: 100%;
            pointer-events: none;

            .col {
                height: 100%;
                border-right: 1px solid rgba(255, 255, 255, 0.18);
                grid-row: 1;
                position: relative; // ← required for ::after positioning

                &:last-child {
                    border-right: none;
                }

                // shared dot style
                &::after {
                    content: '';
                    position: absolute;
                    right: -2px;        // centers 3px dot on 1px border
                    width: 3px;
                    height: 3px;
                    background: rgba(255, 255, 255, 0.8);
                }

                &:nth-child(2)::after {
                    top: 34%;
                }

                &:nth-child(3)::after {
                    top: 22%;
                }

                &:nth-child(1)::after,
                &:nth-child(4)::after {
                    display: none;
                }
            }

            /* circles must ignore grid flow */
            .circle-large,
            .circle-medium,
            .circle-small {
                position: absolute;
                border: 1px solid rgba(255, 255, 255, 0.18);
                border-radius: 50%;
                aspect-ratio: 1;
                overflow: hidden;
            }

            .circle-large {
                width: 66%;
                left: calc(66% - 33%);
                top: calc(67% - 33%);
            }

            .circle-medium {
                width: 46%;
                left: calc(53% - 23%);
                top: calc(66% - 23%);
            }

            .circle-small {
                width: 100px;
                left: calc(90% - 50px);
                top: calc(22% - 50px);

                .dot-inner {
                    position: absolute;
                    width: 3px;
                    height: 3px;
                    background: #fff;
                    border-radius: 50%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }
        }
        .hero-content-container {
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 33.33% 33.33% 23.34% 10%;
            grid-template-rows: 25% 20% 45% 10%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            .title {
                color: #FFF;
                font-family: 'Manrope';
                font-size: 56px;
                font-style: normal;
                font-weight: 500;
                line-height: 110%;
                letter-spacing: -1.68px;
                grid-column: 1 / 3;
                grid-row: 1;
                margin-top: 130px;
                max-width: 950px;
                margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
            }
            .button-section, .button-section-mobile {
                display: flex;
                align-items: center;
                gap: 8px;
                grid-column: 1;
                grid-row: 2;
                height: fit-content;
                margin-left: max(32px, calc((100vw - 1439px) / 2 + 32px));
                padding-right: 20px;
                .btn-primary {
                    background: #FFF;
                    display: flex;
                    padding: 8px 8px 8px 24px;
                    justify-content: center;
                    align-items: center;
                    justify-content: space-between;
                    color:#141414;
                    text-align: center;
                    font-family: 'Manrope';
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 100%;
                    width: 250px;
                    position: relative;
                    .arrow {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 32px;
                        height: 32px;
                        background: #141414;
                        color: #fff;
                        font-size: 12px;
                    }
                    &:hover {
                        cursor: pointer;
                        background: linear-gradient(0deg, rgba(20, 20, 20, 0.10) 0%, rgba(20, 20, 20, 0.10) 100%), #FFF;
                        backdrop-filter: blur(13.5px);
                        .arrow {
                            //background: #292929;
                        }
                    }
                }
                .btn-secondary {
                    display: flex;
                    padding: 8px 0;
                    text-align: center;
                    width: 167px;
                    height: 48px;
                    justify-content: center;
                    align-items: center;
                    gap: 32px;
                    color:#FFF;
                    text-align: center;
                    font-family: 'Manrope';
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 100%;
                    border: 1px solid rgba(255, 255, 255, 0.30);
                    background: rgba(255, 255, 255, 0.10);
                    position: relative;
                    &:hover {
                        cursor: pointer;
                        background: rgba(255, 255, 255, 0.10);
                        backdrop-filter: blur(10px);
                        border-color: #fff;
                    }
                }
                .dot {
                    width: 4px;
                    height: 4px;
                    background: #fff;
                }
                .line {
                    width: 2px;
                    height: 48px;
                    background: #fff;
                }
            }
            .button-section-mobile {
                display: none;
            }
            .button-line {
                width: 2px;
                height: 48px;
                background: #fff;
                grid-column: 2;
                grid-row: 2;
            }

            .description {
                color: #FFF;
                font-family: 'Manrope';
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                grid-column: 3;
                grid-row: 2;
                border-left: 2px solid #fff;
                height: fit-content;
                padding: 8px 16px;
            }
            .hero-image {
                width: 100%;
                grid-column: 1 / 5;
                grid-row: 3;
                img {
                    width: 100%;
                    height: auto;
                }
                .mobile {
                    display: none;
                }

            }
            .trusted-section {
                grid-column: 1 / 5;
                grid-row: 4;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                z-index: 1;

                .blur-overlay {
                    position: absolute;
                    inset: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 350px;
                    top: auto;
                    backdrop-filter: blur(50px);
                    -webkit-backdrop-filter: blur(50px);
                    mask-image: linear-gradient(
                        to bottom,
                        transparent 0%,
                        rgba(0, 0, 0, 0.6) 30%,
                        black 100%
                    );
                    -webkit-mask-image: linear-gradient(
                        to bottom,
                        transparent 0%,
                        rgba(0, 0, 0, 0.6) 30%,
                        black 100%
                    );

                    // background: linear-gradient(0deg, #141414 0%, rgba(20, 20, 20, 0.00) 81.69%);
                    // backdrop-filter: blur(4px);
                    // -webkit-backdrop-filter: blur(4px);
                    z-index: 0;
                }

                .trusted-label {
                    color: #FFF;
                    font-family: 'Manrope';
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%;
                    padding-left: 32px;
                    z-index: 1;
                }

                .companies-list {
                    position: relative;
                    margin-top: 40px;
                }

                .splide__list {
                    align-items: center;
                }

                .logo-item {
                    color: rgba(255, 255, 255, 0.5);
                    font-size: 13px;
                    font-family: 'Manrope';
                    font-weight: 600;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    white-space: nowrap;
                }
            }
        }

    @media screen and (max-width: 600px) {
            padding-top: 56px;
            .home-page-background {
                grid-template-columns: 33.33% 33.33% 33.34%;
                z-index: 1;
                clip-path: inset(0);
                height: 500px;
                .col:nth-child(4) {
                    display: none;
                }

                .col:nth-child(3) {
                    border-right: none; // ← ADD THIS
                }

                .circle-large,
                .circle-medium {
                    display: none;
                }

                .circle-small {
                    width: 70px;
                    left: calc(66.66% - 35px);
                    top: calc(80% - 35px);
                }

                .col:nth-child(2)::after {
                    display: none;
                }

                .col:nth-child(3)::after {
                    top: 90%;
                }
            }
            .hero-content-container {
                display: flex;
                flex-direction: column;
                position: relative;
                z-index: 2;
                .title {
                    font-size: 36px;
                    line-height: 110%;
                    grid-column: 1/4;
                    padding: 0;
                    margin-top: 50px;
                    height: fit-content;
                    padding: 0 16px;
                    margin-left: 0;
                }
                .button-line {
                    display: none;
                }
                .description {
                    font-size: 16px;
                    line-height: 150%;
                    margin-top: 80px;
                    padding-bottom: 0;
                    padding-top: 0;
                    padding-right: 0;
                    font-weight: 300;
                    margin-left: 16px;
                }
                .button-section {
                    display: none;
                }
                .button-section-mobile {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    margin-top: 24px;
                    padding: 0 16px;
                    margin-left: 0;
                    .btn-primary, .btn-secondary {
                        width: 100%;
                        justify-content: center;
                        font-size: 14px;
                        line-height: 150%;
                    }
                    .btn-primary {
                        position: relative; 
                        padding: 13px 0;
                        .arrow {
                            position: absolute;
                            right: 6px;
                        }
                    }
                }
                .hero-image {
                    margin-top: 30px;
                    .mobile {
                        display: block;
                    }
                    .desktop {
                        display: none;
                    }
                }
                .trusted-section {
                    margin-top: 40px;
                    padding: 0 16px;
                    .blur-overlay {
                        height: 100px;
                    }
                    .trusted-label {
                        padding-left: 0;
                        font-size: 12px;
                        line-height: 150%;
                        max-width: 150px;
                    }
                    .companies-list {
                        margin-top: 20px;
                    }
                }
            }
    }

    @media screen and (min-width: 600px) and (max-width: 1200px) {
            padding-top: 56px;
            .home-page-background {
                grid-template-columns: 33.33% 33.33% 33.34%;
                z-index: 1;
                clip-path: inset(0);
                height: 800px;
                .col:nth-child(4) {
                    display: none;
                }

                .col:nth-child(3) {
                    border-right: none; // ← ADD THIS
                }

                .circle-large,
                .circle-medium,
                .circle-small  {
                    display: none;
                }

                .col:nth-child(2)::after {
                    display: none;
                }

                .col:nth-child(3)::after {
                    display: none;
                }
            }
            .hero-content-container  {
                grid-template-rows: 25% 10% 45% 10%;
                .title {
                    grid-column: 1 / 5;
                    margin-top: 60px;
                    font-size: 36px;
                    line-height: 150%;
                    max-width: 800px;
                    padding-left: 24px;
                    margin-left: 0;
                }
                .button-section {
                    grid-column: 1 / 4;
                    padding-left: 24px;
                    margin-left: 0;
                    gap: 15px;
                }
                .button-line {
                   display: none;
                }
                .hero-image {
                    grid-column: 1 / 5;
                    margin-top: 80px;
                }
                .description {
                    grid-column: 2 / 4;
                    font-size: 18px;
                    grid-row: 3;
                }
                .hero-image {
                    margin-top: 150px;
                }
                .trusted-section {
                  .trusted-label {
                      padding-left: 24px;
                  }
              }
    }
    }
     
    @media screen and (min-width: 1201px) and (max-width: 1300px) {
        padding-top: 56px;
        .hero-content-container {
            .button-section {
                min-width: 450px;
                border-right: 0;
                z-index: 2;
                grid-column: 1 / 3;
            }

            .button-line {
                display: none;
            }
        }
    }


    @media screen and (min-width: 1800px) {
        .hero-content-container {
            .button-section {
                min-width: 450px;
                border-right: 0;
                z-index: 2;
                grid-column: 1 / 3;
            }

            .button-line {
                display: none;
            }
        }
    }
}