/* Resets */
body, figure {
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}

@font-face {
    font-display: swap;
    font-family: PP Neue Montreal;
    font-weight: 100 900;
    src: url(../fonts/PP-Neue-Montreal/PPNeueMontreal-Variable.woff2) format("woff2"),url(../fonts/PP-Neue-Montreal/PPNeueMontreal-Variable.ttf) format("truetype")
}

/* Global */

/* Grid */
.page-container {
    margin: 0 auto;
    max-width: 1920px;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}
@media (min-width: 744px) {
    .page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
@media (min-width: 1024px) {
    .page-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (min-width: 1440px) {
    .page-container {
        max-width: 1680px;
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
}
@media (min-width: 1920px) {
    .page-container {
        max-width: 1920px;
    }
}
.content-container {
    margin: 0 auto;
    max-width: 72rem;
    width: 100%;
}
.max-width-copy {
    max-width: 48rem;
    margin: 0 auto;
}
.grid {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}
@media (min-width: 744px) {
    .grid {
        gap: 2rem;
    }
}
.g-col {
    grid-column: auto / span 12;
}
@media (min-width: 744px) {
    .g-col-md-4 {
        grid-column: auto / span 4;
    }
}
@media (min-width: 744px) {
    .g-col-md-6 {
        grid-column: auto / span 6;
    }
}
@media (min-width: 1024px) {
    .g-col-lg-3 {
        grid-column: auto / span 3;
    }
}

section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
@media (min-width: 744px) {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


/* Typographie */

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 0;
}

h1, .h1 {
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 700;
}

@media (min-width: 744px) {
    h1, .h1 {
        font-size: 3rem;
        line-height: 1;
    }
}
@media (min-width: 1024px) {
    h1, .h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}
h2, .h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
@media (min-width: 744px) {
    h2, .h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
h3, .h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
}
h4, .h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.copy-lead {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
@media (min-width: 744px) {
    .copy-lead  {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

/* Helper */
.mb-1 {
    margin-bottom: .5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.mb-5 {
    margin-bottom: 2.5rem;
}
.mb-6 {
    margin-bottom: 3rem;
}
.text-center {
    text-align: center;
}
.bg-gray-100 {
    background-color: #f3f4f6;
}
.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
}
.radius-t {
    border-radius: 24px 24px 0 0;
}
.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    hyphens: auto;
}
.d-flex svg {
    flex: 0 0 auto;
}

/* Colors */
.text-marked {
    color: #2563EB;
}
.bg-gray {
    background-color: #f3f4f6;
}
.bg-petrol {
    background-color: #00576e;
    color: #fff;
}
@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: PP Neue Montreal, arial, sans-serif;
    font-size: 1rem;
    line-height: normal;
    margin: 0;
    padding: 0;
}

/* Button */
.btn {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3333;
    background-color: transparent;
    padding: 1rem 2rem;
    border-radius: 9999px;
    display: inline-block;
    text-decoration: none;
    outline: 1px solid #fff;
}
@media (min-width: 1024px) {
    .btn {
        font-size: 1.375rem;
        line-height: 1.2727;
    }
}
@media screen and (prefers-reduced-motion: no-preference) {
    .btn {
        transition-property: all;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .25s;
    }
}
.btn:hover, .btn:focus-visible {
    outline-width: 3px;
}

/* Header */
.page-header {
    padding: 1rem 0;
}
.page-header svg {
    color: #000;
}
@media (min-width: 744px) {
    .page-header {
        padding: 1.5rem 0;
    }
}
@media (min-width: 1024px) {
    .page-header {
        padding: 2.25rem 0;
    }
}

/* CTA Wrapper */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Screenshot Desk */
.visual-single {
    width: 100%;
    height: auto;
}

/* Stage */
.stage {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;

    .page-container {
        position: relative;
        z-index: 1;
    }

    .stage-visual {
        position: absolute;
        inset: 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .stage-overlay {
        text-align: center;
        color: #fff;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        mix-blend-mode: normal;
        margin: 1rem auto;

        .text {
            color: transparent;
        }

        .text span {
            color: #fff;
            opacity: 0;
            transition: opacity 0.2s ease-in;
        }

        .text span.visible {
            opacity: 1;
        }
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 744px) {
    .stage {
        .stage-overlay {
            margin: 2rem auto;
            padding: 2rem;
            backdrop-filter: blur(5px);
        }
    }
}

@media (min-width: 1024px) {
    .stage {
        .stage-overlay {
            margin: 3rem auto;
            padding: 3rem;
        }
    }
}

@media (min-width: 1440px) {
    .stage {
        aspect-ratio: 3/1;
        .stage-overlay {
            margin: 0 auto;
            padding: 4rem;
        }
    }
}

/* Text Cards */
.text-card {
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    box-shadow:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0.75rem;
    height: 100%;
}

.text-image-card {
    text-align: center;
    background-color: #fff;
    box-shadow:  0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0.75rem;
    height: 100%;
}
.text-image-card img {
    width: 100%;
    height: auto;
}
.text-image-card .card-body {
    padding: 1.5rem;
}

.text-image-card.card-expert {
    display: flex;
    flex-direction: column;
}

.text-image-card.card-expert .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.text-image-card.card-expert .card-body .flex-1 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: #fff;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

footer a {
    color: #000;
}