:root {
  --mpm-font: 'Titillium Web', 'Segoe UI', Arial, Helvetica, sans-serif;
}

html, body, input, select, textarea, button {
  font-family: var(--mpm-font) !important;
}

:root {
    --color-ink: #18242f;
    --color-muted: #62707e;
    --color-line: #dbe3e9;
    --color-soft: #f4f7f8;
    --color-white: #ffffff;
    --color-emerald: #057a5b;
    --color-emerald-dark: #034f43;
    --color-saffron: #f59e0b;
    --color-saffron-dark: #c66f02;
    --shadow-soft: 0 18px 45px rgba(24, 36, 47, .09);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: 'Titillium Web', 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: #0f1b24;
    color: #d6e2e8;
    font-size: 13px;
}

.topbar__inner {
    min-height: 34px;
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar__right {
    margin-left: auto;
}

.topbar a {
    color: #ffffff;
    font-weight:600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(12px);
}

.header-main {
    min-height: 82px;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    gap: 24px;
    align-items: center;
}

.brand img {
    width: 218px;
    height: auto;
}

.searchbar {
    display: flex;
    height: 48px;
    border: 1px solid #b8c6ce;
    border-radius: 6px;
    background: var(--color-white);
    overflow: hidden;
}

.searchbar input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 16px;
    color: var(--color-ink);
    outline: 0;
}

.searchbar button {
    width: 62px;
    border: 0;
    color: #ffffff;
    background: var(--color-emerald);
    font-weight: 800;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-link,
.menu-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-ink);
    font-weight:600;
    cursor: pointer;
}

.icon-link--cart span {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background: var(--color-saffron);
    color: #ffffff;
    font-size: 12px;
}

.menu-toggle {
    display: none;
}

.main-nav {
    border-top: 1px solid var(--color-line);
}

.main-nav__inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    color: #334453;
    font-weight:600;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--color-emerald);
    border-bottom-color: var(--color-emerald);
}

.runtime-note {
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #f3c663;
    border-radius: 6px;
    background: #fff7df;
    color: #7a5200;
    font-size: 14px;
}

.hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image:
        linear-gradient(90deg, rgba(5, 31, 38, .92) 0%, rgba(5, 31, 38, .78) 34%, rgba(5, 31, 38, .18) 72%),
        url("../images/hero-marketplace.png");
    background-position: center;
    background-size: cover;
}

.hero__content {
    width: min(660px, 100%);
    padding: 72px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: #057a5b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: 46px;
    line-height: 1.06;
    letter-spacing: 0;
}

.hero p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #e4f0ef;
    font-size: 19px;
}

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

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.btn--primary {
    background: var(--color-saffron);
    color: #ffffff;
}

.btn--primary:hover {
    background: var(--color-saffron-dark);
}

.btn--secondary {
    background: #ffffff;
    color: var(--color-emerald-dark);
}

.btn--ghost {
    border-color: var(--color-line);
    background: var(--color-white);
}

.trust-strip {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.trust-item {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 14px;
    border-right: 1px solid var(--color-line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    color: var(--color-emerald-dark);
    font-size: 20px;
}

.trust-item span {
    color: var(--color-muted);
    font-size: 13px;
}

.section {
    padding: 10px 0;
}

.section--soft {
	
    background:
        linear-gradient(135deg, rgba(5, 122, 91, .04) 25%, transparent 25%) 0 0 / 24px 24px,
        var(--color-soft);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
}

.section-head p {
    max-width: 580px;
    margin: 8px 0 0;
    color: var(--color-muted);
}

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

.product-card,
.category-card,
.content-card,
.form-panel {
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-white);
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    overflow: hidden;
}

.product-card__image {
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #f8fafb;
    border-bottom: 1px solid var(--color-line);
}

.product-card__image img {
    max-height: 148px;
    object-fit: contain;
}

.product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.product-card h3,
.category-card h3,
.content-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.product-card p,
.content-card p,
.category-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    font-weight: 800;
}

.product-card__meta span {
    color: var(--color-emerald);
}

.product-card__meta a {
    color: var(--color-saffron-dark);
}

.category-card {
    min-height: 220px;
    padding: 16px;
}

.category-card__media {
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #f8fafb;
}

.category-card__media img {
    max-height: 108px;
    object-fit: contain;
}

.split-band {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
}

.split-band__visual {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #edf6f3;
}

.partner-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.partner-logo {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-muted);
    font-weight: 800;
}

.page-hero {
    padding: 54px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(5, 31, 38, .96), rgba(5, 122, 91, .82)),
        url("../images/hero-marketplace.png") center / cover;
}

.page-hero p:not(.eyebrow) {
    max-width: 680px;
    margin: 14px 0 0;
    color: #dcefee;
    font-size: 18px;
}

.layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
}

.side-panel {
    border: 1px solid var(--color-line);
    border-radius: 6px;
    padding: 18px;
    background: var(--color-white);
}

.side-panel h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.side-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-panel li + li {
    margin-top: 9px;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 470px) 1fr;
    gap: 34px;
}

.product-detail__media,
.product-detail__summary {
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-white);
}

.product-detail__media {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.product-detail__summary {
    padding: 28px;
}

.product-detail h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
}

.price-box {
    margin: 22px 0;
    padding: 18px;
    border: 1px solid #b8d7cf;
    border-radius: 6px;
    background: #f0faf7;
    color: var(--color-emerald-dark);
    font-size: 24px;
    font-weight: 800;
}

.rich-content {
    color: #2c3c49;
}

.rich-content h2 {
    margin-top: 32px;
}

.rich-content img {
    height: auto;
}

.form-panel {
    max-width: 760px;
    padding: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

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

.form-field label {
    color: #344857;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #b8c6ce;
    border-radius: 6px;
    padding: 12px 13px;
    outline: 0;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.empty-state {
    border: 1px dashed #b8c6ce;
    border-radius: 6px;
    padding: 28px;
    color: var(--color-muted);
    background: #fbfcfd;
}

.cta-band {
    background: var(--color-emerald);
    color: #ffffff;
}

.cta-band__inner {
    min-height: 108px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.cta-band strong {
    display: block;
    font-size: 24px;
}

.cta-band span {
    color: #d6fff0;
}

.site-footer {
    color: #d6e2e8;
    background: #101b23;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 28px;
    padding: 46px 0;
}

.footer-logo {
    width: 210px;
    margin-bottom: 14px;
}

.site-footer h2 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 17px;
}

.site-footer p {
    margin: 0;
    color: #b5c5cf;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a {
    color: #d6e2e8;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-pills span,
.payment-icons span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    color: #ffffff;
    background: rgba(255, 255, 255, .06);
    font-size: 12px;
    font-weight: 800;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

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

.footer-bottom .site-shell {
    min-height: 52px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    color: #9fb0bc;
    font-size: 14px;
}

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: 1fr auto;
    }

    .searchbar {
        grid-column: 1 / -1;
        order: 3;
    }

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

    .main-nav {
        display: none;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav__inner {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0;
    }

    .main-nav a {
        height: 42px;
        border-bottom: 0;
    }

    .trust-strip__grid,
    .product-grid,
    .category-grid,
    .article-grid,
    .partner-row,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-grid,
    .product-detail,
    .split-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .topbar__inner {
        flex-wrap: wrap;
        gap: 8px 14px;
        padding: 8px 0;
    }

    .topbar__right {
        margin-left: 0;
    }

    .header-main {
        gap: 14px;
		gap: 14px;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .brand img {
        width: 185px;
    }

    .header-actions .icon-link {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

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

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip__grid,
    .product-grid,
    .category-grid,
    .article-grid,
    .partner-row,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--color-line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section-head,
    .cta-band__inner,
    .footer-bottom .site-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}


.product-variants{margin:22px 0;display:grid;gap:18px}.variant-group{display:grid;gap:10px}.variant-label{font-weight:600;color:#111827}.variant-label strong{font-weight:600;color:#4b5563}.variant-color-list,.variant-size-list{display:flex;gap:10px;flex-wrap:wrap}.variant-color-btn{width:42px;height:42px;border-radius:999px;border:1px solid #d1d5db;background:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer}.variant-color-btn span{width:26px;height:26px;border-radius:999px;border:1px solid rgba(0,0,0,.1)}.variant-color-btn.is-active{border-color:#111827;box-shadow:0 0 0 3px #fff,0 0 0 5px #111827}.variant-size-btn{border:1px solid #d1d5db;border-radius:999px;background:#fff;color:#111827;min-height:40px;padding:0 16px;font-weight:600;cursor:pointer}.variant-size-btn.is-active{border-color:#111827;background:#111827;color:#fff}.variant-size-btn:disabled{opacity:.35;cursor:not-allowed}.variant-ref{font-size:13px;color:#667085}.product-detail h1 span{display:block;font-size:.72em;color:#475467;margin-top:4px}

.product-gallery{display:flex;flex-direction:column;gap:14px;align-items:stretch;justify-content:flex-start}.product-gallery__main{min-height:370px;border:0;background:#fff;display:flex;align-items:center;justify-content:center;padding:0;cursor:zoom-in}.product-gallery__main img{max-width:100%;max-height:430px;object-fit:contain;display:block}.product-gallery__thumbs{display:grid;grid-template-columns:repeat(auto-fill,minmax(68px,1fr));gap:10px}.product-gallery__thumb{height:68px;border:1px solid var(--color-line);border-radius:6px;background:#fff;padding:4px;cursor:pointer}.product-gallery__thumb img{width:100%;height:100%;object-fit:contain;display:block}.product-gallery__thumb.is-active{border-color:var(--color-emerald);box-shadow:0 0 0 2px rgba(0,128,96,.16)}.product-zoom-modal{position:fixed;inset:0;z-index:9999;background:rgba(15,23,42,.84);display:none;align-items:center;justify-content:center;padding:28px}.product-zoom-modal.is-open{display:flex}.product-zoom-modal img{max-width:min(1100px,94vw);max-height:90vh;object-fit:contain;background:#fff;border-radius:6px}.product-zoom-modal button{position:absolute;top:18px;right:18px;width:42px;height:42px;border:0;border-radius:999px;background:#fff;color:#111827;font-size:26px;cursor:pointer}

.product-key-features{margin-bottom:28px;padding:22px;border:1px solid #d7e6df;border-radius:8px;background:#f7fcfa}.product-key-features h2{margin-top:0;color:var(--color-emerald-dark)}.product-key-features__content ul{margin:0;padding-left:22px}.product-key-features__content li{margin:8px 0;font-weight:600;color:#1f2937}.product-key-features__content p{margin:8px 0}

.breadcrumb-band{background:linear-gradient(135deg,#f8fbfb 0%,#f4faf8 100%);border-bottom:1px solid var(--color-line);min-height:72px;display:flex;align-items:center}.breadcrumb{display:flex;align-items:center;gap:9px;min-height:72px;font-size:14px;color:#667085;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.breadcrumb a{color:#0f766e;font-weight:500;text-decoration:none}.breadcrumb a:hover{text-decoration:underline}.breadcrumb span{color:#98a2b3}.breadcrumb__current{color:#344054;overflow:hidden;text-overflow:ellipsis}@media(max-width:760px){.breadcrumb-band{min-height:56px}.breadcrumb{min-height:56px;font-size:12px}.breadcrumb__current{max-width:44vw}}
.variant-attributes{display:grid;gap:8px;margin-top:12px}.variant-attributes div{display:flex;justify-content:space-between;gap:16px;padding:8px 10px;border:1px solid var(--border);border-radius:8px;background:#f8fafc}.variant-attributes strong{color:var(--ink)}.variant-attributes span{color:var(--muted);text-align:right}
.product-tools{margin:26px 0 0;border:1px solid #cfe4df;border-radius:10px;background:linear-gradient(135deg,#f3fbf8 0%,#ffffff 100%);padding:18px;display:grid;gap:16px}.product-tools__code{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 16px;border:1px solid #d7ebe5;border-radius:8px;background:#fff}.product-tools__code span{font-weight:500;color:#64748b;text-transform:uppercase;font-size:12px}.product-tools__code strong{font-size:24px;color:#0f766e;letter-spacing:.03em}.product-tools__actions{display:grid;grid-template-columns:repeat(4,minmax(120px,1fr));gap:10px}.tool-btn{min-height:44px;border:1px solid #cfd8e3;border-radius:8px;background:#fff;color:#0f172a;font-weight:600;display:inline-flex;align-items:center;justify-content:center;padding:0 14px;cursor:pointer;text-decoration:none;font-family:inherit}.tool-btn:hover{border-color:#0f766e;color:#0f766e}.tool-btn--primary{border-color:#0f766e;background:#0f766e;color:#fff}.tool-btn--primary:hover{background:#0b665f;color:#fff}.product-tools__hint{margin:0;color:#64748b;font-size:14px}@media(max-width:760px){.product-tools__actions{grid-template-columns:1fr}.product-tools__code{align-items:flex-start;flex-direction:column}.product-tools__code strong{font-size:22px}}@media print{.site-header,.breadcrumb-band,.site-footer,.product-tools__actions,.hero-actions{display:none!important}.product-tools{border:1px solid #ddd;background:#fff}.product-detail{grid-template-columns:1fr 1fr!important}.section{padding:18px 0}.product-gallery__thumbs{display:none!important}body{background:#fff!important}}
.product-tools__actions{display:flex;flex-wrap:wrap;gap:10px}.tool-icon{width:46px;height:46px;border:1px solid #cfd8e3;border-radius:10px;background:#fff;color:#0f172a;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;text-decoration:none;transition:border-color .16s ease,color .16s ease,background .16s ease,transform .16s ease}.tool-icon:hover{border-color:#0f766e;color:#0f766e;transform:translateY(-1px)}.tool-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.tool-icon--primary{border-color:#0f766e;background:#0f766e;color:#fff}.tool-icon--primary:hover{background:#0b665f;color:#fff}.product-tools.is-copied:after{content:'Lien copie';display:inline-flex;align-items:center;width:max-content;padding:7px 10px;border-radius:999px;background:#ecfdf5;color:#047857;font-weight:600;font-size:12px}
.product-variant-select{margin:20px 0 0;padding:14px;border:1px solid #d7ebe5;border-radius:10px;background:#fbfefd;display:grid;gap:10px}.product-variant-select label{font-weight:600;color:#0f172a;font-size:13px}.product-variant-select select{width:100%;min-height:44px;border:1px solid #cfd8e3;border-radius:8px;background:#fff;padding:0 12px;color:#0f172a;font-weight:500;font-family:inherit}.product-variant-select .variant-ref{font-size:13px;color:#64748b}.product-variant-select .variant-attributes{margin-top:0}
.product-content-section{background:#f8fbfb}.product-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:24px;align-items:start}.product-main-content{display:grid;gap:18px}.product-section-tabs{position:sticky;top:0;z-index:5;display:flex;gap:8px;overflow:auto;padding:10px;border:1px solid var(--color-line);border-radius:10px;background:rgba(255,255,255,.96);box-shadow:0 10px 24px rgba(15,23,42,.05)}.product-section-tabs a{white-space:nowrap;text-decoration:none;color:#344054;font-weight:600;padding:9px 12px;border-radius:8px}.product-section-tabs a:hover{background:#ecfdf5;color:#0f766e}.product-info-block{border:1px solid var(--color-line);border-radius:10px;background:#fff;padding:22px}.product-info-block__head{margin-bottom:16px}.product-info-block__head span{display:block;color:#0f766e;font-size:12px;font-weight:600;text-transform:uppercase}.product-info-block__head h2{margin:3px 0 0;color:#0f172a;font-size:24px}.product-info-block__head--row{display:flex;align-items:center;justify-content:space-between;gap:16px}.product-info-block__head--row a{font-weight:600;color:#0f766e;text-decoration:none}.product-lead{font-size:18px;color:#475467}.product-spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-bottom:18px}.product-spec-grid div{display:flex;justify-content:space-between;gap:14px;padding:12px;border:1px solid #e5edf2;border-radius:8px;background:#f8fafc}.product-spec-grid strong{color:#344054}.product-spec-grid span{text-align:right;color:#0f172a;font-weight:500}.related-products-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.document-list{display:grid;gap:10px}.document-list a,.document-list button{min-height:42px;border:1px solid #cfd8e3;border-radius:8px;background:#fff;color:#0f172a;font-weight:600;text-decoration:none;display:flex;align-items:center;padding:0 12px;font-family:inherit;cursor:pointer}.document-list a:hover,.document-list button:hover{border-color:#0f766e;color:#0f766e}.faq-list{display:grid;gap:10px}.faq-list details{border:1px solid #e5edf2;border-radius:8px;background:#fbfefd;padding:0 14px}.faq-list summary{cursor:pointer;padding:14px 0;font-weight:600;color:#0f172a}.faq-list p{margin:0 0 14px;color:#475467}.empty-inline{color:#667085;margin:0}.product-sticky-help{position:sticky;top:18px;border:1px solid #cfe4df;border-radius:10px;background:#fff;padding:20px;display:grid;gap:12px;box-shadow:0 18px 40px rgba(15,23,42,.07)}.product-sticky-help h2{margin:0;color:#0f172a;font-size:22px}.product-sticky-help p{margin:0;color:#667085}.product-sticky-help strong{padding:10px;border-radius:8px;background:#f0faf7;color:#0f766e}@media(max-width:1080px){.product-content-grid{grid-template-columns:1fr}.product-sticky-help{position:static}.related-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:680px){.product-spec-grid,.related-products-grid{grid-template-columns:1fr}.product-info-block__head--row{align-items:flex-start;flex-direction:column}.product-section-tabs{position:static}}
/* Product detail mockup alignment */
.product-content-section--mockup{background:linear-gradient(180deg,#f3f8f8 0,#ffffff 34%);border-top:1px solid #e2ecea}.product-content-section--mockup .site-shell{max-width:1380px}.product-content-grid{grid-template-columns:minmax(0,1fr) 360px;gap:28px}.product-main-content{gap:22px}.product-section-tabs{top:10px;padding:8px;border-radius:12px;background:#fff;border:1px solid #dbe8e5;box-shadow:0 18px 45px rgba(15,23,42,.08)}.product-section-tabs a{display:inline-flex;align-items:center;gap:8px;padding:11px 14px;border-radius:10px;color:#475467}.product-section-tabs a span{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;border-radius:999px;background:#eef6f4;color:#0f766e;font-size:11px;font-weight:600;}.product-section-tabs a.is-active,.product-section-tabs a:hover{background:#0f766e;color:#fff}.product-section-tabs a.is-active span,.product-section-tabs a:hover span{background:rgba(255,255,255,.2);color:#fff}.product-info-block{border-color:#dbe8e5;border-radius:14px;padding:28px;box-shadow:0 16px 38px rgba(15,23,42,.055)}.product-info-block__head{padding-bottom:14px;border-bottom:1px solid #edf3f1}.product-info-block__head--hero,.product-info-block__head--row{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}.product-info-block__head--hero em{font-style:normal;padding:8px 12px;border-radius:999px;background:#ecfdf5;color:#047857;font-weight:600;font-size:12px;white-space:nowrap}.product-info-block__head span{letter-spacing:.04em}.product-info-block__head h2{font-size:28px;letter-spacing:0}.product-lead{padding:16px 18px;border-left:4px solid #0f766e;background:#f7fcfa;border-radius:0 10px 10px 0}.product-spec-grid{grid-template-columns:repeat(2,minmax(220px,1fr));gap:12px}.product-spec-grid div{padding:14px 16px;border-color:#dfeae7;background:linear-gradient(180deg,#ffffff 0,#f8fbfb 100%)}.product-key-features{margin:18px 0 0;border-radius:12px;background:#f7fcfa}.related-products-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.related-products-grid .product-card{border-radius:12px;overflow:hidden;box-shadow:0 12px 28px rgba(15,23,42,.055)}.document-list--tiles{grid-template-columns:repeat(2,minmax(0,1fr))}.document-list--tiles a,.document-list--tiles button{min-height:78px;align-items:flex-start;justify-content:center;flex-direction:column;gap:4px;border-radius:12px;padding:14px 16px;background:linear-gradient(180deg,#fff 0,#f8fbfb 100%)}.document-list--tiles strong{color:#0f172a}.document-list--tiles span{color:#64748b;font-size:13px}.faq-list details{border-radius:12px;background:#fff;box-shadow:0 8px 20px rgba(15,23,42,.035)}.faq-list summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary:after{content:'+';display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:999px;background:#eef6f4;color:#0f766e;font-weight:600;}.faq-list details[open] summary:after{content:'-'}.product-sticky-help{top:18px;border-radius:16px;border-color:#cfe4df;padding:24px;background:linear-gradient(180deg,#ffffff 0,#f3fbf8 100%);box-shadow:0 22px 55px rgba(15,23,42,.1)}.sticky-help-kicker{color:#0f766e;font-size:12px;text-transform:uppercase;font-weight:600;letter-spacing:.06em}.product-sticky-help h2{font-size:26px;line-height:1.08}.sticky-help-code{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px;border:1px solid #d7ebe5;border-radius:12px;background:#fff}.sticky-help-code span{color:#64748b;font-weight:600;text-transform:uppercase;font-size:11px}.sticky-help-code strong{color:#0f766e;font-size:20px}.product-sticky-help ul{margin:0;padding:0;display:grid;gap:9px;list-style:none}.product-sticky-help li{position:relative;padding-left:24px;color:#344054;font-weight:500}.product-sticky-help li:before{content:'';position:absolute;left:0;top:6px;width:12px;height:12px;border-radius:999px;background:#0f766e;box-shadow:inset 0 0 0 3px #d9f5eb}.product-sticky-help .btn{width:100%}@media(max-width:1160px){.product-content-grid{grid-template-columns:1fr}.product-sticky-help{position:static}.related-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:760px){.product-info-block{padding:20px}.product-info-block__head--hero{display:block}.product-info-block__head--hero em{display:inline-flex;margin-top:10px}.document-list--tiles,.product-spec-grid,.related-products-grid{grid-template-columns:1fr}.product-section-tabs{position:static}}
.related-empty-card{display:grid;gap:8px;padding:22px;border:1px dashed #bfd8d1;border-radius:12px;background:#f7fcfa;color:#475467}.related-empty-card strong{color:#0f172a;font-size:18px}.related-empty-card p{margin:0}.related-empty-card a{justify-self:start;margin-top:4px;color:#0f766e;font-weight:600;text-decoration:none}
.product-reference-select{margin:20px 0 0;padding:14px;border:1px solid #d7ebe5;border-radius:10px;background:#fbfefd;display:grid;gap:10px}.product-reference-select label{font-weight:600;color:#0f172a;font-size:13px}.product-reference-select select{width:100%;min-height:44px;border:1px solid #cfd8e3;border-radius:8px;background:#fff;padding:0 12px;color:#0f172a;font-weight:500;font-family:inherit}.product-reference-select .reference-meta{font-size:13px;color:#64748b}.reference-attributes{display:grid;gap:8px;margin-top:0}.reference-attributes div{display:flex;justify-content:space-between;gap:16px;padding:8px 10px;border:1px solid var(--border);border-radius:8px;background:#f8fafc}.reference-attributes strong{color:var(--ink)}.reference-attributes span{color:var(--muted);text-align:right}


.product-reference-table{margin:22px 0 0;border:1px solid #d7e3ea;border-radius:14px;background:#fff;overflow:hidden;box-shadow:0 16px 40px rgba(15,23,42,.06)}
.product-reference-table__top{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;background:linear-gradient(135deg,#f8fbfb,#eef8f5);border-bottom:1px solid #dbe8ee;color:#0f172a}
.product-reference-table__top span{font-weight:600;font-size:15px}.product-reference-table__top strong{font-size:12px;color:#007f67;background:#fff;border:1px solid #cfe6de;border-radius:999px;padding:6px 10px;white-space:nowrap}
.product-reference-table__grid{width:100%;overflow-x:auto}.product-reference-table__row{display:grid;grid-template-columns:78px minmax(190px,1.15fr) minmax(210px,1.35fr) minmax(100px,.7fr) minmax(110px,.7fr) 104px;gap:14px;align-items:center;padding:14px 18px;border-bottom:1px solid #edf2f7;color:#253247;min-width:920px;transition:background .18s ease, box-shadow .18s ease}.product-reference-table__row:last-child{border-bottom:0}.product-reference-table__row--head{padding-top:11px;padding-bottom:11px;background:#fbfdff;color:#64748b;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.04em}.product-reference-table__row:not(.product-reference-table__row--head):hover{background:#fbfffd}.product-reference-table__row.is-selected{background:#f0fbf7;box-shadow:inset 4px 0 0 #00866e}.product-reference-table__image img{width:58px;height:58px;border-radius:10px;object-fit:cover;border:1px solid #d8e4ea;background:#f8fafc}.product-reference-table__title{display:grid;gap:4px}.product-reference-table__title strong{font-size:15px;line-height:1.25;color:#0f172a}.product-reference-table__title small{color:#00866e;font-weight:600;font-size:12px}.product-reference-table__desc{font-size:13px;line-height:1.45;color:#526174}.product-reference-table__code,.product-reference-table__ean{font-size:13px;color:#334155;font-weight:600;}.product-reference-table__action button{width:100%;min-height:38px;border:1px solid #cfdce5;border-radius:9px;background:#fff;color:#0f172a;font-weight:600;font-family:inherit;cursor:pointer}.product-reference-table__row.is-selected .product-reference-table__action button{background:#00866e;border-color:#00866e;color:#fff}.product-reference-table .reference-meta{padding:0 18px 14px;color:#64748b;font-size:13px}.product-reference-table .reference-attributes{padding:0 18px 18px}
@media (max-width:760px){.product-reference-table__top{align-items:flex-start;flex-direction:column}.product-reference-table__row{grid-template-columns:64px 180px 200px 90px 100px 96px;min-width:760px;padding:12px}.product-reference-table__image img{width:50px;height:50px}}


html{scroll-behavior:smooth}.product-reference-jump{display:inline-flex;align-items:center;gap:12px;margin:18px 0 0;padding:12px 14px;border:1px solid #d7e3ea;border-radius:12px;background:#fff;color:#0f172a;text-decoration:none;box-shadow:0 14px 34px rgba(15,23,42,.06);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.product-reference-jump:hover{transform:translateY(-1px);border-color:#00866e;box-shadow:0 18px 38px rgba(0,134,110,.13)}.product-reference-jump__icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#ecf9f5;color:#00866e;flex:0 0 auto}.product-reference-jump__icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}.product-reference-jump span:last-child{display:grid;gap:2px}.product-reference-jump strong{font-size:15px;font-weight:600;}.product-reference-jump small{font-size:13px;color:#64748b}.product-references-block{scroll-margin-top:120px}.product-references-block .product-reference-table{margin-top:0}
@media (max-width:640px){.product-reference-jump{width:100%;align-items:flex-start}.product-reference-jump small{line-height:1.35}}


/* Keep the reference table inside the product content column. */
.product-content-grid{align-items:start}.product-main-content,.product-info-block,.product-reference-table,.product-section-tabs{min-width:0;max-width:100%}.product-main-content{overflow:hidden}.product-references-block{overflow:hidden}.product-reference-table__grid{max-width:100%;overflow-x:auto;overscroll-behavior-x:contain}.product-sticky-help{z-index:1}.product-reference-table{position:relative;z-index:0}.product-reference-table__row{min-width:840px;grid-template-columns:72px minmax(180px,1fr) minmax(190px,1.15fr) minmax(80px,.5fr) minmax(80px,.5fr) 92px}.product-reference-table__action button{min-width:0}.product-section-tabs{overflow-x:auto;overscroll-behavior-x:contain}.product-section-tabs a{flex:0 0 auto}
@media (min-width:1161px){.product-content-grid{grid-template-columns:minmax(0,calc(100% - 408px)) 360px;column-gap:48px}.product-sticky-help{justify-self:stretch}}
@media (max-width:1280px) and (min-width:1161px){.product-content-grid{grid-template-columns:minmax(0,1fr) 330px;column-gap:34px}.product-reference-table__row{min-width:780px;grid-template-columns:64px minmax(170px,1fr) minmax(170px,1fr) 70px 70px 88px}}


/* Compact reference table: image, reference, description and action only. */
.product-reference-table__row{grid-template-columns:72px minmax(220px,1.05fr) minmax(260px,1.25fr) 108px;min-width:700px}.product-reference-table__code,.product-reference-table__ean{display:none!important}
@media (max-width:760px){.product-reference-table__row{grid-template-columns:58px 190px 230px 96px;min-width:600px}}
@media (max-width:1280px) and (min-width:1161px){.product-reference-table__row{grid-template-columns:58px minmax(185px,1fr) minmax(210px,1fr) 92px;min-width:620px}}


/* Modern horizontal slider for related products. */
.related-slider{position:relative;margin-top:4px;padding:4px 46px 10px}.related-slider__viewport{display:flex;gap:18px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;padding:6px 2px 18px;scrollbar-width:thin;scrollbar-color:#0f766e #edf3f1}.related-slider__viewport::-webkit-scrollbar{height:8px}.related-slider__viewport::-webkit-scrollbar-track{background:#edf3f1;border-radius:999px}.related-slider__viewport::-webkit-scrollbar-thumb{background:#0f766e;border-radius:999px}.related-slider__item{flex:0 0 clamp(230px,31%,292px);scroll-snap-align:start}.related-slider__item .product-card{height:100%;border-radius:16px;border:1px solid #dbe8e5;background:#fff;box-shadow:0 16px 35px rgba(15,23,42,.07);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.related-slider__item .product-card:hover{transform:translateY(-3px);border-color:#b9d9d1;box-shadow:0 22px 42px rgba(15,23,42,.1)}.related-slider__item .product-card__image{background:linear-gradient(180deg,#f8fbfb,#fff)}.related-slider__arrow{position:absolute;top:50%;z-index:2;display:grid;place-items:center;width:38px;height:38px;margin-top:-28px;border:1px solid #d7e6df;border-radius:999px;background:#fff;color:#0f766e;box-shadow:0 12px 28px rgba(15,23,42,.12);cursor:pointer;transition:background .16s ease,color .16s ease,opacity .16s ease,transform .16s ease}.related-slider__arrow:hover{background:#0f766e;color:#fff;transform:translateY(-1px)}.related-slider__arrow:disabled{opacity:.35;cursor:not-allowed;transform:none}.related-slider__arrow svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}.related-slider__arrow--prev{left:0}.related-slider__arrow--next{right:0}.related-slider:not(.is-scrollable) .related-slider__arrow{display:none}
@media(max-width:760px){.related-slider{padding:2px 0 8px}.related-slider__item{flex-basis:78vw}.related-slider__arrow{display:none!important}.related-slider__viewport{padding-bottom:14px}}


/* Category browser grid/list controls. */
.categories-toolbar{align-items:center}.view-switch{display:inline-flex;gap:6px;padding:5px;border:1px solid #d7e6df;border-radius:12px;background:#fff;box-shadow:0 12px 28px rgba(15,23,42,.06)}.view-switch button{min-height:38px;border:0;border-radius:9px;background:transparent;color:#344054;font-family:inherit;font-weight:600;display:inline-flex;align-items:center;gap:8px;padding:0 12px;cursor:pointer}.view-switch button.is-active{background:#0f766e;color:#fff;box-shadow:0 8px 18px rgba(15,118,110,.22)}.view-switch svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.category-browser{transition:opacity .16s ease}.category-browser.is-list{display:grid;grid-template-columns:1fr;gap:12px}.category-browser.is-list .category-card{display:grid;grid-template-columns:112px minmax(0,1fr);align-items:center;min-height:116px;border-radius:14px}.category-browser.is-list .category-card__media{height:100%;min-height:116px;border-right:1px solid #e5edf2;border-bottom:0}.category-browser.is-list .category-card__media img{height:96px;object-fit:contain}.category-browser.is-list .category-card>div{padding:18px 20px}.category-browser.is-list .category-card h3{margin:0 0 6px;font-size:20px}.category-browser.is-list .category-card p{margin:0;color:#667085}.category-browser.is-list .category-card h3 a:after{content:'Voir la famille';display:inline-flex;margin-left:12px;padding:5px 9px;border-radius:999px;background:#ecfdf5;color:#0f766e;font-size:12px;vertical-align:middle}
@media(max-width:680px){.categories-toolbar{align-items:flex-start}.view-switch{width:100%}.view-switch button{flex:1;justify-content:center}.category-browser.is-list .category-card{grid-template-columns:86px minmax(0,1fr)}.category-browser.is-list .category-card__media{min-height:98px}.category-browser.is-list .category-card h3{font-size:17px}.category-browser.is-list .category-card h3 a:after{display:none}}


/* Family detail page. */
.family-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#f3fbf8 0,#ffffff 58%,#fff7e8 100%);border-bottom:1px solid #dbe8e5}.family-hero:before{content:'';position:absolute;inset:auto -8% -30% 48%;height:420px;border-radius:999px;background:rgba(15,118,110,.08);filter:blur(8px)}.family-hero__inner{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.8fr);gap:42px;align-items:center;padding:54px 0}.family-hero__content{display:grid;gap:16px}.family-hero h1{margin:0;color:#071326;font-size:clamp(38px,4.6vw,64px);line-height:1.02;letter-spacing:0}.family-hero__lead{margin:0;color:#1f3447;font-size:20px;line-height:1.45;max-width:820px}.family-hero__text{margin:0;color:#5c6b80;font-size:17px;line-height:1.65;max-width:780px}.family-hero__stats{display:flex;flex-wrap:wrap;gap:10px;margin-top:6px}.family-hero__stats span{display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border:1px solid #cfe4df;border-radius:999px;background:#fff;color:#475467;font-weight:600;}.family-hero__stats strong{color:#0f766e;font-size:18px}.family-hero__media{min-height:300px;border:1px solid #d7e6df;border-radius:22px;background:#fff;box-shadow:0 28px 70px rgba(15,23,42,.12);overflow:hidden}.family-hero__media img{width:100%;height:100%;min-height:300px;object-fit:cover;display:block}.family-products-section{background:#fff}.family-products-head{align-items:flex-end}.family-product-grid{grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:18px}.family-product-grid .product-card{border-radius:16px;overflow:hidden;box-shadow:0 16px 35px rgba(15,23,42,.07);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.family-product-grid .product-card:hover{transform:translateY(-3px);box-shadow:0 22px 48px rgba(15,23,42,.11)}.family-product-grid .product-card__image{background:#f8fbfb}.family-product-grid .product-card__image img{object-fit:contain;padding:14px}
@media(max-width:900px){.family-hero__inner{grid-template-columns:1fr;padding:38px 0}.family-hero__media{min-height:230px}.family-hero__media img{min-height:230px}.family-products-head{align-items:flex-start;flex-direction:column}.family-products-head .btn{width:100%}}


/* Force family hero to full-width image below content. */
.categories-page .family-hero__inner{display:block!important;padding:46px 0!important}.categories-page .family-hero__content{max-width:1080px!important;margin:0 0 30px!important}.categories-page .family-hero__media{width:100%!important;max-width:none!important;min-height:0!important;margin:0!important;border-radius:24px!important;overflow:hidden!important}.categories-page .family-hero__media img{display:block!important;width:100%!important;height:auto!important;min-height:0!important;max-height:none!important;object-fit:contain!important;object-position:center!important}.categories-page .family-hero h1{max-width:1120px}.categories-page .family-hero__lead,.categories-page .family-hero__text{max-width:980px}
@media(max-width:900px){.categories-page .family-hero__inner{padding:32px 0!important}.categories-page .family-hero__content{margin-bottom:22px!important}.categories-page .family-hero__media{border-radius:16px!important}}


/* Smart search front. */
.smart-search-section{background:#fff}.smart-search-form{display:grid;grid-template-columns:minmax(0,1fr) 150px;gap:10px;padding:10px;border:1px solid #d7e6df;border-radius:16px;background:#fff;box-shadow:0 20px 50px rgba(15,23,42,.08)}.smart-search-form input{min-height:56px;border:0;background:#f8fbfb;border-radius:12px;padding:0 18px;font:inherit;font-size:18px;color:#0f172a}.smart-search-form input:focus{outline:2px solid rgba(15,118,110,.25);background:#fff}.smart-search-form button{border:0;border-radius:12px;background:#0f766e;color:#fff;font-weight:600;font-family:inherit;cursor:pointer}.search-summary{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.search-summary span{display:inline-flex;align-items:center;gap:6px;padding:8px 11px;border:1px solid #d7e6df;border-radius:999px;background:#fff;color:#475467;font-weight:600;}.search-summary strong{color:#0f766e}.smart-results{display:grid;gap:34px}.smart-result-block{display:grid;gap:16px}.smart-product-grid{grid-template-columns:repeat(auto-fill,minmax(230px,1fr))}.reference-result-list{display:grid;gap:14px}.reference-result-card{display:grid;grid-template-columns:118px minmax(0,1fr);gap:18px;align-items:center;border:1px solid #dbe8e5;border-radius:16px;background:#fff;padding:14px;box-shadow:0 14px 32px rgba(15,23,42,.055)}.reference-result-card__image{display:grid;place-items:center;height:106px;border-radius:12px;background:#f8fbfb;border:1px solid #edf3f1}.reference-result-card__image img{max-width:100%;max-height:92px;object-fit:contain}.reference-result-card span{display:inline-flex;color:#0f766e;text-transform:uppercase;font-size:12px;font-weight:600;letter-spacing:.04em}.reference-result-card h3{margin:3px 0 6px;font-size:21px;line-height:1.2}.reference-result-card h3 a{color:#0f172a;text-decoration:none}.reference-result-card p{margin:0;color:#667085;line-height:1.5}.reference-result-card__meta{display:flex;flex-wrap:wrap;gap:9px;align-items:center;margin-top:10px}.reference-result-card__meta strong{padding:5px 8px;border-radius:999px;background:#eef6f4;color:#0f766e;font-size:12px}.reference-result-card__meta a{margin-left:auto;color:#0f766e;font-weight:600;text-decoration:none}
@media(max-width:680px){.smart-search-form{grid-template-columns:1fr}.smart-search-form button{min-height:48px}.reference-result-card{grid-template-columns:84px minmax(0,1fr);gap:12px}.reference-result-card__image{height:86px}.reference-result-card h3{font-size:17px}.reference-result-card__meta a{margin-left:0}}


/* Guides achat SEO. */
.guide-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}.guide-article-main{border:1px solid #dbe8e5;border-radius:16px;background:#fff;padding:30px;box-shadow:0 16px 38px rgba(15,23,42,.055)}.guide-related-articles{position:sticky;top:18px;display:grid;gap:12px}.guide-related-articles h2{margin:0;color:#0f172a}.guide-related-articles article{border:1px solid #dbe8e5;border-radius:14px;background:#fff;padding:16px;box-shadow:0 12px 28px rgba(15,23,42,.05)}.guide-related-articles span{color:#0f766e;text-transform:uppercase;font-size:11px;font-weight:600;}.guide-related-articles h3{margin:4px 0 8px;font-size:18px;color:#0f172a}.guide-related-articles p{margin:0;color:#667085}
@media(max-width:980px){.guide-layout{grid-template-columns:1fr}.guide-related-articles{position:static}}

/* Devis express product layout. */
.quote-product-page .page-hero{display:none}.quote-product-hero{background:linear-gradient(135deg,#f3fbf8 0,#fff 58%,#fff7e8 100%);border-bottom:1px solid #dbe8e5;padding:28px 0 34px}.quote-product-hero .site-shell{display:grid;gap:12px}.quote-product-hero h1{margin:0;color:#071326;font-size:clamp(34px,4vw,56px);line-height:1.04}.quote-product-hero p{max-width:820px;margin:0;color:#526174;font-size:18px;line-height:1.55}.quote-breadcrumb{min-height:auto;color:#667085}.quote-product-section{background:#fff}.quote-product-layout{display:grid;grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);gap:28px;align-items:start}.quote-product-card{position:sticky;top:18px;border:1px solid #d7e6df;border-radius:18px;background:#fff;overflow:hidden;box-shadow:0 22px 55px rgba(15,23,42,.09)}.quote-product-card__image{display:grid;place-items:center;min-height:330px;background:linear-gradient(180deg,#f8fbfb,#fff);border-bottom:1px solid #e5edf2}.quote-product-card__image img{max-width:100%;max-height:330px;object-fit:contain;display:block;padding:22px}.quote-product-card__content{padding:24px;display:grid;gap:14px}.quote-product-card__family{justify-self:start;color:#0f766e;text-transform:uppercase;font-size:12px;font-weight:600;letter-spacing:.05em}.quote-product-card h2{margin:0;color:#0f172a;font-size:28px;line-height:1.12}.quote-product-card__reference{display:block;padding:10px 12px;border:1px solid #d7ebe5;border-radius:10px;background:#f3fbf8;color:#0f766e;font-weight:600;}.quote-product-card p{margin:0;color:#526174;line-height:1.58}.quote-product-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:4px 0 0}.quote-product-facts div{padding:10px;border:1px solid #e5edf2;border-radius:10px;background:#f8fafc}.quote-product-facts dt{color:#64748b;font-size:11px;text-transform:uppercase;font-weight:600;}.quote-product-facts dd{margin:4px 0 0;color:#0f172a;font-weight:600;}.quote-product-tech{border-top:1px solid #e5edf2;padding-top:16px}.quote-product-tech h3{margin:0 0 10px;color:#0f172a;font-size:18px}.quote-product-tech ul{margin:0;padding-left:20px}.quote-product-tech li{margin:6px 0;color:#344054}.quote-form-panel{border-radius:18px;box-shadow:0 22px 55px rgba(15,23,42,.08)}.quote-form-panel__head{margin-bottom:20px;padding-bottom:18px;border-bottom:1px solid #e5edf2}.quote-form-panel__head span{color:#0f766e;text-transform:uppercase;font-size:12px;font-weight:600;letter-spacing:.05em}.quote-form-panel__head h2{margin:4px 0;color:#0f172a;font-size:30px}.quote-form-panel__head p{margin:0;color:#667085}.quote-form-grid{gap:16px}.quote-submit-row{align-items:center;margin-top:22px}.quote-submit-row span{color:#667085;font-weight:600;}@media(max-width:1020px){.quote-product-layout{grid-template-columns:1fr}.quote-product-card{position:static}.quote-product-card__image{min-height:250px}.quote-product-card__image img{max-height:260px}.quote-product-facts{grid-template-columns:1fr}}@media(max-width:680px){.quote-product-hero{padding:22px 0}.quote-product-card__content,.quote-form-panel{padding:18px}.quote-product-card h2{font-size:24px}.quote-form-panel__head h2{font-size:25px}}

/* Advertiser acquisition front. */
.advertiser-cta-section{background:#fff}.advertiser-cta{display:grid;grid-template-columns:minmax(300px,.9fr) minmax(0,1.1fr);gap:34px;align-items:center;border:1px solid #d7e6df;border-radius:22px;background:linear-gradient(135deg,#f3fbf8 0,#fff 58%,#fff7e8 100%);padding:26px;box-shadow:0 24px 58px rgba(15,23,42,.08)}.advertiser-cta__media{min-height:280px;border-radius:18px;overflow:hidden;background:#0f766e}.advertiser-cta__media img{width:100%;height:100%;min-height:280px;object-fit:cover;display:block}.advertiser-cta__content{display:grid;gap:14px}.advertiser-cta h2{margin:0;color:#071326;font-size:clamp(30px,3vw,46px);line-height:1.05}.advertiser-cta p{margin:0;color:#526174;font-size:18px;line-height:1.55}.advertiser-cta__facts{display:flex;flex-wrap:wrap;gap:9px}.advertiser-cta__facts span{padding:8px 11px;border:1px solid #cfe4df;border-radius:999px;background:#fff;color:#0f766e;font-weight:600;}.advertiser-cta .btn{justify-self:start}.advertiser-hero{background:linear-gradient(135deg,#f3fbf8 0,#ffffff 56%,#fff7e8 100%);border-bottom:1px solid #dbe8e5}.advertiser-hero__inner{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.8fr);gap:42px;align-items:center;padding:58px 0}.advertiser-hero__content{display:grid;gap:16px}.advertiser-hero h1{margin:0;color:#071326;font-size:clamp(40px,5vw,70px);line-height:1}.advertiser-hero p{margin:0;color:#526174;font-size:19px;line-height:1.58;max-width:820px}.advertiser-hero__media{border:1px solid #d7e6df;border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 28px 70px rgba(15,23,42,.12)}.advertiser-hero__media img{width:100%;height:420px;object-fit:cover;display:block}.advertiser-model-grid{display:grid;grid-template-columns:1.15fr repeat(3,1fr);gap:16px}.advertiser-info-card{border:1px solid #dbe8e5;border-radius:16px;background:#fff;padding:22px;box-shadow:0 16px 36px rgba(15,23,42,.055)}.advertiser-info-card span{display:inline-flex;margin-bottom:12px;color:#0f766e;font-weight:600;text-transform:uppercase;font-size:12px}.advertiser-info-card h2,.advertiser-info-card h3{margin:0 0 10px;color:#0f172a}.advertiser-info-card p{margin:0;color:#667085;line-height:1.55}.advertiser-info-card--dark{background:#0f172a;color:#fff}.advertiser-info-card--dark h2,.advertiser-info-card--dark p{color:#fff}.advertiser-benefit-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.advertiser-benefit-grid div{border:1px solid #dbe8e5;border-radius:14px;background:#fff;padding:18px}.advertiser-benefit-grid strong{display:block;color:#0f172a;font-size:18px;margin-bottom:8px}.advertiser-benefit-grid p{margin:0;color:#667085;line-height:1.5}.advertiser-form-layout{display:grid;grid-template-columns:360px minmax(0,1fr);gap:28px;align-items:start}.advertiser-form-aside{position:sticky;top:20px;border:1px solid #d7e6df;border-radius:18px;background:linear-gradient(180deg,#fff,#f3fbf8);padding:24px;box-shadow:0 18px 42px rgba(15,23,42,.07)}.advertiser-form-aside h2{margin:0 0 10px;color:#0f172a;font-size:30px}.advertiser-form-aside p{color:#667085;line-height:1.55}.advertiser-form-aside ul{margin:18px 0 0;padding:0;list-style:none;display:grid;gap:10px}.advertiser-form-aside li{position:relative;padding-left:24px;color:#344054;font-weight:600;}.advertiser-form-aside li:before{content:'';position:absolute;left:0;top:7px;width:11px;height:11px;border-radius:999px;background:#0f766e;box-shadow:inset 0 0 0 3px #d9f5eb}.advertiser-form{border-radius:18px;box-shadow:0 22px 55px rgba(15,23,42,.08)}.advertiser-conditions .section-head{margin-bottom:18px}.advertiser-condition-list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.advertiser-condition-list div{display:grid;gap:8px;padding:18px;border:1px solid #dbe8e5;border-radius:14px;background:#fff}.advertiser-condition-list strong{color:#0f766e;font-size:18px}.advertiser-condition-list span{color:#667085;line-height:1.5}.advertiser-faq-layout{display:grid;grid-template-columns:360px minmax(0,1fr);gap:28px;align-items:start}.advertiser-faq-layout h2{margin:0 0 10px;color:#0f172a;font-size:34px}.advertiser-faq-layout p{color:#667085;line-height:1.55}@media(max-width:1080px){.advertiser-cta,.advertiser-hero__inner,.advertiser-model-grid,.advertiser-form-layout,.advertiser-faq-layout{grid-template-columns:1fr}.advertiser-benefit-grid,.advertiser-condition-list{grid-template-columns:repeat(2,minmax(0,1fr))}.advertiser-form-aside{position:static}.advertiser-hero__media img{height:320px}}@media(max-width:680px){.advertiser-cta{padding:18px;border-radius:16px}.advertiser-benefit-grid,.advertiser-condition-list{grid-template-columns:1fr}.advertiser-hero__inner{padding:36px 0}.advertiser-hero h1{font-size:38px}.advertiser-hero__media img{height:240px}}

/* Modern contact page. */
.contact-modern-hero{background:linear-gradient(135deg,#f3fbf8 0,#fff 58%,#fff7e8 100%);border-bottom:1px solid #dbe8e5}.contact-modern-hero__inner{display:flex;justify-content:space-between;gap:34px;align-items:flex-end;padding:48px 0}.contact-modern-hero h1{margin:0;color:#071326;font-size:clamp(40px,5vw,68px);line-height:1}.contact-modern-hero p{max-width:780px;margin:14px 0 0;color:#526174;font-size:19px;line-height:1.58}.contact-modern-hero__facts{display:flex;flex-wrap:wrap;gap:9px;justify-content:flex-end}.contact-modern-hero__facts span{padding:9px 12px;border:1px solid #cfe4df;border-radius:999px;background:#fff;color:#0f766e;font-weight:600;white-space:nowrap}.contact-modern-section{background:#fff}.contact-modern-layout{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(340px,.86fr);gap:28px;align-items:start}.contact-modern-form{border-radius:18px;box-shadow:0 22px 55px rgba(15,23,42,.08)}.contact-modern-form__head{margin-bottom:20px;padding-bottom:18px;border-bottom:1px solid #e5edf2}.contact-modern-form__head span{color:#0f766e;text-transform:uppercase;font-size:12px;font-weight:600;letter-spacing:.05em}.contact-modern-form__head h2{margin:4px 0;color:#0f172a;font-size:32px}.contact-modern-form__head p{margin:0;color:#667085}.contact-form-grid{gap:16px}.contact-modern-card{border:1px solid #d7e6df;border-radius:18px;background:#fff;overflow:hidden;box-shadow:0 22px 55px rgba(15,23,42,.09);position:sticky;top:18px}.contact-modern-card__image{min-height:300px;background:#0f766e}.contact-modern-card__image img{width:100%;height:320px;object-fit:cover;display:block}.contact-modern-card__content{padding:24px;display:grid;gap:14px}.contact-modern-card h2{margin:0;color:#0f172a;font-size:28px;line-height:1.12}.contact-modern-card p{margin:0;color:#526174;line-height:1.58}.contact-modern-card dl{display:grid;gap:10px;margin:0}.contact-modern-card dl div{padding:12px;border:1px solid #e5edf2;border-radius:10px;background:#f8fafc}.contact-modern-card dt{color:#64748b;font-size:11px;text-transform:uppercase;font-weight:600;}.contact-modern-card dd{margin:4px 0 0;color:#0f172a;font-weight:600;}.contact-modern-card a{color:#0f766e;text-decoration:none}@media(max-width:980px){.contact-modern-hero__inner{align-items:flex-start;flex-direction:column}.contact-modern-hero__facts{justify-content:flex-start}.contact-modern-layout{grid-template-columns:1fr}.contact-modern-card{position:static}.contact-modern-card__image img{height:260px}}@media(max-width:680px){.contact-modern-hero__inner{padding:34px 0}.contact-modern-hero h1{font-size:38px}.contact-modern-form,.contact-modern-card__content{padding:18px}.contact-modern-card__image img{height:220px}}

/* Contact page visual banner. */
.contact-modern-hero{position:relative;overflow:hidden;min-height:430px;background:#0f172a url('/assets/images/hero-marketplace.png') center right/cover no-repeat!important;border-bottom:0!important}.contact-modern-hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,19,38,.92) 0%,rgba(7,19,38,.78) 42%,rgba(15,118,110,.36) 72%,rgba(15,23,42,.12) 100%)}.contact-modern-hero:after{content:'';position:absolute;left:0;right:0;bottom:0;height:90px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff)}.contact-modern-hero__inner{position:relative;z-index:1;min-height:430px;align-items:center!important;padding:70px 0 92px!important}.contact-modern-hero .eyebrow{color:#7dd3c7}.contact-modern-hero h1{max-width:760px;color:#fff!important;text-shadow:0 12px 34px rgba(0,0,0,.26)}.contact-modern-hero p{max-width:700px;color:#dce8e7!important;font-size:21px!important}.contact-modern-hero__facts{align-self:flex-end;max-width:340px;justify-content:flex-start!important}.contact-modern-hero__facts span{border-color:rgba(255,255,255,.28)!important;background:rgba(255,255,255,.14)!important;color:#fff!important;backdrop-filter:blur(8px)}
@media(max-width:980px){.contact-modern-hero{min-height:420px;background-position:center!important}.contact-modern-hero:before{background:linear-gradient(180deg,rgba(7,19,38,.9),rgba(7,19,38,.72))}.contact-modern-hero__inner{min-height:420px;padding:54px 0 82px!important}.contact-modern-hero__facts{align-self:flex-start;max-width:none}}
@media(max-width:680px){.contact-modern-hero,.contact-modern-hero__inner{min-height:390px}.contact-modern-hero__inner{padding:42px 0 72px!important}.contact-modern-hero h1{font-size:38px!important}.contact-modern-hero p{font-size:17px!important}}

/* Devenir annonceur visual banner. */
.advertiser-hero{position:relative;overflow:hidden;min-height:500px;background:#0f172a url('/assets/images/hero-marketplace.png') center right/cover no-repeat!important;border-bottom:0!important}.advertiser-hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,19,38,.94) 0%,rgba(7,19,38,.82) 44%,rgba(15,118,110,.42) 74%,rgba(15,23,42,.16) 100%)}.advertiser-hero:after{content:'';position:absolute;left:0;right:0;bottom:0;height:96px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff)}.advertiser-hero__inner{position:relative;z-index:1;min-height:500px!important;display:flex!important;align-items:center!important;padding:78px 0 108px!important}.advertiser-hero__content{max-width:820px!important}.advertiser-hero .eyebrow{color:#7dd3c7!important}.advertiser-hero h1{max-width:820px;color:#fff!important;text-shadow:0 14px 36px rgba(0,0,0,.30)}.advertiser-hero p{max-width:760px;color:#dce8e7!important;font-size:21px!important}.advertiser-hero .hero-actions{margin-top:12px}.advertiser-hero .btn--secondary{background:rgba(255,255,255,.14)!important;color:#fff!important;border-color:rgba(255,255,255,.32)!important;backdrop-filter:blur(8px)}.advertiser-hero .btn--secondary:hover{background:#fff!important;color:#0f172a!important}.advertiser-hero__media{display:none!important}
@media(max-width:980px){.advertiser-hero{min-height:460px;background-position:center!important}.advertiser-hero:before{background:linear-gradient(180deg,rgba(7,19,38,.92),rgba(7,19,38,.72))}.advertiser-hero__inner{min-height:460px!important;padding:58px 0 92px!important}.advertiser-hero p{font-size:18px!important}}
@media(max-width:680px){.advertiser-hero,.advertiser-hero__inner{min-height:430px!important}.advertiser-hero__inner{padding:46px 0 80px!important}.advertiser-hero h1{font-size:38px!important}.advertiser-hero p{font-size:17px!important}.advertiser-hero .hero-actions{align-items:stretch}.advertiser-hero .hero-actions .btn{width:100%;justify-content:center}}

/* About / Qui sommes-nous page. */
.about-hero{position:relative;overflow:hidden;min-height:520px;background:#0f172a url('/assets/images/hero-marketplace.png') center right/cover no-repeat}.about-hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,19,38,.93) 0%,rgba(7,19,38,.80) 45%,rgba(15,118,110,.34) 72%,rgba(15,23,42,.1) 100%)}.about-hero:after{content:'';position:absolute;left:0;right:0;bottom:0;height:92px;background:linear-gradient(180deg,rgba(255,255,255,0),#fff)}.about-hero__inner{position:relative;z-index:1;min-height:520px;display:flex;align-items:center;padding:74px 0 106px}.about-hero__content{max-width:850px}.about-hero .eyebrow{color:#7dd3c7}.about-hero h1{margin:0;color:#fff;font-size:clamp(42px,5.4vw,72px);line-height:1;text-shadow:0 14px 36px rgba(0,0,0,.28)}.about-hero p{max-width:760px;margin:18px 0 0;color:#dce8e7;font-size:21px;line-height:1.56}.about-hero .btn--secondary{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.32);backdrop-filter:blur(8px)}.about-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.82fr);gap:34px;align-items:center}.about-copy h2{margin:0 0 14px;color:#0f172a;font-size:clamp(32px,3.5vw,50px);line-height:1.05}.about-copy p{color:#526174;font-size:18px;line-height:1.65}.about-image-card{border:1px solid #d7e6df;border-radius:22px;overflow:hidden;background:#fff;box-shadow:0 24px 60px rgba(15,23,42,.1)}.about-image-card img{width:100%;height:390px;object-fit:cover;display:block}.about-values-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.about-values-grid article{border:1px solid #dbe8e5;border-radius:16px;background:#fff;padding:22px;box-shadow:0 16px 36px rgba(15,23,42,.055)}.about-values-grid span{color:#0f766e;font-size:12px;font-weight:500;text-transform:uppercase}.about-values-grid h3{margin:10px 0;color:#0f172a;font-size:21px}.about-values-grid p{margin:0;color:#667085;line-height:1.55}.about-audience-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.about-audience-card{border:1px solid #dbe8e5;border-radius:20px;background:#fff;overflow:hidden;box-shadow:0 22px 55px rgba(15,23,42,.08)}.about-audience-card img{width:100%;height:290px;object-fit:cover;display:block}.about-audience-card div{padding:24px}.about-audience-card h2{margin:0 0 10px;color:#0f172a;font-size:30px;line-height:1.12}.about-audience-card p{color:#667085;line-height:1.58}.about-audience-card--dark{background:#0f172a}.about-audience-card--dark h2,.about-audience-card--dark p{color:#fff}.about-audience-card--dark .eyebrow{color:#7dd3c7}.about-vision{max-width:980px;text-align:center}.about-vision h2{margin:0;color:#0f172a;font-size:clamp(34px,4vw,56px);line-height:1.05}.about-vision p{color:#526174;font-size:19px;line-height:1.6}.about-stats{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:22px}.about-stats span{display:inline-flex;gap:8px;padding:11px 14px;border:1px solid #cfe4df;border-radius:999px;background:#fff;color:#526174;font-weight:600;}.about-stats strong{color:#0f766e}.about-final-cta{background:#fff}@media(max-width:980px){.about-hero{background-position:center}.about-hero:before{background:linear-gradient(180deg,rgba(7,19,38,.93),rgba(7,19,38,.72))}.about-split,.about-audience-grid{grid-template-columns:1fr}.about-values-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.about-image-card img,.about-audience-card img{height:260px}}@media(max-width:680px){.about-hero,.about-hero__inner{min-height:430px}.about-hero__inner{padding:44px 0 78px}.about-hero h1{font-size:38px}.about-hero p{font-size:17px}.about-values-grid{grid-template-columns:1fr}.about-audience-card div{padding:18px}}

/* Legal pages */
.legal-page .legal-hero .about-hero__content {
    max-width: 920px;
}

.legal-section {
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 6px;
    padding: 20px;
    border: 1px solid #d8e6e2;
    border-radius: 16px;
    background: #f8fbfb;
}

.legal-summary strong {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 1.05rem;
}

.legal-summary a {
    padding: 9px 10px;
    border-radius: 10px;
    color: #43536a;
    text-decoration: none;
    font-weight:600;
}

.legal-summary a:hover {
    background: #e9f7f3;
    color: #087a68;
}

.legal-content {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.legal-content section,
.legal-note {
    padding: 24px;
    border: 1px solid #d8e6e2;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}

.legal-note {
    background: #eefbf7;
    color: #334155;
    line-height: 1.75;
}

.legal-content h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-content p,
.legal-content li {
    color: #475569;
    line-height: 1.8;
}

.legal-content p {
    margin: 0 0 12px;
}

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

.legal-content ul {
    margin: 0;
    padding-left: 20px;
}

.legal-content a {
    color: #087a68;
    font-weight: 800;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }
}

/* Quote success */
.quote-success-hero{background:linear-gradient(135deg,#f3fbf8 0,#fff 54%,#fff7e8 100%);padding:42px 0 34px;border-bottom:1px solid #dbe8e5}.quote-success-wrap{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,430px);gap:32px;align-items:center}.quote-success-main{display:grid;gap:18px}.quote-success-badge{justify-self:start;padding:8px 12px;border-radius:999px;background:#e9f7f3;color:#0f766e;font-weight:500;text-transform:uppercase;font-size:12px;letter-spacing:.04em}.quote-success-main h1{margin:0;color:#071326;font-size:clamp(36px,5vw,64px);line-height:1.02;max-width:840px}.quote-success-main p{margin:0;max-width:720px;color:#526174;font-size:18px;line-height:1.65}.quote-success-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;max-width:840px}.quote-success-steps span{padding:14px;border:1px solid #d7e6df;border-radius:14px;background:#fff;color:#0f172a;font-weight:500}.quote-success-card{overflow:hidden;border:1px solid #d7e6df;border-radius:22px;background:#fff;box-shadow:0 26px 70px rgba(15,23,42,.12)}.quote-success-card__image{display:grid;place-items:center;min-height:260px;background:#f8fbfb;border-bottom:1px solid #e5edf2}.quote-success-card__image img{max-width:100%;max-height:260px;object-fit:contain;padding:22px}.quote-success-card__body{padding:24px;display:grid;gap:12px}.quote-success-logo{max-width:150px;max-height:64px;object-fit:contain;justify-self:start}.quote-success-card__body span{color:#0f766e;font-weight:500;text-transform:uppercase;font-size:12px;letter-spacing:.05em}.quote-success-card h2{margin:0;color:#0f172a;font-size:26px;line-height:1.16}.quote-success-card p{margin:0;color:#526174;line-height:1.55}.quote-success-card dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:8px 0 0}.quote-success-card dl div{padding:12px;border-radius:12px;background:#f8fafc;border:1px solid #e5edf2}.quote-success-card dt{color:#64748b;font-size:11px;text-transform:uppercase;font-weight:500}.quote-success-card dd{margin:4px 0 0;color:#0f172a;font-weight:500}.quote-success-next{background:#fff}.quote-success-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.quote-success-grid article{padding:22px;border:1px solid #d8e6e2;border-radius:18px;background:#fff;box-shadow:0 18px 48px rgba(15,23,42,.06)}.quote-success-grid strong{display:block;color:#0f172a;font-size:20px;margin-bottom:8px}.quote-success-grid p{margin:0;color:#526174;line-height:1.6}@media(max-width:980px){.quote-success-wrap,.quote-success-grid{grid-template-columns:1fr}.quote-success-steps{grid-template-columns:1fr}.quote-success-card dl{grid-template-columns:1fr}}

/* Quote client type */
.quote-client-type{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin:0 0 18px;padding:14px;border:1px solid #d7e6df;border-radius:14px;background:#f8fbfb}.quote-client-type span{margin-right:4px;color:#0f172a;font-weight:500}.quote-client-type label{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border:1px solid #dbe8e5;border-radius:999px;background:#fff;color:#334155;font-weight:500;cursor:pointer}.quote-client-type input{accent-color:#0f766e}.quote-client-type label:has(input:checked){border-color:#0f766e;background:#e9f7f3;color:#0f766e}@media(max-width:640px){.quote-client-type{align-items:stretch}.quote-client-type span,.quote-client-type label{width:100%}}

/* Client login placeholder */
.client-login-hero{background:linear-gradient(135deg,#f3fbf8 0,#fff 58%,#fff7e8 100%);padding:46px 0;border-bottom:1px solid #dbe8e5}.client-login-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,470px);gap:34px;align-items:center}.client-login-copy{display:grid;gap:16px}.client-login-copy h1{margin:0;color:#071326;font-size:clamp(38px,5vw,64px);line-height:1.02;max-width:860px}.client-login-copy p{margin:0;color:#526174;font-size:18px;line-height:1.65;max-width:720px}.client-login-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;max-width:860px}.client-login-points span{padding:14px;border:1px solid #d7e6df;border-radius:14px;background:#fff;color:#0f172a;font-weight:500}.client-login-form{box-shadow:0 24px 70px rgba(15,23,42,.1)}@media(max-width:980px){.client-login-layout,.client-login-points{grid-template-columns:1fr}}

/* client-account-polish-v2 */
.client-account-page main{background:#f6faf9}.client-account-hero{background:linear-gradient(135deg,#f2fbf8 0,#fff 62%,#fff7e8 100%);padding:42px 0;border-bottom:1px solid #dbe8e5}.client-account-hero__inner{display:grid;gap:12px}.client-account-hero h1{margin:0;color:#071326;font-size:clamp(38px,4.8vw,62px);line-height:1.03}.client-account-hero p{max-width:760px;margin:0;color:#526174;font-size:18px;line-height:1.65}.client-account-section{background:#f6faf9}.client-account-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:26px;align-items:start}.client-account-nav{position:sticky;top:104px;display:grid;gap:8px;padding:16px;border:1px solid #d8e6e2;border-radius:18px;background:#fff;box-shadow:0 18px 45px rgba(15,23,42,.06)}.client-account-nav a{display:block;padding:12px 14px;border-radius:12px;color:#334155;text-decoration:none;font-weight:500}.client-account-nav a:hover,.client-account-nav a.is-active{background:#0f766e;color:#fff}.client-account-content{display:grid;gap:18px;min-width:0}.client-stat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.client-stat-grid article,.account-card{padding:22px;border:1px solid #d8e6e2;border-radius:18px;background:#fff;box-shadow:0 18px 48px rgba(15,23,42,.06)}.client-stat-grid span{display:block;color:#64748b;text-transform:uppercase;font-weight:500;font-size:12px}.client-stat-grid strong{display:block;margin-top:6px;color:#0f172a;font-size:36px;line-height:1}.account-card h2{margin:0 0 16px;color:#0f172a;font-size:28px}.account-table-wrap{overflow:auto;border:1px solid #e5edf2;border-radius:14px;background:#fff}.account-table{width:100%;border-collapse:collapse;min-width:780px}.account-table th,.account-table td{padding:14px 16px;border-bottom:1px solid #e5edf2;text-align:left;vertical-align:top}.account-table th{background:#f8fafc;color:#64748b;text-transform:uppercase;font-size:12px;font-weight:500}.account-table td{color:#0f172a;font-weight:500;}.account-status{display:inline-flex;padding:6px 10px;border-radius:999px;background:#e9f7f3;color:#0f766e;font-size:12px;font-weight:500;white-space:nowrap}.account-empty{margin:0;padding:18px;border:1px dashed #cbd5e1;border-radius:14px;background:#f8fafc;color:#64748b}.account-alert{margin-bottom:18px;padding:14px 16px;border-radius:14px;border:1px solid #a7f3d0;background:#ecfdf5;color:#065f46;font-weight:500}.account-alert--error{border-color:#fecaca;background:#fff1f2;color:#991b1b}.client-login-layout--account{align-items:start}@media(max-width:980px){.client-account-layout{grid-template-columns:1fr}.client-account-nav{position:static}.client-stat-grid{grid-template-columns:1fr}.account-table{min-width:680px}}

/* client-account-kpi-modern */
.client-stat-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-bottom:4px}.client-kpi{position:relative;display:flex;align-items:center;gap:16px;min-height:126px;padding:22px;border:1px solid rgba(15,118,110,.16);border-radius:22px;background:linear-gradient(135deg,#fff 0,#f8fffc 100%);box-shadow:0 18px 46px rgba(15,23,42,.08);overflow:hidden}.client-kpi:before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:#0f766e}.client-kpi__icon{display:grid;place-items:center;flex:0 0 58px;width:58px;height:58px;border-radius:18px;color:#fff;background:#0f766e;box-shadow:0 16px 32px rgba(15,118,110,.22);font-size:22px}.client-kpi__body{display:grid;gap:3px;min-width:0}.client-kpi__body span{color:#0f766e;text-transform:uppercase;font-size:13px;letter-spacing:.04em;font-weight:600}.client-kpi__body strong{color:#071326;font-size:42px;line-height:1;font-weight:600}.client-kpi__body small{color:#64748b;font-size:14px}.client-kpi--quotes{border-color:rgba(245,158,11,.22);background:linear-gradient(135deg,#fff 0,#fffaf0 100%)}.client-kpi--quotes:before,.client-kpi--quotes .client-kpi__icon{background:#f59e0b}.client-kpi--quotes .client-kpi__icon{box-shadow:0 16px 32px rgba(245,158,11,.23)}.client-kpi--quotes .client-kpi__body span{color:#b45309}.client-kpi--orders{border-color:rgba(37,99,235,.2);background:linear-gradient(135deg,#fff 0,#f5f9ff 100%)}.client-kpi--orders:before,.client-kpi--orders .client-kpi__icon{background:#2563eb}.client-kpi--orders .client-kpi__icon{box-shadow:0 16px 32px rgba(37,99,235,.2)}.client-kpi--orders .client-kpi__body span{color:#1d4ed8}@media(max-width:980px){.client-stat-grid{grid-template-columns:1fr}.client-kpi{min-height:112px}.client-kpi__body strong{font-size:36px}}
/* client-lead-detail-modern */
.account-view-link{display:inline-flex;align-items:center;gap:8px;padding:9px 12px;border:1px solid #cfe1dc;border-radius:999px;color:#0f766e;background:#f4fffb;text-decoration:none;font-size:13px;font-weight:600;white-space:nowrap}.account-view-link:hover{background:#0f766e;color:#fff;border-color:#0f766e}.lead-detail-page{display:grid;gap:16px}.lead-detail-back{display:inline-flex;align-items:center;gap:9px;width:max-content;padding:10px 14px;border:1px solid #d8e6e2;border-radius:999px;background:#fff;color:#334155;text-decoration:none;font-weight:600}.lead-detail-back:hover{color:#fff;background:#0f766e;border-color:#0f766e}.lead-detail-hero{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;padding:26px;border-radius:24px;background:linear-gradient(135deg,#0f766e 0,#11966f 100%);color:#fff;box-shadow:0 20px 52px rgba(15,118,110,.18)}.lead-detail-label{display:inline-flex;margin-bottom:8px;color:#d9fff4;text-transform:uppercase;letter-spacing:.05em;font-size:12px;font-weight:600}.lead-detail-hero h2{margin:0;font-size:42px;line-height:1;color:#fff}.lead-detail-hero p{margin:10px 0 0;max-width:760px;color:#ecfdf5;font-size:18px;line-height:1.5}.lead-detail-status{background:#fff;color:#0f766e}.lead-detail-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:16px}.lead-detail-card{padding:22px;border:1px solid #d8e6e2;border-radius:20px;background:#fff;box-shadow:0 18px 48px rgba(15,23,42,.06)}.lead-detail-card--wide{grid-column:1/-1}.lead-detail-card__head{display:flex;align-items:center;gap:12px;margin-bottom:16px}.lead-detail-card__head i{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#e9f7f3;color:#0f766e}.lead-detail-card__head h3{margin:0;color:#071326;font-size:22px}.lead-detail-list{display:grid;gap:12px;margin:0}.lead-detail-list div{display:grid;grid-template-columns:140px minmax(0,1fr);gap:12px;padding-bottom:12px;border-bottom:1px solid #edf2f7}.lead-detail-list div:last-child{border-bottom:0;padding-bottom:0}.lead-detail-list dt{color:#64748b;text-transform:uppercase;font-size:12px;font-weight:600}.lead-detail-list dd{margin:0;color:#071326;font-weight:600}.lead-detail-list--two{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.lead-detail-list--two div{grid-template-columns:1fr}.lead-detail-desc,.lead-detail-message{margin:18px 0 0;color:#526174;font-size:16px;line-height:1.7}.lead-detail-message{margin:0;padding:18px;border-radius:16px;background:#f8fafc;border:1px solid #e5edf2}@media(max-width:980px){.lead-detail-hero{display:grid}.lead-detail-grid{grid-template-columns:1fr}.lead-detail-list div{grid-template-columns:1fr}.lead-detail-list--two{grid-template-columns:1fr}.account-view-link span{display:none}}
/* footer-modern-restored */
.footer-cta{background:#0f766e;color:#fff;padding:34px 0}.footer-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:24px}.footer-cta h2{margin:0;color:#fff;font-size:30px;line-height:1.1}.footer-cta p{margin:6px 0 0;color:#d9fff4;font-size:18px}.footer-cta .btn{background:#f59e0b;color:#fff;border-color:#f59e0b;box-shadow:none}.footer-cta .btn:hover{background:#d88907;border-color:#d88907;color:#fff}.site-footer{background:#0b1720;color:#dbeafe;padding:56px 0 0}.site-footer__grid{display:grid;grid-template-columns:1.25fr repeat(4,minmax(150px,1fr));gap:34px;align-items:start}.site-footer__brand{display:grid;gap:18px}.brand--footer{display:inline-flex}.brand--footer img{width:190px;height:auto;display:block}.site-footer h2{margin:0 0 16px;color:#fff;font-size:20px}.site-footer p{margin:0;color:#c7d8e7;line-height:1.6}.site-footer ul{display:grid;gap:10px;margin:0;padding:0;list-style:none}.site-footer li{color:#dbeafe}.site-footer a{color:#dbeafe;text-decoration:none}.site-footer a:hover{color:#fff;text-decoration:underline}.footer-badges,.payment-badges{display:flex;flex-wrap:wrap;gap:10px}.footer-badges{display:grid;align-items:start}.footer-badges span,.payment-badges span{display:inline-flex;align-items:center;justify-content:center;width:max-content;min-height:34px;padding:0 12px;border:1px solid rgba(255,255,255,.18);border-radius:6px;background:rgba(255,255,255,.06);color:#fff;font-size:13px;font-weight:600}.payment-badges{margin-top:16px}.payment-badges span{min-width:44px}.site-footer__bottom{display:flex;justify-content:space-between;gap:18px;margin-top:46px;padding:22px 0;border-top:1px solid rgba(255,255,255,.12);color:#a9bfd0}@media(max-width:1080px){.site-footer__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.site-footer__brand{grid-column:1/-1}.footer-cta__inner{align-items:flex-start;flex-direction:column}}@media(max-width:680px){.footer-cta{padding:28px 0}.footer-cta h2{font-size:26px}.site-footer{padding-top:38px}.site-footer__grid{grid-template-columns:1fr;gap:26px}.site-footer__bottom{flex-direction:column}.brand--footer img{width:170px}}
/* client-account-nav-counts */
.client-account-nav a{display:flex;align-items:center;justify-content:space-between;gap:12px}.client-account-nav a span{min-width:0}.client-account-nav a em{display:inline-flex;align-items:center;justify-content:center;min-width:28px;height:26px;padding:0 9px;border-radius:999px;background:#eef6f4;color:#0f766e;font-style:normal;font-size:13px;font-weight:600}.client-account-nav a.is-active em,.client-account-nav a:hover em{background:#fff;color:#0f766e}.client-account-nav a:not(.is-active):hover em{background:#e6fffa;color:#0f766e}
/* header-client-account-name */
.topbar-account-link{display:inline-flex;align-items:center;gap:8px;min-height:30px;padding:5px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.08);color:#fff;text-decoration:none;font-weight:600}.topbar-account-link i{font-size:16px;color:#f59e0b}.topbar-account-link:hover{background:#fff;color:#0b1720;text-decoration:none}.topbar-account-link:hover i{color:#0f766e}@media(max-width:680px){.topbar-account-link span{max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}
/* home-conversion-blocks */
.home-urgent-section{background:#fff}.home-urgent-card{position:relative;display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:32px;align-items:center;overflow:hidden;border-radius:24px;background:linear-gradient(135deg,#0b1720 0,#0f766e 100%);padding:34px;box-shadow:0 28px 70px rgba(15,23,42,.14)}.home-urgent-card:after{content:"";position:absolute;right:-110px;top:-110px;width:260px;height:260px;border-radius:50%;background:rgba(255,255,255,.08)}.home-urgent-card__content{position:relative;z-index:1;display:grid;gap:14px}.home-urgent-card .eyebrow{color:#99f6e4}.home-urgent-card h2{margin:0;color:#fff;font-size:clamp(32px,3.6vw,52px);line-height:1.02}.home-urgent-card p{max-width:820px;margin:0;color:#dbeafe;font-size:18px;line-height:1.6}.btn--light{background:#fff;color:#0b1720;border-color:#fff}.btn--light:hover{background:#ecfdf5;color:#0f766e;border-color:#ecfdf5}.home-urgent-card__steps{position:relative;z-index:1;display:grid;gap:12px}.home-urgent-card__steps span{display:flex;align-items:center;gap:12px;min-height:58px;padding:0 16px;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:rgba(255,255,255,.1);color:#fff;font-weight:600;backdrop-filter:blur(8px)}.home-urgent-card__steps i{display:grid;place-items:center;width:36px;height:36px;border-radius:12px;background:#f59e0b;color:#fff}.home-why-section{background:#f8fbfb}.home-why-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.home-why-grid article{display:grid;gap:12px;min-height:245px;padding:24px;border:1px solid #dbe8e5;border-radius:20px;background:#fff;box-shadow:0 18px 42px rgba(15,23,42,.06)}.home-why-grid i{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#e9f7f3;color:#0f766e;font-size:22px}.home-why-grid h3{margin:0;color:#071326;font-size:22px;line-height:1.18}.home-why-grid p{margin:0;color:#5c6b80;line-height:1.58}.home-help-section{background:#fff}.home-help-card{display:grid;grid-template-columns:84px minmax(0,1fr) auto;gap:22px;align-items:center;padding:28px;border:1px solid #cfe4df;border-radius:24px;background:linear-gradient(135deg,#f3fbf8 0,#fff 60%,#fff7e8 100%);box-shadow:0 22px 55px rgba(15,23,42,.08)}.home-help-card__icon{display:grid;place-items:center;width:84px;height:84px;border-radius:24px;background:#0f766e;color:#fff;font-size:34px;box-shadow:0 18px 36px rgba(15,118,110,.2)}.home-help-card h2{margin:0;color:#071326;font-size:clamp(30px,3vw,44px);line-height:1.06}.home-help-card p{max-width:850px;margin:8px 0 0;color:#526174;font-size:17px;line-height:1.6}@media(max-width:1080px){.home-urgent-card{grid-template-columns:1fr}.home-why-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-help-card{grid-template-columns:72px minmax(0,1fr);align-items:start}.home-help-card .btn{grid-column:2}}@media(max-width:680px){.home-urgent-card{padding:24px;border-radius:18px}.home-urgent-card__steps span{min-height:54px}.home-why-grid{grid-template-columns:1fr}.home-why-grid article{min-height:auto}.home-help-card{grid-template-columns:1fr;padding:22px;border-radius:18px}.home-help-card__icon{width:64px;height:64px;border-radius:18px;font-size:26px}.home-help-card .btn{grid-column:auto;width:100%;justify-content:center}}
/* orange-quote-buttons */
.btn--accent,.home-urgent-card .btn--accent{background:#f59e0b;border-color:#f59e0b;color:#fff}.btn--accent:hover,.home-urgent-card .btn--accent:hover{background:#d88907;border-color:#d88907;color:#fff}
/* product-tools-quote-button */
.product-tools__quote{display:flex;align-items:center;justify-content:center;gap:10px;min-height:48px;padding:0 18px;border-radius:10px;background:#f59e0b;color:#fff;text-decoration:none;font-weight:600;box-shadow:0 14px 28px rgba(245,158,11,.22)}.product-tools__quote:hover{background:#d88907;color:#fff}.product-tools__quote i{font-size:18px}@media(max-width:760px){.product-tools__quote{width:100%}}
/* product-fixed-quote-widget */
.product-fixed-quote{position:fixed;right:28px;bottom:24px;z-index:80;display:grid;gap:10px;justify-items:end}.product-fixed-quote__bubble{position:relative;padding:15px 20px;border-radius:999px;background:#fff;color:#334155;font-size:18px;font-weight:600;box-shadow:0 18px 45px rgba(15,23,42,.16)}.product-fixed-quote__bubble:after{content:"";position:absolute;right:38px;bottom:-10px;border-width:10px 10px 0 10px;border-style:solid;border-color:#fff transparent transparent transparent}.product-fixed-quote__button{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-width:320px;min-height:58px;border:0;border-radius:8px;background:#fb8500;color:#fff;font-family:inherit;font-size:22px;font-weight:600;box-shadow:0 16px 32px rgba(251,133,0,.32);cursor:pointer}.product-fixed-quote__button:hover{background:#e67500}.product-fixed-quote__form{display:none;position:absolute;right:0;bottom:78px;width:min(360px,calc(100vw - 32px));padding:20px;border:1px solid #d7e6df;border-radius:18px;background:#fff;box-shadow:0 24px 70px rgba(15,23,42,.22)}.product-fixed-quote.is-open .product-fixed-quote__form{display:grid;gap:12px}.product-fixed-quote.is-open .product-fixed-quote__bubble{display:none}.product-fixed-quote__form strong{color:#071326;font-size:22px}.product-fixed-quote__form p{margin:0;color:#64748b;line-height:1.45}.product-fixed-quote__form label{display:grid;gap:6px;color:#334155;font-weight:600}.product-fixed-quote__form input{min-height:44px;border:1px solid #cfd8e3;border-radius:10px;padding:0 12px;font:inherit}.product-fixed-quote__form input:focus{outline:2px solid rgba(15,118,110,.22);border-color:#0f766e}.product-fixed-quote__form button[type=submit]{min-height:46px;border:0;border-radius:10px;background:#fb8500;color:#fff;font:inherit;font-weight:600;cursor:pointer}.product-fixed-quote__close{position:absolute;right:10px;top:8px;width:30px;height:30px;border:0;background:transparent;color:#64748b;font-size:24px;cursor:pointer}@media(max-width:760px){.product-fixed-quote{left:14px;right:14px;bottom:14px}.product-fixed-quote__button{width:100%;min-width:0;min-height:54px;font-size:19px}.product-fixed-quote__bubble{justify-self:center;font-size:15px;padding:11px 14px}.product-fixed-quote__form{left:0;right:0;bottom:66px;width:auto}}
/* product-fixed-quote-green */
.product-fixed-quote__button{background:#0f766e;box-shadow:0 16px 32px rgba(15,118,110,.28)}.product-fixed-quote__button:hover{background:#0b665f}.product-fixed-quote__form button[type=submit]{background:#0f766e}.product-fixed-quote__form button[type=submit]:hover{background:#0b665f}