:root {
    --bg: #eaf4f2;
    --paper: #ffffff;
    --ink: #061319;
    --muted: #4e6870;
    --line: #c7dddc;
    --aqua: #00b7d4;
    --aqua-dark: #00718d;
    --sky: #83dfff;
    --deep-blue: #005f85;
    --logo-blue: #66cdf4;
    --coral: #f49aa4;
    --coral-dark: #d84f62;
    --star: #f6cf3f;
    --leaf: #58b95a;
    --violet: #6a57c8;
    --soft: #f7fbf8;
    --shadow: 0 18px 50px rgba(0, 87, 121, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Component placeholders (filled by assets/js/components.js) must not create
   their own box, otherwise their injected content — the sticky header in
   particular — is trapped inside a wrapper exactly as tall as itself and
   can't stick while scrolling. */
[data-component] {
    display: contents;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--ink);
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 20px min(4vw, 40px) 14px;
    transition: padding .35s cubic-bezier(.16, .8, .3, 1);
}

.site-header.is-scrolled {
    padding: 12px min(4vw, 40px) 12px;
}

.header-inner {
    position: relative;
    width: min(1220px, 100%);
    margin: 0 auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 10px 8px 8px;
    border-radius: 999px;
    background: rgba(237, 246, 244, 0);
    box-shadow: none;
    transition: all .35s cubic-bezier(.16, .8, .3, 1);
}

.site-header.is-scrolled .header-inner {
    width: min(920px, 100%);
    min-height: 66px;
    padding: 6px 10px 6px 6px;
    background: var(--ink);
    box-shadow: 0 20px 50px rgba(0, 18, 28, .32);
}

.brand {
    display: flex;
    align-items: center;
    font-weight: 800;
}

.header-inner .shop-link {
    margin-left: auto;
}

.brand-badge {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    padding: 4px;
    border-radius: 999px;
    background: var(--paper);
    border: 2px solid var(--aqua);
    box-shadow: 0 10px 24px rgba(0, 87, 121, .18);
    overflow: hidden;
    transition: width .35s ease, height .35s ease, transform .3s ease;
    flex-shrink: 0;
}

.site-header.is-scrolled .brand-badge {
    width: 52px;
    height: 52px;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.7);
}

.inline-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0 auto 0 8px;
    color: var(--ink);
}

.site-header.is-scrolled .inline-nav {
    color: white;
}

.inline-nav a {
    position: relative;
    padding: 4px 0;
    font-weight: 700;
    font-size: 15px;
}

.inline-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: var(--aqua);
    transition: right .26s cubic-bezier(.16, .8, .3, 1);
}

.inline-nav a:hover::after,
.inline-nav a[aria-current="page"]::after {
    right: 0;
}

.inline-nav a[aria-current="page"] {
    color: var(--aqua-dark);
}

.site-header.is-scrolled .inline-nav a[aria-current="page"] {
    color: var(--sky);
}

.inline-nav-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
    opacity: .4;
}

.main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: start center;
    min-height: 100vh;
    padding: 104px min(7vw, 90px) 60px;
    overflow: auto;
    background:
        radial-gradient(circle at 90% 8%, rgba(0, 183, 212, .18), transparent 30%),
        radial-gradient(circle at 6% 90%, rgba(244, 154, 164, .13), transparent 26%),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 182, 208, .07) 18px 19px),
        linear-gradient(160deg, rgba(255, 255, 255, .99) 0%, rgba(237, 246, 244, .99) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.menu-inner {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 64px;
    align-items: start;
    color: var(--ink);
    text-align: left;
}

.menu-kicker {
    margin-bottom: 22px;
    color: var(--aqua-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.menu-links {
    display: grid;
    gap: 10px;
}

.menu-aside {
    display: grid;
    gap: 16px;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .32s ease .16s, transform .32s ease .16s;
}

.menu-feature {
    padding: 28px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 198, 74, .28), transparent 36%),
        linear-gradient(140deg, var(--deep-blue), var(--aqua));
    color: white;
}

.menu-feature-tag {
    display: inline-flex;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.menu-feature-title {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.12;
}

.menu-feature p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.65;
}

.menu-feature .btn {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .28);
    color: white;
}

.menu-feature .btn:hover {
    background: rgba(255, 255, 255, .26);
    border-color: rgba(255, 255, 255, .46);
}

.menu-info {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .64);
    backdrop-filter: blur(12px);
}

.menu-info strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.menu-info p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.menu-info-link {
    color: var(--aqua-dark);
    font-size: 14px;
    font-weight: 800;
}

.menu-info-link:hover {
    color: var(--deep-blue);
}

.menu-links a:hover,
.shop-link:hover {
    color: var(--aqua-dark);
}

.menu-links a[aria-current="page"],
.shop-link[aria-current="page"] {
    color: var(--aqua-dark);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid var(--aqua);
    border-radius: 999px;
    background: white;
    color: var(--deep-blue);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled .nav-toggle {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .3);
    color: white;
}

.nav-toggle:hover {
    box-shadow: 0 10px 22px rgba(0, 87, 121, .18);
}

.nav-toggle-icon {
    display: grid;
    width: 20px;
    flex-shrink: 0;
}

.nav-toggle-icon span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform .24s ease, opacity .2s ease;
}

.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--aqua);
    border-radius: 999px;
    background: var(--aqua);
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.site-header.is-scrolled .shop-link {
    background: white;
    border-color: white;
    color: var(--deep-blue);
}

.shop-link-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (min-width: 901px) {
    .nav-toggle {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .inline-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    /* Mobile has a fixed slot order, always: menu (left) — logo (center) —
       boutique (right). Do not change this arrangement on mobile. */
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        width: 100%;
        background: transparent;
    }

    .header-inner .nav-toggle {
        justify-self: start;
    }

    .header-inner .brand {
        justify-self: center;
    }

    .header-inner .shop-link {
        justify-self: end;
        margin-left: 0;
    }

    /* On mobile there's no inline nav to fill the bar, so the header always
       needs a grounding background — otherwise the badge/shop/hamburger
       icons float loose over whatever content sits underneath. */
    .site-header {
        padding-top: 14px;
        background: rgba(237, 246, 244, .88);
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 24px rgba(0, 87, 121, .08);
    }

    .site-header.is-scrolled {
        padding-top: 10px;
    }

    .site-header.is-scrolled .header-inner {
        width: 100%;
    }

    .shop-page .site-header {
        background: rgba(6, 19, 25, .85);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    }
}

.site-header.is-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header.is-open .nav-toggle {
    background: var(--aqua);
    color: white;
}

.site-header.is-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-links a {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.04;
    text-align: left;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease, color .2s ease;
}

.menu-links a::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -20px;
    width: 4px;
    border-radius: 999px;
    background: var(--aqua);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .26s cubic-bezier(.16, .8, .3, 1);
}

.menu-links a:hover::before,
.menu-links a[aria-current="page"]::before {
    transform: scaleY(1);
}

.menu-links a span {
    color: var(--aqua-dark);
    font-size: 14px;
    padding-top: 6px;
}

.menu-links a b {
    display: block;
    font-weight: 900;
    font-size: inherit;
}

.menu-links a small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    transition: color .2s ease;
}

.menu-links a:hover small,
.menu-links a[aria-current="page"] small {
    color: var(--aqua-dark);
}

.menu-links a:hover,
.menu-links a[aria-current="page"] {
    color: var(--aqua-dark);
}

.site-header.is-open .menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.site-header.is-open .menu-links a:nth-child(1) {
    transition-delay: .12s;
}

.site-header.is-open .menu-links a:nth-child(2) {
    transition-delay: .18s;
}

.site-header.is-open .menu-links a:nth-child(3) {
    transition-delay: .24s;
}

.site-header.is-open .menu-links a:nth-child(4) {
    transition-delay: .30s;
}

.site-header.is-open .menu-links a:nth-child(5) {
    transition-delay: .36s;
}

.site-header.is-open .menu-links a:nth-child(6) {
    transition-delay: .42s;
}

.site-header.is-open .menu-aside {
    opacity: 1;
    transform: translateX(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--aqua);
    border-radius: var(--radius);
    background: var(--aqua);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.btn:hover {
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, .84);
    color: var(--ink);
    border-color: rgba(255, 255, 255, .84);
}

.btn-outline:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
}

.eyebrow {
    display: inline-flex;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: end;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 19, 25, .84) 0%, rgba(0, 95, 133, .58) 42%, rgba(0, 183, 212, .18) 100%),
        url("/assets/img/atelier-reliefs-services.webp") center / cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0 84px;
    color: white;
}

.hero-content h1 {
    max-width: 820px;
    margin: 18px 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1;
    letter-spacing: 0;
}

.hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, .86);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.section,
.page {
    padding: 76px 0;
}

.intro-band {
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 58px;
    align-items: start;
}

.intro-grid h2,
.section-title h2,
.page-head h1,
.contact-copy h1 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-grid p,
.section-title p,
.page-head p,
.contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.section-title,
.page-head {
    max-width: 780px;
    margin-bottom: 34px;
}

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

.feature-card,
.product-card,
.service-card,
.steps article,
.form,
.info-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.feature-card span {
    font-weight: 900;
    opacity: .78;
}

.feature-card h3,
.product-card h3,
.service-card h3,
.steps h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.18;
}

.feature-card p,
.product-card p,
.service-card p,
.steps p {
    margin: 0;
    color: inherit;
    line-height: 1.6;
}

.tone-terracotta {
    background: var(--coral);
    color: var(--ink);
}

.tone-sage {
    background: var(--aqua);
}

.tone-ink {
    background: var(--deep-blue);
}

.tone-gold {
    background: var(--star);
    color: var(--ink);
}

.process-section {
    background: var(--bg);
}

.steps {
    grid-template-columns: repeat(3, 1fr);
}

.steps article {
    padding: 26px;
}

.steps strong {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
}

.product-card,
.service-card,
.info-panel {
    padding: 24px;
}

.product-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
}

.product-media {
    height: 150px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: var(--radius);
    background: var(--product-tone, var(--aqua));
    display: grid;
    place-items: center;
    color: white;
    font-size: 44px;
    font-weight: 900;
}

.product-card p,
.service-card p,
.steps p {
    color: var(--muted);
}

.product-card strong,
.service-card strong {
    margin: auto 0 18px;
    padding-top: 18px;
    font-size: 18px;
}

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

.service-card {
    min-height: 240px;
}

.service-card .tag {
    display: inline-flex;
    margin-bottom: 36px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 52px;
    align-items: start;
}

.contact-list {
    margin-top: 34px;
    display: grid;
    gap: 12px;
}

.contact-list p {
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.form {
    padding: 30px;
}

label {
    display: block;
    margin: 16px 0 8px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(30, 182, 208, .16);
}

.form .btn {
    margin-top: 20px;
}

.form-status {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.file-drop {
    position: relative;
}

.file-drop input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-drop-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border: 1.5px dashed var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.file-drop-label svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--aqua-dark);
}

.file-drop-label:hover,
.file-drop input[type="file"]:focus-visible + .file-drop-label {
    border-color: var(--aqua);
    background: white;
    color: var(--ink);
}

.file-drop-list {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.file-drop-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    font-size: 13px;
    color: var(--ink);
}

.file-drop-list button {
    border: none;
    background: none;
    padding: 2px 6px;
    color: var(--coral-dark);
    font-weight: 800;
    cursor: pointer;
}

.file-drop-error {
    margin: 8px 0 0;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 700;
}

.content-stack {
    display: grid;
    gap: 18px;
}

.info-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.info-panel p,
.info-panel li {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    background: var(--ink);
    color: white;
}

.footer-main {
    padding: 56px 0 48px;
    display: grid;
    grid-template-columns: 1.2fr .7fr .7fr .85fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-badge {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    padding: 3px;
    border-radius: 999px;
    background: white;
    border: 2px solid var(--aqua);
    overflow: hidden;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.7);
}

.footer-brand-name {
    color: white;
    font-size: 19px;
    font-weight: 900;
}

.footer-about p {
    max-width: 340px;
}

.footer-identity {
    margin-top: 14px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.6;
}

.footer-group h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: white;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .74);
    line-height: 1.6;
}

.site-footer a {
    margin: 0 0 10px;
    width: fit-content;
    transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
    color: white;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 20px;
    color: rgba(255, 255, 255, .60);
    text-align: center;
    font-size: 13px;
}

.footer-dot {
    color: rgba(255, 255, 255, .3);
}

.footer-credit {
    display: inline;
    color: var(--sky);
    font-weight: 800;
}

.footer-credit:hover {
    color: white;
}

/* ─── Share buttons (footer) ─── */
.footer-share-band {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-share-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.footer-share-label {
    color: rgba(255, 255, 255, .50);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .60);
    border: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .22s ease, border-color .2s ease;
}

.share-btn svg {
    width: 15px;
    height: 15px;
    display: block;
}

.share-btn:hover {
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

.share-btn.share-facebook:hover { background: #1877f2; }
.share-btn.share-whatsapp:hover { background: #25d366; }
.share-btn.share-x:hover { background: #000; }
.share-btn.share-linkedin:hover { background: #0a66c2; }

/* Boutons "copier le lien" et partage natif */
.share-btn.share-copy,
.share-btn.share-native {
    cursor: pointer;
    padding: 0;
}

.share-btn.share-copy:hover,
.share-btn.share-native:hover { background: var(--aqua); }

.share-copy-done { display: none; }

.share-btn.share-copy.is-copied {
    background: #25d366;
    color: white;
    border-color: transparent;
}

.share-btn.share-copy.is-copied .share-copy-default { display: none; }
.share-btn.share-copy.is-copied .share-copy-done { display: block; }

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--bg);
}

.admin-sidebar {
    background: var(--ink);
    color: white;
    padding: 24px;
}

.admin-brand {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 900;
}

.admin-sidebar a {
    display: block;
    margin-bottom: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .74);
    transition: background .2s ease, color .2s ease;
}

.admin-sidebar a:hover,
.admin-sidebar a[aria-current="page"] {
    background: rgba(255, 255, 255, .08);
    color: white;
}

.admin-main {
    padding: 40px min(5vw, 48px) 64px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 32px;
}

.admin-topbar h1 {
    margin: 8px 0 4px;
    font-size: clamp(26px, 3vw, 34px);
}

.admin-topbar p {
    margin: 0;
    color: var(--muted);
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.admin-metric-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.admin-metric-label {
    display: inline-flex;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.admin-metric-hint {
    color: var(--muted);
    font-size: 13px;
}

.big {
    margin: 10px 0 4px;
    color: var(--ink);
    font-size: 38px;
    font-weight: 900;
}

.admin-panel {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.admin-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.admin-panel-head h2 {
    margin: 0;
    font-size: 21px;
}

.admin-panel-tag {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--deep-blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.admin-table th,
.admin-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.admin-table td:nth-child(2) {
    white-space: normal;
    min-width: 260px;
    color: var(--muted);
}

.admin-table th {
    color: var(--deep-blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.admin-table tbody tr:hover {
    background: var(--bg);
}

.admin-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.admin-link-tile {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--ink);
}

.admin-link-tile span {
    color: var(--muted);
    font-size: 13px;
}

.admin-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.admin-note code {
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--bg);
    font-size: 13px;
}

.home-page .intro-band {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(237, 246, 244, .98)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 182, 208, .10) 18px 19px);
}

.home-intro {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(237, 246, 244, .98)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 182, 208, .10) 18px 19px);
    border-bottom: 1px solid var(--line);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.home-intro h2,
.home-split h2,
.home-method h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.home-intro-copy {
    display: grid;
    gap: 18px;
}

.home-intro-copy p,
.home-split p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.home-offers {
    background: white;
}

.home-offer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr .9fr;
    gap: 18px;
}

.home-offer-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 87, 121, .10);
}

.home-offer-card.primary {
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 198, 74, .36), transparent 34%),
        linear-gradient(135deg, var(--deep-blue), var(--aqua));
    color: white;
}

.home-offer-card span {
    color: var(--aqua-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-offer-card.primary span {
    color: rgba(255, 255, 255, .78);
}

.home-offer-card h3 {
    margin: auto 0 12px;
    font-size: 30px;
    line-height: 1.08;
}

.home-offer-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-offer-card.primary p {
    color: rgba(255, 255, 255, .78);
}

.home-split {
    background: #edf6f4;
}

.home-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.home-split-panel {
    min-height: 360px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

.home-split-panel.dark {
    background: var(--ink);
    color: white;
}

.home-split-panel.dark p {
    color: rgba(255, 255, 255, .72);
}

.home-split-panel .btn {
    margin-top: 28px;
}

.home-method {
    background: white;
}

.home-method-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.home-method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-method-steps article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 87, 121, .08);
}

.home-method-steps strong {
    display: block;
    margin-bottom: 48px;
    color: var(--coral-dark);
    font-size: 24px;
}

.home-method-steps h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.home-method-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-final {
    background: #f5fbfa;
}

.shop-page {
    background: var(--ink);
    color: white;
}

.shop-page .inline-nav {
    color: white;
}

.shop-page .nav-toggle {
    border-color: rgba(255, 255, 255, .4);
}

.shop-hero {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 76px 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(30, 182, 208, .34), transparent 32%),
        linear-gradient(135deg, var(--ink) 0%, var(--deep-blue) 52%, var(--aqua-dark) 100%);
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}

.shop-copy h1 {
    margin: 16px 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
}

.shop-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.7;
}

.redirect-note {
    margin-top: 20px;
    font-weight: 800;
}

.sumup-panel {
    min-height: 470px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(20px);
}

.panel-topline {
    display: inline-flex;
    margin-bottom: 30px;
    color: var(--sky);
    font-weight: 900;
    text-transform: uppercase;
}

.sumup-window {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.sumup-window div {
    min-height: 128px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(181, 205, 235, .82));
}

.sumup-window div:first-child {
    grid-column: 1 / -1;
    min-height: 170px;
    background: linear-gradient(135deg, var(--star), #fff8d6);
}

.sumup-panel strong {
    display: block;
    font-size: 32px;
}

.sumup-panel p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.shop-categories {
    color: var(--ink);
}

.compact-products .product-card {
    min-height: 280px;
}

.prestations-page {
    background: linear-gradient(180deg, #f4fbfa 0%, #edf6f4 48%, #ffffff 100%);
}

.prestations-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 18% 22%, rgba(145, 221, 255, .62), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(243, 154, 162, .34), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #edf6f4 48%, #d9f2f7 100%);
}

.prestations-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% auto;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(30, 182, 208, .16);
    border-radius: 50%;
}

.prestations-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: center;
}

.prestations-hero-copy h1 {
    max-width: 780px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.prestations-hero-copy p {
    max-width: 660px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.prestations-visual {
    position: relative;
    min-height: 430px;
}

.visual-card {
    position: absolute;
    width: 220px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 80px rgba(0, 87, 121, .16);
    backdrop-filter: blur(18px);
}

.visual-card.main {
    top: 22px;
    left: 32px;
    width: 270px;
    min-height: 190px;
    background: linear-gradient(135deg, var(--deep-blue), var(--aqua));
    color: white;
}

.visual-card:nth-child(2) {
    right: 6px;
    top: 180px;
}

.visual-card:nth-child(3) {
    left: 0;
    bottom: 18px;
    background: #fff8d6;
}

.visual-card span {
    display: block;
    margin-bottom: 42px;
    color: var(--coral-dark);
    font-weight: 900;
}

.visual-card.main span {
    color: rgba(255, 255, 255, .76);
}

.visual-card strong {
    display: block;
    font-size: 30px;
}

.centered-title {
    margin-inline: auto;
    text-align: center;
}

.centered-title p {
    margin-inline: auto;
}

.premium-services {
    grid-template-columns: repeat(4, 1fr);
}

.prestations-page .service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 87, 121, .12);
    border-radius: 22px;
    background: white;
    box-shadow: 0 24px 70px rgba(0, 87, 121, .10);
}

.prestations-page .service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--aqua), var(--coral), var(--star));
}

.prestations-page .service-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.prestations-page .service-card .tag {
    margin-bottom: 34px;
}

.service-card-bottom {
    display: grid;
    gap: 16px;
}

.prestations-flow {
    background: var(--ink);
    color: white;
}

.flow-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.flow-grid h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.flow-steps {
    display: grid;
    gap: 16px;
}

.flow-steps article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.flow-steps span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua);
    color: white;
    font-weight: 900;
}

.flow-steps h3 {
    margin: 0 0 6px;
}

.flow-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.prestations-cta {
    background: white;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 198, 74, .24), transparent 30%),
        linear-gradient(135deg, #ffffff, #edf6f4);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 12px 0;
    font-size: clamp(30px, 4vw, 48px);
}

.cta-panel p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-page {
    background: #f5fbfa;
}

.contact-hero {
    padding: 90px 0 72px;
    background:
        radial-gradient(circle at 18% 18%, rgba(30, 182, 208, .30), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(243, 154, 162, .30), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #edf6f4 54%, #d9f2f7 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: end;
}

.contact-copy h1 {
    max-width: 820px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.contact-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.contact-info-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 28px 80px rgba(0, 87, 121, .14);
    backdrop-filter: blur(16px);
}

.contact-info-panel h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.contact-info-panel p {
    margin: 10px 0;
    color: var(--muted);
    line-height: 1.55;
}

.contact-main {
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-sidebar {
    display: grid;
    gap: 16px;
}

.contact-sidebar article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 87, 121, .08);
}

.contact-sidebar span {
    display: inline-flex;
    margin-bottom: 38px;
    color: var(--aqua-dark);
    font-weight: 900;
}

.contact-sidebar h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.contact-sidebar p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.contact-page .form {
    border: 1px solid rgba(0, 87, 121, .12);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 87, 121, .14);
}

/* ── Panneau de contact (sans formulaire) ── */
.contact-reach {
    padding: 32px;
    border: 1px solid rgba(0, 87, 121, .12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(0, 87, 121, .14);
}

.contact-reach .form-head p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.contact-reach-options {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
}

.contact-reach-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--soft);
    color: var(--ink);
    transition: transform .28s cubic-bezier(.16, .8, .3, 1), box-shadow .28s ease, border-color .28s ease;
}

.contact-reach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 87, 121, .18);
    border-color: var(--aqua);
}

.contact-reach-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    color: #ffffff;
}

.contact-reach-icon svg {
    width: 28px;
    height: 28px;
}

.contact-reach-mail .contact-reach-icon {
    background: linear-gradient(140deg, var(--deep-blue), var(--aqua));
}

.contact-reach-wa .contact-reach-icon {
    background: #25d366;
}

.contact-reach-body {
    display: grid;
    gap: 3px;
}

.contact-reach-body strong {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--deep-blue);
}

.contact-reach-value {
    font-size: 19px;
    font-weight: 800;
    word-break: break-word;
}

.contact-reach-note {
    font-size: 14px;
    color: var(--muted);
}

.contact-reach-hint {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-reach-hint a {
    color: var(--aqua-dark);
    font-weight: 800;
}

.form-head {
    margin-bottom: 12px;
}

.form-head h2 {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 46px);
}

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

.contact-checklist {
    background: #edf6f4;
}

.checklist-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

.checklist-panel h2 {
    margin: 12px 0 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.checklist-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.professionnels-page {
    background: #f5fbfa;
}

.pro-hero {
    padding: 92px 0 82px;
    background:
        radial-gradient(circle at 12% 18%, rgba(30, 182, 208, .30), transparent 28%),
        radial-gradient(circle at 86% 24%, rgba(245, 198, 74, .34), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #eef8f7 50%, #d9f2f7 100%);
}

.pro-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: center;
}

.pro-hero h1 {
    max-width: 820px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.pro-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.pro-hero-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .54)),
        radial-gradient(circle at 100% 0%, rgba(243, 154, 162, .30), transparent 38%);
    box-shadow: 0 30px 80px rgba(0, 87, 121, .16);
    backdrop-filter: blur(16px);
}

.pro-hero-panel span {
    display: inline-flex;
    margin-bottom: 70px;
    color: var(--aqua-dark);
    font-weight: 900;
    text-transform: uppercase;
}

.pro-hero-panel strong {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.05;
}

.pro-hero-panel p {
    margin: 0;
    font-size: 16px;
}

.pro-usecases {
    background: white;
}

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

.pro-card {
    min-height: 300px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 87, 121, .10);
}

.pro-card:nth-child(2) {
    background: #e8faff;
}

.pro-card:nth-child(3) {
    background: #fff8d6;
}

.pro-card:nth-child(4) {
    background: #fff0f2;
}

.pro-card span {
    display: inline-flex;
    margin-bottom: 54px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.pro-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.16;
}

.pro-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.pro-process {
    background: var(--ink);
    color: white;
}

.pro-process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: start;
}

.pro-process h2 {
    margin: 14px 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.pro-process p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.pro-process-list {
    display: grid;
    gap: 16px;
}

.pro-process-list article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.pro-process-list strong {
    color: var(--sky);
    font-size: 22px;
}

.pro-process-list h3 {
    margin: 0 0 8px;
}

.pro-process-list p {
    margin: 0;
}

.pro-benefits {
    background: #edf6f4;
}

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

.benefits-grid article {
    padding: 28px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.benefits-grid h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.benefits-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.pro-cta {
    background: white;
}

.faq-page {
    background: #fff8d6;
}

.faq-page .content-stack {
    max-width: 920px;
    margin: auto;
}

.faq-page .page-head {
    margin-inline: auto;
    text-align: center;
}

.faq-page .info-panel {
    box-shadow: none;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
}

.faq-page .info-panel h2 {
    position: relative;
    padding-right: 42px;
}

.faq-page .info-panel h2::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--aqua-dark);
}

.legal-page {
    background: var(--soft);
}

.legal-page .page-head,
.legal-page .content-stack {
    max-width: 850px;
    margin-inline: auto;
}

.legal-page .info-panel {
    box-shadow: none;
    border-color: var(--line);
    background: white;
}

@media (max-width: 980px) {
    .hero {
        min-height: 680px;
    }

    .intro-grid,
    .home-intro-grid,
    .home-method-grid,
    .contact-grid,
    .contact-hero-grid,
    .contact-layout,
    .checklist-panel,
    .shop-hero-grid,
    .prestations-hero-grid,
    .flow-grid,
    .pro-hero-grid,
    .pro-process-grid,
    .footer-main,
    .admin-layout,
    .admin-metrics,
    .admin-links-grid,
    .menu-inner {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .product-grid,
    .service-grid,
    .premium-services,
    .home-offer-grid,
    .home-split-grid,
    .home-method-steps,
    .form-grid,
    .pro-card-grid,
    .benefits-grid,
    .steps,
    .professionnels-page .content-stack {
        grid-template-columns: 1fr 1fr;
    }

    .prestations-visual {
        min-height: 360px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
        padding: 6px;
    }

    .brand-badge,
    .site-header.is-scrolled .brand-badge {
        width: 48px;
        height: 48px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .shop-link {
        min-height: 40px;
        width: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 999px;
    }

    .shop-link span {
        display: none;
    }

    .shop-link-icon {
        width: 20px;
        height: 20px;
    }

    .menu-aside {
        margin-top: 32px;
        opacity: 1;
        transform: none;
    }

    .main-nav {
        padding: 92px 18px 40px;
    }

    .menu-kicker,
    .menu-signature {
        text-align: left;
    }

    .menu-links a {
        grid-template-columns: 28px 1fr;
        gap: 10px;
        padding: 14px 0;
        font-size: clamp(22px, 8.4vw, 34px);
        word-break: break-word;
    }

    .menu-links a span {
        font-size: 12px;
        padding-top: 4px;
    }

    .menu-links a small {
        font-size: 13px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-content {
        padding: 72px 0 56px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .feature-grid,
    .product-grid,
    .service-grid,
    .premium-services,
    .home-offer-grid,
    .home-split-grid,
    .home-method-steps,
    .form-grid,
    .pro-card-grid,
    .benefits-grid,
    .steps,
    .professionnels-page .content-stack {
        grid-template-columns: 1fr;
    }

    .section,
    .page {
        padding: 56px 0;
    }

    .shop-copy h1 {
        font-size: 40px;
    }

    .sumup-panel {
        min-height: auto;
    }

    .prestations-hero {
        padding: 64px 0 56px;
    }

    .pro-hero {
        padding: 64px 0 56px;
    }

    .prestations-hero-copy h1,
    .pro-hero h1 {
        font-size: 42px;
    }

    .prestations-visual {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .visual-card,
    .visual-card.main,
    .visual-card:nth-child(2),
    .visual-card:nth-child(3) {
        position: static;
        width: 100%;
        min-height: 120px;
    }

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

    .pro-process-list article {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 24px;
    }

    .footer-share-inner {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 18px 0;
        text-align: center;
    }
}

/* ───────────────────────── Animations ───────────────────────── */

body {
    animation: pageEnter .6s ease both;
}

@keyframes pageEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-media {
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.brand-logo {
    transition: transform .3s cubic-bezier(.16, .8, .3, 1);
}

.brand:hover .brand-logo {
    transform: scale(1.8) rotate(-2deg);
}

.nav-toggle:hover {
    transform: scale(1.06);
    border-color: var(--aqua-dark);
}

.site-header.is-scrolled .nav-toggle:hover {
    border-color: white;
}

.shop-link {
    transition: transform .26s cubic-bezier(.16, .8, .3, 1), background .2s ease, border-color .2s ease, box-shadow .26s ease, color .2s ease;
}

.shop-link:hover {
    transform: translateY(-3px);
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
    color: white;
    box-shadow: 0 14px 26px rgba(0, 87, 121, .28);
}

.site-header.is-scrolled .shop-link:hover {
    background: var(--aqua);
    border-color: var(--aqua);
    color: white;
}

.btn {
    transition: background .2s ease, border-color .2s ease, transform .24s cubic-bezier(.16, .8, .3, 1), box-shadow .24s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 113, 141, .3);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 113, 141, .26);
}

.btn-outline:hover {
    box-shadow: 0 16px 34px rgba(6, 19, 25, .16);
}

/* Card / panel / tile hover-lift — matches the site's *-card, *-panel, *-tile
   naming convention so it applies uniformly without touching every page. */
[class*="-card"],
[class*="-panel"],
[class*="-tile"],
.faq-item {
    transition: transform .34s cubic-bezier(.16, .8, .3, 1), box-shadow .34s ease, border-color .34s ease;
}

[class*="-card"]:hover,
[class*="-panel"]:hover,
[class*="-tile"]:hover,
.faq-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 60px rgba(0, 87, 121, .22);
    border-color: var(--aqua);
}

.product-media {
    transition: transform .34s cubic-bezier(.16, .8, .3, 1);
}

.product-card:hover .product-media {
    transform: scale(1.05) rotate(-1deg);
}

/* Scroll reveal — elements are tagged with [data-reveal] by assets/js/animations.js,
   then flipped to .is-visible once they cross the viewport threshold. */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

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

/* ───────────────────────── Bouton flottant WhatsApp ───────────────────────── */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: 60px;
    padding: 0;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 87, 121, .28), 0 4px 10px rgba(0, 0, 0, .18);
    overflow: hidden;
    transition: padding .3s cubic-bezier(.16, .8, .3, 1), background .2s ease, box-shadow .3s ease, transform .2s ease, opacity .25s ease;
}

.wa-float-icon {
    width: 34px;
    height: 34px;
    margin: 0 13px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.wa-float-label {
    max-width: 0;
    white-space: nowrap;
    font-weight: 800;
    font-size: 15px;
    opacity: 0;
    overflow: hidden;
    transition: max-width .34s cubic-bezier(.16, .8, .3, 1), opacity .26s ease, margin .34s ease;
    position: relative;
    z-index: 1;
}

.wa-float:hover,
.wa-float:focus-visible {
    background: #1ebe5b;
    box-shadow: 0 16px 38px rgba(0, 87, 121, .34), 0 6px 14px rgba(0, 0, 0, .22);
    outline: none;
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
    max-width: 220px;
    opacity: 1;
    margin-right: 22px;
}

.wa-float:hover .wa-float-icon,
.wa-float:focus-visible .wa-float-icon {
    margin-right: 8px;
}

/* Anneau pulsant pour attirer l'œil */
.wa-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #25d366;
    z-index: 0;
    animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }
    70%,
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Masqué quand le menu plein écran est ouvert */
body.menu-open .wa-float {
    opacity: 0;
    pointer-events: none;
}

/* Quand une bannière (cookies ou installation) est ouverte, on remonte le bouton WhatsApp */
body.cookie-open .wa-float,
body.install-open .wa-float {
    bottom: 116px;
}

/* ───────────────────────── Invitation à installer (PWA) ───────────────────────── */
.install-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 58;
    display: flex;
    justify-content: center;
    transform: translateY(160%);
    transition: transform .42s cubic-bezier(.16, .8, .3, 1);
    pointer-events: none;
}

.install-banner.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.install-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: min(540px, 100%);
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 87, 121, .22);
}

.install-banner-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
}

.install-banner-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.install-banner-body strong {
    font-size: 16px;
    color: var(--ink);
}

.install-banner-body span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.install-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.install-btn-go {
    min-height: 42px;
    white-space: nowrap;
}

.install-banner-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted);
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.install-banner-close:hover {
    background: var(--bg);
    color: var(--ink);
}

@media (max-width: 640px) {
    .install-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .install-banner-body span {
        font-size: 12px;
    }

    body.install-open .wa-float {
        bottom: 140px;
    }
}

/* ───────────────────────── Bannière cookies ───────────────────────── */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: flex;
    justify-content: center;
    transform: translateY(140%);
    transition: transform .42s cubic-bezier(.16, .8, .3, 1);
    pointer-events: none;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 22px;
    width: min(920px, 100%);
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 87, 121, .22);
}

.cookie-banner-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

.cookie-banner-text a {
    color: var(--aqua-dark);
    font-weight: 800;
    white-space: nowrap;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    min-height: 42px;
}

@media (max-width: 720px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
    }

    .cookie-banner-actions {
        justify-content: stretch;
    }

    .cookie-banner-actions .btn {
        flex: 1;
    }

    body.cookie-open .wa-float {
        bottom: 190px;
    }
}

@media (max-width: 640px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        height: 56px;
    }

    .wa-float-icon {
        width: 30px;
        height: 30px;
        margin: 0 13px;
    }

    /* Sur mobile : pas d'expansion du label, bouton rond simple */
    .wa-float:hover .wa-float-label,
    .wa-float:focus-visible .wa-float-label {
        max-width: 0;
        opacity: 0;
        margin-right: 0;
    }

    .wa-float:hover .wa-float-icon,
    .wa-float:focus-visible .wa-float-icon {
        margin-right: 13px;
    }
}

/* ───────────────────────── Popup newsletter ───────────────────────── */
.nl-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 19, 25, 0);
    opacity: 0;
    pointer-events: none;
    transition: background .35s ease, opacity .35s ease;
}

.nl-overlay.is-visible {
    background: rgba(6, 19, 25, .6);
    opacity: 1;
    pointer-events: auto;
}

.nl-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--paper);
    border-radius: 18px;
    padding: 34px 28px 28px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 87, 121, .28);
    transform: translateY(24px) scale(.96);
    transition: transform .4s cubic-bezier(.16, .8, .3, 1);
}

.nl-overlay.is-visible .nl-box {
    transform: translateY(0) scale(1);
}

.nl-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: var(--bg);
    color: var(--muted);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-close:hover {
    background: var(--line);
    color: var(--ink);
}

.nl-title {
    margin: 0 0 8px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink);
}

.nl-text {
    margin: 0 0 20px;
    font-size: .92rem;
    line-height: 1.6;
    color: var(--muted);
}

.nl-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.nl-row input {
    flex: 1;
    min-width: 0;
}

.nl-row .btn {
    flex-shrink: 0;
}

.nl-error {
    display: none;
    margin: 0 0 6px;
    font-size: .78rem;
    color: var(--coral-dark);
    text-align: left;
}

.nl-error.is-visible {
    display: block;
}

.nl-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    font-size: .76rem;
    line-height: 1.5;
    color: var(--muted);
    cursor: pointer;
}

.nl-consent input {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.nl-consent a {
    color: var(--aqua-dark);
    font-weight: 700;
}

.nl-success {
    display: none;
    margin: 4px 0 0;
    font-size: .98rem;
    font-weight: 800;
    color: var(--ink);
}

.nl-success.is-visible {
    display: block;
}

@media (max-width: 480px) {
    .nl-row {
        flex-direction: column;
    }

    .nl-row .btn {
        width: 100%;
    }
}

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

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

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .wa-float-pulse {
        display: none;
    }
}
