/* ============================================
   RESET & VARIABLES GLOBALES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --site-max-width: 1400px;
    --site-pad: 16px;
    --site-pad-desktop: 60px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000;
    line-height: 1.6;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: max(var(--site-pad), calc((100% - var(--site-max-width)) / 2));
    right: max(var(--site-pad), calc((100% - var(--site-max-width)) / 2));
    height: 1px;
    background-color: #e6e6e6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    padding: 30px 0;
    border-bottom: none;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
}

.header-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo::before {
    content: none;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

a.logo,
a.footer-logo {
    text-decoration: none;
}

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

.nav a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.nav a:hover {
    opacity: 0.6;
}

/* Menu Burger - Hidden sur Desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2.5px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 0 64px;
    background: #ffffff;
}

.hero-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 430px;
}

.hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #3a3a3a;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: none;
}

.hero-title {
    font-size: 42px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    max-width: 56ch;
    margin-bottom: 18px;
}

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

.hero-actions .cta-button {
    display: inline-block;
}

.cta-button {
    display: inline-block;
    padding: 14px 20px;
    background-color: #b8ff00;
    border: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
    width: fit-content;
}

.hero-link {
    display: inline-block;
    padding: 12px 4px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #111;
    display: none;
}

.cta-button:hover {
    background-color: #a0e000;
    transform: translateY(-2px);
}

.hero-link:hover {
    opacity: 0.75;
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-metrics {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #e5e5e5;
    list-style: none;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hero-metrics li {
    font-size: 13px;
    color: #3f3f3f;
}

.hero-metrics span {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    background-color: transparent;
}

.hero-image-wrapper {
    display: none;
    position: relative;
}

.hero-image-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #fff;
}

.hero-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: saturate(1.15);
}

.cta-button-mobile {
    display: none;
    margin-top: 14px;
}

.hero-note {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background-color: #ffffff;
}

.hero-note p {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 40ch;
        margin-bottom: 0;
        text-align: center;
    }

    .hero-actions {
        width: min(100%, 430px);
        justify-content: center;
        margin-top: 34px;
        padding-top: 18px;
        border-top: 1px solid #e5e5e5;
    }

    .hero-actions .cta-button {
        padding: 13px 22px;
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 1023px) {
    .header-container {
        padding: 0 var(--site-pad);
    }

    .logo {
        gap: 8px;
    }

    .logo::before {
        content: none;
    }

    .logo img {
        height: 26px;
    }

    /* Menu Burger Visible */
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: #ffffff;
        border-bottom: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: none;
    }

    .nav.active {
        max-height: 400px;
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav a {
        display: block;
        padding: 18px 40px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
    }
}

/* ============================================
   SECTION POURQUOI NOUS
   ============================================ */
.why-us {
    background-color: #ffffff;
    padding: 60px 0;
}

.why-us-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
    text-align: center;
}

.why-us-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-card {
    padding: 40px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.stat-card:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 46px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.3px;
}

/* ============================================
   SECTION NOS PACKS
   ============================================ */
.packs {
    background-color: #ffffff;
    padding: 60px 0;
}

.packs-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

.packs-header {
    margin-bottom: 28px;
}

.packs-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.packs-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

.packs-grid {
    display: grid;
    gap: 20px;
}

.pack-card {
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
    background-color: #fff;
}

.pack-image {
    width: 100%;
    height: 260px;
    background-color: #e9e9e9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pack-body {
    padding: 20px;
}

.pack-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pack-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pack-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.pack-features {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.pack-features li {
    font-size: 14px;
    color: #444;
    line-height: 1.45;
    padding-left: 12px;
    position: relative;
}

.pack-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b8ff00;
}

.pack-cta {
    display: inline-block;
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    background-color: #b8ff00;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pack-cta:hover {
    background-color: #a0e000;
}

.service-link:hover {
    opacity: 0.82;
}



/* ============================================
   SECTION NOS SERVICES
   ============================================ */
.services {
    background-color: #ffffff;
    padding: 60px 0;
}

.services-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
    text-align: center;
}

.services-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.services-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    position: relative;
    text-align: left;
    overflow: hidden;
    border: 1px solid #e7e7e7;
}

.service-card-clickable {
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card-clickable:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .service-card-clickable:hover {
        transform: translateY(-4px);
        border-color: #d5d5d5;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .service-card-clickable:hover .service-image {
        filter: brightness(0.96);
    }

    .service-card-clickable:hover .service-link {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e0e0e0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.service-body {
    padding: 30px 20px;
}

.service-icon {
    width: 42px;
    height: 42px;
    display: inline-block;
    margin-bottom: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.7;
}

.service-link-disabled {
    pointer-events: none;
    opacity: 0.55;
}

.service-card-coming-soon .service-image,
.service-card-coming-soon .service-body {
    transition: filter 0.28s ease;
}

.service-coming-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.28s ease;
}

.service-coming-soon span {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    padding: 10px 16px;
    backdrop-filter: blur(2px);
}

@media (hover: hover) and (pointer: fine) {
    .service-card-coming-soon:hover .service-image,
    .service-card-coming-soon:hover .service-body,
    .service-card-coming-soon:focus-within .service-image,
    .service-card-coming-soon:focus-within .service-body {
        filter: blur(2px);
    }

    .service-card-coming-soon:hover .service-coming-soon,
    .service-card-coming-soon:focus-within .service-coming-soon {
        opacity: 1;
    }
}



/* ============================================
   SECTION PROJETS RÉALISÉS
   ============================================ */
.projects {
    background-color: #ffffff;
    padding: 60px 0;
}

.projects-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

.project-banner {
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-overlay {
    background-color: rgba(0, 0, 0, 0.44);
    color: #fff;
    padding: 28px 18px;
    display: grid;
    gap: 18px;
}

.project-overlay h2 {
    font-size: 34px;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.05;
}

.project-overlay p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 50ch;
}

.project-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #b8ff00;
}

.project-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 26px;
    background-color: #b8ff00;
    color: #000;
    text-decoration: none;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.project-btn:hover {
    opacity: 0.9;
}





/* ============================================
   SECTION À PROPOS
   ============================================ */
.about {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

.about-content {
    display: grid;
    gap: 20px;
}

.about-intro {
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 18px;
    background-color: #fff;
}

.about-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #494949;
    margin-bottom: 8px;
}

.about-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-points {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.about-points li {
    position: relative;
    padding-left: 14px;
    font-size: 14px;
    color: #424242;
    line-height: 1.45;
}

.about-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b8ff00;
}

.about-link {
    display: inline-block;
    padding: 11px 18px;
    border: none;
    border-radius: 999px;
    background-color: #b8ff00;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.about-link:hover {
    background-color: #a0e000;
}

.about-visual {
    width: 100%;
    min-height: 270px;
    background-color: #e4e4e4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e6e6e6;
}

.footer-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
    text-align: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo::before {
    content: none;
}

.footer-logo img {
    height: 22px;
    width: auto;
    display: block;
}

.footer-subscribe {
    padding: 10px 34px;
    background: #b8ff00 100%;
        
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    color: #000;
    text-transform: lowercase;
}

.footer-subscribe:hover {
    background: #a0e000 100%;
     
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-nav a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-contact a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.6;
}

.footer-copyright {
    font-size: 12px;
    color: #7a7a7a;
    letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
    .section-divider::before {
        left: max(var(--site-pad-desktop), calc((100% - var(--site-max-width)) / 2));
        right: max(var(--site-pad-desktop), calc((100% - var(--site-max-width)) / 2));
    }
    /* HEADER & NAVIGATION */
    .header {
        padding: 40px 0;
    }

    .header-container {
        padding: 0 var(--site-pad-desktop);
    }

    .logo {
        gap: 10px;
    }

    .logo::before {
        content: none;
    }

    .logo img {
        height: 34px;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        position: static;
        flex-direction: row;
        gap: 60px;
        max-height: none;
        border: none;
        padding: 0;
    }

    .nav a {
        padding: 0;
        border: none;
        display: inline;
        font-size: 13px;
    }

    .hero {
        min-height: calc(100vh - 116px);
        align-items: center;
        padding: 72px 0 88px;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        padding: 0 var(--site-pad-desktop);
        gap: 72px;
    }

    .hero-text {
        flex: 1;
        max-width: 640px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-kicker {
        display: block;
        font-size: 12px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 64px;
        line-height: 1.02;
        margin-bottom: 20px;
        letter-spacing: -1.8px;
    }

    .hero-subtitle {
        display: block;
        font-size: 18px;
        max-width: 50ch;
        margin-bottom: 30px;
    }

    .hero-actions .cta-button {
        display: inline-block;
    }

    .cta-button-mobile {
        display: none;
    }

    .hero-link {
        display: inline-block;
    }

    .hero-metrics {
        display: grid;
        margin-top: 28px;
        padding-top: 22px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .hero-metrics li {
        font-size: 14px;
        width: max-content;
    }

    .hero-metrics li:nth-child(1) {
        justify-self: start;
        text-align: left;
    }

    .hero-metrics li:nth-child(2) {
        justify-self: center;
        text-align: center;
    }

    .hero-metrics li:nth-child(3) {
        justify-self: end;
        text-align: right;
    }

    .hero-image-wrapper {
        display: block;
        flex: 1;
        max-width: 560px;
        margin-left: auto;
    }

    .hero-image {
        height: 520px;
    }

    .hero-note {
        display: block;
        position: absolute;
        right: 12px;
        bottom: 12px;
        max-width: 260px;
        margin-top: 0;
        padding: 12px 14px;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }

    /* SECTION POURQUOI NOUS */
    .why-us {
        padding: 100px 0;
    }

    .why-us-container {
        padding: 0 var(--site-pad-desktop);
        text-align: left;
    }

    .why-us-title {
        font-size: 25px;
        margin-bottom: 20px;
        text-align: left;
    }

    .why-us-subtitle {
        font-size: 15px;
        margin-bottom: 80px;
        text-align: left;
        max-width: 500px;
        margin-left: 0;
    }

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

    .stat-card {
        padding: 40px 20px;
        border: none;
        border-right: 1px solid #f0f0f0;
        text-align: center;
    }

    .stat-card:last-child {
        border-right: none;
    }

    .stat-number {
        font-size: 56px;
        margin-bottom: 20px;
    }

    .stat-label {
        font-size: 16px;
    }

    /* SECTION NOS PACKS */
    .packs {
        padding: 100px 0;
    }

    .packs-container {
        padding: 0 var(--site-pad-desktop);
    }

    .packs-header {
        margin-bottom: 60px;
    }

    .packs-header::before {
        width: 80px;
        height: 5px;
    }

    .packs-title {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .packs-subtitle {
        font-size: 15px;
        max-width: 700px;
    }

    .packs-grid {
        align-items: flex-start;
    }

    .pack-card {
        max-width: 100%;
    }

    .pack-image {
        height: 400px;
    }

    .pack-body {
        padding: 28px 30px 30px;
    }

    .pack-title {
        font-size: 36px;
    }

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

    /* SECTION NOS SERVICES */
    .services {
        padding: 100px 0;
    }

    .services-container {
        padding: 0 var(--site-pad-desktop);
        text-align: left;
       
    }

    .services-title {
        font-size: 25px;
        margin-bottom: 20px;
        text-align: left;
    }

    .services-subtitle {
        font-size: 15px;
        margin-bottom: 80px;
        text-align: left;
        max-width: 500px;
        margin-left: 0;
        margin-right: 0;
    }

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

    .service-card {
        padding: 0;
        text-align: left;
        
    }

    .service-image {
        height: 200px;
        margin: 0;
        border-radius: 12px 12px 0 0;
    }

    .service-body {
        padding: 20px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-description {
        font-size: 13px;
    }

    /* SECTION PROJETS RÉALISÉS */
    .projects {
        padding: 100px 0;
    }

    .projects-container {
        padding: 0 var(--site-pad-desktop);
    }

    .project-overlay {
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 20px;
        padding: 30px 24px;
    }

    .project-overlay h2 {
        font-size: 43px;
    }

    /* SECTION À PROPOS */
    .about {
        padding: 100px 0;
    }

    .about-container {
        padding: 0 var(--site-pad-desktop);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
        align-items: start;
    }

    .about-intro {
        padding: 24px;
        min-height: 100%;
    }

    .about-visual {
        min-height: 100%;
        height: 100%;
    }

    .footer {
        padding: 80px 0;
    }

    .footer-container {
        max-width: var(--site-max-width);
        padding: 0 var(--site-pad-desktop);
        margin: 0 auto;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
        gap: 18px 40px;
        text-align: left;
    }

    .footer-left {
        align-items: start;
    }

    .footer-logo {
        justify-self: start;
    }

    .footer-logo img {
        height: 30px;
    }

    .footer-subscribe {
        margin-top: 12px;
        justify-self: start;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-self: center;
        align-items: start;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-self: end;
        align-items: start;
    }

    .footer-contact a {
        font-size: 14px;
    }

    .footer-copyright {
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: 30px;
        font-size: 12px;
    }
}

/* Footer logo size (same as header logo) */
.footer-logo img {
    height: 30px;
}

@media (min-width: 1024px) {
    .footer-logo img {
        height: 34px;
    }
}

/* Remove nav outline */
@media (max-width: 1023px) {
    .nav.active {
        border-top: none;
        border-bottom: none;
    }

    .nav a {
        border-bottom: none;
    }
}

/* Mobile titles/subtitles left aligned */
@media (max-width: 1023px) {
    .hero-title,
    .hero-subtitle,
    .why-us-title,
    .why-us-subtitle,
    .packs-title,
    .packs-subtitle,
    .pack-title,
    .services-title,
    .services-subtitle,
    .about-title,
    .about-text {
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }
}


/* Home SEO text block */
.home-seo-content {
    background-color: #ffffff;
    padding: 56px 0;
}

.home-seo-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

.home-seo-container h2 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
}

.home-seo-container p {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
    margin-bottom: 16px;
    width: min(100%, 88ch);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    overflow-wrap: anywhere;
}

.home-seo-container p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .home-seo-content {
        padding: 72px 0;
    }

    .home-seo-container {
        padding: 0 var(--site-pad-desktop);
    }

    .home-seo-container h2 {
        font-size: 25px;
    }
}

/* Expandable SEO text */
.seo-expand {
    width: min(100%, 88ch);
    max-width: 100%;
    margin: 8px 0 0;
}

.seo-expand summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background-color: #b8ff00;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
}

.seo-expand summary::-webkit-details-marker {
    display: none;
}

.seo-expand summary::marker {
    content: "";
    font-size: 0;
}

.seo-expand-label {
    line-height: 1;
}

.seo-expand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    flex: 0 0 auto;
}

.seo-expand-icon::before {
    content: "+";
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    width: 10px;
    text-align: center;
    font-weight: 700;
}

.seo-expand[open] .seo-expand-icon::before {
    content: "-";
}

.seo-expand[open] summary {
    margin-bottom: 14px;
}

.seo-expand .seo-expand-content {
    display: none;
}

.seo-expand[open] .seo-expand-content,
.seo-expand.is-open .seo-expand-content {
    display: block;
}


.seo-expand-content p {
    margin-bottom: 16px;
}

.seo-expand-content p:last-child {
    margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
    .seo-expand summary:hover {
        background-color: #a0e000;
    }
}

/* Scroll reveal (chill) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-on-scroll.reveal-delay-2 {
    transition-delay: 140ms;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.reveal-delay-1,
    .reveal-on-scroll.reveal-delay-2 {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Hero reveal (chill) */
.hero-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    will-change: opacity, transform;
}

.hero-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-reveal.hero-delay-1 {
    transition-delay: 100ms;
}

.hero-reveal.hero-delay-2 {
    transition-delay: 170ms;
}

@media (prefers-reduced-motion: reduce) {
    .hero-reveal,
    .hero-reveal.hero-delay-1,
    .hero-reveal.hero-delay-2 {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
