:root {
    --green-950: #102419;
    --green-900: #173421;
    --green-800: #1f4a2e;
    --green-700: #2f7041;
    --gold: #d79b3d;
    --gold-2: #f0c777;
    --cream: #f7f2e7;
    --paper: #fffaf0;
    --ink: #15231b;
    --muted: #66736b;
    --body-bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f7f2e7;
    --header-bg: rgba(255, 250, 240, .92);
    --field-bg: #ffffff;
    --line: rgba(21, 35, 27, .12);
    --shadow: 0 24px 70px rgba(16, 36, 25, .14);
    --soft-shadow: 0 14px 44px rgba(16, 36, 25, .1);
}

:root[data-theme="dark"] {
    --cream: #13281c;
    --paper: #14291d;
    --ink: #eef7f0;
    --muted: #b8c7bd;
    --body-bg: #07120d;
    --surface: #0f2017;
    --surface-soft: #0b1912;
    --header-bg: rgba(9, 24, 16, .92);
    --field-bg: #102419;
    --line: rgba(238, 247, 240, .14);
    --shadow: 0 24px 70px rgba(0, 0, 0, .36);
    --soft-shadow: 0 14px 44px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--body-bg);
    font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1360px, calc(100% - 32px)); margin-inline: auto; }

.top-strip {
    background: var(--green-950);
    color: rgba(255,255,255,.78);
    font-size: 13px;
}
.top-strip__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-strip__phones {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 36, 25, .08);
}
.nav-bar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand img, .footer-brand img { width: 54px; height: auto; }
.brand strong, .footer-brand strong { display: block; font-weight: 800; letter-spacing: 0; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -4px; }
:root[data-theme="dark"] .brand img { filter: brightness(1.08); }
:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .brand small,
:root[data-theme="dark"] .site-nav a:not(.btn) {
    color: #fff;
}
:root[data-theme="dark"] .nav-toggle span { background: #fff; }
.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-item { position: relative; }
.site-nav a:not(.btn) {
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: var(--green-900);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.site-nav a.active,
.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
    background: rgba(47, 112, 65, .1);
    color: var(--green-700);
    box-shadow: inset 0 0 0 1px rgba(47, 112, 65, .12);
}
:root[data-theme="dark"] .site-nav a.active,
:root[data-theme="dark"] .site-nav a:not(.btn):hover,
:root[data-theme="dark"] .site-nav a:not(.btn):focus-visible {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.site-nav a:not(.btn):active {
    transform: translateY(1px);
    background: rgba(47, 112, 65, .16);
}
.nav-quote.active {
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.34), 0 14px 28px rgba(16, 36, 25, .18);
}
.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 14px);
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
}
.dropdown-menu a.active {
    background: rgba(47, 112, 65, .12);
    color: var(--green-700);
}
:root[data-theme="dark"] .dropdown-menu {
    background: color-mix(in srgb, var(--surface) 96%, transparent);
}
:root[data-theme="dark"] .dropdown-menu a.active {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 10px;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--green-900);
}
.theme-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--surface);
    color: var(--green-900);
    cursor: pointer;
    font-weight: 850;
    font-size: 13px;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
:root[data-theme="dark"] .theme-toggle { color: var(--ink); }
.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 155, 61, .38);
}
.theme-toggle__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: inset -7px -5px 0 rgba(255,255,255,.62);
}
:root[data-theme="dark"] .theme-toggle__icon {
    background: #dbe8df;
    box-shadow: inset -8px -3px 0 #102419;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16, 36, 25, .18); }
.btn-primary {
    background: var(--green-800);
    color: #fff;
    box-shadow: 0 12px 30px rgba(31, 74, 46, .22);
}
.btn-secondary {
    background: var(--surface);
    border-color: var(--line);
    color: var(--ink);
}
.btn-light {
    background: #fff;
    color: var(--green-900);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 120px));
    overflow: hidden;
    background: var(--green-950);
    color: #fff;
}
.hero::before {
    display: none;
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity .75s ease, transform 1.2s ease, visibility .75s ease;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16,36,25,.94) 0%, rgba(16,36,25,.72) 50%, rgba(16,36,25,.26) 100%),
        var(--hero-image) center/cover;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
    width: min(720px, 100%);
    padding: 86px 0 148px;
    animation: fadeUp .7s ease both;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: currentColor;
}
.eyebrow.light { color: var(--gold-2); }
h1, h2, h3 {
    line-height: 1.14;
    margin: 0;
    font-family: "Segoe UI", "Aptos", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
}
h1 { font-size: clamp(34px, 4.4vw, 58px); max-width: 820px; font-weight: 850; }
h2 { font-size: clamp(22px, 2.25vw, 30px); font-weight: 820; }
h3 { font-size: 21px; font-weight: 800; }
.lead {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255,255,255,.84);
    max-width: 700px;
    margin: 24px 0 34px;
}
.hero-actions, .section-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.logistics-actions { margin-top: 28px; }
.hero-panel {
    position: absolute;
    right: min(6vw, 80px);
    bottom: 58px;
    width: min(430px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.18);
    z-index: 2;
}
.hero-panel div {
    padding: 18px;
    background: rgba(255,250,240,.94);
    color: var(--green-950);
}
.hero-panel strong { display: block; font-size: 24px; line-height: 1; }
.hero-panel span { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 3;
    display: inline-flex;
    gap: 10px;
    transform: translateX(-50%);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}
.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    cursor: pointer;
    padding: 0;
    transition: width .24s ease, background .24s ease, transform .24s ease;
}
.hero-dot.is-active {
    width: 30px;
    background: var(--gold-2);
}

.section { padding: 92px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { background: var(--green-950); color: #fff; }
.stats-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(215, 155, 61, .2), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(47, 112, 65, .28), transparent 32%),
        linear-gradient(135deg, #0c1d14 0%, var(--green-950) 100%);
    color: #fff;
}
.stats-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 34px;
}
.stats-head h2 {
    width: min(690px, 100%);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.stat-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(215, 155, 61, .22);
    border-radius: 50%;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 155, 61, .44);
    background: rgba(255,255,255,.085);
}
.stat-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(215, 155, 61, .14);
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
}
.stat-card strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1;
    font-weight: 900;
}
.stat-card p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-weight: 700;
}
.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 48px;
}
.section-head p { max-width: 520px; color: var(--muted); margin: 0; }
.section-dark .section-head p, .section-dark p { color: rgba(255,255,255,.72); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.product-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--green-900);
    color: #fff;
    box-shadow: var(--shadow);
}
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .45s ease;
}
.product-card:hover img { transform: scale(1.08); }
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,36,25,.05), rgba(16,36,25,.86));
}
.product-card__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 22px;
}
.product-card__body p { color: rgba(255,255,255,.78); margin: 12px 0 18px; font-size: 14px; }
.text-link { color: var(--gold-2); font-weight: 800; }

.feature-grid, .service-grid, .contact-grid, .devis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card, .service-card, .info-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 42px rgba(16, 36, 25, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover, .service-card:hover, .info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 155, 61, .42);
    box-shadow: var(--soft-shadow);
}
.feature-card p, .service-card p, .info-card p { color: var(--muted); margin-bottom: 0; }
.service-card .text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green-700);
}
.service-card .num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(215, 155, 61, .16);
    color: var(--green-900);
    font-weight: 900;
    margin-bottom: 18px;
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.logistics-panel {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(16, 36, 25, .9), rgba(31, 74, 46, .72)),
        url("../images/backgrounds/quote-bg-2.jpg") center/cover;
    color: #fff;
    box-shadow: var(--shadow);
}
.logistics-panel--light {
    background:
        linear-gradient(145deg, rgba(255, 250, 240, .94), rgba(247, 242, 231, .88)),
        url("../images/backgrounds/contact-one-bg-img.jpg") center/cover;
    color: var(--green-950);
}
.logistics-panel span {
    color: var(--gold-2);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.logistics-panel--light span { color: var(--green-700); }
.logistics-panel strong {
    display: block;
    max-width: 520px;
    margin: 12px 0;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
}
.logistics-panel p {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.76);
}
.logistics-panel--light p { color: var(--muted); }
.transport-steps {
    display: grid;
    gap: 34px;
}
.image-stack {
    position: relative;
    min-height: 560px;
}
.image-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.image-stack img:first-child {
    inset: 0 18% 13% 0;
    width: 82%;
    height: 87%;
}
.image-stack img:last-child {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 42%;
    border: 8px solid #fff;
}
.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}
.check-list li {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 78%, transparent);
    font-weight: 700;
}

.page-hero {
    padding: 58px 0;
    background:
        linear-gradient(90deg, rgba(16,36,25,.92), rgba(16,36,25,.56)),
        url("../images/backgrounds/page-header-bg.jpg") center/cover;
    color: #fff;
}
.breadcrumb {
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border-bottom: 1px solid var(--line);
}
.breadcrumb__list {
    min-height: 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-block: 10px;
    margin-block: 0;
    list-style: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}
.breadcrumb__list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb__list li + li::before {
    content: "/";
    color: color-mix(in srgb, var(--muted) 58%, transparent);
}
.breadcrumb__list a {
    color: var(--green-700);
    transition: color .2s ease;
}
.breadcrumb__list a:hover,
.breadcrumb__list a:focus-visible {
    color: var(--gold);
}
.breadcrumb__list span[aria-current="page"] {
    color: var(--ink);
}
.page-hero.compact { padding: 48px 0; }
.page-hero h1 {
    font-size: clamp(22px, 2.55vw, 34px);
    max-width: 760px;
}
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; }

.product-detail {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 48px;
    align-items: start;
}
.product-visual {
    position: sticky;
    top: 128px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.product-visual img { width: 100%; height: 620px; object-fit: cover; }
.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
}
.meta-box {
    padding: 22px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--paper);
}
.meta-box strong { display: block; margin-bottom: 10px; }
.meta-box ul { padding-left: 18px; margin: 0; color: var(--muted); }

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255,255,255,.14);
}
.process div { padding: 30px; background: rgba(255,255,255,.06); }
.process strong { display: block; color: var(--gold-2); margin-bottom: 12px; }

.form-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid rgba(215, 155, 61, .24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, transparent), color-mix(in srgb, var(--paper) 92%, transparent)),
        var(--surface);
    box-shadow: var(--shadow);
}
.form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-700), var(--gold));
}
.form-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--green-700);
    font-weight: 850;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.form-card h2 {
    font-size: clamp(21px, 2vw, 27px);
    margin-bottom: 10px;
}
.form-intro {
    margin: 0 0 24px;
    color: var(--muted);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.field label { font-weight: 800; font-size: 14px; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid rgba(21, 35, 27, .14);
    border-radius: 8px;
    padding: 15px 16px;
    background: var(--field-bg);
    color: var(--ink);
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
:root[data-theme="dark"] .field input,
:root[data-theme="dark"] .field textarea,
:root[data-theme="dark"] .field select {
    border-color: rgba(255, 255, 255, .58);
}
:root[data-theme="dark"] .field input:focus,
:root[data-theme="dark"] .field textarea:focus,
:root[data-theme="dark"] .field select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .1);
}
.field input:focus, .field textarea:focus, .field select:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 4px rgba(47, 112, 65, .12);
    transform: translateY(-1px);
}
.field textarea { min-height: 150px; resize: vertical; }
.alert-success {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 8px;
    background: rgba(47, 112, 65, .1);
    border: 1px solid rgba(47, 112, 65, .22);
    color: var(--green-900);
    font-weight: 800;
}
:root[data-theme="dark"] .alert-success { color: var(--ink); }
.alert-error {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 8px;
    background: rgba(170, 45, 45, .1);
    border: 1px solid rgba(170, 45, 45, .24);
    color: #8c2525;
    font-weight: 800;
}
.alert-error p {
    margin: 0;
}
.alert-error p + p {
    margin-top: 6px;
}
:root[data-theme="dark"] .alert-error {
    color: #ffd9d9;
    border-color: rgba(255, 217, 217, .34);
}

.contact-grid { grid-template-columns: .8fr 1.2fr; }
.devis-grid { grid-template-columns: 1fr 1.35fr; align-items: start; }

.footer-cta {
    background:
        linear-gradient(135deg, rgba(31, 74, 46, .96), rgba(16, 36, 25, .98)),
        url("../images/backgrounds/quote-bg-1.jpg") center/cover;
    color: #fff;
}
.footer-cta__inner {
    padding: 52px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.footer-cta p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.site-footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(215, 155, 61, .12), transparent 34%),
        linear-gradient(180deg, #102419 0%, #0b1a12 100%);
    color: rgba(255,255,255,.78);
}
.footer-grid {
    padding: 64px 0 42px;
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) repeat(4, minmax(132px, .7fr));
    gap: clamp(22px, 3vw, 42px);
    align-items: start;
}
.footer-grid h3 {
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.footer-grid h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    background: var(--gold);
}
.footer-grid a, .footer-grid span {
    display: block;
    margin: 8px 0;
}
.footer-grid a {
    color: rgba(255,255,255,.7);
    transition: color .2s ease, transform .2s ease;
}
.footer-grid a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-company p {
    max-width: 520px;
    margin: 18px 0 22px;
    color: rgba(255,255,255,.72);
}
.footer-brand { color: #fff; margin-bottom: 18px; }
.footer-brand img { width: 48px; }
.footer-brand small {
    display: block;
    margin-top: -3px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 700;
}
.footer-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    max-width: 600px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-contact-inline a,
.footer-contact-inline span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}
.footer-contact-inline strong {
    color: var(--gold-2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-contact-inline a:hover {
    color: #fff;
    transform: translateY(-1px);
}
.footer-bottom {
    padding: 22px 0 32px;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,.58);
}
.footer-bottom a {
    color: rgba(255,255,255,.82);
    font-weight: 800;
}

.floating-quote {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #fff;
    text-decoration: none;
}

.faq-section {
    background:
        linear-gradient(180deg, var(--body-bg) 0%, var(--surface-soft) 100%);
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) 1.28fr;
    gap: 44px;
    align-items: start;
}
.faq-aside {
    position: sticky;
    top: 132px;
    padding: 34px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(31, 74, 46, .98), rgba(16, 36, 25, .98)),
        url("../images/backgrounds/quote-bg-2.jpg") center/cover;
    color: #fff;
    box-shadow: var(--shadow);
}
.faq-aside p {
    color: rgba(255,255,255,.72);
    margin: 18px 0 26px;
}
.faq-list {
    display: grid;
    gap: 28px;
}
.faq-group {
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--surface) 82%, transparent);
    box-shadow: 0 18px 44px rgba(16, 36, 25, .07);
}
.faq-group h2 {
    padding: 18px 18px 10px;
    font-size: 23px;
}
.faq-item {
    border-top: 1px solid rgba(21, 35, 27, .09);
}
.faq-item summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 18px;
    color: var(--ink);
    font-weight: 850;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(47, 112, 65, .1);
    color: var(--green-700);
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease;
}
.faq-item[open] summary::after {
    content: "-";
    background: var(--green-700);
    color: #fff;
}
.faq-item p {
    margin: 0;
    padding: 0 52px 22px 18px;
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.testimonial-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(21, 35, 27, .11);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 16px 42px rgba(16, 36, 25, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 155, 61, .38);
    box-shadow: var(--shadow);
}
.testimonial-card__quote {
    position: absolute;
    right: 24px;
    top: 10px;
    color: rgba(215, 155, 61, .2);
    font-size: 86px;
    line-height: 1;
    font-weight: 900;
}
.testimonial-card p {
    position: relative;
    margin: 0 0 28px;
    color: var(--ink);
    font-weight: 650;
}
.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.testimonial-person span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-950));
    color: #fff;
    font-weight: 900;
}
.testimonial-person strong {
    display: block;
    color: var(--ink);
    line-height: 1.2;
}
.testimonial-person small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
}
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 42px;
}
.pagination a {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(16, 36, 25, .06);
}
.pagination a.active,
.pagination a:hover {
    background: var(--green-800);
    color: #fff;
    border-color: var(--green-800);
}
.floating-quote__label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    white-space: nowrap;
    padding: 12px 18px;
    border: 1px solid rgba(31, 74, 46, .14);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    color: var(--ink);
    box-shadow: var(--soft-shadow);
    font-size: 14px;
    font-weight: 900;
    opacity: 0;
    transform: translate(12px, -50%);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.floating-quote__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-950));
    box-shadow: 0 16px 34px rgba(16, 36, 25, .32);
    transition: transform .28s ease, box-shadow .28s ease;
}
.floating-quote__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--green-700);
    opacity: .42;
    animation: quotePulse 2s infinite;
}
.floating-quote svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.floating-quote:has(.floating-quote__icon:hover) .floating-quote__label,
.floating-quote:focus-visible .floating-quote__label {
    opacity: 1;
    transform: translate(0, -50%);
    visibility: visible;
}
.floating-quote:has(.floating-quote__icon:hover) .floating-quote__icon,
.floating-quote:focus-visible .floating-quote__icon {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 20px 40px rgba(16, 36, 25, .42);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px max(16px, calc((100vw - 1360px) / 2));
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    color: var(--ink);
    box-shadow: 0 -16px 48px rgba(16, 36, 25, .14);
    backdrop-filter: blur(18px);
}
.cookie-banner.is-visible {
    display: flex;
    animation: cookieIn .35s ease both;
}
.cookie-banner__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}
.cookie-banner__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(215, 155, 61, .16);
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.cookie-banner h2 {
    font-size: 15px;
    margin-bottom: 2px;
}
.cookie-banner p {
    max-width: 920px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}
.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner__actions a {
    color: var(--green-700);
    font-weight: 850;
    white-space: nowrap;
}

@keyframes quotePulse {
    0% { transform: scale(1); opacity: .42; }
    100% { transform: scale(1.65); opacity: 0; }
}

@keyframes cookieIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.legal-content {
    max-width: 860px;
}
.legal-content h2 { margin-bottom: 18px; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--green-700); font-weight: 800; }
.legal-content section + section { margin-top: 34px; }
.legal-content h3 { margin-bottom: 12px; font-size: 19px; }
.legal-content ul {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
}
.legal-content li + li { margin-top: 8px; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-grid, .service-grid, .process { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-head { display: block; }
    .stats-head h2 { margin-top: 14px; }
    .split, .product-detail, .contact-grid, .devis-grid, .faq-layout { grid-template-columns: 1fr; }
    .faq-aside { position: static; }
    .product-visual { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-company { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .top-strip__inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
    .top-strip__phones { flex-wrap: wrap; justify-content: center; }
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { text-align: left; }
    .nav-item { width: 100%; }
    .nav-item > a { display: block; }
    .theme-toggle { justify-content: flex-start; width: 100%; }
    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 6px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(247, 242, 231, .72);
    }
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        display: block;
    }
    .hero { min-height: auto; }
    .hero-slide { min-height: 780px; position: relative; display: none; }
    .hero-slide.is-active { display: grid; }
    .hero-content { padding: 54px 0 390px; }
    .hero-actions { gap: 14px; margin-top: 20px; margin-bottom: 34px; }
    .hero-actions .btn { min-height: 48px; }
    .lead { font-size: 17px; }
    .hero-panel { left: 14px; right: 14px; width: auto; grid-template-columns: 1fr; bottom: 86px; }
    .hero-panel strong { font-size: 28px; }
    .hero-dots { bottom: 20px; }
    .section { padding: 66px 0; }
    .section-head { display: block; }
    .section-head p { margin-top: 16px; }
    .product-grid, .feature-grid, .service-grid, .process, .product-meta, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-section { padding: 64px 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card strong { font-size: clamp(28px, 9vw, 42px); }
    .product-card { min-height: 330px; }
    .image-stack { min-height: 420px; }
    .product-visual img { height: 420px; }
    .form-card { padding: 28px; }
    .footer-cta__inner, .footer-bottom { display: block; }
    .footer-cta__inner .btn { margin-top: 24px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-contact-inline { display: grid; gap: 10px; }
    .footer-contact-inline a,
    .footer-contact-inline span { align-items: flex-start; flex-direction: column; gap: 2px; }
    .floating-quote {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
    .floating-quote__label {
        display: none;
    }
    .floating-quote__icon {
        width: 52px;
        height: 52px;
    }
    .cookie-banner {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 14px;
    }
    .cookie-banner.is-visible { display: flex; }
    .cookie-banner__content { grid-template-columns: 1fr; }
    .cookie-banner__badge { width: max-content; }
    .cookie-banner p { font-size: 12px; }
    .cookie-banner__actions {
        margin-top: 6px;
        flex-wrap: wrap;
        justify-content: stretch;
        gap: 8px;
    }
    .cookie-banner__actions .btn,
    .cookie-banner__actions a {
        flex: 1 1 auto;
        text-align: center;
    }
    h1 { font-size: 34px; }
    .page-hero h1 { font-size: 25px; }
}
