@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes border-rotate {
    to { --border-angle: 360deg; }
}

/* === Minimal Modern Reset === */

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,main {
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === FONTS === */

/* text */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 400;
}

/* headings */
@font-face {
    font-family: 'Genral Sans';
    src: url('../fonts/GeneralSans-Semibold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 600;
}

/* button */
@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 600;
}

/* === VAR === */
:root {
    --black-bg: rgba(19, 20, 18, 1);
    --black-txt: rgba(39, 39, 39, 1);
    --black-bg-btn: rgba(25, 25, 25, 1);
    --light-grey: rgba(227, 227, 227, 1);
    --grey: #D7D7D7;
    --accent: rgba(184, 240, 0, 1);
}

/* === Default === */
html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.033em;
}

h1,h2,h3 {
    font-weight: 600;
    font-family: "General Sans", sans-serif;
    letter-spacing: -0.05em;
    line-height: 1.05em;

}

p,li {
    font-size: 18px;
    line-height: 1.55em;
    font-weight: 500;
}

h1,h2 {
    font-size: clamp(23px, 5.7vw, 60px);
}

h1 {
    padding-top: 16px;
    padding-bottom: 16px;
    max-width: 350px;
}

h3 {
    font-size: clamp(24px, 2.5vw, 47px);
}

.num {
    font-size: clamp(28px, 3.5vw, 68px);
    font-weight: 600;
}

.container {
    max-width: 2560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.center-txt {
    text-align: center;
}

.btn {
    background-color: var(--black-bg-btn);
    color: white;
    font-family: 'Geist', sans-serif;
    font-size: clamp(16px, 1.42vw, 20px);
    padding: 14px 24px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.02em;

    svg {
        position: relative;
        left: 0;
    }

    &, svg, svg * {
        transition: all .2s ease-in-out;
    }

    &:hover {
        background-color: var(--accent);
        color: var(--black-txt);

        svg {
            left: 4px;
        }

        svg path {
            stroke: var(--black-txt);
        };
    }
}

.btn--red {
    position: relative;
    background: linear-gradient(135deg, #E74C3C 0%, #D04534 100%);
    box-shadow: 2px 2px 0px #B93D2D;

    &::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 32px;
        padding: 1px;
        background: conic-gradient(
            from var(--border-angle),
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 12.5%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 100%
        );
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        animation: border-rotate 3s linear infinite;
    }

    &:hover {
        background: linear-gradient(135deg, #D04534 0%, #B93D2D 100%);
        box-shadow: 1px 1px 0px #B93D2D;
        color: white;

        svg path {
            stroke: white;
        }
    }
}

.btn--outline {
    background-color: #000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 32px;

    &:hover {
        background: linear-gradient(135deg, #E74C3C 0%, #D04534 100%);
        border-color: transparent;
        color: white;
    }
}

.btn--dark {
    background-color: var(--black-bg-btn);
    color: white;

    &:hover {
        background-color: #E53935;
        color: white;
    }
}

.pill {
    font-size: 14px;
    color: var(--black-txt);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 15px;
    padding-right: 10px;
    border-radius: 24px;
    border: 1px solid var(--grey);
    font-weight: 500;
    letter-spacing: -0.4px;
    gap: 6px;

    img {
        margin-top: -2px;
    }
}

.heading {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sticker {
    position: absolute;
    transform-origin: center;
    /* animation: floating 4s linear infinite; */
}

.profile {
    position: relative;
    width: fit-content;
    
    &::after {
        content: "";
        background-color: var(--accent);
        width: 25px;
        height: 25px;
        border-radius: 32px;
        position: absolute;
        top: -5px;
        right: -9px;
        border: 5px solid var(--black-bg);
    }
}

.gif__heading {
    color: white;

    .pill {
        color: white;
    }

    h2 {
        margin-top: 32px;

        span {
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: 13vw;
                height: auto;
                margin: 0 24px;
                aspect-ratio: 19/11;
                object-fit: cover;
                border-radius: 200px;
                margin-bottom: -0.3em;
            }
        }
    }

}

.box-shadow--strong {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.box-shadow--light {
    box-shadow: 0 4px 8px 0 rgba(240, 240, 240, 0.25);
}

@keyframes floating {
  0% {transform: translateY(0);}
  25% {transform: translateY(6px);}
  50% {transform: translateY(0);}
  75% {transform: translateY(-6px);}
  0% {transform: translateY(0);}
}

@keyframes floating-center {
  0% {transform: translateY(0) translateX(-50%);}
  25% {transform: translateY(6px) translateX(-50%);}
  50% {transform: translateY(0) translateX(-50%);}
  75% {transform: translateY(-6px) translateX(-50%);}
  0% {transform: translateY(0) translateX(-50%);}
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* WAŻNE – przesunięcie o połowę, bo masz 2x te same logotypy */
  }
}

/* Card shuffle animation - 6s total cycle (2s per card) */
@keyframes cardShuffle1 {
  0%, 30% {
    z-index: 3;
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  33% {
    z-index: 3;
    transform: scale(1) translateY(120%);
    opacity: 0;
  }
  36%, 63% {
    z-index: 1;
    transform: scale(0.84) translateY(-40px);
    opacity: 1;
  }
  66%, 96% {
    z-index: 2;
    transform: scale(0.92) translateY(-20px);
    opacity: 1;
  }
  100% {
    z-index: 3;
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes cardShuffle2 {
  0%, 30% {
    z-index: 2;
    transform: scale(0.92) translateY(-20px);
    opacity: 1;
  }
  33%, 63% {
    z-index: 3;
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  66% {
    z-index: 3;
    transform: scale(1) translateY(120%);
    opacity: 0;
  }
  69%, 96% {
    z-index: 1;
    transform: scale(0.84) translateY(-40px);
    opacity: 1;
  }
  100% {
    z-index: 2;
    transform: scale(0.92) translateY(-20px);
    opacity: 1;
  }
}

@keyframes cardShuffle3 {
  0%, 30% {
    z-index: 1;
    transform: scale(0.84) translateY(-40px);
    opacity: 1;
  }
  33%, 63% {
    z-index: 2;
    transform: scale(0.92) translateY(-20px);
    opacity: 1;
  }
  66%, 96% {
    z-index: 3;
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  99% {
    z-index: 3;
    transform: scale(1) translateY(120%);
    opacity: 0;
  }
  100% {
    z-index: 1;
    transform: scale(0.84) translateY(-40px);
    opacity: 1;
  }
}

@media only screen and (max-width: 1200px) {

    p,li {
        font-size: 16px;
    }

    h1,h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 30px;
    }

    .num {
        font-size: 50px;
    }

}

@media only screen and (max-width: 700px) {
    .heading {
        max-width: 335px;
        margin-left: auto;
        margin-right: auto;
    }

    @keyframes floating {
        0% {transform: translateY(0);}
        25% {transform: translateY(3px);}
        50% {transform: translateY(0);}
        75% {transform: translateY(-3px);}
        0% {transform: translateY(0);}
    }

    @keyframes floating-center {
        0% {transform: translateY(0) translateX(-50%);}
        25% {transform: translateY(3px) translateX(-50%);}
        50% {transform: translateY(0) translateX(-50%);}
        75% {transform: translateY(-3px) translateX(-50%);}
        0% {transform: translateY(0) translateX(-50%);}
    }

}


/* === HEADER === */

header {
    background-color: transparent;
    position: relative;
    z-index: 10;

    .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 32px;

        .btn {
            font-size: 15px;
            padding: 10px 16px;
        
            svg {
                transform-origin: center;
                transform: scale(0.9);
            }
        }
    }
}


/* header - tablet */
@media only screen and (max-width: 1200px) {
    header {
        .container {
            padding: 24px;
        }
    }
}

@media only screen and (max-width: 700px) {
    header {        
        .container {
            padding: 20px;

            a.btn {
                padding: 8px 12px;
                font-size: 15px;
            }
        }
    }
}

/* === HERO === */
.hero {
    padding-top: 40px;
    height: 786px;
    background: linear-gradient(to bottom, #242424 0%, #000000 50%);
    color: white;
    border-bottom-left-radius: clamp(50px, 14vw, 100px);
    border-bottom-right-radius: clamp(50px, 14vw, 100px);
    overflow: hidden;
    position: relative;

    .hero__logo {
        position: absolute;
        top: -10px;
        left: 32px;
    }

    .hero__btn {
        position: absolute;
        top: -10px;
        right: 32px;

        &:hover {
            background-color: #E53935;
            color: white;

            svg path {
                stroke: white;
            }
        }
    }

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
    }

    .pill {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: white;
        margin-top: 40px;
    }
.subheadz {
max-width: 520px;
}
    .hero__heading {
        margin-top: -100px;
}

        h1 {
            margin-top: 8px;
            margin-bottom: 8px;
max-width: 545px;
            br.mobile {
                display: none;
            }
        }

        .sticker {
            bottom: 11%;
            right: -16%;
            width: 43%;
            height: auto;
        }
    }

    p.center-txt {
        font-size: clamp(17px, 1.185vw, 19px);
    }

    a {
        margin-top: 32px;
    }

    .hero__socialproof {
        display: flex;
        justify-content: center;
        margin-top: 48px;
        
        .left,
        .right {
            width: 21.5vw;
            max-width: 410px;
            position: relative;

            h3 {
                margin-top: 4px;
                margin-bottom: 24px;
            }

            p {
                line-height: 1.33em;
            }
        }

        .left {
            text-align: right;
            right: calc(-1 * clamp(16px, 3vw, 32px));
            margin-right: 70px;

            .clients {
                width: auto;
                height: clamp(32px, 3.455vw,65px);
            }

            .clients,
            svg {
                display: block;
                margin-left: auto;
                margin-right: 0;
            }

            svg {
                margin-top: 16px;
                margin-bottom: 16px;
            }
        
            .client-name {
                color: rgba(162, 162, 162, 1);
            }
        }

        .card-stack {
            width: clamp(224px, 24vw, 360px);
            height: auto;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
            margin-top: -30px;
        }

        .card-stack__container {
            position: relative;
            width: 100%;
            aspect-ratio: 3/4;
        }

        .card {
            position: absolute;
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card--1 {
            z-index: 3;
            animation: cardShuffle1 6s infinite;
        }

        .card--2 {
            z-index: 2;
            transform: scale(0.92) translateY(-20px);
            animation: cardShuffle2 6s infinite;
        }

        .card--3 {
            z-index: 1;
            transform: scale(0.84) translateY(-40px);
            animation: cardShuffle3 6s infinite;
        }

        .book-mobile {
            display: none;
        }

        .right {
            left: calc(-1 * clamp(16px, 3vw, 32px));
            margin-left: 70px;

            .bulb {
                font-size: clamp(24px, 2.85vw,54px);
            }

            .num img {
                display: none;
            }

            ul {
                padding-left: 0;

                li {
                    list-style: none;      
                    position: relative;
                    padding-left: 1.35em;

                    &::before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 0.4em;
                        width: 1rem;               /* wielkość ikonki */
                        height: 1rem;
                        background-image: url('../img/check.svg'); /* możesz dać PNG/SVG */
                        background-size: contain;
                        background-repeat: no-repeat;
                    }
                }
            }

        }
    }

}

/* === CARD CAROUSEL === */
.card-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0 0px;
    position: relative;
    margin-bottom: -120px;
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0,0,0,0.1) 55px,
        rgba(0,0,0,0.3) 110px,
        rgba(0,0,0,0.6) 165px,
        black 420px,
        black calc(100% - 420px),
        rgba(0,0,0,0.6) calc(100% - 165px),
        rgba(0,0,0,0.3) calc(100% - 110px),
        rgba(0,0,0,0.1) calc(100% - 55px),
        transparent 100%
    );
    mask-image: linear-gradient(to right,
        transparent 0%,
        rgba(0,0,0,0.1) 55px,
        rgba(0,0,0,0.3) 110px,
        rgba(0,0,0,0.6) 165px,
        black 420px,
        black calc(100% - 420px),
        rgba(0,0,0,0.6) calc(100% - 165px),
        rgba(0,0,0,0.3) calc(100% - 110px),
        rgba(0,0,0,0.1) calc(100% - 55px),
        transparent 100%
    );
}

.card-carousel::before,
.card-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 320px;
    z-index: 10;
    pointer-events: none;
}

.card-carousel::before {
    left: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    -webkit-mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.6) 33%, rgba(0,0,0,0.3) 66%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, rgba(0,0,0,0.6) 33%, rgba(0,0,0,0.3) 66%, transparent 100%);
}

.card-carousel::after {
    right: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    -webkit-mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 33%, rgba(0,0,0,0.3) 66%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, rgba(0,0,0,0.6) 33%, rgba(0,0,0,0.3) 66%, transparent 100%);
}

.card-carousel__track {
    display: flex;
    gap: 24px;
    animation: carouselScroll 31s linear infinite;
    width: fit-content;
}

.carousel-card {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.card-carousel:hover .card-carousel__track {
    animation-play-state: paused;
}

@media only screen and (max-width: 768px) {
    .carousel-card {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }

    .card-carousel {
        padding: 40px 0 60px;
    }

    .card-carousel__track {
        gap: 16px;
    }
}

@media only screen and (min-width: 1200px) {
 .hero {
        & .hero__heading {
            .sticker {
                width: 47.5%;
            }
        }
    
        .hero__mobile {
            display: none;
        }
    }
}


@media only screen and (min-width: 1800px) {
    
    .hero {
        & .hero__heading {
            .sticker {
                bottom: 8%;
            }
        }
    }
}

/* hero - tablet */
@media only screen and (max-width: 1200px) {
    .hero {
        .hero__socialproof {
            width: 100%;
            flex-direction: row-reverse;
            justify-content: space-between;
            gap: 32px;
            padding-bottom: 96px;
            
            .left {
                display: none;
            }

            .right {
                width: fit-content;
                left: 0;
                padding-left: 64px;
            }

            .card-stack {
                width: 35%;
            }

            .right {
                .bulb {
                    display: none;
                }
            }
        }

        .hero__mobile {

            .hero__mobile__socialproof {
                margin-top: 40px;
                display: flex;
                gap: 8px;
                align-items: center;

                p {
                    font-weight: 500;
                    margin-top: 2px;
                }
            }

            .clients {
                width: 120px;
            }
        
            .hero__mobile__comment {
                margin-top: 24px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;
                padding: 24px;
                border: 1px solid var(--light-grey);
                border-radius: 20px;

                p {
                    text-align: center;
                    font-weight: 500;
                }
                
                div {
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    p {
                        color: rgba(162, 162, 162, 1);
                    }
                }

            }
        }
    }
    
}

/* hero - mobile */
@media only screen and (max-width: 700px) {
    .hero {
        padding: 20px 0 0;

        .hero__heading  {
            padding-left: 0;
            padding-right: 0;

            .pill {
                margin-top: 88px;
            }

            h1 {
                margin-top: 0;
                margin-bottom: 4px;
                font-size: 41px;

                br {
                    display: none;
                }

                br.mobile {
                    display: block;
                }
                
                .left {
                    position: relative;
                    right: 35px;
                }

                .right {
                    position: relative;
                    left: 35px;
                }
            }

            .sticker {
                bottom: 65px;
                width: 220px;
                right: 23px;
            }

        }

        .hero__btn {
            display: none;
        }

        p.center-txt {
            max-width: 350px;
            font-size: 16px;

            br {
                display: none;
            }
        }

        a {
            margin-top: 32px;
        }

        .hero__mobile {
            padding-left: 20px;
            padding-right: 20px;

            .hero__mobile__comment {
                width: 100%;
            }
        }

        .hero__socialproof {
            margin-top: 64px;
            gap: 8px;
            padding-bottom: 60px;

            .right {
                padding-left: 20px;

                h3 {
                    margin-top: 0;
                }

                .num {
                    display: flex;
                    align-items: center;

                    img {
                        display: block;
                    }
                }
            }

            .card-stack {
                width: 50%;
                padding: 20px 0;

                .card {
                    border-radius: 16px;
                }
            }
        }
    }
}

/* === HIGHLIGHT SECTION === */
.highlight {
    padding: 96px 32px 0;
    background-color: white;
}

.highlight__heading {
    text-align: center;
    margin-bottom: 24px;
}

.highlight__heading .pill {
    display: inline-block;
    background-color: #f5f5f5;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.highlight__heading h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-family: "General Sans", sans-serif;
    font-weight: 600;
    color: #111;
    margin-bottom: 16px;
}

.highlight__heading > p {
    font-size: clamp(16px, 1.5vw, 20px);
    color: #666;
}

.highlight__intro {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.highlight__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: calc(300px + 320px + 300px + 64px * 2); /* 1048px */
    margin: 0 auto;
}

.highlight__text {
    width: 300px;
    flex-shrink: 0;
}

.highlight__text:first-of-type {
    text-align: right;
}

.highlight__text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.highlight__text p {
    font-size: 16px;
    line-height: 1.5;
    color: #111;
}

.highlight__image {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.highlight__image img {
    width: 320px;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s ease-in-out;
}

.highlight__image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.highlight__image:hover .highlight__image-default {
    opacity: 0;
}

.highlight__image:hover .highlight__image-hover {
    opacity: 1;
    margin-bottom: -1px;
}

.highlight__metrics-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
}

.highlight__text:first-of-type .highlight__metrics-row {
    justify-content: flex-end;
}

.highlight__text:last-of-type .highlight__metrics-row {
    justify-content: flex-start;
}

.highlight__metric {
    width: 100px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight__text:first-of-type .highlight__metric {
    align-items: flex-end;
}

.highlight__text:last-of-type .highlight__metric {
    align-items: flex-start;
}

.highlight__metric-value {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.highlight__text:first-of-type .highlight__metric-value {
    color: #E53935;
}

.highlight__text:last-of-type .highlight__metric-value {
    color: #43A047;
}

.highlight__metric-label {
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* Highlight - tablet */
@media only screen and (max-width: 1100px) {
    .highlight__container {
        gap: 32px;
    }

    .highlight__text {
        width: 240px;
    }

    .highlight__image {
        width: 280px;
    }

    .highlight__image img {
        width: 280px;
        height: 315px;
    }
}

/* Highlight - mobile */
@media only screen and (max-width: 900px) {
    .highlight {
        padding: 60px 20px 0;
    }

    .highlight__container {
        flex-direction: column;
        gap: 40px;
    }

    .highlight__text {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .highlight__text:first-of-type .highlight__metrics-row,
    .highlight__text:last-of-type .highlight__metrics-row {
        justify-content: center;
    }

    .highlight__text:first-of-type .highlight__metric,
    .highlight__text:last-of-type .highlight__metric {
        align-items: center;
    }

    .highlight__text:first-of-type {
        order: 1;
        text-align: center;
    }

    .highlight__image {
        width: 100%;
        max-width: 320px;
        order: 2;
    }

    .highlight__text:last-of-type {
        order: 3;
    }

    .highlight__image img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }
}

/* === SECTION HEADING === */
.section-heading {
    text-align: center;
    padding: clamp(64px, 8vw, 140px) 32px 40px;
    background-color: #000;
    border-radius: clamp(50px, 7vw, 135px) clamp(50px, 7vw, 135px) 0 0;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 56px);
    font-family: "General Sans", sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.section-heading p {
    font-size: clamp(16px, 1.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Section heading - mobile */
@media only screen and (max-width: 768px) {
    .section-heading {
        border-radius: clamp(30px, 5vw, 50px) clamp(30px, 5vw, 50px) 0 0;
        padding: 60px 20px 40px;
    }
}

/* === FEATURES SECTION === */
.features {
    padding: 40px 32px 96px;
    background-color: #000;
}

.features__container {
    display: flex;
    justify-content: center;
    gap: 64px;
    max-width: calc(320px * 3 + 64px * 2); /* 1088px */
    margin: 0 auto;
}

.features__col {
    width: 320px;
    flex-shrink: 0;
}

.features__visual {
    width: 100%;
    max-width: 320px;
    max-height: 320px;
    aspect-ratio: 1 / 1;
    background-color: #DDDDDD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.features__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
}

.features__pill {
    display: inline-block;
    background-color: white;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 16px;
}

.features p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.5;
}

/* Features - tablet */
@media only screen and (max-width: 1200px) {
    .features__container {
        gap: 32px;
    }

    .features__col {
        width: 280px;
    }
}

/* Features - mobile */
@media only screen and (max-width: 900px) {
    .features {
        padding: 60px 20px;
    }

    .features__container {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .features__col {
        width: 100%;
        max-width: 320px;
    }
}

/* === APP SHOWCASE === */
.app-showcase {
    background: #000000;
    padding: clamp(64px, 8vw, 140px) clamp(32px, 7vw, 128px) clamp(21px, 2.67vw, 47px);
}

.app-showcase__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: calc(320px * 3 + 64px * 2); /* 1088px - same as features */
    margin: 0 auto;
    align-items: center;
}

.app-showcase__content {
    color: white;
}

.app-showcase__content h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-family: "General Sans", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.app-showcase__pill {
    display: inline-block;
    background-color: white;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.app-showcase__content p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
}

.app-showcase__content p:last-child {
    margin-bottom: 0;
}

.app-showcase__visual {
    border-radius: 16px;
    overflow: hidden;
}

.app-showcase__visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* App showcase - reverse */
.app-showcase--reverse .app-showcase__container {
    grid-template-columns: 1.5fr 1fr;
}

/* App showcase - tablet */
@media only screen and (max-width: 1024px) {
    .app-showcase__container {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

/* App showcase - mobile */
@media only screen and (max-width: 768px) {
    .app-showcase {
        padding: 60px 32px;
    }

    .app-showcase__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-showcase__visual {
        order: -1;
    }

    .app-showcase--reverse .app-showcase__container {
        grid-template-columns: 1fr;
    }
}

/* === WHAT YOU GET === */
.what-you-get {
    margin: 32px;
    background-color: white;
    border-radius: clamp(50px, 14vw, 270px);

    .container {
        padding: clamp(64px, 7.7vw, 110px) clamp(32px, 4.2vw, 80px);
    }

    .what__heading {
        margin-top: 32px;

        h2 {
            margin-top: 32px;

            span {
                position: relative;
            }

            .first {
                right: 13%;
            }

            .second {
                left: 13%;
            }
        }

        .sticker {
            position: absolute;
            width: 30%;
            bottom: calc(-42% - 64px);
            left: 28%;
        }
    }

    .what__msg {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: clamp(32px, 4.44vw, 64px);

        .profile {
            
            &::after {
                border-color: white;
            }
        
            p {
                margin-top: 4px;
                margin-left: -2px;
                text-align: center;
                font-size: clamp(14px, 0.83vw, 16px);
            }
        }

        .msg-box {
            background-color: var(--black-txt);
            color: white;
            font-weight: 400;
            padding: 24px;
            margin-bottom: 24px;
            border-radius: 0 30px 30px 30px;
            width: fit-content;

            strong {
                font-weight: 500;
            }
        }
     
    }

    .what__msg--mobile {
        display: none;
    }

    .what__boxes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-top: clamp(24px, 3.33vw, 64px);
        padding-bottom: 96px;

        .box {
            padding: 32px;
            border: 1px solid var(--light-grey);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;

            div {
                display: flex;
                flex-direction: column;
                gap: 24px;
            }

            img {
                width: clamp(32px, 4.17vw, 80px);
                height: auto;
            }
        }
    }

    .btn {
        width: fit-content;
        margin: auto;
    }
}

@media only screen and (min-width: 1400px) {
    .what-you-get {
        & .what__heading {
            .sticker {
                 bottom: -47%;
            }
        }
    }
}

@media only screen and (min-width: 1800px) {
    .what-you-get {
        .what__heading {

            .sticker {
                width: 29%;
                left: 28.5%;
            }
        }
    }
}

/* WHAT YOU GET - tablet */
@media only screen and (max-width: 1200px) {
    .what-you-get {
        .what__boxes {
            grid-template-columns: 1fr;

            .box  {
                img {
                    width: 50px;
                    min-width: 50px;
                    height: 50px;
                }
            }

        }
    }
}

/* WHAT YOU GET - mobile */
@media only screen and (max-width: 700px) {
    .what-you-get {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;

        .container {
            padding: 60px 20px;
        
            .what__heading {
                margin-top: 0;

                h2 {
                    margin-top: 20px;
                    margin-bottom: 24px;
                }

                .sticker {
                    width: 220px;
                    bottom: -45px;
                    left: 3px;
                }
            }

            .what__msg {
                margin-top: 0;
                display: none;
            }

            .what__msg--mobile {
                display: block;
                margin-bottom: 32px;

                p {
                    text-align: center;
                    margin-bottom: 16px;
                    font-weight: 500;
                }
            }
        }

        .what__boxes {
            gap: 10px;
            padding-bottom: 0;

            .box {
                border-radius: 10px;
                padding: 20px;
                gap: 16px;

                div {
                    flex-direction: row;
                    gap: 20px;
                    align-items: center;

                    h3 {
                        font-size: 16px;
                        line-height: 1.375em;
                        font-family: 'Inter';
                        letter-spacing: -0.03em;

                    }
                }

                p {
                    opacity: 0.5;
                }
            }
        }

        .btn {
            margin-top: 60px;
        }
    }
}

/* === TESTIMONIALS === */
/* Community section */
.community {
    background-color: #000;
    padding-top: clamp(64px, 7vw, 128px);
    padding-bottom: clamp(64px, 7vw, 128px);
    padding-left: clamp(32px, 7vw, 128px);
    padding-right: clamp(32px, 7vw, 128px);
    color: white;

    .gif__heading h2 {
        line-height: 0.85;
    }

    .community__subtitle {
        position: relative;
        top: -16px;
    }

    .community__content {
        max-width: 600px;
        margin: 0 auto;
        margin-top: 48px;
        text-align: left;

        p {
            color: #999;
            font-size: clamp(16px, 1.42vw, 20px);
            line-height: 1.6;
            margin-bottom: 16px;

            strong {
                color: #fff;
            }
        }

        h3 {
            font-size: clamp(18px, 1.6vw, 24px);
            margin-top: 32px;
            margin-bottom: 16px;
        }

        ul {
            list-style: none;
            padding: 0;

            li {
                color: #999;
                font-size: clamp(16px, 1.42vw, 20px);
                line-height: 1.8;

                &::before {
                    content: '•';
                    margin-right: 8px;
                    color: #E74C3C;
                }
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    .community {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.testimonials {
    background-color: #000;
    padding-top: clamp(21px, 2.33vw, 43px);
    padding-bottom: clamp(64px, 7vw, 128px);
    padding-left: clamp(32px, 7vw, 128px);
    padding-right: clamp(32px, 7vw, 128px);

    .gif__heading {
        color: white;
  
        .mobile {
            display: none;


        }
        
        .sticker {
            width: 12%;
            height: auto;
            right: 15%;
            bottom: 39%;
        }
    }

    .testimonials__content {
        padding-top: 100px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: auto;
        max-width: 1400px;
        
        .items {
            display: flex;
            flex-direction: column;
        }

        .item {
            padding: 24px;
            border-radius: 20px;
            border: 1px solid #3C3C3C;
            color: white;

            p {
                margin-bottom: 20px;
                font-weight: 400;
            }

            .user {
                display: flex;
                align-items: center;

                span:first-child {
                    font-weight: 500;
                    opacity: 1;
                }

                span {
                    opacity: 0.4;
                }

                span.flag {
                    opacity: 1;
                }
            }
        }

        .item-empty {
            height: 50px;
            border-bottom: 0;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
    }

    .gradient {
        position: relative;
        top: -75px;
        background: var(--black-bg);
        background: linear-gradient(180deg,rgba(19, 20, 18, 0) 0%, var(--black-bg) 100%);
        display: block;
        width: 100%;
        height: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .testimonials {
        .testimonials__content,
        .testimonials__content .items { 
            gap: 24px;

            h3,
            .stars {
                display: none;
            }
        }

        .more {
            display: none;
        }
    }

}

@media only screen and (min-width: 1400px) {
    .testimonials {
        .testimonials__content,
        .testimonials__content .items { 
            gap: 32px;
        }
    }

}

@media only screen and (min-width: 1800px) {
    .testimonials {
        /* padding-bottom: 200px; */

        .testimonials__heading {
            
            .sticker {
                bottom: 41%;
            }
            
        }
    }
}

/* testimonials - tablet */
@media only screen and (max-width: 1200px) {
    .testimonials {
        padding-left: 0;
        padding-right: 0;

        .container {
            overflow-x: hidden;

            .heading {
                padding-left: 48px;
                padding-right: 48px;
            }

            .testimonials__content {
                display: flex;
                gap: 8px;
                overflow-x: scroll;
                margin-left: 48px;
                padding-bottom: 16px;

                .items {
                    flex-direction: row;
                    gap: 8px;

                    h3 {
                        margin-top: 8px;
                        margin-bottom: 24px;
                    }

                    .item {
                        width: 40vw;
                    }

                    .item-empty {
                        display: none;
                    }
                }
            }

            .more {
                display: flex;
                align-items: center;
                color: white;
                gap: 4px;
                justify-content: end;
                margin-right: 48px;

                svg {
                    transform: scale(0.8);
                    transform-origin: center;
                }
            }

            .gradient {
                display: none;
            }
        }

    }
}

/* testimonials- mobile */
@media only screen and (max-width: 700px) {
    .testimonials {
        padding-top: 60px;

        .container  {
            .heading {
                padding-left: 20px;
                padding-right: 20px;
            }

            .gif__heading  {
                
                h2 {
                    margin-top: 20px;
                    margin-bottom: 24px;
                    width: 100%;
                    
                    span {
                        img {
                            margin: 0 8px;
                            width: 100px;
                        }
                    }
                }

                .desktop {
                    display: none;
                }

                .mobile {
                    display: block;

                    img {
                        position: relative;
                        top: 4px;
                    }
                }

                .sticker {
                    display: none;
                }
            }

            .testimonials__content {
                padding-top: 8px;
                margin-left: 0;
                padding-left: 20px;
                padding-right: 20px;

                .items {
                    .item {
                        width: 280px;
                        padding: 38px 20px 22px;

                        h3 {
                            font-size: 24px;
                        }

                        p {
                            strong {
                                display: none;
                            }
                        }
                    }
                }
            }

            .more {
                margin-right: 20px;
            }
        }

    }
}

/* === GET BLUEPRINT === */
.get-blueprint {
    padding: 32px;
    position: relative;
    
    .sticker {
        width: 26vw;
        height: auto;
        top: -9vw;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        /* animation: floating-center 4s linear infinite; */

    }
    
    .container {
        position: relative;
        padding: clamp(64px, 7.7vw, 240px) clamp(32px, 4.2vw, 80px) clamp(64px, 7.7vw, 148px) ;
        background-color: white;
        border-radius: clamp(50px, 14vw, 270px);
        max-width: 100%;
    }

    h2 {
        margin-bottom: 40px;

        .mobile {
            display: none;
        }
    }

    a {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;

        img {
            position: relative;
            top: 2px;
        }
    }


    .get-blueprint-imgs {
        position: relative;
        width: 100%;
        margin-top: 80px;
        height: 34vw;

        .get-blueprint-cover {
            width: 25vw;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            z-index: 2;

            img {
                width: 100%;
                height: auto;
            }
        }

        .pages {
            .page {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 14.5vw;
                height: auto;
                left: 42%;
                transition: all 1s ease-in-out;
            }

            .page-0.animate {
                left: -15vw;
            }

            .page-1.animate {
                left: 1vw;
            }

            .page-2.animate {
                left: 17vw;
            }

            .page-3.animate {
                left: calc(100% - 32vw);
            }

            .page-4.animate {
                left: calc(100% - 16vw);
            }

            .page-5.animate {
                left: 100%;
            }
        }
    }
}

@media only screen and (min-width: 1800px) {
    .get-blueprint {
        .sticker {
            width: 24vw;
        }
    }
}

@media only screen and (min-width: 3000px) {
    .get-blueprint {
        .sticker {
            width: 22vw;
        }
    }
}

/* get-blueprint - tablet */
@media only screen and (max-width: 1200px) {
    .get-blueprint {
        padding-top: 64px;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;

        .sticker {
            top: -60px;
            width: 280px;
        }

        .get-blueprint-imgs {
            .pages {
                .page-0,
                .page-5 {
                    display: none;
                }
            }
        }
    }
}

/* get-blueprint- mobile */
@media only screen and (max-width: 700px) {
    .get-blueprint {
        .container {
            padding-left: 20px;
            padding-right: 20px;
            padding-bottom: 0;

            h2 {
                margin-top: 8px;
                margin-bottom: 32px;

                .mobile {
                    display: block;
                }
            }

            a {
                margin-top: 32px;
            }
        }

        .get-blueprint-imgs {
            margin-top: 40px;
            height: 320px;

            .get-blueprint-cover {
                width: 230px;
                height: 320px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .pages {
                .page {
                    width: 150px;
                    height: auto;
                    left: 30%;
                }

                .page-1.animate {
                    left: -7%;
                }

                .page-4.animate {
                    left: 65%;
                }
            
                .page-2,
                .page-3 {
                    display: none;
                }
            }
        }
    }
}

/* === KNOWLEDGE === */
.knowledge {
    padding-top: clamp(64px, 7vw, 128px);
    padding-left: clamp(32px, 7vw, 128px);
    padding-right: clamp(32px, 7vw, 128px);

    .mobile {
        display: none;
    }

    .knowledge__msg {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-top: clamp(32px, 4.44vw, 64px);

        .profile {
            
            &::after {
                display: none;
            }

            p {
                color: white;
                font-size: 16px;
            }
        }

        .msg-box {
            background-color: var(--black-txt);
            color: white;
            font-weight: 400;
            padding: 24px;
            margin-bottom: 24px;
            border-radius: 0 30px 30px 30px;
            width: fit-content;

            strong {
                font-weight: 500;
            }
        }

        .green {
            position: relative;

            img {
                position: absolute;
                top: -24%;
                right: -12%;
                width: 25%;
                height: auto;   
            }

            .msg-box {
                background-color: var(--accent);
                color: var(--black-txt);
                font-weight: 600;
                font-size: 24px;
            }
        }
     
    }

}

/* get-blueprint - tablet */
@media only screen and (max-width: 1200px) {
    .knowledge {
        padding-left: 32px;

        & .knowledge__msg {
            margin-top: 48px;

            & .green {

                img {
                    width: 20%;
                    top: -17%;
                    right: -9%;
                }

                .msg-box {
                    font-size: 18px;
                }
            }
        }   
    }
}

/* get-blueprint- mobile */
@media only screen and (max-width: 700px) {
    .knowledge {
        padding-top: 28px;
        padding-left: 20px;
        padding-right: 20px;

        .mobile {
            display: block;
        }

        .desktop {
            display: none;
        }

        .gif__heading {
            margin-top: 0;     
            
            h2 {
                margin-top: 20px;
                margin-bottom: 24px;
                font-size: 46px;

                img {
                    width: 100px;
                    margin: 0 8px;
                }
            }

            .pill {
                margin-top: 0;
            }
        }

        .knowledge__msg {
            margin-top: 16px;
            gap: 20px;

            .profile {
                img {
                    width: 50px;
                    height: 50px;
                }
            }

            .green {
                .msg-box {
                    font-size: 16px;
                    font-weight: 500;
                    padding-left: 18px;

                    .desktop {
                        display: none;
                    }
                }

                img {
                    display: none;
                }
            }

            .msg-box {
                padding: 20px;
                border-radius: 0 20px 20px 20px;
                margin-bottom: 16px;
            }

        }
    }
}

/* === WHAT YOU GET 2 === */
.what-you-get--2 {
    background-color: transparent;
    margin: 0;

    .container {
        padding-left: clamp(32px, 14vw, 270px);
        padding-right: clamp(32px, 14vw, 270px);
        padding-bottom: 0;

        .heading {
            color: white;

            .pill {
                color: white;
            }

            .sticker {
                left: 63%;
                bottom: -45%;
            }
          
        }

        .profile {
            color: white;

            &::after {
                display: none;
            }
        }

        h3 {
            margin-top: 60px;
            margin-bottom: 32px;
            color: white;
        }

        .dealing {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;

            .label {
                font-size: 24px;
                display: flex;
                align-items: center;
                gap: 15px;
                padding: 15px;
                padding-right: 19px;
                border-radius: 20px;
                border: 1px solid var(--black-txt);
                color: white;
            }
        }

        .mobile {
            display: none;
        }
    }
}

@media only screen and (min-width: 1300px) {
    .what-you-get--2 {

        .container {
            padding-left: clamp(32px, 16vw, 270px);
            padding-right: clamp(32px, 16vw, 270px);
        }
    }
}

@media only screen and (min-width: 1500px) {
    .what-you-get--2 {

        .container {
            padding-left: clamp(32px, 20vw, 270px);
            padding-right: clamp(32px, 20vw, 270px);
        }
    }
}

/* what-you-get--2 - tablet */
@media only screen and (max-width: 1200px) {
     .what-you-get--2 {
        .container {
            padding-left: 48px;
            padding-right: 48px;

            .dealing {
                .label {
                    width: 100%;
                }
            }
        }
    }
}

/* what-you-get--2 - mobile */
@media only screen and (max-width: 700px) {
    .what-you-get--2 {
        .container {
            padding-left: 20px;
            padding-right: 20px;

            .what__heading {
                h2 {
                    font-size: 46px;
                }

                .sticker {
                    width: 200px;
                    left: 200px;
                    bottom: 10px;
                }
            }

            .what__msg {
                display: block;
                
                .profile {
                    display: none;
                }

                p {
                    padding: 0;
                    padding-top: 8px;
                    background-color: transparent;
                    text-align: center;
                    margin-bottom: 40px;

                    br {
                        display: none;
                    }
                }

            }

            .dealing {
                display: none;
                gap: 8px;

                &.open {
                    display: flex;
                    padding-top: 24px;
                }

                .label {
                    img {
                        width: 30px;
                        height: 30px;
                    }
                }
            }   

            h3,
            .mobile {
                display: flex;
            }

            h3.first{
                border-top: 1px solid rgba(151, 151, 151, 0.3);
            }

            h3 {
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid rgba(151, 151, 151, 0.3);
                padding: 24px 0;
                margin: 0;
                font-size: 24px;

                svg {
                    transform-origin: center;
                    transition: all .4s ease-in-out;
                }
            }

            h3.open {
                svg {
                    transform: rotate(180deg);
                }
            }
        }
    }
}

/* === TWO COLUMN BLOCK === */
.two-col {
    background-color: #000;
    padding: 80px clamp(20px, 7vw, 128px);
}

.two-col__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.two-col__heading {
    grid-column: 1 / -1;
    font-size: clamp(32px, 4vw, 56px);
    font-family: "General Sans", sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    text-align: left;
}

.two-col__item h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-family: "General Sans", sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.two-col__item p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

@media only screen and (max-width: 768px) {
    .two-col {
        padding-left: 40px;
        padding-right: 40px;
    }

    .two-col__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .two-col__heading {
        text-align: center;
    }
}

/* === FOOTER === */
.footer {
    padding-top: 30px;
    background: #131412;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 5%,
        rgba(56, 7, 7, 1) 12%,
        rgba(139, 0, 0, 1) 20%,
        rgba(229, 57, 53, 1) 28%,
        rgba(255, 200, 200, 1) 45%,
        rgba(255, 255, 255, 1) 55%,
        rgba(255, 255, 255, 1) 100%
    );

    .col {

        & > p,
        & > img {
            margin-bottom: 24px;
        }
        
        ul {
            list-style: none;
            padding-left: 0;
        }

        a {
            transition: all .4s ease-in-out;

            &:hover {
                color: var(--accent);
            }
        }

        .mobile {
            display: none;
        }
    }

    .container--1 {

        .social-proof {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 22px;
            color: white;
            margin-bottom: 24px;

            & > img {
                width: 7vw;
                height: auto;
            }

            div {
                p {
                    margin-top: 4px;
                    font-size: 16px;
                }
            }
        }

        .heading {
            h2 {
                color: white;
            
                span {
                    position: relative;
                }

                .first {
                    right: 8%;
                }

                .second {
                    left: 6%;
                }
            }

            .sticker {
                width: 30%;
                bottom: -60%;
            }

        }

        .labels {
            margin-top: 74px;
            display: flex;
            color: white;
            align-items: stretch;
            gap: 20px;
            justify-content: center;

            .label {
                display: flex;
                align-items: center;
                gap: 24px;
                padding: 24px;
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 20px;
            }
        }

        .btn {
            width: fit-content;
            margin: auto;
            margin-top: 40px;
            position: relative;
            z-index: 9999;
        };

    }

    .container--2 {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .container,
    .end {
        padding-left: clamp(20px, 4.6vw, 120px);
        padding-right: clamp(20px, 4.6vw, 120px);
    }

    .end {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--black-txt);

        p {
            display: flex;
            align-items: center;
            gap: 8px;

            a {
                border-bottom: 1px solid var(--black-txt);
            }
        }

        .btn {
            background-color: transparent;
            border: 1px solid var(--black-txt);
            color: var(--black-txt);

            &:hover {
                background-color: var(--accent);
                border-color: var(--accent);
            }
        }
    }

    .end-logo {
        margin-top: 96px;

        img {
            width: 100%;
            height: auto;
        }
    }

    .footer__follow {
        text-align: center;

        p {
            font-size: 18px;
            color: var(--black-txt);
        }

        a {
            color: var(--black-txt);
            border-bottom: 1px solid var(--black-txt);
            transition: all .4s ease-in-out;

            &:hover {
                color: #E53935;
                border-color: #E53935;
            }
        }
    }

    .footer__privacy {
        text-align: center;
        padding: 32px 20px;

        a {
            font-size: 14px;
            color: var(--black-txt);
            opacity: 0.6;
            transition: all .4s ease-in-out;

            &:hover {
                opacity: 1;
            }
        }
    }
}

@media only screen and (max-width: 1200px) {
    .footer {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 5%,
            rgba(56, 7, 7, 1) 12%,
            rgba(139, 0, 0, 1) 20%,
            rgba(229, 57, 53, 1) 28%,
            rgba(255, 200, 200, 1) 45%,
            rgba(255, 255, 255, 1) 55%,
            rgba(255, 255, 255, 1) 100%
        );

        .container--1  {
            padding-left: 48px;
            padding-right: 48px;

            .heading {
                .sticker {
                    width: 37%;
                }
            }

            .labels {
                flex-wrap: wrap;

                .label {
                    min-width: 370px;
                }
            }

            .social-proof {
                img {
                    width: 120px;
                }
            }
        }

        .container--2  {
            grid-template-columns: repeat(2, 1fr);
        }

        .end {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
    }
}



/* FOOTER - mobile */
@media only screen and (max-width: 700px) {
    .footer {
        padding-top: 30px;
        overflow-x: hidden;
        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 5%, rgba(56, 7, 7, 1) 12%, rgba(139, 0, 0, 1) 18%, rgba(229, 57, 53, 1) 26%, rgba(255, 200, 200, 1) 40%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);

        .container--1 {
            padding-left: 10px;
            padding-right: 10px;

            .heading {
                .sticker {
                    width: 200px;
                    bottom: -60px;
                    right: 199px;
                }

                h2 {
                    font-size: 45px;

                    .first {
                        right: 0;
                    }

                    br {
                        display: none;
                    }
                }
            }

            .labels {
                margin-top: 36px;
                padding-left: 10px;
                padding-right: 10px;
                gap: 10px;

                .label {
                    min-width: 100%;
                    padding: 16px 24px 16px 24px;

                    p {
                        br {
                            display: none;
                        }
                    }

                    img {
                        width: 24px;
                        height: auto;
                    }
                }
            }

            .social-proof {
                gap: 15px;

                img {
                    width: 105px;
                }
            }

            .btn {
                margin-top: 40px;
            }
        }

        .container--2 {
            padding-top: 70px;
            grid-template-columns: repeat(1, 1fr);

            .col {
                .btn.mobile {
                    display: flex;
                    align-items: center;
                    background-color: transparent;
                    border: 1px solid var(--black-txt);
                    color: var(--black-txt);
                    gap: 8px;

                    img {
                        width: 12px;
                        height: auto;
                        margin-bottom: 0;
                    }

                    &:hover {
                        background-color: var(--accent);
                        border-color: var(--accent);
                    }
                }

                img {
                    width: 165px;
                    margin-bottom: 24px;
                }

                p {
                    margin-bottom: 20px;

                    strong {
                        font-size: 20px;
                    }
                }

                ul {
                    li {
                        margin-bottom: 8px;
                    }
                }
            }
        }

        .desktop {
            display: none;
        }

        .end-logo {
            margin-top: 64px;
        }

        .end {
            display: none;
        }
    }

}
