/* Hero section */

#hero {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    
    min-height: 100dvh;

    display: grid;
    place-items: center;

    overflow: clip;
    position: relative;
    isolation: isolate;
}
#hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        hsla(225, 21%, 7%, 0.95),
        hsla(225, 21%, 7%, 0.65)
    );

    z-index: -1;
}
#hero picture.back-gr {
    position: absolute;
    inset: 0;
    z-index: -1;
}
#hero picture.back-gr img {
    min-width: 100%;
    min-height: 100%;
}

#hero .hero-inner {
    padding-block: 15rem 7.5rem;

    display: grid;
    gap: 3rem;
}

#hero .hero-inner .neon-box {
    max-width: max-content;
}

#hero .hero-inner h1 {
    max-width: 18ch;

    font-size: 7.2rem;
    line-height: 1.25;
    font-style: italic;
    text-transform: uppercase;
    color: var(--font-col-600);
    margin-bottom: 1.5rem;
}

#hero .hero-inner p {
    max-width: 80ch;

    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--font-col-400);

    text-align: justify;
}

#hero .hero-inner ul {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(22.5rem, 100%), 1fr));
    gap: 2rem;
}

#hero .hero-inner ul li strong {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
}
#hero .hero-inner ul li small {
    font-size: 1.4rem;
    color: var(--font-col-300);
}

#hero .hero-inner .buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Slides 3 columns */

.slides {
    padding-block: 8rem;
}
.slides.-accent {
    background-color: var(--main-col2);
}

.slides .-main-box {
    display: grid;
    gap: 3.2rem;
}

.slides p.text {
    margin-inline: auto;
    max-width: 80ch;

    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.625;
    text-align: center;
    color: var(--font-col-400);
}

.slides ul {
    --size: minmax(38rem, 1fr);
    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, var(--size));
    gap: 3.2rem;
}
.slides ul > li {
    padding: 2.4rem;

    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 1.6rem;

    background-color: var(--main-col2);
    background: linear-gradient(
        135deg,
        var(--main-col2) 60%,
        color-mix(
            in oklch,
            var(--main-col2) 50%,
            var(--border-col)
        ) 80%,
        var(--border-col) 100%
    );

    border: 1px solid var(--border-col);
    border-radius: 1.6rem;
}
.slides.-accent ul > li {
    background-color: var(--main-col1);
    background: linear-gradient(
        135deg,
        var(--main-col1) 60%,
        color-mix(
            in oklch,
            var(--main-col1) 50%,
            var(--main-col2)
        ) 80%,
        var(--main-col2) 100%
    );
}
.slides ul li .strong-ico {
    width: 4.8rem;
    & svg {
        --d: 24px;
    }
}
.slides ul li h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-col-600);
}
.slides ul li span {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.625;
    color: var(--font-col-300);
}

/* Checks */
.checks {
    --mark: 16px;

    display: grid;
    grid-template-columns: var(--mark) auto;
    gap: calc(var(--mark) * 0.5);
    
    &:has(> small) {
        align-items: center;
    }
}
.checks svg {
    --size: var(--mark);
    color: var(--yellow);
}
.checks h3,
.checks h4 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--font-col-600);
    margin-bottom: 4px;
}
.checks h4 {
    font-size: 1.4rem;
    text-wrap: pretty;
}

.checks small {
    font-size: 1.4rem;
    line-height: 1.625;
    color: var(--font-col-400);
}
.checks h4 + small {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--font-col-300);
}

.slide .checks {
    --mark: 22px;
}


/* Returns Process */
#returns-process ul li {
    grid-row: span 2;
}

/* Returns Disposal */
#returns-disposal ul {
    --size: minmax(22rem, 1fr);
}
#returns-disposal ul li {
    place-items: center;
    /* grid-row: span 3; */
    grid-template-rows: auto;
}
#returns-disposal ul li h3,
#returns-disposal ul li span {
    text-align: center;
}
#returns-disposal ul li svg {
    --size: 48px;
}
#returns-disposal ul li:nth-of-type(1) svg {
    color: #06df72;
}
#returns-disposal ul li:nth-of-type(2) svg {
    color: #51a2ff;
}
#returns-disposal ul li:nth-of-type(3) svg {
    color: #fdc700;
}
#returns-disposal ul li:nth-of-type(4) svg {
    color: #99a1af;
}


/* Returns Why */
#returns-why ul li {
    grid-row: span 3;
}
#returns-why ul li > svg {
    --size: 48px;
    color: var(--yellow);
}

#returns-why .slides:nth-child(2) ul {
    gap: 4.8rem
}
#returns-why .slides:nth-child(2) ul li {
    grid-row: span 4;
}
#returns-why .slides:nth-child(2) ul li h3 {
    font-size: 3.2rem;
}
#returns-why .slides:nth-child(2) ul li span {
    font-size: 1.6rem;
    color: var(--font-col-500);
}
#returns-why .slides:nth-child(2) ul li small {
    font-size: 1.6rem;
    color: var(--font-col-300);
}


/* Returns Channels */
#returns-channels ul {
    --size: minmax(23rem, 1fr);
}
#returns-channels ul li {
    grid-row: span 1;

    font-size: 1.6rem;
    font-weight: 700;
    color: var(--font-col-600);
    text-align: center;

    background: var(--main-col2);
    border-radius: 6px;
}


/* CTA */
#cta {
    padding-block: 8rem;
    background-color: var(--main-col2);
    background: linear-gradient(
        to bottom,
        var(--main-col2),
        var(--main-col1)
    );

    border-top: 1px solid var(--border-col);
}
#cta .-main-box {
    display: grid;
    justify-items: center;
    gap: 4rem;

    & > svg {
        --size: 64px;
        color: var(--yellow);
    }
}
#cta h2 {
    font-size: 4.8rem;
}
#cta p {
    max-width: 68ch;

    font-size: 2rem;
    line-height: 1.625;
    color: var(--font-col-600);
    text-align: center;
}
#cta .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.6rem;
}