/* =========================================================
   SKOAZER — LANDING PAGE
   PARTIE 1 : BASE, NAVIGATION ET HERO
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --navy: #0d2b45;
    --navy-light: #173c5c;
    --navy-dark: #071b2d;

    --green: #2ecc9a;
    --green-dark: #25ae84;
    --green-light: #e8f8f2;

    --blue-light: #eef6fb;

    --white: #ffffff;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;

    --red: #ef4444;
    --orange: #f59e0b;
    --blue: #3b82f6;

    --container: 1180px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;

    --shadow-sm:
        0 4px 16px rgba(13, 43, 69, 0.06);

    --shadow-md:
        0 14px 35px rgba(13, 43, 69, 0.09);

    --shadow-lg:
        0 28px 65px rgba(13, 43, 69, 0.14);

    --section-padding: 72px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--gray-900);
    background: var(--white);

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   ACCESSIBILITÉ
========================================================= */

:focus-visible {
    outline: 3px solid rgba(46, 204, 154, 0.4);
    outline-offset: 4px;
}

::selection {
    color: var(--navy);
    background: rgba(46, 204, 154, 0.25);
}


/* =========================================================
   TYPOGRAPHIE
========================================================= */

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 700;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.05rem;
    line-height: 1.35;
}

p {
    color: var(--gray-600);
}


/* =========================================================
   LAYOUT GLOBAL
========================================================= */

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

section {
    position: relative;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-header h2 span {
    color: var(--green-dark);
}

.section-header p {
    margin-top: 12px;
    font-size: 1.05rem;
}


/* =========================================================
   BOUTONS
========================================================= */

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

    min-height: 48px;
    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: var(--radius-md);

    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;

    cursor: pointer;

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

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: var(--green);
    box-shadow:
        0 10px 25px rgba(46, 204, 154, 0.22);
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow:
        0 14px 30px rgba(46, 204, 154, 0.28);
}

.btn-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--gray-50);
}


/* =========================================================
   HEADER
========================================================= */

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

    width: 100%;

    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar {
    width: min(calc(100% - 40px), var(--container));
    height: 70px;
    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    width: auto;
    height: 54px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    position: relative;

    padding: 8px 0;

    color: var(--gray-600);

    font-size: 0.88rem;
    font-weight: 500;

    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 999px;
    background: var(--green);

    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;
    padding: 10px 18px;

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

    border-radius: 10px;

    font-size: 0.84rem;
    font-weight: 600;

    flex-shrink: 0;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--gray-200);
    border-radius: 10px;

    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;
    margin: 4px auto;

    border-radius: 999px;
    background: var(--navy);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto 14px;
    padding: 14px;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);

    background: var(--white);
    box-shadow: var(--shadow-md);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu a {
    display: block;
    padding: 12px 14px;

    color: var(--gray-700);

    border-radius: 8px;

    font-size: 0.95rem;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--gray-50);
}

.mobile-menu .mobile-menu-cta {
    margin-top: 8px;

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

    text-align: center;
    font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    overflow: hidden;

    padding: 72px 0 66px;

    background:
        radial-gradient(
            circle at 83% 18%,
            rgba(46, 204, 154, 0.12),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #f4faff 0%,
            #ffffff 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: center;
    gap: 54px;
}

.hero-content {
    min-width: 0;
}

.hero-content h1 span {
    display: block;
    margin-top: 10px;

    color: var(--green-dark);
}

.hero-description {
    max-width: 590px;
    margin-top: 24px;

    color: var(--gray-600);

    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;

    margin-top: 28px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--gray-600);

    font-size: 0.82rem;
    font-weight: 500;
}

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

    width: 28px;
    height: 28px;

    color: var(--green-dark);
    background: var(--green-light);

    border-radius: 8px;

    font-size: 0.88rem;
}


/* =========================================================
   VISUEL GOOGLE SHEETS
========================================================= */

.hero-visual {
    min-width: 0;
}

.sheet-window {
    overflow: hidden;

    width: 100%;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);

    background: var(--white);

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

.sheet-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 48px;
    padding: 9px 14px;

    border-bottom: 1px solid var(--gray-200);
}

.sheet-titlebar strong {
    display: block;

    color: var(--gray-700);

    font-size: 0.73rem;
    font-weight: 600;
    line-height: 1.2;
}

.sheet-titlebar span {
    display: block;
    margin-top: 2px;

    color: var(--gray-400);

    font-size: 0.62rem;
}

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

    width: 28px;
    height: 28px;

    color: var(--white);
    background: #0f9d58;

    border-radius: 5px;

    font-size: 0.78rem;
}

.sheet-menubar,
.sheet-toolbar {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 31px;
    padding: 5px 12px;

    color: var(--gray-500);

    border-bottom: 1px solid var(--gray-200);

    font-size: 0.61rem;

    white-space: nowrap;
}

.sheet-toolbar {
    gap: 17px;
    background: var(--gray-50);
}

.sheet-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.sheet-table {
    width: 100%;
    min-width: 780px;

    border-collapse: collapse;

    font-size: 0.59rem;
}

.sheet-table th,
.sheet-table td {
    padding: 8px 7px;

    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);

    text-align: left;
    white-space: nowrap;
}

.sheet-table th {
    color: var(--gray-700);
    background: var(--gray-100);

    font-weight: 600;
}

.sheet-table td {
    color: var(--gray-600);
}

.status,
.priority {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 53px;
    padding: 2px 7px;

    border-radius: 999px;

    font-size: 0.54rem;
    font-weight: 600;
}

.status-new {
    color: #166534;
    background: #dcfce7;
}

.status-processing {
    color: #92400e;
    background: #fef3c7;
}

.status-progress {
    color: #1e40af;
    background: #dbeafe;
}

.status-done {
    color: #334155;
    background: #e2e8f0;
}

.priority-high {
    color: #991b1b;
    background: #fee2e2;
}

.priority-medium {
    color: #92400e;
    background: #fef3c7;
}

.priority-low {
    color: #166534;
    background: #dcfce7;
}

.sheet-footer {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 36px;
    padding: 6px 12px;

    color: var(--gray-500);
    background: var(--gray-50);

    font-size: 0.62rem;
}

.sheet-footer button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border: 0;
    border-radius: 5px;

    color: var(--gray-600);
    background: transparent;

    cursor: pointer;
}

.sheet-footer button:hover {
    background: var(--gray-200);
}


/* =========================================================
   RESPONSIVE — PARTIE 1
========================================================= */

@media (max-width: 980px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero {
        padding-top: 58px;
    }

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

    .hero-content {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 820px);
        margin-inline: auto;
    }

}


@media (max-width: 640px) {

    :root {
        --section-padding: 58px;
    }

    .container,
    .navbar {
        width: min(calc(100% - 28px), var(--container));
    }

    .navbar {
        height: 62px;
    }

    .nav-logo img {
        height: 38px;
    }

    .hero {
        padding: 46px 0 50px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 11vw, 3rem);
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-benefits {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .sheet-window {
        border-radius: 14px;
    }

    .sheet-menubar {
        overflow: hidden;
    }

}

/* =========================================================
   SECTION PROBLÈME
========================================================= */

.pain-section {
    padding: var(--section-padding) 0;

    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            var(--gray-50) 100%
        );
}

.pain-section .section-header {
    margin-bottom: 38px;
}

.pain-section .section-header h2 {
    max-width: 780px;
    margin-inline: auto;
}

.pain-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.pain-card {
    min-width: 0;
    min-height: 230px;

    padding: 26px 24px;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);

    background: var(--white);
    box-shadow: var(--shadow-sm);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.pain-card:hover {
    transform: translateY(-5px);

    border-color: rgba(46, 204, 154, 0.65);

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

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

    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    border-radius: 14px;

    background: var(--green-light);
    color: var(--green-dark);

    font-size: 1.35rem;
}

.pain-icon img,
.pain-icon svg {
    width: 24px;
    height: 24px;
}

.pain-card h3 {
    margin-bottom: 10px;

    font-size: 1.02rem;
}

.pain-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}


/* =========================================================
   COMMENT ÇA FONCTIONNE
========================================================= */

.process-section {
    padding: var(--section-padding) 0;

    background: var(--white);
}

.process-section .section-header {
    margin-bottom: 48px;
}

.process-section .section-header p {
    color: var(--green-dark);

    font-size: 1rem;
    font-weight: 600;
}

.timeline {
    position: relative;

    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 18px;
}

.timeline-line {
    position: absolute;
    top: 29px;
    left: 8%;
    right: 8%;
    z-index: 0;

    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(46, 204, 154, 0.18),
        rgba(46, 204, 154, 0.75),
        rgba(46, 204, 154, 0.18)
    );
}

.timeline-step {
    position: relative;
    z-index: 1;

    min-width: 0;

    text-align: center;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    border: 4px solid var(--white);
    border-radius: 50%;

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

    box-shadow:
        0 0 0 2px var(--navy),
        0 10px 24px rgba(13, 43, 69, 0.16);

    font-size: 1rem;
    font-weight: 700;
}

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

    width: 42px;
    height: 42px;
    margin: 0 auto 14px;

    border-radius: 13px;

    color: var(--green-dark);
    background: var(--green-light);

    font-size: 1.1rem;
}

.step-icon img,
.step-icon svg {
    width: 22px;
    height: 22px;
}

.timeline-step h3 {
    max-width: 150px;
    margin: 0 auto 9px;

    font-size: 0.92rem;
    line-height: 1.4;
}

.timeline-step p {
    max-width: 155px;
    margin-inline: auto;

    color: var(--gray-500);

    font-size: 0.78rem;
    line-height: 1.55;
}


/* =========================================================
   ÉTATS HOVER
========================================================= */

.timeline-step:hover .step-number {
    background: var(--green-dark);

    box-shadow:
        0 0 0 2px var(--green-dark),
        0 12px 28px rgba(46, 204, 154, 0.22);
}

.timeline-step:hover .step-icon {
    transform: translateY(-2px);
}

.step-number,
.step-icon {
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


/* =========================================================
   RESPONSIVE — PARTIE 2
========================================================= */

@media (max-width: 1100px) {

    .pain-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .timeline {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 42px;
    }

    .timeline-line {
        display: none;
    }

}


@media (max-width: 700px) {

    .pain-section,
    .process-section {
        padding: 56px 0;
    }

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

    .pain-card {
        min-height: auto;
    }

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

    .timeline-step {
        display: grid;
        grid-template-columns:
            48px
            minmax(0, 1fr);

        grid-template-areas:
            "number title"
            "icon text";

        align-items: start;
        column-gap: 16px;

        padding: 20px;

        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);

        background: var(--gray-50);

        text-align: left;
    }

    .step-number {
        grid-area: number;

        width: 44px;
        height: 44px;
        margin: 0;

        border-width: 3px;
    }

    .step-icon {
        grid-area: icon;

        width: 38px;
        height: 38px;
        margin: 4px 0 0;
    }

    .timeline-step h3 {
        grid-area: title;

        max-width: none;
        margin: 2px 0 6px;

        font-size: 0.98rem;
    }

    .timeline-step p {
        grid-area: text;

        max-width: none;
        margin: 0;

        font-size: 0.86rem;
    }

}


@media (max-width: 430px) {

    .pain-card {
        padding: 22px;
    }

    .pain-icon {
        width: 44px;
        height: 44px;
    }

    .timeline-step {
        column-gap: 12px;
        padding: 18px;
    }

}

/* =========================================================
   AVANTAGES
========================================================= */

.benefits-section {
    padding: 38px 0;

    background: var(--blue-light);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    min-width: 0;
    padding: 20px;

    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);

    background: rgba(255, 255, 255, 0.82);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

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

    border-color: rgba(46, 204, 154, 0.65);
    background: var(--white);
}

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

    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    border-radius: 12px;

    color: var(--green-dark);
    background: var(--green-light);

    font-size: 1.1rem;
}

.benefit-icon img,
.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-card h3 {
    margin-bottom: 5px;

    font-size: 0.96rem;
}

.benefit-card p {
    color: var(--gray-500);

    font-size: 0.8rem;
    line-height: 1.55;
}


/* =========================================================
   TARIFS
========================================================= */

.pricing-section {
    padding: var(--section-padding) 0;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(46, 204, 154, 0.09),
            transparent 34%
        ),
        var(--white);
}

.pricing-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(300px, 0.82fr)
        minmax(0, 0.85fr);

    align-items: center;
    gap: 42px;
}


/* =========================================================
   INTRO TARIFS
========================================================= */

.pricing-intro {
    min-width: 0;
}

.pricing-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    border-radius: 999px;

    color: var(--green-dark);
    background: var(--green-light);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pricing-intro h2 {
    margin-top: 16px;

    font-size: clamp(1.9rem, 2.8vw, 2.65rem);
}

.pricing-summary {
    display: flex;
    flex-direction: column;
    gap: 13px;

    margin-top: 26px;
}

.pricing-summary li {
    position: relative;

    padding-left: 28px;

    color: var(--gray-600);

    font-size: 0.93rem;
    line-height: 1.6;
}

.pricing-summary li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;

    border-radius: 50%;

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

    font-size: 0.68rem;
    font-weight: 800;
}

.pricing-summary strong {
    color: var(--navy);
}


/* =========================================================
   CARTE TARIFAIRE
========================================================= */

.pricing-card {
    position: relative;
    overflow: hidden;

    min-width: 0;
    padding: 28px 24px;

    border: 1px solid rgba(46, 204, 154, 0.55);
    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fffc 100%
        );

    box-shadow:
        0 24px 54px rgba(13, 43, 69, 0.12);

    text-align: center;
}

.pricing-card::before {
    content: "";

    position: absolute;
    top: -75px;
    right: -75px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(46, 204, 154, 0.11);
}

.pricing-price {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
}

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

    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.price-period {
    padding-bottom: 8px;

    color: var(--gray-500);

    font-size: 0.92rem;
    font-weight: 600;
}

.pricing-normal-price {
    margin-top: 12px;

    color: var(--green-dark);

    font-size: 0.78rem;
    font-weight: 700;
}

.pricing-divider {
    width: 64px;
    height: 2px;
    margin: 24px auto;

    border-radius: 999px;

    background: var(--gray-200);
}

.pricing-installation {
    color: var(--navy);

    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
}

.pricing-installation strong {
    color: var(--green-dark);
}

.pricing-installation span {
    display: block;
    margin-top: 4px;

    color: var(--gray-500);

    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-button {
    width: 100%;
    margin-top: 24px;
}

.pricing-after {
    margin-top: 16px;

    color: var(--gray-500);

    font-size: 0.72rem;
    line-height: 1.5;
}

.pricing-after strong {
    display: block;

    color: var(--gray-700);
}


/* =========================================================
   RÉASSURANCE TARIFS
========================================================= */

.pricing-reassurance {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reassurance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    min-width: 0;
    padding: 18px 19px;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);

    background: var(--gray-50);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.reassurance-item:hover {
    transform: translateX(3px);

    border-color: rgba(46, 204, 154, 0.6);
    background: var(--white);
}

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

    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    border-radius: 12px;

    color: var(--green-dark);
    background: var(--green-light);

    font-size: 1rem;
}

.reassurance-icon img,
.reassurance-icon svg {
    width: 21px;
    height: 21px;
}

.reassurance-item h3 {
    margin-bottom: 4px;

    font-size: 0.94rem;
}

.reassurance-item p {
    color: var(--gray-500);

    font-size: 0.79rem;
    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE — PARTIE 3
========================================================= */

@media (max-width: 1080px) {

    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .pricing-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.9fr);

        align-items: start;
    }

    .pricing-reassurance {
        grid-column: 1 / -1;

        display: grid;
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 760px) {

    .benefits-section {
        padding: 32px 0;
    }

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

    .pricing-section {
        padding: 58px 0;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-intro {
        text-align: center;
    }

    .pricing-summary {
        width: min(100%, 520px);
        margin-inline: auto;

        text-align: left;
    }

    .pricing-card {
        width: min(100%, 470px);
        margin-inline: auto;
    }

    .pricing-reassurance {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 430px) {

    .benefit-card {
        padding: 18px;
    }

    .pricing-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .price-amount {
        font-size: 3.25rem;
    }

    .reassurance-item {
        padding: 16px;
    }

}

/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: var(--section-padding) 0;

    background:
        linear-gradient(
            180deg,
            var(--gray-50) 0%,
            var(--white) 100%
        );
}

.faq-container {
    max-width: 900px;
}

.faq-section .section-header {
    margin-bottom: 34px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid var(--gray-200);
    border-radius: 15px;

    background: var(--white);
    box-shadow: var(--shadow-sm);

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

.faq-item:hover {
    transform: translateY(-2px);

    border-color: rgba(46, 204, 154, 0.6);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    width: 100%;
    padding: 14px 18px;

    border: 0;

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

    text-align: left;

    font-size: 0.96rem;
    font-weight: 600;

    cursor: pointer;
}

.faq-question:hover {
    background: var(--gray-50);
}

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

    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    border-radius: 50%;

    color: var(--navy);
    background: var(--green-light);

    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.faq-answer {
    display: none;

    padding: 0 18px 14px;

    color: var(--gray-600);

    font-size: 0.88rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);

    color: var(--white);
    background: var(--green-dark);
}

/* =========================================================
   CTA FINAL
========================================================= */

.final-cta-section {
    padding: 0 0 62px;
    background: var(--white);
}

.final-cta-card {
    position: relative;
    overflow: hidden;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 40px;

    border-radius: 20px;

    background:
        linear-gradient(
            125deg,
            #0758a4 0%,
            #087aa1 48%,
            #12b89c 100%
        );

    box-shadow:
        0 24px 55px rgba(7, 65, 105, 0.2);
}

.final-cta-card::before,
.final-cta-card::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}

.final-cta-card::before {
    top: -150px;
    left: -120px;

    width: 340px;
    height: 340px;
}

.final-cta-card::after {
    right: -90px;
    bottom: -155px;

    width: 330px;
    height: 330px;
}

.final-cta-content {
    position: relative;
    z-index: 1;

    width: min(100%, 760px);

    color: var(--white);

    text-align: center;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;
    margin-bottom: 22px;

    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 999px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.06);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.final-cta-content h2 {
    max-width: 680px;
    margin-inline: auto;

    color: var(--white);

    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.final-cta-content > p {
    max-width: 680px;
    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1rem;
    line-height: 1.7;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 56px;
    margin-top: 28px;
    padding: 15px 28px;

    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 12px;

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

    box-shadow:
        0 12px 30px rgba(7, 27, 45, 0.2);

    font-size: 0.94rem;
    font-weight: 700;

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

.final-cta-button:hover {
    transform: translateY(-3px);

    background: #f8fffc;

    box-shadow:
        0 17px 36px rgba(7, 27, 45, 0.25);
}

.final-cta-button span {
    font-size: 1.25rem;
}

.final-cta-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    margin-top: 30px;
}

.final-cta-benefits span {
    padding: 0 24px;

    color: rgba(255, 255, 255, 0.95);

    border-right: 1px solid rgba(255, 255, 255, 0.32);

    font-size: 0.79rem;
    font-weight: 600;
}

.final-cta-benefits span:last-child {
    border-right: 0;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.72);

    background:
        radial-gradient(
            circle at 84% 20%,
            rgba(15, 91, 120, 0.2),
            transparent 32%
        ),
        #061b31;
}


/* =========================================================
   CONTENU PRINCIPAL DU FOOTER
========================================================= */

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.35fr)
        minmax(150px, 0.7fr)
        minmax(210px, 0.8fr);

    align-items: start;
    gap: 70px;

    padding-top: 48px;
    padding-bottom: 38px;
}


/* =========================================================
   MARQUE
========================================================= */

.footer-brand {
    min-width: 0;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    color: var(--white);
    text-decoration: none;
}

.footer-brand-icon {
    display: block;

    width: 96px;
    height: 96px;

    flex: 0 0 96px;

    object-fit: contain;
}

.footer-brand-name {
    display: inline-block;

    margin: 0;

    color: var(--white);

    font-size: 3rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: -0.03em;

    text-transform: uppercase;
}

.footer-brand-line {
    width: 52px;
    height: 4px;

    margin: 24px 0 22px;

    border-radius: 999px;

    background: var(--green);
}

.footer-brand-text {
    max-width: 360px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-brand-text strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}


/* =========================================================
   COLONNES
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    min-width: 0;
}

.footer-column-title {
    margin: 2px 0 10px;

    color: var(--white);

    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 1rem;
    line-height: 1.45;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    transform: translateX(2px);

    color: var(--green);
}

.footer-column a:focus-visible,
.footer-brand-link:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
    border-radius: 3px;
}

.footer-column .footer-demo-link {
    color: var(--green);
    font-weight: 600;
}


/* =========================================================
   COPYRIGHT COMPACT
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding-top: 10px;
    padding-bottom: 10px;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.72rem;
    line-height: 1.4;
}


/* =========================================================
   RESPONSIVE CTA + FOOTER
========================================================= */

@media (max-width: 850px) {

    .final-cta-card {
        min-height: 410px;
        padding: 54px 28px;
    }

    .footer-main {
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(150px, 0.75fr);

    gap: 38px;

    padding-top: 44px;
    padding-bottom: 34px;
}

.footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand-link {
        justify-content: center;
    }

    .footer-brand-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand-text {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 600px) {

    .final-cta-section {
        padding-bottom: 0;
    }

    .final-cta-section .container {
        width: 100%;
    }

    .final-cta-card {
        min-height: 430px;

        padding: 48px 20px;

        border-radius: 0;
    }

    .final-cta-content > p {
        font-size: 0.91rem;
    }

    .final-cta-button {
        width: 100%;

        padding-inline: 18px;

        font-size: 0.87rem;
    }

    .final-cta-benefits {
        flex-direction: column;
        gap: 13px;
    }

    .final-cta-benefits span {
        padding: 0;
        border-right: 0;
    }

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

    gap: 30px;

    padding-top: 38px;
    padding-bottom: 30px;
}

.footer-brand {
    grid-column: auto;
}

.footer-brand-icon {
    width: 56px;
    height: 56px;

    flex-basis: 56px;
}

.footer-brand-name {
    font-size: 1.7rem;
}

.footer-brand-line {
    margin-top: 18px;
    margin-bottom: 16px;
}

.footer-bottom-inner {
    min-height: 44px;

    padding-top: 8px;
    padding-bottom: 8px;
}

.footer-brand {
        text-align: center;
    }

    .footer-brand-link {
        justify-content: center;
    }

    .footer-brand-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand-text {
        margin-left: auto;
        margin-right: auto;
    }

}


/* =========================================================
   ÉTATS GLOBAUX
========================================================= */

.site-header.is-scrolled {
    box-shadow:
        0 10px 32px rgba(13, 43, 69, 0.08);
}

.menu-toggle.is-active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   RESPONSIVE FOOTER + FAQ
========================================================= */

@media (max-width: 1100px) {

    .footer-grid {
        grid-template-columns:
            minmax(220px, 1.3fr)
            repeat(2, minmax(130px, 0.7fr))
            minmax(220px, 1fr);
    }

    .footer-column:nth-of-type(3) {
        display: none;
    }

}


@media (max-width: 820px) {

    .faq-section {
        padding: 58px 0;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-brand,
    .footer-cta {
        grid-column: 1 / -1;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-cta {
        text-align: center;
    }

}


@media (max-width: 560px) {

    .faq-question {
        padding: 16px;

        font-size: 0.91rem;
    }

    .faq-answer {
        padding:
            0 16px 16px;

        font-size: 0.84rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;

        font-size: 1.12rem;
    }

    .site-footer {
        padding: 42px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;

        text-align: center;
    }

    .footer-brand,
    .footer-cta {
        grid-column: auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-brand img {
        height: 38px;
    }

    .footer-bottom {
        margin-top: 24px;
        padding-inline: 16px;
    }

}

/* =========================================================
   MODALE DE DÉMONSTRATION
========================================================= */

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.demo-modal.is-open {
    display: flex;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(6, 27, 49, 0.76);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.demo-modal-dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 720px);
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 34px;

    border: 1px solid var(--gray-200);
    border-radius: 22px;

    background: var(--white);

    box-shadow:
        0 30px 80px rgba(6, 27, 49, 0.3);
}

.demo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid var(--gray-200);
    border-radius: 50%;

    color: var(--gray-600);
    background: var(--white);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.demo-modal-close:hover {
    color: var(--navy);
    border-color: var(--green);
    background: var(--green-light);
}


/* =========================================================
   EN-TÊTE DE LA MODALE
========================================================= */

.demo-modal-header {
    padding-right: 46px;
    margin-bottom: 26px;
}

.demo-modal-eyebrow {
    display: inline-flex;

    padding: 6px 12px;
    margin-bottom: 12px;

    border-radius: 999px;

    color: var(--green-dark);
    background: var(--green-light);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.demo-modal-header h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.2;
}

.demo-modal-header p {
    max-width: 610px;
    margin-top: 10px;

    color: var(--gray-500);

    font-size: 0.89rem;
    line-height: 1.65;
}


/* =========================================================
   FORMULAIRE
========================================================= */

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.demo-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px 16px;
}

.form-field {
    min-width: 0;
}

.form-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 0.81rem;
    font-weight: 600;
}

.form-field label span {
    color: var(--green-dark);
}

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

    border: 1px solid var(--gray-300);
    border-radius: 10px;

    color: var(--gray-900);
    background: var(--white);

    font-size: 0.89rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
    min-height: 46px;
    padding: 10px 13px;
}

.form-field textarea {
    min-height: 105px;
    padding: 12px 13px;

    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 4px rgba(46, 204, 154, 0.13);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
    border-color: var(--red);
}

.form-field input.is-invalid:focus,
.form-field select.is-invalid:focus,
.form-field textarea.is-invalid:focus {
    box-shadow:
        0 0 0 4px rgba(239, 68, 68, 0.1);
}


/* =========================================================
   ERREURS
========================================================= */

.form-error {
    display: block;

    min-height: 16px;
    margin-top: 5px;

    color: var(--red);

    font-size: 0.69rem;
    line-height: 1.35;
}


/* =========================================================
   CONSENTEMENT
========================================================= */

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: var(--gray-600);

    font-size: 0.75rem;
    line-height: 1.55;

    cursor: pointer;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;

    flex: 0 0 17px;

    accent-color: var(--green-dark);
}

.form-consent a {
    color: var(--green-dark);

    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-error {
    min-height: 0;
    margin-top: -12px;
}


/* =========================================================
   ANTI-SPAM
========================================================= */

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =========================================================
   BOUTON ET STATUT
========================================================= */

.demo-form-submit {
    width: 100%;
}

.demo-form-submit:disabled {
    opacity: 0.65;

    cursor: wait;
    transform: none;
}

.demo-form-reassurance {
    margin-top: -8px;

    color: var(--gray-500);

    text-align: center;

    font-size: 0.7rem;
}

.form-status {
    display: none;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 0.8rem;
    line-height: 1.5;
}

.form-status.is-error {
    display: block;

    color: #991b1b;
    background: #fee2e2;

    border: 1px solid #fecaca;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 640px) {

    .demo-modal {
        align-items: flex-end;

        padding: 0;
    }

    .demo-modal-dialog {
        width: 100%;
        max-height: 94vh;

        padding: 26px 20px 24px;

        border-radius: 22px 22px 0 0;
    }

    .demo-modal-header {
        padding-right: 38px;
        margin-bottom: 22px;
    }

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

        gap: 11px;
    }

}


/* =========================================================
   RÉDUCTION DES ANIMATIONS
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}