/* ==========================================================================
   RÉNOV'DÉCAP LASER
   Feuille de style principale
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES
   ========================================================================== */

:root {
    --navy: #062f55;
    --navy2: #031f3b;
    --cyan: #08a8f5;
    --light: #f3f8fc;
    --text: #10253a;
    --muted: #5e7183;
    --white: #ffffff;

    --radius: 18px;

    --shadow:
        0 10px 35px rgba(5, 47, 85, 0.10);
}


/* ==========================================================================
   2. BASE
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: var(--white);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   3. CONTENEUR PRINCIPAL
   ========================================================================== */

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================================
   4. BARRE SUPÉRIEURE
   Adresse / téléphone / e-mail
   ========================================================================== */

.topbar {
    background: var(--navy2);
    color: var(--white);
    font-size: 13px;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}


/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;

    background: var(--white);

    box-shadow:
        0 3px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;

    padding: 12px 0;
}


/* Logo
   ========================================================================== */

.logo img {
    display: block;

    width: 245px;
    height: auto;
}


/* Navigation
   ========================================================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-left: auto;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}


/* Bouton menu mobile
   ========================================================================== */

.menu-toggle {
    display: none;

    background: none;
    border: 0;

    font-size: 28px;
}


/* ==========================================================================
   6. BOUTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 20px;

    background: var(--cyan);
    color: var(--white) !important;

    border: 0;
    border-radius: 12px;

    font-weight: 800;
    text-decoration: none;

    cursor: pointer;
}

.btn.outline {
    background: transparent;

    border: 2px solid var(--white);
}


/* ==========================================================================
   7. HERO PAGE D'ACCUEIL
   ========================================================================== */

.hero {
    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            var(--navy2),
            var(--navy)
        );

    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    min-height: 570px;
}


/* Texte hero
   ========================================================================== */

.hero-copy {
    padding: 70px 0;
}

.eyebrow {
    color: #65ccff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 12px 0 20px;

    font-size: 62px;
    line-height: 1.02;
}

.hero h1 span {
    color: var(--cyan);
}

.hero p {
    max-width: 690px;

    font-size: 20px;
}


/* Boutons hero
   ========================================================================== */

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 28px;
}


/* Image hero
   ========================================================================== */

.hero-visual {
    position: relative;

    min-height: 570px;
    height: 100%;

    background:
        url("../images/decapage-bois.jpg")
        center / cover
        no-repeat;
}

.hero-visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--navy) 0%,
            transparent 45%
        );
}


/* ==========================================================================
   8. HERO DES PAGES INTERNES
   Titre de la page
   ========================================================================== */

.page-hero {
    padding: 65px 0;

    background:
        linear-gradient(
            120deg,
            var(--navy2),
            var(--navy)
        );

    color: var(--white);
}

.page-hero h1 {
    margin: 0;

    font-size: 48px;
    line-height: 1.15;
}


/* ==========================================================================
   9. IMAGE MISE EN AVANT DES PAGES
   ========================================================================== */

.featured-image-wrapper {
    width: 100%;

    margin-top: 35px;
    margin-bottom: 0;
}


/*
 * Le conteneur interne reprend la largeur générale du site.
 * L'image est ensuite centrée dans ce conteneur.
 */

.featured-image-wrapper .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Image mise en avant
   ========================================================================== */

.featured-image {
    display: block;

    width: 100%;
    max-width: 1180px;
    height: auto;

    margin-left: auto;
    margin-right: auto;

    border-radius: var(--radius);
}


/* ==========================================================================
   10. SECTIONS GÉNÉRALES
   ========================================================================== */

.section {
    padding: 72px 0;
}

.section.alt {
    background: var(--light);
}

.section h2 {
    margin: 0 0 12px;

    color: var(--navy);

    font-size: 38px;
    line-height: 1.15;
}

.lead {
    max-width: 820px;

    margin-bottom: 34px;

    color: var(--muted);

    font-size: 19px;
}


/* ==========================================================================
   11. CONTENU DES PAGES
   ========================================================================== */

/*
 * Le .wrap général mesure jusqu'à 1180 px.
 * Le texte est volontairement limité à 1000 px pour améliorer la lisibilité.
 */

.content {
    width: 100%;
    max-width: 1000px;

    margin-left: auto;
    margin-right: auto;
}


/* Paragraphes
   ========================================================================== */

.content p {
    margin-top: 0;
    margin-bottom: 22px;
}


/* Titres H2
   ========================================================================== */

.content h2 {
    margin-top: 48px;
    margin-bottom: 18px;

    color: var(--navy);

    font-size: 32px;
    line-height: 1.25;
}


/* Titres H3
   ========================================================================== */

.content h3 {
    margin-top: 35px;
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 24px;
    line-height: 1.3;
}


/* Listes
   ========================================================================== */

.content ul,
.content ol {
    margin-top: 0;
    margin-bottom: 25px;

    padding-left: 25px;
}

.content li {
    margin-bottom: 8px;
}


/* Liens dans le contenu
   ========================================================================== */

.content a:not(.btn) {
    color: var(--navy);

    text-decoration-color: var(--cyan);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}


/* ==========================================================================
   12. TABLEAUX
   Comparatif décapage laser / sablage
   ========================================================================== */

.content table {
    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    background: var(--white);

    box-shadow: var(--shadow);
}

.content th,
.content td {
    padding: 14px 16px;

    border: 1px solid #dfe9f1;

    text-align: left;
    vertical-align: top;
}

.content th {
    background: var(--navy);

    color: var(--white);

    font-weight: 700;
}

.content tr:nth-child(even) td {
    background: var(--light);
}


/* ==========================================================================
   13. CARTES SERVICES
   ========================================================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid #e8eef4;
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.card img {
    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-size: 22px;
}

.card a {
    color: var(--cyan);

    font-weight: 800;
    text-decoration: none;
}


/* ==========================================================================
   14. BLOCS AVANTAGES
   ========================================================================== */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature {
    padding: 22px;

    border-left: 4px solid var(--cyan);
}

.feature strong {
    display: block;

    color: var(--navy);

    font-size: 19px;
}

.feature p {
    margin-bottom: 0;

    color: var(--muted);
}


/* ==========================================================================
   15. MISE EN PAGE DEUX COLONNES
   ========================================================================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;
}


/* ==========================================================================
   16. PANNEAU BLEU / CALL TO ACTION
   ========================================================================== */

.panel {
    padding: 38px;

    background: var(--navy);
    color: var(--white);

    border-radius: 24px;
}

.panel h2 {
    color: var(--white);
}

.panel .lead {
    color: #dceaf5;
}


/* ==========================================================================
   17. TARIFS
   ========================================================================== */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.price {
    padding: 24px;

    background: var(--white);

    border: 1px solid #dfe9f1;
    border-radius: 16px;
}

.price strong {
    color: var(--navy);

    font-size: 24px;
}


/* ==========================================================================
   18. FORMULAIRE DE CONTACT / DEVIS
   ========================================================================== */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field.full {
    grid-column: 1 / -1;
}


/* Labels
   ========================================================================== */

.field label {
    display: block;

    margin-bottom: 5px;

    font-weight: 700;
}


/* Champs
   ========================================================================== */

.field input,
.field select,
.field textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #c9d7e2;
    border-radius: 10px;

    background: var(--white);

    font: inherit;
}

.field textarea {
    min-height: 145px;

    resize: vertical;
}


/* Focus champs
   ========================================================================== */

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;

    border-color: var(--cyan);

    box-shadow:
        0 0 0 3px rgba(8, 168, 245, 0.12);
}


/* Messages formulaire
   ========================================================================== */

.notice {
    margin-bottom: 18px;
    padding: 12px 16px;

    border-radius: 10px;
}

.success {
    background: #e9f9ef;
}

.error {
    background: #fff0f0;
}


/* Champ anti-spam invisible
   ========================================================================== */

.honeypot {
    position: absolute;

    left: -9999px;
}


/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.site-footer {
    padding: 52px 0 22px;

    background: var(--navy2);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-grid a {
    color: var(--white);
}

.footer-logo {
    width: 260px;

    padding: 10px;

    background: var(--white);

    border-radius: 12px;
}


/* Mentions bas de footer
   ========================================================================== */

.legal {
    margin-top: 35px;
    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.15);

    color: #c6d5e1;

    font-size: 13px;
}


/* ==========================================================================
   20. RESPONSIVE - TABLETTES
   ========================================================================== */

@media (max-width: 900px) {

    /* Barre supérieure
       ====================================================================== */

    .topbar .wrap {
        flex-direction: column;
        gap: 2px;
    }


    /* Navigation mobile
       ====================================================================== */

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: flex-start;

        margin-left: 0;
        padding: 20px;

        background: var(--white);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.10);
    }

    .nav.open {
        display: flex;
    }


    /* Logo
       ====================================================================== */

    .logo img {
        width: 210px;
    }


    /* Accueil
       ====================================================================== */

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero h1 {
        font-size: 45px;
    }


    /* Pages
       ====================================================================== */

    .page-hero {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 39px;
    }

    .featured-image-wrapper {
        margin-top: 25px;
    }


    /* Grilles
       ====================================================================== */

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }


    /* Formulaire
       ====================================================================== */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }


    /* Footer
       ====================================================================== */

    .footer-grid {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================================
   21. RESPONSIVE - SMARTPHONES
   ========================================================================== */

@media (max-width: 560px) {

    /* Conteneur
       ====================================================================== */

    .wrap {
        width: min(100% - 28px, 1180px);
    }


    /* Hero accueil
       ====================================================================== */

    .hero h1 {
        font-size: 39px;
    }

    .hero-actions {
        flex-direction: column;
    }


    /* Hero pages
       ====================================================================== */

    .page-hero {
        padding: 38px 0;
    }

    .page-hero h1 {
        font-size: 32px;
    }


    /* Image mise en avant
       ====================================================================== */

    .featured-image-wrapper {
        margin-top: 18px;
    }

    .featured-image {
        border-radius: 12px;
    }


    /* Sections
       ====================================================================== */

    .section {
        padding: 52px 0;
    }

    .section h2 {
        font-size: 31px;
    }


    /* Contenu
       ====================================================================== */

    .content h2 {
        margin-top: 38px;

        font-size: 27px;
    }

    .content h3 {
        font-size: 22px;
    }


    /* Grilles
       ====================================================================== */

    .cards,
    .features {
        grid-template-columns: 1fr;
    }


    /* Tableau responsive
       ====================================================================== */

    .content table {
        display: block;

        overflow-x: auto;

        white-space: normal;

        -webkit-overflow-scrolling: touch;
    }

}
/* ==========================================================================
   22. BLOCS ÉDITORIAUX - PAGES SEO
   ========================================================================== */


/* --------------------------------------------------------------------------
   Introduction
   -------------------------------------------------------------------------- */

.rdl-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: stretch;

    margin: 10px 0 55px;
}

.rdl-intro-text {
    padding: 35px;

    background: var(--light);

    border-radius: var(--radius);
}

.rdl-kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rdl-intro-text h2 {
    margin-top: 0;
}

.rdl-intro-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            var(--navy2),
            var(--navy)
        );

    color: var(--white);

    border-radius: var(--radius);
}

.rdl-big-number {
    color: var(--cyan);

    font-size: 70px;
    font-weight: 800;

    line-height: 0.9;
}

.rdl-intro-highlight strong {
    margin-top: 8px;

    font-size: 22px;
}

.rdl-intro-highlight p {
    margin: 8px 0 0;

    color: #dceaf5;
}


/* --------------------------------------------------------------------------
   Fonctionnement en 3 étapes
   -------------------------------------------------------------------------- */

.rdl-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin: 35px 0 55px;
}

.rdl-step {
    position: relative;

    padding: 30px;

    background: var(--white);

    border: 1px solid #dfe9f1;
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.rdl-step > span {
    display: block;

    margin-bottom: 15px;

    color: var(--cyan);

    font-size: 38px;
    font-weight: 800;

    line-height: 1;
}

.rdl-step h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 21px;
}

.rdl-step p {
    margin: 0;

    color: var(--muted);
}


/* --------------------------------------------------------------------------
   Avantages
   -------------------------------------------------------------------------- */

.rdl-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin: 35px 0 55px;
}

.rdl-benefit {
    padding: 28px;

    background: var(--light);

    border-radius: var(--radius);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rdl-benefit:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow);
}

.rdl-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 16px;

    background: var(--cyan);
    color: var(--white);

    border-radius: 50%;

    font-size: 26px;
    font-weight: 700;
}

.rdl-benefit h3 {
    margin: 0 0 8px;

    color: var(--navy);
}

.rdl-benefit p {
    margin: 0;

    color: var(--muted);
}


/* --------------------------------------------------------------------------
   Comparatif Laser / Sablage
   -------------------------------------------------------------------------- */

.rdl-versus {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;

    margin: 35px 0;
}

.rdl-versus-laser,
.rdl-versus-sablage {
    padding: 30px;

    border-radius: var(--radius);
}

.rdl-versus-laser {
    background:
        linear-gradient(
            145deg,
            var(--navy2),
            var(--navy)
        );

    color: var(--white);
}

.rdl-versus-sablage {
    background: var(--light);

    border: 1px solid #dfe9f1;
}

.rdl-versus-laser > span,
.rdl-versus-sablage > span {
    display: block;

    margin-bottom: 8px;

    color: var(--cyan);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.15em;
}

.rdl-versus-laser strong,
.rdl-versus-sablage strong {
    display: block;

    margin-bottom: 10px;

    font-size: 24px;
}

.rdl-versus-laser p,
.rdl-versus-sablage p {
    margin: 0;
}

.rdl-vs {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: var(--cyan);
    color: var(--white);

    border-radius: 50%;

    font-weight: 900;
}


/* --------------------------------------------------------------------------
   Encadré conseil
   -------------------------------------------------------------------------- */

.rdl-callout {
    display: flex;
    gap: 25px;
    align-items: flex-start;

    margin: 45px 0;

    padding: 30px;

    background: #eaf7fe;

    border-left: 5px solid var(--cyan);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.rdl-callout-icon {
    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: var(--navy);
    color: var(--white);

    border-radius: 50%;

    font-size: 25px;
    font-weight: 800;
}

.rdl-callout h3 {
    margin: 0 0 8px;

    color: var(--navy);
}

.rdl-callout p {
    margin: 0 0 10px;
}


/* --------------------------------------------------------------------------
   Bloc géolocalisation
   -------------------------------------------------------------------------- */

.rdl-local {
    margin: 55px 0;

    padding: 40px;

    background:
        linear-gradient(
            135deg,
            #f3f8fc,
            #ffffff
        );

    border: 1px solid #dfe9f1;
    border-radius: 24px;
}

.rdl-local-title {
    display: flex;
    gap: 20px;
    align-items: center;

    margin-bottom: 20px;
}

.rdl-pin {
    display: flex;
    flex: 0 0 60px;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    background: var(--cyan);
    color: var(--white);

    border-radius: 50%;

    font-size: 30px;
}

.rdl-local-title h2 {
    margin: 0;
}

.rdl-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 25px;
}

.rdl-cities span {
    padding: 7px 13px;

    background: var(--white);
    color: var(--navy);

    border: 1px solid #d8e6ef;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}


/* --------------------------------------------------------------------------
   CTA final
   -------------------------------------------------------------------------- */

.rdl-cta {
    margin: 60px 0 10px;

    padding: 50px;

    background:
        linear-gradient(
            135deg,
            var(--navy2),
            var(--navy)
        );

    color: var(--white);

    border-radius: 24px;

    text-align: center;
}

.rdl-cta h2 {
    margin: 8px auto 15px;

    max-width: 700px;

    color: var(--white);
}

.rdl-cta p {
    max-width: 720px;

    margin: 0 auto 28px;

    color: #dceaf5;

    font-size: 18px;
}

.rdl-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.rdl-phone {
    color: var(--white) !important;

    font-size: 20px;
    font-weight: 800;

    text-decoration: none !important;
}


/* ==========================================================================
   23. BLOCS ÉDITORIAUX - RESPONSIVE
   ========================================================================== */

@media (max-width: 800px) {

    .rdl-intro {
        grid-template-columns: 1fr;
    }

    .rdl-steps {
        grid-template-columns: 1fr;
    }

    .rdl-benefits {
        grid-template-columns: 1fr;
    }

    .rdl-versus {
        grid-template-columns: 1fr;
    }

    .rdl-vs {
        margin: -5px auto;

        transform: rotate(90deg);
    }

    .rdl-local {
        padding: 28px;
    }

    .rdl-local-title {
        align-items: flex-start;
    }

    .rdl-cta {
        padding: 35px 25px;
    }

    .rdl-cta-buttons {
        flex-direction: column;
    }

}


@media (max-width: 520px) {

    .rdl-intro-text,
    .rdl-intro-highlight {
        padding: 25px;
    }

    .rdl-callout {
        flex-direction: column;

        padding: 25px;
    }

    .rdl-local-title {
        flex-direction: column;
    }

    .rdl-cta {
        border-radius: 18px;
    }

}