:root {
    --bg: #040506;
    --bg-soft: #0b0d10;
    --panel: rgba(12, 14, 17, 0.84);
    --panel-strong: rgba(14, 16, 20, 0.96);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 151, 0, 0.65);
    --text: #f7f4ee;
    --muted: #b7b3ac;
    --dim: #777b82;
    --orange: #ff9900;
    --orange-2: #ffb32b;
    --danger: #ff5d5d;
    --success: #6ee7a8;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 74% 8%, rgba(255, 153, 0, 0.18), transparent 24rem),
        radial-gradient(circle at 20% 12%, rgba(39, 56, 83, 0.42), transparent 28rem),
        linear-gradient(180deg, #050607 0%, #0a0b0e 52%, #040506 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 48%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.page-shell {
    width: min(100%, 1800px);
    margin: 0 auto;
    overflow: hidden;
}

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 34px clamp(20px, 4.2vw, 66px) 16px;
}

.brand img,
.hero-logo,
.quote-logo,
.admin-logo {
    width: 126px;
    filter: drop-shadow(0 14px 25px rgba(0, 0, 0, 0.45));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.site-nav a:not(.nav-button) {
    padding: 11px 12px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:not(.nav-button):hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.nav-button,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--orange-2);
    background: rgba(255, 153, 0, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: white;
    border-radius: 999px;
}

.flash {
    width: min(1180px, calc(100% - 40px));
    margin: 12px auto;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
}

.flash p {
    margin: 0;
}

.flash-success {
    border-color: rgba(110, 231, 168, 0.5);
    color: var(--success);
}

.flash-warning {
    border-color: rgba(255, 179, 43, 0.5);
    color: var(--orange-2);
}

.hero-section {
    position: relative;
    min-height: 760px;
    padding: 56px clamp(20px, 5vw, 76px) 38px;
    display: grid;
    grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
    align-items: center;
    gap: clamp(48px, 5vw, 96px);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 34%, rgba(255, 153, 0, 0.28), transparent 26rem),
        radial-gradient(circle at 80% 70%, rgba(8, 12, 19, 0.8), transparent 32rem);
    pointer-events: none;
}

.hero-content,
.hero-image-card,
.quote-heading,
.quote-deco,
.quote-form,
.split-section,
.dark-showcase,
.quote-callout,
.feature-bar,
.admin-section {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 900;
}

h1,
h2 {
    margin: 0;
    line-height: 0.96;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.8rem, 4.6vw, 5rem);
    max-width: 590px;
}

h1 span,
h2 span {
    display: block;
    color: var(--orange);
    text-shadow: 0 0 38px rgba(255, 153, 0, 0.24);
}

h2 {
    font-size: clamp(2.25rem, 4.2vw, 4.6rem);
}

.hero-text {
    max-width: 570px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.45vw, 1.32rem);
}

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

.main-cta,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 64px;
    padding: 16px 32px;
    border: 0;
    border-radius: 12px;
    color: #08090a;
    background: linear-gradient(180deg, #ffb32b, #ff9200);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(255, 153, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.main-cta:hover,
.submit-button:hover,
.secondary-cta:hover,
.nav-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.secondary-cta {
    min-height: 58px;
}

.quick-note,
.form-note {
    color: rgba(255, 255, 255, 0.72);
    margin: 18px 0 0;
    font-weight: 700;
}

.hero-image-card {
    min-height: 560px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(-1.5deg);
    align-self: center;
}

.hero-image-card::after,
.split-image::after,
.dark-showcase::after,
.quote-deco::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 50%, rgba(0, 0, 0, 0.32));
    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-bar {
    width: min(1530px, calc(100% - 80px));
    margin: -74px auto 92px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 9, 10, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.feature-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px 18px;
    border-right: 1px solid rgba(255, 153, 0, 0.25);
}

.feature-card:last-child {
    border-right: 0;
}

.feature-card span {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 153, 0, 0.75);
    color: var(--orange);
    font-weight: 1000;
}

.feature-card strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.split-section,
.dark-showcase,
.quote-callout {
    width: min(1460px, calc(100% - 80px));
    margin: 0 auto 92px;
}

.split-section {
    display: grid;
    grid-template-columns: 0.98fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.split-image img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
}

.split-content p,
.dark-showcase p,
.quote-callout p,
.quote-heading p {
    color: var(--muted);
    font-size: 1.04rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 1000;
}

.text-link {
    color: var(--orange-2);
    font-weight: 900;
}

.dark-showcase {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: center;
    padding: clamp(22px, 3vw, 36px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dark-showcase img {
    border-radius: 26px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.quote-callout {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 34px;
    border: 1px solid rgba(255, 153, 0, 0.28);
    background:
        linear-gradient(120deg, rgba(255, 153, 0, 0.12), rgba(255, 255, 255, 0.035)),
        rgba(0, 0, 0, 0.28);
}

.quote-callout div {
    max-width: 850px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
    width: min(1460px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 44px;
    padding: 36px 0;
}

.footer-brand img {
    width: 118px;
    margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
}

.footer-socials div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-socials a {
    color: var(--orange-2);
    font-weight: 900;
}

.footer-bottom {
    padding: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.72);
}

.quote-hero {
    width: min(1480px, calc(100% - 80px));
    margin: 34px auto 16px;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 34px;
    align-items: end;
}

.quote-heading h1 {
    font-size: clamp(3.4rem, 7vw, 7.4rem);
}

.quote-heading h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 5px;
    margin-top: 22px;
    border-radius: 999px;
    background: var(--orange);
}

.quote-deco {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 310px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.quote-deco img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
}

.quote-form-section {
    width: min(1480px, calc(100% - 80px));
    margin: 0 auto 84px;
}

.quote-form,
.admin-card,
.admin-table-wrap,
.detail-card {
    border: 1px solid var(--line);
    background: var(--panel);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.quote-form {
    padding: clamp(22px, 2.6vw, 36px);
    border-radius: 22px;
}

.form-step,
.form-field {
    margin-bottom: 22px;
}

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

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

.align-end {
    align-items: end;
}

.field-label {
    display: block;
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.86rem;
    font-weight: 900;
}

.field-label span {
    color: var(--dim);
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(0, 0, 0, 0.28);
    color: var(--text);
    border-radius: 9px;
    padding: 15px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: rgba(255, 153, 0, 0.7);
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.12);
    background: rgba(0, 0, 0, 0.42);
}

textarea {
    min-height: 78px;
    resize: vertical;
}

.upload-zone {
    min-height: 104px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-zone:hover,
.upload-zone.is-dragover {
    border-color: var(--orange);
    background: rgba(255, 153, 0, 0.08);
}

.upload-zone input {
    display: none;
}

.upload-icon {
    color: var(--orange);
    font-size: 2rem;
    line-height: 1;
}

.upload-zone small,
.version-card small {
    color: var(--muted);
}

.version-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.version-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    min-height: 90px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.version-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.version-card.is-active {
    border-color: var(--orange);
    background: rgba(255, 153, 0, 0.08);
}

.version-card em {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: transparent;
    font-style: normal;
    font-weight: 1000;
}

.version-card.is-active em {
    color: #090909;
    background: var(--orange);
    border-color: var(--orange);
}

.version-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 153, 0, 0.58);
    border-radius: 50%;
    color: var(--orange);
    font-weight: 1000;
}

.quantity-control {
    display: grid;
    grid-template-columns: 62px 1fr 62px;
}

.quantity-control input {
    border-radius: 0;
    text-align: center;
}

.quantity-control button {
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(0, 0, 0, 0.32);
    color: white;
    cursor: pointer;
    font-size: 1.35rem;
}

.quantity-control button:first-child {
    border-radius: 9px 0 0 9px;
}

.quantity-control button:last-child {
    border-radius: 0 9px 9px 0;
}

.submit-button {
    width: 100%;
}

.field-error {
    margin-top: 8px;
    color: #ff9f9f;
    font-size: 0.92rem;
}

.standalone {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 93, 93, 0.08);
}

.admin-section {
    width: min(1300px, calc(100% - 80px));
    margin: 50px auto 90px;
}

.small-admin {
    display: grid;
    place-items: center;
    min-height: 58vh;
}

.admin-card {
    width: min(520px, 100%);
    padding: 34px;
    border-radius: 24px;
}

.admin-card h1,
.admin-header h1 {
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.admin-logo {
    margin-bottom: 22px;
}

.login-form {
    margin-top: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-header p {
    color: var(--muted);
}

.admin-table-wrap {
    border-radius: 22px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--orange-2);
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid rgba(255, 153, 0, 0.18);
    font-size: 0.78rem;
    font-weight: 900;
}

.table-link,
.detail-card a {
    color: var(--orange-2);
    font-weight: 900;
}

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

.detail-card {
    padding: 22px;
    border-radius: 18px;
}

.detail-card strong {
    color: var(--orange-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.detail-card p {
    color: var(--muted);
}

.full-detail {
    grid-column: span 4;
}

.compact {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 0.86rem;
}

.danger-text {
    color: #ff9f9f !important;
}

@media (max-width: 1180px) {
    .hero-section,
    .quote-hero,
    .split-section,
    .dark-showcase {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 30px;
    }

    .hero-image-card {
        min-height: 420px;
        transform: none;
    }

    .feature-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }

    .feature-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 153, 0, 0.16);
    }

    .feature-card:last-child {
        border-bottom: 0;
    }

    .quote-deco {
        display: none;
    }

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

    .full-detail {
        grid-column: span 2;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 22px 20px 12px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(4, 5, 6, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
    }

    .brand img,
    .hero-logo,
    .quote-logo,
    .admin-logo {
        width: 92px;
    }

    .hero-section,
    .quote-hero,
    .quote-form-section,
    .split-section,
    .dark-showcase,
    .quote-callout,
    .admin-section,
    .feature-bar,
    .footer-inner {
        width: min(100% - 34px, 100%);
    }

    .hero-section {
        min-height: auto;
        padding: 34px 17px;
    }

    h1 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    h2 {
        font-size: clamp(2rem, 9vw, 3.3rem);
    }

    .hero-image-card {
        min-height: 330px;
        border-radius: 22px;
    }

    .feature-bar,
    .form-grid,
    .version-grid,
    .footer-inner,
    .quote-callout {
        grid-template-columns: 1fr;
    }

    .feature-bar {
        padding: 14px;
    }

    .feature-card {
        padding: 14px;
    }

    .quote-callout {
        display: grid;
    }

    .dark-showcase,
    .quote-form,
    .admin-card {
        padding: 20px;
        border-radius: 22px;
    }

    .admin-header {
        display: grid;
    }

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

    .full-detail {
        grid-column: span 1;
    }
}

@media (max-width: 520px) {
    .hero-actions,
    .main-cta,
    .secondary-cta {
        width: 100%;
    }

    .main-cta,
    .secondary-cta {
        min-height: 56px;
    }

    .quote-heading h1 {
        font-size: 3.1rem;
    }

    .quantity-control {
        grid-template-columns: 54px 1fr 54px;
    }
}
/* ================================
   Quantité + estimation prix
================================ */

.quantity-preset-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.quantity-preset {
    min-height: 78px;
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    cursor: pointer;
    transition: 0.2s ease;
}

.quantity-preset strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.quantity-preset span {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.quantity-preset:hover,
.quantity-preset.is-active {
    border-color: var(--wf-green-light, var(--orange));
    background: rgba(255, 153, 0, 0.09);
    transform: translateY(-2px);
}

.custom-quantity-field {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
}

.custom-quantity-field[hidden] {
    display: none !important;
}

.custom-quantity-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.88);
}

.custom-quantity-field small,
.quantity-help {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.price-preview {
    margin: 6px 0 22px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 153, 0, 0.32);
    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.14), transparent 34%),
        rgba(0, 0, 0, 0.26);
}

.price-preview div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.price-preview span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 800;
}

.price-preview strong {
    color: var(--wf-green-light, var(--orange));
    font-size: clamp(1.5rem, 3vw, 2.6rem);
    line-height: 1;
}

.price-preview p {
    margin: 10px 0 0;
    color: var(--muted);
}

.price-preview p span {
    color: rgba(255, 255, 255, 0.86);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.95rem;
}

/* ================================
   Sections brochure / tarifs
================================ */

.brochure-section {
    width: min(1480px, calc(100% - 80px));
    margin: 52px auto 84px;
}

.section-intro {
    max-width: 820px;
    margin-bottom: 28px;
}

.section-intro h2 {
    margin-top: 8px;
}

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

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

.brochure-card,
.formule-card,
.pricing-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.brochure-card .card-icon,
.formule-card .card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 153, 0, 0.35);
    color: var(--wf-green-light, var(--orange));
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.brochure-card h3,
.formule-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.formule-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-card {
    margin-top: 18px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-table th {
    color: var(--wf-green-light, var(--orange));
    background: rgba(255, 255, 255, 0.04);
}

.pricing-table strong {
    display: block;
    color: var(--text);
    font-size: 1.15rem;
}

.pricing-table small {
    display: block;
    margin-top: 4px;
    color: var(--wf-green-light, var(--orange));
    font-weight: 900;
}

.pricing-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .quantity-preset-grid,
    .brochure-grid,
    .formules-grid {
        grid-template-columns: 1fr;
    }

    .price-preview div {
        display: block;
    }

    .price-preview strong {
        display: block;
        margin-top: 8px;
    }
}

