/* IZIPal - feuille de styles principale
   Aucun framework n'est requis. */

:root {
    color-scheme: light;
    color-scheme: only light;
    --green-900: #173529;
    --green-800: #214a36;
    --green-700: #347b3a;
    --green-600: #4da636;
    --green-500: #64bd3c;
    --green-200: #dff1d7;
    --green-100: #eef8e9;
    --lime: #98c83e;
    --ink: #18201d;
    --ink-soft: #2c3732;
    --muted: #41504a;
    --surface: #f4f7f4;
    --surface-strong: #eaf0eb;
    --line: #dce5de;
    --white: #ffffff;
    --warning: #9a6b14;
    --danger: #a93434;
    --success: #24743a;
    --shadow-sm: 0 8px 24px rgba(23, 53, 41, .08);
    --shadow-md: 0 20px 60px rgba(23, 53, 41, .13);
    --shadow-lg: 0 34px 90px rgba(23, 53, 41, .18);
    --radius-sm: .75rem;
    --radius: 1.25rem;
    --radius-lg: 2rem;
    --container: 1200px;
    --header-height: 5rem;
    --transition: 180ms ease;
    --font-body: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: Montserrat, var(--font-body);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

html,
body {
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .16em;
}

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

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

main {
    overflow: clip;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 .8rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 760;
    letter-spacing: -.035em;
    line-height: 1.13;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

h4 {
    font-size: 1.05rem;
}

p {
    margin: 0 0 1rem;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    color: var(--green-900);
    background: var(--green-200);
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.container-narrow {
    width: min(calc(100% - 2.5rem), 820px);
    margin-inline: auto;
}

.section {
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-sm {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

#cas-guigal {
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

#cas-frais {
    padding-top: clamp(2rem, 4vw, 3.5rem);
}

.section-muted {
    background: var(--surface);
}

.section-dark {
    color: var(--white);
    background: var(--green-900);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: inherit;
}

.section-dark .card {
    color: var(--ink);
}

.section-dark .card h2,
.section-dark .card h3 {
    color: var(--ink);
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

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

.section-heading p {
    color: var(--muted);
    font-size: 1.12rem;
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, .82);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.9rem;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow-light {
    color: #bcf19c;
}

.lead {
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.text-muted {
    color: var(--muted);
}

.text-green {
    color: var(--green-600);
}

.brand-name {
    text-transform: none;
}

.brand-name .text-green {
    color: var(--green-600);
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: .75rem;
    left: .75rem;
    padding: .75rem 1rem;
    color: var(--white);
    background: var(--green-900);
    border-radius: .5rem;
    transform: translateY(-180%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Buttons and links */
.button {
    display: inline-flex;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(100, 189, 60, .34);
    outline-offset: 3px;
}

.button-primary {
    color: var(--white);
    background: var(--green-600);
    box-shadow: 0 12px 30px rgba(77, 166, 54, .24);
}

.button-primary:hover {
    background: var(--green-700);
    box-shadow: 0 16px 34px rgba(77, 166, 54, .3);
}

.button-pulse {
    animation: button-pulse 2.4s ease-in-out infinite;
}

@keyframes button-pulse {
    0%,
    100% {
        box-shadow: 0 12px 30px rgba(77, 166, 54, .24), 0 0 0 0 rgba(77, 166, 54, .34);
    }

    55% {
        box-shadow: 0 16px 34px rgba(77, 166, 54, .3), 0 0 0 12px rgba(77, 166, 54, 0);
    }
}

.button-secondary {
    color: var(--green-900);
    background: var(--white);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: var(--green-500);
}

.button-dark {
    color: var(--white);
    background: var(--green-900);
}

.button-light {
    color: var(--green-900);
    background: var(--white);
}

.button-small {
    min-height: 2.75rem;
    padding: .65rem 1.05rem;
    font-size: .92rem;
}

.button-icon,
.link-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--green-900);
    font-family: var(--font-heading);
    font-weight: 750;
    text-decoration: none;
}

.text-link:hover {
    color: var(--green-700);
}

.text-link-light {
    color: var(--white);
}

.text-link-light:hover {
    color: #d7ffc2;
}

.link-arrow {
    transition: transform var(--transition);
}

.text-link:hover .link-arrow {
    transform: translateX(.2rem);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(23, 53, 41, .07);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    padding: .85rem .7rem;
    color: var(--ink-soft);
    background: transparent;
    border: 0;
    border-radius: .7rem;
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown.is-active>.nav-link {
    color: var(--green-700);
    background: var(--green-100);
}

.nav-dropdown {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + .55rem);
    left: 0;
    min-width: 250px;
    padding: .55rem;
    margin: 0;
    visibility: hidden;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-.35rem);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown.is-open .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-submenu a {
    display: block;
    padding: .72rem .8rem;
    border-radius: .65rem;
    color: var(--ink-soft);
    font-size: .92rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-submenu a:hover {
    color: var(--green-700);
    background: var(--green-100);
}

.nav-toggle {
    display: none;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: .75rem;
}

.nav-toggle-lines {
    display: grid;
    width: 1.3rem;
    gap: .25rem;
}

.nav-toggle-lines span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Breadcrumbs */
.breadcrumbs {
    padding-top: 1.3rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    padding: 0;
    margin: 0;
    color: var(--muted);
    list-style: none;
    font-size: .85rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: #a5afa9;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--green-700);
}

/* Hero */
.hero {
    position: relative;
    min-height: min(760px, calc(100vh - var(--header-height)));
    display: grid;
    align-items: center;
    padding: clamp(4rem, 8vw, 7.5rem) 0;
    background:
        radial-gradient(circle at 83% 18%, rgba(152, 200, 62, .23), transparent 25rem),
        linear-gradient(145deg, #f9fbf8 0%, #eef6ed 100%);
}

.hero::before {
    position: absolute;
    inset: auto 0 0;
    height: 5rem;
    content: "";
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .8));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-copy {
    max-width: 690px;
}

.hero h1 {
    max-width: 720px;
}

.hero h1 .accent {
    color: var(--green-600);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 1.7rem;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 2.25rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--ink-soft);
    font-size: .92rem;
    font-weight: 650;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.hero-proof svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--green-600);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual::before,
.hero-visual::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    filter: blur(.2px);
}

.hero-visual::before {
    inset: 2rem 0 0 3rem;
    background: linear-gradient(145deg, rgba(100, 189, 60, .20), rgba(23, 53, 41, .04));
}

.hero-visual::after {
    right: 2%;
    bottom: 2%;
    width: 42%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow-md);
}

.hero-machine {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 34px 35px rgba(23, 53, 41, .22));
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    right: -1rem;
    bottom: 1.5rem;
    width: min(290px, 72%);
    padding: 1.2rem 1.3rem;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.hero-floating-card strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--green-700);
    font-size: 1.65rem;
    line-height: 1;
}

.hero-floating-card>span {
    color: var(--muted);
    font-size: .88rem;
}

.page-hero {
    padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
    background: linear-gradient(145deg, #f8fbf7, #edf5eb);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.page-hero h1 {
    font-size: clamp(2.7rem, 5.5vw, 4.7rem);
}

.product-hero h1 {
    font-size: clamp(2.15rem, 4.1vw, 3.5rem);
    line-height: 1.16;
}

.page-hero-copy {
    max-width: 690px;
}

.page-hero-copy .lead {
    margin-bottom: 1.6rem;
}

.page-hero-media {
    position: relative;
    min-height: 390px;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 470px;
    object-fit: contain;
    filter: drop-shadow(0 26px 28px rgba(23, 53, 41, .18));
}

.page-hero-media.photo img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    filter: none;
}

.option-hero-carousel {
    display: grid;
    overflow: hidden;
    place-items: center;
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.option-hero-carousel .carousel-slide {
    display: grid;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
    grid-area: 1 / 1;
    place-items: center;
    opacity: 0;
    animation: carousel-fade 20s infinite;
}

.option-hero-carousel .carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(214, 225, 214, .75);
    border-radius: var(--radius);
    box-shadow: inset 0 0 32px rgba(248, 251, 247, .95);
    pointer-events: none;
}

.option-hero-carousel .carousel-slide:nth-child(2) {
    animation-delay: 4s;
}

.option-hero-carousel .carousel-slide:nth-child(3) {
    animation-delay: 8s;
}

.option-hero-carousel .carousel-slide:nth-child(4) {
    animation-delay: 12s;
}

.option-hero-carousel .carousel-slide:nth-child(5) {
    animation-delay: 16s;
}

.option-hero-carousel img {
    width: 100%;
    height: 100%;
    max-height: 390px;
    object-fit: contain;
    background: var(--white);
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 20px rgba(23, 53, 41, .14));
}

@keyframes carousel-fade {
    0%,
    16% {
        opacity: 1;
    }

    20%,
    96% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

/* Cards / grids */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1.35rem;
}

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

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

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

.card {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(23, 53, 41, .02);
}

.card-hover {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card-hover:hover {
    z-index: 1;
    border-color: rgba(77, 166, 54, .42);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.icon-box {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    margin-bottom: 1.2rem;
    color: var(--green-700);
    background: var(--green-100);
    border-radius: .9rem;
}

.icon-box svg {
    width: 1.55rem;
    height: 1.55rem;
}

.benefit-card h3 {
    margin-bottom: .55rem;
}

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

.card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.card-link-label {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.stats-strip {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: var(--green-900);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.stat {
    padding: 1.55rem 1.4rem;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, .13);
    text-align: center;
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: flex;
    min-height: 2.35em;
    align-items: center;
    justify-content: center;
    margin-bottom: .35rem;
    color: #c7f7aa;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.stat span {
    color: rgba(255, 255, 255, .73);
    font-size: .88rem;
}

.product-card {
    display: grid;
    min-height: 100%;
    padding: 0;
    grid-template-rows: 280px auto;
}

.product-card-media {
    display: grid;
    position: relative;
    grid-template-rows: auto minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    justify-items: center;
    padding: 1rem 1.5rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(145deg, var(--surface), #fff);
}

.product-card-media img {
    grid-row: 2;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-media img.product-card-image-hd {
    transform: scale(1.28);
    transform-origin: center;
}

.product-card-badge {
    justify-self: start;
    max-width: 100%;
    padding: .4rem .7rem;
    color: var(--green-900);
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.25;
}

.product-card-body {
    padding: 1.7rem;
}

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

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
    padding: 0;
    margin: 1.3rem 0 1.5rem;
    list-style: none;
}

.product-specs li {
    display: grid;
    gap: .25rem;
    align-content: start;
    padding: .75rem;
    background: var(--surface);
    border-radius: .75rem;
}

.product-specs strong {
    display: block;
    color: var(--green-700);
    font-size: 1.12rem;
    line-height: 1.18;
}

.product-specs span {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.35;
}

.application-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
    background: var(--green-900);
}

.application-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .65;
    transition: transform 500ms ease, opacity var(--transition);
}

.application-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(14, 34, 25, .96), rgba(14, 34, 25, .05) 75%);
}

.application-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    color: var(--white);
}

.application-card h3 {
    color: var(--white);
}

.application-card p {
    color: rgba(255, 255, 255, .75);
}

.application-card:hover img {
    opacity: .76;
    transform: scale(1.04);
}

.application-card .text-link {
    color: #c9f9ae;
}

/* Split sections */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.split-reverse .split-media {
    order: 2;
}

.split-copy {
    max-width: 620px;
}

.split-copy p {
    color: var(--muted);
}

.section-dark .split-copy p {
    color: rgba(255, 255, 255, .78);
}

.section-dark .split-copy .lead {
    color: rgba(255, 255, 255, .88);
}

.split-media {
    position: relative;
}

.split-media img,
.media-frame img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.split-media.product img {
    max-height: 570px;
    object-fit: contain;
    box-shadow: none;
    filter: drop-shadow(0 25px 30px rgba(23, 53, 41, .16));
}

.media-frame {
    overflow: hidden;
    padding: .75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-lg) + .75rem);
    box-shadow: var(--shadow-sm);
}

.media-frame img {
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.media-caption {
    margin-top: .75rem;
    color: var(--muted);
    font-size: .84rem;
    text-align: center;
}

.floating-note {
    position: absolute;
    right: -1rem;
    bottom: -1.3rem;
    max-width: 260px;
    padding: 1rem 1.15rem;
    color: var(--white);
    background: var(--green-900);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.floating-note strong {
    display: block;
    color: #c7f7aa;
}

.check-list {
    display: grid;
    gap: .72rem;
    padding: 0;
    margin: 1.35rem 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 1.35rem 1fr;
    gap: .65rem;
    align-items: start;
}

.check-list svg {
    width: 1.22rem;
    height: 1.22rem;
    margin-top: .2rem;
    color: var(--green-600);
}

.bullet-list {
    padding-left: 1.2rem;
    color: var(--muted);
}

.bullet-list li {
    margin-bottom: .45rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 1.55rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    counter-increment: step;
}

.step::before {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    margin-bottom: 1.2rem;
    content: counter(step, decimal-leading-zero);
    color: var(--white);
    background: var(--green-600);
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 850;
}

.step:not(:last-child)::after {
    position: absolute;
    top: 2.8rem;
    right: -1.05rem;
    z-index: 3;
    width: 1.1rem;
    height: 2px;
    content: "";
    background: var(--green-500);
}

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

/* Tables */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table caption {
    padding: 1rem;
    color: var(--muted);
    font-size: .85rem;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.comparison-table thead th {
    color: var(--white);
    background: var(--green-900);
    font-size: .9rem;
}

.comparison-table tbody th {
    width: 34%;
    color: var(--ink-soft);
    background: var(--surface);
    font-size: .9rem;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table strong {
    color: var(--green-700);
}

.section-comparison {
    background: var(--surface);
}

.comparison-global-wrap {
    background: var(--white);
}

.comparison-global thead a {
    color: var(--white);
    text-decoration-color: rgba(255, 255, 255, .48);
}

.comparison-global td {
    min-width: 180px;
}

.table-note {
    margin-top: .8rem;
    color: var(--muted);
    font-size: .83rem;
}

.table-action {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
}

.comparison-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.comparison-cta p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 700;
}

/* Interface gallery */
.interface-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.interface-item {
    overflow: hidden;
    background: var(--green-900);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.interface-item:nth-child(1),
.interface-item:nth-child(4) {
    grid-column: span 7;
}

.interface-item:nth-child(2),
.interface-item:nth-child(3) {
    grid-column: span 5;
}

.interface-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.interface-item figcaption {
    padding: .85rem 1rem;
    color: rgba(255, 255, 255, .75);
    font-size: .84rem;
}

.interface-item figcaption strong {
    display: block;
    color: var(--white);
}

/* Video */
.video-shell {
    position: relative;
    overflow: hidden;
    background: #0d1712;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-shell video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0d1712;
    object-fit: cover;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, .72);
    background: var(--green-900);
    font-size: .85rem;
}

.video-caption strong {
    color: var(--white);
}

/* Feature / option cards */
.option-card {
    display: grid;
    overflow: hidden;
    padding: 0;
    align-content: start;
    grid-template-rows: auto 1fr;
}

.option-card-media {
    display: grid;
    place-items: center;
    padding: 1rem;
    background: var(--surface);
}

.option-card-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.option-card-body {
    position: relative;
    z-index: 1;
    padding: 1.35rem;
    background: var(--white);
}

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

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: var(--green-900);
    border-radius: var(--radius);
}

.feature-band-item {
    padding: 1.65rem;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, .14);
}

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

.feature-band-item h3 {
    color: var(--white);
}

.feature-band-item p {
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

/* Article / content */
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.prose {
    max-width: 760px;
}

.prose h2 {
    margin-top: 2.8rem;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.prose h3 {
    margin-top: 2rem;
}

.prose p,
.prose li {
    color: var(--ink-soft);
}

.prose a {
    color: var(--green-700);
    font-weight: 650;
}

.side-card {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    padding: 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.side-card h2 {
    font-size: 1.2rem;
}

.side-card ul {
    display: grid;
    gap: .6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.side-card a {
    color: var(--ink-soft);
    font-size: .9rem;
    text-decoration: none;
}

.side-card a:hover {
    color: var(--green-700);
}

.note-box {
    padding: 1.25rem 1.4rem;
    margin: 1.5rem 0;
    color: var(--ink-soft);
    background: var(--green-100);
    border-left: 4px solid var(--green-600);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.note-box strong {
    color: var(--green-900);
}

.warning-box {
    background: #fff8e9;
    border-left-color: #d29a28;
}

.case-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: 1.35rem;
}

.case-data-list {
    display: grid;
    gap: .75rem;
    margin: 0;
}

.case-data-list div {
    display: grid;
    grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
    gap: .75rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--line);
}

.case-data-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.case-data-list dt {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

.case-data-list dd {
    margin: 0;
    color: var(--ink-soft);
}

.case-list {
    display: grid;
    gap: .55rem;
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.case-list a {
    color: var(--green-700);
    font-weight: 700;
}

.case-links {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.35rem;
    margin-top: 1.2rem;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.faq-item summary {
    position: relative;
    display: block;
    padding: 1.15rem 1.25rem;
    padding-right: 3rem;
    font-weight: 750;
    list-style: none;
    cursor: pointer;
}

.faq-item summary .summary-label {
    min-width: 0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    content: "+";
    color: var(--green-600);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 1.25rem 1.2rem;
    color: var(--muted);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA */
.section-cta {
    padding-top: clamp(3rem, 6vw, 5rem);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(152, 200, 62, .25), transparent 22rem),
        var(--green-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
    max-width: 750px;
    color: var(--white);
}

.cta-panel p {
    max-width: 750px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .88);
}

.cta-panel .text-green,
.section-dark .text-green {
    color: #bcf19c;
}

.cta-actions {
    display: grid;
    justify-items: start;
    gap: .9rem;
    min-width: 230px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.project-form {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-section {
    padding: 0;
    margin: 0 0 2.1rem;
    border: 0;
}

.form-section:last-of-type {
    margin-bottom: 1.2rem;
}

.form-section legend {
    width: 100%;
    padding: 0 0 .9rem;
    margin-bottom: 1rem;
    color: var(--green-900);
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: .4rem;
}

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

.form-field label {
    color: var(--ink-soft);
    font-size: .88rem;
    font-weight: 700;
}

.form-field .optional {
    color: var(--muted);
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 3.15rem;
    padding: .75rem .85rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #cbd7ce;
    border-radius: .72rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #9eb4a3;
}

.form-help {
    color: var(--muted);
    font-size: .78rem;
}

.file-field {
    padding: 1rem;
    background: var(--surface);
    border: 1px dashed #a9baad;
    border-radius: .75rem;
}

.file-field input {
    min-height: auto;
    padding: .25rem;
    border: 0;
}

.form-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .65rem;
    align-items: start;
    color: var(--muted);
    font-size: .82rem;
}

.form-consent input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .2rem;
    accent-color: var(--green-600);
}

.form-status {
    display: none;
    padding: .85rem 1rem;
    margin: 1rem 0;
    border-radius: .7rem;
    font-size: .9rem;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: var(--success);
    background: #e9f7ed;
}

.form-status.is-error {
    color: var(--danger);
    background: #fff0f0;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-sidebar {
    display: grid;
    gap: 1rem;
}

.contact-card {
    padding: 1.35rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-card h2 {
    font-size: 1.25rem;
}

.contact-line {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .7rem;
    margin-top: 1rem;
}

.contact-line svg {
    width: 1.3rem;
    height: 1.3rem;
    margin-top: .2rem;
    color: var(--green-600);
}

.contact-line a {
    color: var(--green-700);
    font-weight: 700;
    text-decoration: none;
}

/* Footer */
.site-footer {
    padding-top: 4.5rem;
    color: rgba(255, 255, 255, .72);
    background: #10251d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
}

.footer-brand img {
    width: 145px;
    max-height: 155px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 280px;
}

.footer-title {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: .55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-contact-link,
.footer-social a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact-link:hover,
.footer-social a:hover {
    color: #c7f7aa;
}

.footer-contact-link {
    display: block;
    margin-top: .5rem;
}

.footer-social {
    display: grid;
    gap: .45rem;
    margin-top: 1.1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .8rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 1rem;
}

.footer-bottom a {
    color: inherit;
}

/* Reveal animation */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

/* Utility */
.badge {
    display: inline-flex;
    align-items: center;
    padding: .4rem .72rem;
    color: var(--green-800);
    background: var(--green-100);
    border: 1px solid var(--green-200);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0;
    margin: 1.2rem 0;
    list-style: none;
}

.tag-list li {
    padding: .42rem .7rem;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 650;
}

.kicker {
    color: var(--green-700);
    font-weight: 800;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.logo-row img {
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}

.placeholder-comment {
    display: none;
}

@media (max-width: 1100px) {
    .brand img {
        width: 200px;
    }

    .nav-link {
        padding-inline: .5rem;
        font-size: .86rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    }

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

@media (max-width: 920px) {
    :root {
        --header-height: 4.5rem;
    }

    .container,
    .container-narrow {
        width: min(calc(100% - 2rem), var(--container));
    }

    body.nav-open::before {
        position: fixed;
        z-index: 900;
        inset: var(--header-height) 0 0;
        content: "";
        background: rgba(10, 26, 19, .38);
    }

    body {
        padding-top: var(--header-height);
    }

    .site-header {
        position: fixed;
        right: 0;
        left: 0;
        overflow: visible;
    }

    .nav-toggle {
        display: grid;
    }

    .main-nav {
        position: absolute;
        z-index: 1001;
        top: 100%;
        right: 0;
        bottom: auto;
        width: min(92vw, 390px);
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        display: block;
        overflow-y: auto;
        padding: 1rem;
        visibility: hidden;
        background: var(--white);
        border-left: 1px solid var(--line);
        box-shadow: -20px 30px 60px rgba(23, 53, 41, .16);
        opacity: 0;
        pointer-events: none;
        transform: translateX(.75rem);
        transition: transform 240ms ease, opacity 240ms ease, visibility 240ms ease;
    }

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

    .nav-list {
        display: grid;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: .95rem;
        font-size: 1rem;
    }

    .nav-dropdown {
        position: static;
    }

    .nav-submenu {
        position: static;
        display: none;
        min-width: 0;
        padding: .3rem .45rem .7rem 1rem;
        visibility: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .nav-dropdown.is-open .nav-submenu {
        display: block;
    }

    .nav-submenu a {
        padding: .65rem .8rem;
    }

    .nav-cta {
        display: flex;
        margin-top: 1rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .page-hero-grid,
    .split,
    .contact-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-visual {
        min-height: 460px;
    }

    .page-hero-media {
        min-height: 330px;
    }

    .options-page .page-hero-copy {
        display: contents;
    }

    .options-page .page-hero-grid {
        row-gap: 1.1rem;
    }

    .options-page .page-hero-copy .eyebrow {
        order: 1;
    }

    .options-page .page-hero h1 {
        order: 2;
    }

    .options-page .page-hero-copy .lead {
        order: 3;
        margin-bottom: 0;
    }

    .options-page .option-hero-carousel {
        order: 4;
        justify-self: center;
        width: min(100%, 22rem);
        height: 220px;
        min-height: 0;
        padding: .85rem;
        border-radius: var(--radius);
    }

    .options-page .option-hero-carousel .carousel-slide {
        min-height: 0;
        padding: .9rem;
    }

    .options-page .option-hero-carousel img {
        width: auto;
        height: auto;
        max-width: 84%;
        max-height: 135px;
        border-radius: var(--radius-sm);
        filter: none;
        object-fit: contain;
    }

    .options-page .option-hero-carousel .carousel-slide:nth-child(2) img {
        max-height: 118px;
    }

    .options-page .page-hero-actions {
        order: 5;
    }

    .split-reverse .split-media {
        order: 0;
    }

    .split-copy {
        max-width: none;
    }

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

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

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

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

    .step:nth-child(2)::after {
        display: none;
    }

    .feature-band {
        grid-template-columns: 1fr;
    }

    .feature-band-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

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

    .side-card {
        position: static;
    }

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

    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        min-width: 0;
    }
}

@media (max-width: 640px) {

    .container,
    .container-narrow {
        width: min(calc(100% - 1.3rem), var(--container));
    }

    .section {
        padding: 4rem 0;
    }

    .brand img {
        width: 175px;
    }

    .hero {
        padding: 3.4rem 0 4.8rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }

    .product-hero h1 {
        font-size: clamp(2rem, 9.2vw, 2.85rem);
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-floating-card {
        right: .2rem;
        bottom: 0;
    }

    .hero-actions,
    .page-hero-actions {
        display: grid;
    }

    .options-page .option-hero-carousel {
        width: min(100%, 18rem);
        height: clamp(150px, 44vw, 190px);
        padding: .65rem;
    }

    .options-page .option-hero-carousel img {
        max-height: 112px;
    }

    .options-page .option-hero-carousel .carousel-slide:nth-child(2) img {
        max-height: 96px;
    }

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

    .stats-strip {
        margin-top: -1rem;
    }

    .stats-panel {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .step::after {
        display: none;
    }

    .product-card {
        grid-template-rows: 230px auto;
    }

    .product-card-media img {
        max-height: 200px;
    }

    .product-specs {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-global-wrap {
        overflow-x: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .comparison-global {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 .85rem;
        background: transparent;
    }

    .comparison-global caption {
        padding: 0 0 .4rem;
    }

    .comparison-global thead {
        display: none;
    }

    .comparison-global tbody,
    .comparison-global tr,
    .comparison-global th,
    .comparison-global td {
        display: block;
        width: 100%;
    }

    .comparison-global tbody th {
        padding: .9rem 1rem;
        color: var(--white);
        background: var(--green-900);
        border-bottom: 0;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        font-size: .92rem;
    }

    .comparison-global tr {
        overflow: hidden;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
    }

    .comparison-global td {
        display: grid;
        grid-template-columns: minmax(6.8rem, .75fr) minmax(0, 1fr);
        gap: .8rem;
        min-width: 0;
        padding: .85rem 1rem;
        border-bottom: 1px solid var(--line);
        font-size: .95rem;
    }

    .comparison-global td:last-child {
        border-bottom: 0;
    }

    .comparison-global td::before {
        color: var(--green-800);
        font-weight: 800;
    }

    .comparison-global td:nth-child(2)::before {
        content: "ABB PoWa";
    }

    .comparison-global td:nth-child(3)::before {
        content: "FANUC CRX30";
    }

    .comparison-global td:nth-child(4)::before {
        content: "IZIPal HD";
    }

    .specs-table-wrap {
        overflow-x: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .specs-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 .75rem;
        background: transparent;
    }

    .specs-table caption {
        padding: 0 0 .35rem;
    }

    .specs-table tbody,
    .specs-table tr,
    .specs-table th,
    .specs-table td {
        display: block;
        width: 100%;
    }

    .specs-table tr {
        overflow: hidden;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
    }

    .specs-table tbody th {
        padding: .85rem 1rem;
        color: var(--white);
        background: var(--green-900);
        border-bottom: 0;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        font-size: .92rem;
    }

    .specs-table td {
        min-width: 0;
        padding: .9rem 1rem;
        border-bottom: 0;
        font-size: .95rem;
    }

    .approach-table-wrap {
        overflow-x: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .approach-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 .85rem;
        background: transparent;
    }

    .approach-table caption {
        padding: 0 0 .4rem;
    }

    .approach-table thead {
        display: none;
    }

    .approach-table tbody,
    .approach-table tr,
    .approach-table th,
    .approach-table td {
        display: block;
        width: 100%;
    }

    .approach-table tbody th {
        padding: .9rem 1rem;
        color: var(--white);
        background: var(--green-900);
        border-bottom: 0;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        font-size: .92rem;
    }

    .approach-table tr {
        overflow: hidden;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-sm);
    }

    .approach-table td {
        display: grid;
        grid-template-columns: minmax(8.8rem, .9fr) minmax(0, 1fr);
        gap: .8rem;
        min-width: 0;
        padding: .85rem 1rem;
        border-bottom: 1px solid var(--line);
        font-size: .95rem;
    }

    .approach-table td:last-child {
        border-bottom: 0;
    }

    .approach-table td::before {
        color: var(--green-800);
        font-weight: 800;
    }

    .approach-table td:nth-child(2)::before {
        content: "Cobot sans enceinte";
    }

    .approach-table td:nth-child(3)::before {
        content: "Semi-collaboratif";
    }

    .approach-table td:nth-child(4)::before {
        content: "Robot industriel";
    }

    .case-detail-grid,
    .case-data-list div {
        grid-template-columns: 1fr;
    }

    .case-data-list div {
        gap: .25rem;
    }

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

    .interface-item:nth-child(n) {
        grid-column: auto;
    }

    .floating-note {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

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

    .form-field-full {
        grid-column: auto;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

    .cta-panel {
        border-radius: var(--radius);
    }

    .video-caption {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .option-hero-carousel .carousel-slide {
        display: none;
        opacity: 1;
        animation: none !important;
    }

    .option-hero-carousel .carousel-slide:first-child {
        display: grid;
    }

    .button-pulse {
        animation: none !important;
    }
}
