/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


:root {

    --navy: #06182f;
    --navy-light: #0c2d50;

    --blue: #0c5eae;
    --blue-dark: #084b8d;

    --text: #172033;
    --muted: #667488;

    --light: #f5f7fa;
    --border: #e1e6ec;

    --white: #ffffff;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background:
        var(--white);

    line-height: 1.6;

}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


button,
input,
select,
textarea {
    font: inherit;
}


.container {

    width: min(
        1180px,
        88%
    );

    margin:
        0 auto;

}



/* =========================================
   HEADER
========================================= */

.site-header {

    background:
        white;

    border-bottom:
        1px solid
        #edf0f3;

}


.header-container {

    width:
        min(
            1240px,
            94%
        );

    height:
        100px;

    margin:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

}


.logo-link {
    width: 340px;
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;

    overflow: visible;
}

.site-logo {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;
}


.navigation {

    display:
        flex;

    align-items:
        center;

    gap:
        27px;

}


.navigation > a:not(.nav-button) {

    color:
        #334155;

    font-size:
        14px;

    font-weight:
        600;

    transition:
        color .2s;

}


.navigation > a:not(.nav-button):hover {

    color:
        var(--blue);

}


.nav-button {

    padding:
        12px 18px;

    background:
        var(--navy);

    color:
        white;

    border-radius:
        4px;

    font-size:
        13px;

    font-weight:
        700;

}


.nav-button:hover {

    background:
        var(--blue);

}



/* =========================================
   TYPOGRAPHY
========================================= */

.section-label {

    margin-bottom:
        14px;

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2.4px;

}


.section-label-light {

    color:
        #a2c9ed;

}


h1,
h2,
h3 {

    color:
        var(--navy);

    line-height:
        1.15;

}


h2 {

    font-size:
        clamp(
            32px,
            4vw,
            48px
        );

    letter-spacing:
        -1px;

}



/* =========================================
   HERO
========================================= */

.hero {

    min-height:
        620px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    background-image:
        url("image/accueil.jpg");

    background-size:
        cover;

    background-position:
        center;

    background-repeat:
        no-repeat;

}


.hero-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            90deg,
            rgba(3,16,34,.94),
            rgba(3,16,34,.72) 48%,
            rgba(3,16,34,.18)
        );

}


.hero-container {

    position:
        relative;

    z-index:
        2;

}


.hero-content {

    max-width:
        760px;

}


.hero-label {

    color:
        #a8cae8;

}


.hero h1 {

    color:
        white;

    font-size:
        clamp(
            48px,
            6vw,
            74px
        );

    letter-spacing:
        -2px;

}


.hero h1 span {

    display:
        block;

    color:
        #d5e0eb;

}


.hero-description {

    max-width:
        620px;

    margin-top:
        25px;

    color:
        #e1e8f0;

    font-size:
        18px;

}


.hero-actions {

    margin-top:
        36px;

    display:
        flex;

    gap:
        13px;

    flex-wrap:
        wrap;

}



/* =========================================
   BUTTONS
========================================= */

.button {

    min-height:
        52px;

    padding:
        0 25px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        4px;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        .2s;

}


.button-primary {

    background:
        var(--blue);

    color:
        white;

}


.button-primary:hover {

    background:
        var(--blue-dark);

    transform:
        translateY(-2px);

}


.button-outline {

    color:
        white;

    border:
        1px solid
        rgba(255,255,255,.45);

    background:
        rgba(255,255,255,.06);

}


.button-outline:hover {

    background:
        white;

    color:
        var(--navy);

}


.button-white {

    background:
        white;

    color:
        var(--navy);

}


.button-white:hover {

    background:
        #edf3f8;

}



/* =========================================
   INTRO
========================================= */

.intro-section {

    padding:
        105px 0;

}


.intro-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        95px;

}


.intro-text {

    padding-top:
        24px;

    color:
        var(--muted);

    font-size:
        17px;

}


.intro-text p + p {

    margin-top:
        18px;

}


.text-link {

    margin-top:
        24px;

    display:
        inline-flex;

    gap:
        10px;

    color:
        var(--blue);

    font-weight:
        700;

}



/* =========================================
   SERVICES
========================================= */

.services-section {

    padding:
        105px 0;

    background:
        var(--light);

}


.section-heading {

    max-width:
        760px;

    margin:
        0 auto 60px;

    text-align:
        center;

}


.section-heading > p:last-child {

    max-width:
        620px;

    margin:
        18px auto 0;

    color:
        var(--muted);

}


.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        18px;

}


.service-card {

    min-height:
        245px;

    padding:
        37px;

    background:
        white;

    border:
        1px solid
        var(--border);

    transition:
        .25s;

}


.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(7,25,48,.08);

}


.service-number {

    display:
        block;

    margin-bottom:
        40px;

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


.service-card h3 {

    margin-bottom:
        13px;

    font-size:
        22px;

}


.service-card p {

    color:
        var(--muted);

}


.service-cta-card {

    background:
        var(--navy);

}


.service-cta-card h3 {

    color:
        white;

}


.service-cta-card p {

    color:
        #aab9c8;

}


.service-small {

    display:
        block;

    margin-bottom:
        35px;

    color:
        #89b9e3;

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


.service-cta-card a {

    display:
        inline-block;

    margin-top:
        20px;

    color:
        white;

    font-weight:
        700;

}



/* =========================================
   PRICING
========================================= */

.pricing-section {

    padding:
        100px 0;

}


.pricing-card {

    padding:
        55px 60px;

    display:
        grid;

    grid-template-columns:
        1.4fr .7fr auto;

    gap:
        55px;

    align-items:
        center;

    background:
        linear-gradient(
            125deg,
            #06172f,
            #0c345d
        );

    border-radius:
        7px;

}


.pricing-card h2 {

    margin-bottom:
        17px;

    color:
        white;

}


.pricing-card p {

    color:
        #c9d5e1;

}


.pricing-value {

    padding-left:
        45px;

    display:
        flex;

    flex-direction:
        column;

    border-left:
        1px solid
        rgba(255,255,255,.2);

}


.pricing-value strong {

    color:
        white;

    font-size:
        60px;

    line-height:
        1;

}


.pricing-value span {

    margin-top:
        9px;

    color:
        #a8b8c8;

}



/* =========================================
   ADVANTAGES
========================================= */

.advantages-section {

    padding:
        105px 0;

    background:
        #fafbfc;

}


.advantages-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        32px;

}


.advantage-card {

    padding-top:
        20px;

    border-top:
        3px solid
        var(--blue);

}


.advantage-card > span {

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        800;

}


.advantage-card h3 {

    margin:
        27px 0 12px;

    font-size:
        20px;

}


.advantage-card p {

    color:
        var(--muted);

}



/* =========================================
   ABOUT
========================================= */

.about-section {

    padding:
        115px 0;

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:
        100px;

}


.about-content {

    color:
        var(--muted);

    font-size:
        17px;

}


.about-lead {

    margin-bottom:
        22px;

    color:
        var(--navy);

    font-size:
        22px;

    font-weight:
        600;

}


.about-content p + p {

    margin-top:
        17px;

}



/* =========================================
   CTA
========================================= */

.cta-section {

    padding:
        75px 0;

    background:
        var(--blue);

}


.cta-container {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        60px;

}


.cta-container > div {

    max-width:
        750px;

}


.cta-container h2 {

    color:
        white;

}


.cta-container p:last-child {

    margin-top:
        15px;

    color:
        #d7e5f3;

}



/* =========================================
   CONTACT
========================================= */

.contact-section {

    padding:
        105px 0;

}


.contact-grid {

    max-width:
        950px;

    margin:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

}


.contact-card {

    min-height:
        190px;

    padding:
        35px;

    border:
        1px solid
        var(--border);

    transition:
        .2s;

}


.contact-card:hover {

    border-color:
        var(--blue);

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 35px
        rgba(7,25,48,.07);

}


.contact-label {

    display:
        block;

    margin-bottom:
        28px;

    color:
        var(--muted);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


.contact-card h3 {

    font-size:
        21px;

}


.contact-action {

    display:
        block;

    margin-top:
        22px;

    color:
        var(--blue);

    font-size:
        13px;

    font-weight:
        700;

}



/* =========================================
   FOOTER
========================================= */

.footer {

    padding:
        55px 0 20px;

    background:
        #051425;

    color:
        white;

}


.footer-content {

    padding-bottom:
        45px;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        50px;

}


.footer-brand {

    margin-bottom:
        10px;

    font-weight:
        800;

    letter-spacing:
        1px;

}


.footer-content p {

    max-width:
        390px;

    color:
        #93a4b4;

}


.footer-links {

    display:
        flex;

    gap:
        27px;

    color:
        #bac6d1;

}


.footer-bottom {

    padding-top:
        20px;

    border-top:
        1px solid
        rgba(255,255,255,.1);

    color:
        #748698;

    font-size:
        12px;

}


.simple-footer {

    border-top:
        none;

}



/* =========================================
   REQUEST PAGE
========================================= */

.request-page {

    background:
        #f6f8fa;

}


.request-header {

    padding:
        75px 0 60px;

    text-align:
        center;

}


.request-header h1 {

    font-size:
        clamp(
            40px,
            5vw,
            58px
        );

}


.request-header p:last-child {

    max-width:
        620px;

    margin:
        18px auto 0;

    color:
        var(--muted);

}


.request-section {

    padding-bottom:
        70px;

}


.request-grid {

    display:
        grid;

    grid-template-columns:
        .75fr 1.25fr;

    background:
        white;

    border:
        1px solid
        var(--border);

    box-shadow:
        0 18px 50px
        rgba(7,25,48,.06);

}


.request-info {

    padding:
        55px 45px;

    background:
        var(--navy);

    color:
        white;

}


.request-info h2 {

    margin-bottom:
        18px;

    color:
        white;

    font-size:
        31px;

}


.request-description {

    margin-bottom:
        35px;

    color:
        #a8b7c7;

}


.request-step {

    padding:
        21px 0;

    display:
        flex;

    gap:
        19px;

    border-bottom:
        1px solid
        rgba(255,255,255,.1);

}


.request-step > span {

    color:
        #78adde;

    font-size:
        11px;

    font-weight:
        800;

}


.request-step h3 {

    color:
        white;

    font-size:
        15px;

}


.request-step p {

    margin-top:
        5px;

    color:
        #93a5b7;

    font-size:
        13px;

}


.service-price {

    margin-top:
        35px;

    padding-top:
        25px;

    border-top:
        1px solid
        rgba(255,255,255,.16);

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

}


.service-price span {

    color:
        #9aacbd;

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        1.4px;

}


.service-price strong {

    font-size:
        32px;

}



/* =========================================
   FORM
========================================= */

.repair-form {

    position:
        relative;

    padding:
        55px;

}


.form-heading {

    margin-bottom:
        32px;

}


.form-heading h2 {

    font-size:
        30px;

}


.form-heading p {

    margin-top:
        7px;

    color:
        var(--muted);

    font-size:
        13px;

}


.form-row {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

}


.form-group {

    margin-bottom:
        22px;

}


.form-group label {

    display:
        block;

    margin-bottom:
        8px;

    color:
        #273448;

    font-size:
        13px;

    font-weight:
        700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width:
        100%;

    padding:
        14px 15px;

    border:
        1px solid
        #d9e0e7;

    border-radius:
        4px;

    background:
        white;

    color:
        var(--text);

    outline:
        none;

    transition:
        .2s;

}


.form-group input,
.form-group select {

    min-height:
        51px;

}


.form-group textarea {

    min-height:
        150px;

    resize:
        vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--blue);

    box-shadow:
        0 0 0 3px
        rgba(12,94,174,.08);

}


.submit-button {

    width:
        100%;

    min-height:
        55px;

    border:
        none;

    border-radius:
        4px;

    background:
        var(--blue);

    color:
        white;

    cursor:
        pointer;

    font-weight:
        700;

    transition:
        .2s;

}


.submit-button:hover {

    background:
        var(--blue-dark);

}


.submit-button:disabled {

    opacity:
        .65;

    cursor:
        wait;

}


.privacy-note {

    margin-top:
        14px;

    text-align:
        center;

    color:
        #8793a1;

    font-size:
        11px;

}


.honeypot {

    position:
        absolute;

    left:
        -9999px;

    opacity:
        0;

    pointer-events:
        none;

}


.form-message {

    margin-bottom:
        18px;

    font-size:
        13px;

}


.form-error {

    padding:
        12px 14px;

    background:
        #fff2f2;

    border:
        1px solid
        #f2c7c7;

    color:
        #8c2626;

    border-radius:
        4px;

}


.back-link {

    padding-bottom:
        60px;

    display:
        inline-block;

    color:
        var(--blue);

    font-size:
        13px;

    font-weight:
        700;

}



/* =========================================
   THANK YOU
========================================= */

.thankyou-page {

    min-height:
        680px;

    padding:
        80px 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #f5f7fa;

}


.thankyou-card {

    max-width:
        630px;

    padding:
        65px;

    background:
        white;

    border:
        1px solid
        var(--border);

    text-align:
        center;

    box-shadow:
        0 20px 50px
        rgba(7,25,48,.07);

}


.thankyou-check {

    width:
        64px;

    height:
        64px;

    margin:
        0 auto 27px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #e9f3fb;

    color:
        var(--blue);

    font-size:
        26px;

    font-weight:
        800;

}


.thankyou-card h1 {

    margin-bottom:
        20px;

    font-size:
        42px;

}


.thankyou-card > p {

    color:
        var(--muted);

}


.request-number {

    margin:
        25px 0;

    padding:
        17px;

    background:
        var(--light);

    border-radius:
        4px;

}


.request-number span {

    display:
        block;

    color:
        var(--muted);

    font-size:
        11px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;

}


.request-number strong {

    display:
        block;

    margin-top:
        5px;

    color:
        var(--navy);

    font-size:
        20px;

}


.thankyou-button {

    margin-top:
        28px;

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .header-container {

        height:
            auto;

        padding:
            15px 0;

        flex-direction:
            column;

    }


    .navigation {

        flex-wrap:
            wrap;

        justify-content:
            center;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .advantages-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .pricing-card {

        grid-template-columns:
            1fr 1fr;

    }


    .pricing-card > a {

        grid-column:
            1/-1;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 750px) {


    .container {

        width:
            90%;

    }


    .logo-link {

        width:
            230px;

        height:
            70px;

    }


    .site-logo {

        width:
            230px;

    }


    .navigation {

        gap:
            13px 17px;

    }


    .navigation a {

        font-size:
            12px;

    }


    .hero {

        min-height:
            570px;

    }


    .hero-overlay {

        background:
            rgba(3,16,34,.78);

    }


    .hero h1 {

        font-size:
            43px;

    }


    .hero-description {

        font-size:
            16px;

    }


    .hero-actions {

        flex-direction:
            column;

    }


    .intro-grid {

        grid-template-columns:
            1fr;

        gap:
            28px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .pricing-card {

        padding:
            40px 28px;

        grid-template-columns:
            1fr;

        gap:
            32px;

    }


    .pricing-card > a {

        grid-column:
            auto;

    }


    .pricing-value {

        padding:
            28px 0 0;

        border-left:
            none;

        border-top:
            1px solid
            rgba(255,255,255,.2);

    }


    .advantages-grid {

        grid-template-columns:
            1fr;

    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap:
            30px;

    }


    .cta-container {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .footer-content {

        flex-direction:
            column;

    }


    .footer-links {

        flex-wrap:
            wrap;

    }


    .request-grid {

        grid-template-columns:
            1fr;

    }


    .request-info {

        padding:
            42px 28px;

    }


    .repair-form {

        padding:
            38px 25px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap:
            0;

    }


    .thankyou-card {

        padding:
            45px 25px;

    }

}