/* ==========================================
   Abelarti Clone - Main Stylesheet
   Matching original abelarti.ch design
   ========================================== */

/* ========== CSS Variables ========== */
:root {
    /* Brand colors */
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --accent: #B22222;
    --accent-hover: #8B0000;
    --accent-gold: #FFC456;
    --accent-green: #27ae60;

    /* Legacy aliases (kept for backwards compat, avoid in new code) */
    --secondary: #B22222;       /* was #FF0000, now same as --accent */
    --accent-light: #FFC456;    /* was #FF0000, now same as --accent-gold */

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9F9F9;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #dee2e6;
    --gray-500: #777777;
    --gray-700: #495057;
    --gray-900: #212529;
    --text: #333333;
    --text-light: #6b6b6b;      /* was #777777 — darker for WCAG AA on light bg */
    --text-muted: #999999;
    --text-on-dark: rgba(255,255,255,0.92);   /* a11y-safe body text on dark */
    --text-on-dark-muted: rgba(255,255,255,0.78);  /* only for 16px+ on dark */

    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #B22222 0%, #8B0000 100%);

    /* Surfaces */
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;

    /* Typography scale */
    --fs-hero: 48px;
    --fs-h1: 40px;
    --fs-h2: 32px;
    --fs-h3: 22px;
    --fs-h4: 18px;
    --fs-h5: 16px;
    --fs-body: 16px;
    --fs-sm: 14px;
    --fs-xs: 13px;
    --fs-2xs: 12px;
    --fs-big-number: 36px;
    --fs-big-number-hero: 56px;

    /* Base */
    --font: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --container: 1140px;

    /* Focus (a11y — WCAG 2.4.7) */
    --focus-ring: 2px solid var(--accent);
    --focus-offset: 3px;
}

/* ========== Global focus-visible (a11y) ========== */
*:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details > summary:focus-visible,
[tabindex]:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
    border-radius: var(--radius-sm);
}

/* Card + link-card focus */
.service-card:focus-visible,
.canton-card:focus-visible,
.blog-card:focus-visible,
.blog-featured:focus-visible,
.team-member:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 4px;
}

/* ========== Reset ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    /* Modern text rendering (2026) — better line breaks and paragraph balance */
    text-wrap: pretty;
}

/* Balanced line breaks on headings (prevents orphan words) */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.page-banner h1,
.blog-featured-body h2,
.calc-step h2 {
    text-wrap: balance;
}

/* Respect user preferences (a11y) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body.nav-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(178,34,34,0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-cta {
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
}
.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========== Top Bar ========== */
.top-bar {
    background: var(--accent);
    padding: 6px 0;
    font-size: 13px;
    text-align: center;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
}

.top-bar-btn {
    color: var(--white);
    padding: 5px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}
.top-bar-btn:hover,
.top-bar-btn.active {
    color: var(--white);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.82);
}

/* ========== Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.site-logo img {
    height: 45px;
    width: auto;
}

/* ========== Navigation ========== */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item .nav-link,
.nav-item .nav-link-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: none;
    border-radius: 8px;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}

.nav-item .nav-link:hover,
.nav-item .nav-link-trigger:hover,
.nav-item.active .nav-link,
.nav-item .nav-link-trigger[aria-expanded="true"] {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-item .nav-link i,
.nav-item .nav-link-trigger i {
    font-size: 10px;
    opacity: 0.5;
}

/* Mobile menu button-triggers inherit same styling as <a> */
.mobile-menu li > button.nav-link-trigger {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-family: inherit;
    cursor: pointer;
    color: inherit;
    padding: inherit;
    font-size: inherit;
    font-weight: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.submenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.submenu li a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.nav-item.has-submenu {
    position: relative;
}

/* Language switcher */
.lang-flag {
    width: 16px;
    height: 11px;
    border-radius: 2px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    padding: 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-nav-overlay.open .mobile-nav-content {
    transform: translateX(0);
}

.mobile-logo img {
    height: 40px;
    margin-bottom: 30px;
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--gray-200);
}

.mobile-submenu {
    padding-left: 20px;
    display: none;
}

.mobile-menu .has-submenu.open .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a0a08;
}

.hero .container {
    width: 100%;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg iframe,
.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    border: none;
}

/* Hide iframe text bleed — poster image shows as fallback */
.hero-video-bg iframe[src*="vimeo"] {
    color: transparent;
    background: transparent;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(60, 20, 15, 0.55) 0%, rgba(50, 15, 10, 0.35) 45%, rgba(30, 10, 5, 0.12) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    color: var(--white);
    padding: 16px 0;
    text-align: left;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(34px, 5.2vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 22px;
    max-width: 540px;
}

/* ========== Hero editorial treatment (kicker · accent · feature pills) ========== */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-kicker-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Accent words inside the H1 */
.hero-title .hero-accent {
    color: var(--accent);
    font-weight: 700;
}

/* Hero primary CTA — shadow + arrow */
.btn-hero {
    padding: 17px 30px !important;
    font-size: 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(178,34,34,0.35), 0 4px 10px rgba(0,0,0,0.2);
    transition: box-shadow 0.22s ease, transform 0.18s ease, background 0.22s ease;
}

.btn-hero:hover {
    box-shadow: 0 14px 40px rgba(178,34,34,0.45), 0 6px 14px rgba(0,0,0,0.25);
    transform: translateY(-1px);
}

.btn-hero i {
    font-size: 14px;
    transition: transform 0.22s ease;
}

.btn-hero:hover i {
    transform: translateX(4px);
}

/* 3 inline feature pills below the CTA */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    gap: clamp(20px, 3vw, 48px);
    flex-wrap: wrap;
    align-items: center;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: clamp(20px, 3vw, 48px);
    border-right: 1px solid rgba(255,255,255,0.18);
}

.hero-features li:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-feat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    background: rgba(255,255,255,0.04);
}

.hero-feat-text {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}

/* ========== Sections ========== */
section {
    padding: 80px 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.section-dark .section-desc {
    color: rgba(255,255,255,0.8);
}

/* ========== Services Grid (Homepage) ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== Stats Section ========== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== Two Column Layout ========== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.two-col-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.two-col-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.two-col-content ul {
    margin-bottom: 24px;
}

.two-col-content ul li {
    padding: 6px 0;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
}

.two-col-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* ========== Advantages List ========== */
.advantages-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.1);
}

.advantage-item i {
    color: var(--accent-green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* ========== Partner Logos — split white/red layout ========== */
.partner-logos {
    background: #fff;
    padding: 0;
    overflow: hidden;
}

.partner-logos-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.2fr);
    align-items: stretch;
    min-height: 220px;
}

.partner-logos-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px clamp(24px, 6vw, 80px) 60px clamp(24px, 8vw, 120px);
    background: #fff;
}

.partner-logos-title {
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #d5d5d5;
    text-wrap: balance;
}

.partner-logos-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.partner-logos-right {
    background: var(--accent);
    display: flex;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.partner-logos-track {
    display: flex;
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    width: max-content;
    animation: partner-scroll 60s linear infinite;
}

.partner-logos-right:hover .partner-logos-track {
    animation-play-state: paused;
}

.partner-logos-track img {
    height: 38px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.partner-logos-track img:hover {
    opacity: 1;
}

@keyframes partner-scroll {
    from { transform: translateX(0); }
    /* -50% because the set is rendered twice; when first set fully leaves,
       the second set is exactly in the original position → seamless loop */
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .partner-logos-track {
        animation: none;
    }
}

@media (max-width: 900px) {
    .partner-logos-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .partner-logos-left {
        padding: 40px 24px;
        text-align: center;
    }
    .partner-logos-title {
        border-bottom: none;
        padding-bottom: 0;
    }
    .partner-logos-title br { display: none; }
    .partner-logos-right {
        padding: 32px 0;
    }
    .partner-logos-track {
        gap: 40px;
        animation-duration: 45s;
    }
    .partner-logos-track img {
        height: 32px;
    }
}

/* ========== Subsidies Section ========== */
.subsidies-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.subsidies-content ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid var(--gray-200);
}

.subsidies-content ul li strong {
    color: var(--primary);
}

/* ========== About Features ========== */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.about-feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.about-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== Page Banner ========== */
.page-banner {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 56px 0 48px;
    text-align: left;
    position: relative;
}

.page-banner-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 46, 0.75);
}

.page-banner-image .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 820px;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.82);
}

.breadcrumb a {
    color: var(--accent-light);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ========== Contact Two Column ========== */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info-side > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.contact-detail-label {
    font-weight: 600;
    min-width: 100px;
    color: var(--text);
}

.contact-detail-item a {
    color: var(--accent);
}

.contact-hours {
    margin-bottom: 30px;
}

.contact-hours h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-hours table td {
    padding: 6px 16px 6px 0;
    font-size: 14px;
}

.contact-hours table td:first-child {
    font-weight: 600;
    color: var(--text);
}

.contact-social h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-social .footer-social a {
    background: rgba(178,34,34,0.1);
    color: var(--accent);
}

.contact-social .footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.contact-form-side {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-form-side h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-side h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-form-side > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .contact-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========== Product Slider ========== */
.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
}

.product-spec {
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.product-spec:last-child {
    border-right: none;
}

.product-spec-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.product-spec-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ========== Feature Cards ========== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
}

.feature-card h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== Product Specs (legacy) ========== */
.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.spec-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.spec-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.spec-label {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .product-slider {
        grid-template-columns: 1fr;
    }
    .product-card-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Contact Page ========== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-item {
    text-align: center;
    padding: 30px 20px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 16px;
}

.contact-info-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.work-hours {
    margin-top: 40px;
}

.work-hours table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.work-hours td {
    padding: 8px 16px;
    font-size: 14px;
}

.work-hours td:first-child {
    font-weight: 600;
}

/* ========== Form Styles ========== */
.section-form {
    background: #f5f3ef;
    padding: 90px 0;
}

/* Two-column split: trust column + form card */
.form-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

/* ---------- LEFT: trust column ---------- */
.form-trust {
    padding-top: 8px;
}

.form-trust-title {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--text-dark);
    text-wrap: balance;
}

.form-trust-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 28px;
    max-width: 480px;
}

.form-trust-image {
    margin: 0 0 32px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.form-trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3-step process */
.form-trust-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 18px;
}

.form-trust-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
}

.form-trust-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(178,34,34,0.25);
}

.form-trust-step-body strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.form-trust-step-body span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Testimonial block */
.form-trust-quote {
    margin: 0 0 28px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.form-trust-stars {
    display: flex;
    gap: 3px;
    color: #e0a800;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-trust-quote blockquote {
    margin: 0 0 10px;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.form-trust-quote figcaption {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Trust badges row */
.form-trust-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.form-trust-badges li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.form-trust-badges li i {
    color: var(--accent);
    font-size: 16px;
    width: 22px;
    text-align: center;
}

.form-trust-badges li img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

/* ---------- RIGHT: form card ---------- */
.lead-form {
    background: #fff;
    padding: 44px 44px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.lead-form-kicker {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 6px;
}

.lead-form-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 28px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.form-group label .req {
    color: var(--accent);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9d6d1;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    background: #fafaf8;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a89f94;
    opacity: 1;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #b8b3ac;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178,34,34,0.12);
    background: #fff;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 10px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Submit button — warm, confident, trustworthy */
.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(178,34,34,0.25);
    margin-top: 8px;
}

.btn-submit:hover {
    background: #9a1e1e;
    box-shadow: 0 6px 18px rgba(178,34,34,0.3);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(178,34,34,0.25);
}

.btn-submit i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

.lead-form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 18px 0 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-light);
}

.lead-form-note i {
    color: var(--accent);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
}

.form-message {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

@media (max-width: 900px) {
    .section-form { padding: 60px 0; }
    .form-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-trust-image { aspect-ratio: 16 / 10; }
    .lead-form { padding: 32px 24px 28px; }
    .lead-form-title { font-size: 22px; margin-bottom: 22px; }
    .form-trust-badges { grid-template-columns: 1fr; gap: 12px; }
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== Blog ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--text);
}
.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== Entreprise Page ========== */
.enterprise-services {
    display: grid;
    gap: 40px;
}

.enterprise-service {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

.enterprise-service-icon {
    width: 64px;
    height: 64px;
}

.enterprise-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.enterprise-service h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.enterprise-service p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========== Carousel (Testimonials) ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-card .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-card .role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* ========== Swiss Solar Badge ========== */
.swiss-solar-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.swiss-solar-badge img {
    height: 40px;
}

.swiss-solar-badge span {
    font-size: 13px;
    font-weight: 500;
}

/* ========== Savings Highlight ========== */
.savings-highlight {
    text-align: center;
    padding: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
}

.savings-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.85;
}

.savings-number {
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-gold);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.savings-number span {
    font-size: 48px;
}

.savings-image {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin-top: 16px;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.86);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 16px;
}

.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.86);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    font-size: 16px;
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.footer-contact span {
    font-size: 14px;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .main-nav,
    .btn-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero {
        min-height: 40vh;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

/* ========== Blog Content (WYSIWYG) ========== */
.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.blog-content h2 {
    font-size: 28px;
    margin: 32px 0 16px;
}

.blog-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.blog-content ul,
.blog-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-content a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blog-content table th,
.blog-content table td {
    padding: 12px;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.blog-content table th {
    background: var(--gray-50);
    font-weight: 600;
}

/* ========== Page Content (WYSIWYG) ========== */
.page-content {
    font-size: 16px;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 28px;
    margin: 32px 0 16px;
}

.page-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.page-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.page-content ul,
.page-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }

/* ========== Utility ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ==============================================================
   NEW ELEMENTS — Homepage rebuild per IMPLEMENTATION-PLAN.md
   ============================================================== */

/* Hero CTAs wrapper + secondary button + tagline */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 24px;
}

/* Secondary button — outline variant, same pill shape as .btn */
.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Outline-accent variant — use on light backgrounds: class="btn btn-secondary btn-outline-accent" */
.btn-outline-accent {
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.hero-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 28px;
    letter-spacing: 0.3px;
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.trust-badge img {
    height: 32px;
    width: auto;
}

.trust-badge i {
    color: var(--accent);
    font-size: 18px;
}

/* Differentiator triad cards (reuses services-grid structure) */
.diff-grid {
    grid-template-columns: repeat(3, 1fr);
}

.diff-card {
    text-align: left;
    padding: 36px 28px;
}

.diff-card .service-card-icon {
    margin-bottom: 20px;
}

.diff-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.diff-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Service card link arrow */
.service-card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.service-card:hover .service-card-link {
    color: var(--accent-hover);
}

/* Canton chips (subvention section) */
.canton-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.canton-chip {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.canton-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* 5-Step Process */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    padding: 32px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(178,34,34,0.3);
}

.process-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 3px solid var(--accent);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 4px;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 13px;
}

/* Responsive — mobile breakpoints */
@media (max-width: 992px) {
    .diff-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-bar-inner {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .diff-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }

    .trust-bar {
        padding: 20px 0;
    }

    .trust-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-kicker {
        font-size: 11px;
        padding: 6px 14px 6px 6px;
        margin-bottom: 20px;
    }
    .hero-kicker-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .hero-features {
        margin-top: 28px;
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-features li {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding-bottom: 14px;
        width: 100%;
    }
    .hero-features li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .hero-feat-text br { display: none; }
    .hero-feat-text { font-size: 13px; }
    .btn-hero { font-size: 15px !important; padding: 14px 24px !important; }
    .hero-title br { display: none; }
}

/* ==============================================================
   ISOLATION PAGE elements (swisspor story, product detail cards,
   lambda ranking viz, FAQ) — per IMPLEMENTATION-PLAN.md Sprint 1
   ============================================================== */

/* swisspor story badges */
.swisspor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.swisspor-badge i {
    color: var(--accent-gold);
    font-size: 14px;
}

/* Product detail cards (richer than service cards) */
.product-detail-card {
    position: relative;
    text-align: left;
    padding: 32px 24px;
    border-top: 3px solid var(--accent);
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-detail-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-tagline {
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.5;
}

.product-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.product-specs-list li:last-child {
    border-bottom: none;
}

.product-usage {
    padding: 12px;
    background: var(--gray-50);
    border-left: 3px solid var(--accent);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.product-pdf-link:hover {
    color: var(--accent-hover);
}

.product-pdf-link i {
    font-size: 16px;
}

/* Lambda ranking visual */
.lambda-ranking {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lambda-bar {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    border-left: 6px solid transparent;
}

.lambda-bar-best {
    border-left-color: var(--accent-green);
    background: linear-gradient(to right, rgba(39,174,96,0.05), transparent);
}

.lambda-bar-mid {
    border-left-color: var(--accent-gold);
    background: linear-gradient(to right, rgba(255,196,86,0.05), transparent);
}

.lambda-bar-standard {
    border-left-color: var(--gray-500);
    background: linear-gradient(to right, rgba(119,119,119,0.04), transparent);
}

.lambda-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}

.lambda-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    text-align: right;
}

.lambda-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ accordion (using native <details>) */
.faq-list {
    max-width: 820px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item[open] {
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    list-style: none;
    position: relative;
    padding-right: 50px;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
    background: var(--gray-50);
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* Responsive for isolation page */
@media (max-width: 768px) {
    .lambda-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    .lambda-value {
        text-align: center;
        font-size: 26px;
    }
    .lambda-badge {
        margin: 0 auto;
    }
    .product-detail-card {
        padding: 28px 20px;
    }
    .faq-item summary {
        font-size: 15px;
        padding: 16px 20px;
        padding-right: 44px;
    }
}

/* ==============================================================
   CALCULATOR — /concevoir-mon-projet-solaire (Sprint 2)
   ============================================================== */

.calc-section {
    padding: 60px 0 80px;
    background: var(--gray-50);
}

.calc-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Progress bar */
.calc-progress {
    margin-bottom: 40px;
}

.calc-progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.calc-progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    transition: width 0.4s ease;
}

.calc-progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.calc-progress-steps span.active {
    color: var(--accent);
    font-weight: 600;
}

/* Steps */
.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.calc-step h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 8px;
}

.calc-intro {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 15px;
}

/* Form elements */
.calc-form .form-group {
    margin-bottom: 22px;
}

.calc-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.calc-form input[type="text"],
.calc-form input[type="tel"],
.calc-form input[type="email"],
.calc-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
}

.calc-form input:focus,
.calc-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178,34,34,0.1);
}

.form-hint {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
}

.calc-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio / Checkbox grids */
.calc-radio-grid,
.calc-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.calc-radio-grid-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 280px;
}

.calc-radio,
.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
    margin-bottom: 0;
    font-weight: 500;
}

.calc-radio:hover,
.calc-checkbox:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}

.calc-radio input[type="radio"],
.calc-checkbox input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.calc-radio:has(input:checked),
.calc-checkbox:has(input:checked) {
    border-color: var(--accent);
    background: rgba(178,34,34,0.04);
    color: var(--primary);
}

.calc-consent {
    background: var(--gray-50);
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

.calc-consent .calc-checkbox {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    align-items: flex-start;
}

/* Slider styling */
.calc-form input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    appearance: none;
    outline: none;
}

.calc-form input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.15s ease;
}

.calc-form input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-form input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.calc-slider-val {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    background: var(--accent);
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* Actions (buttons) */
.calc-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.calc-actions .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--gray-300);
}

.calc-actions .btn-secondary:hover {
    background: var(--gray-100);
    color: var(--primary);
    border-color: var(--gray-500);
    transform: none;
}

/* Preview (on step 3) */
.calc-preview {
    background: linear-gradient(135deg, rgba(178,34,34,0.05), rgba(255,196,86,0.05));
    border: 1px solid rgba(178,34,34,0.2);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}

.calc-preview h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 16px;
}

.calc-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.calc-metric {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.calc-metric-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.calc-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Results (after submit) */
.calc-results {
    text-align: left;
}

.calc-results-header {
    text-align: center;
    padding: 20px 0 32px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.calc-results-header h2 {
    margin: 12px 0 8px;
    color: var(--primary);
}

.calc-results-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-metric-big {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-metric-big span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-metric-big strong {
    font-size: 26px;
    color: var(--primary);
    font-weight: 700;
}

.calc-metric-big em {
    font-size: 12px;
    color: var(--text-light);
    font-style: normal;
    line-height: 1.5;
}

.calc-metric-accent {
    background: linear-gradient(135deg, rgba(178,34,34,0.04), rgba(178,34,34,0.02));
    border-color: rgba(178,34,34,0.2);
    border-left: 4px solid var(--accent);
}

.calc-metric-accent strong {
    color: var(--accent);
}

.calc-results-disclaimer {
    background: var(--gray-50);
    border-left: 3px solid var(--accent-gold);
    padding: 16px 20px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    border-radius: var(--radius-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .calc-wrapper { padding: 24px 20px; }
    .calc-form .form-row { grid-template-columns: 1fr; }
    .calc-radio-grid,
    .calc-checkbox-grid { grid-template-columns: 1fr; }
    .calc-preview-grid,
    .calc-results-grid { grid-template-columns: 1fr; }
    .calc-actions { flex-direction: column-reverse; }
    .calc-actions .btn { width: 100%; }
    .calc-step h2 { font-size: 22px; }
    .calc-metric-big strong { font-size: 22px; }
}

/* ==============================================================
   PANNEAUX PAGE — comparison table + KPI grid
   ============================================================== */

.compare-table-wrap {
    max-width: 900px;
    margin: 40px auto 0;
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 14px;
}

.compare-table thead {
    background: var(--gradient-dark);
}

.compare-table thead th {
    padding: 18px 20px;
    color: var(--white);
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-table thead th:first-child {
    border-top-left-radius: var(--radius);
}

.compare-table thead th:last-child {
    border-top-right-radius: var(--radius);
}

.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:nth-child(even) {
    background: var(--gray-50);
}

.compare-table tbody td:first-child {
    font-weight: 500;
    color: var(--primary);
}

.compare-table td.c-best {
    color: var(--accent);
    font-weight: 600;
    position: relative;
}

.compare-table td.c-best::before {
    content: '✓';
    display: inline-block;
    margin-right: 6px;
    font-size: 13px;
    color: var(--accent-green);
    font-weight: 700;
}

/* KPI grid (benefits with numbers) */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.kpi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.kpi-card:hover {
    background: rgba(178,34,34,0.08);
    border-color: rgba(178,34,34,0.3);
    transform: translateY(-3px);
}

.kpi-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.kpi-label {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    .compare-table {
        font-size: 12px;
    }
    .compare-table thead th,
    .compare-table tbody td {
        padding: 10px 12px;
    }
}

/* ==============================================================
   PAC PAGE — R290 story (GWP bars), cost comparison, KPI light
   ============================================================== */

/* GWP comparison bars */
.gwp-compare {
    max-width: 820px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gwp-bar {
    display: grid;
    grid-template-columns: 220px 1fr 110px;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border-left: 4px solid transparent;
}

.gwp-bar-best { border-left-color: var(--accent-green); }
.gwp-bar-mid { border-left-color: var(--accent-gold); }
.gwp-bar-worst { border-left-color: var(--accent); }

.gwp-label {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.gwp-visual {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
}

.gwp-bar-best .gwp-fill {
    background: var(--accent-green);
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: width 0.8s ease;
}

.gwp-bar-mid .gwp-fill {
    background: var(--accent-gold);
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: width 0.8s ease;
}

.gwp-bar-worst .gwp-fill {
    background: var(--accent);
    height: 100%;
    display: block;
    border-radius: 20px;
    transition: width 0.8s ease;
}

.gwp-value {
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    font-variant-numeric: tabular-nums;
}

.gwp-bar-best .gwp-value { color: var(--accent-green); }
.gwp-bar-worst .gwp-value { color: var(--accent); }

/* R290 benefits grid */
.r290-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.r290-benefit {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
}

.r290-benefit i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.r290-benefit h3 {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.r290-benefit p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Cost comparison grid */
.cost-compare-grid {
    max-width: 820px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cost-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
}

.cost-card-good {
    background: rgba(39,174,96,0.1);
    border-color: rgba(39,174,96,0.3);
    border-left: 4px solid var(--accent-green);
    grid-template-columns: 280px 1fr auto;
    grid-template-rows: auto auto;
}

.cost-card-mid {
    border-left: 4px solid var(--accent-gold);
}

.cost-card-bad {
    border-left: 4px solid var(--accent);
}

.cost-label {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.cost-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: right;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.cost-card-good .cost-value { color: var(--accent-green); }
.cost-card-bad .cost-value { color: var(--accent); }

.cost-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
}

.cost-bar span {
    display: block;
    height: 100%;
    border-radius: 20px;
    transition: width 0.8s ease;
}

.cost-card-bad .cost-bar span { background: var(--accent); }
.cost-card-mid .cost-bar span { background: var(--accent-gold); }
.cost-card-good .cost-bar span { background: var(--accent-green); }

.cost-saving {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 14px;
    color: var(--accent-green);
    font-weight: 700;
    padding-top: 4px;
    border-top: 1px dashed rgba(39,174,96,0.3);
    margin-top: 8px;
}

/* KPI grid — light version for white-background sections */
.kpi-grid-light .kpi-card {
    background: var(--gray-50);
    border-color: var(--gray-200);
    color: var(--text);
}

.kpi-grid-light .kpi-card:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.kpi-grid-light .kpi-value {
    color: var(--accent);
}

.kpi-grid-light .kpi-label {
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .gwp-bar,
    .cost-card {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    .gwp-value,
    .cost-value {
        text-align: center;
        font-size: 24px;
    }
    .r290-benefits {
        grid-template-columns: 1fr;
    }
    .cost-card-good .cost-saving {
        margin-top: 10px;
    }
}

/* ==============================================================
   BATTERY PAGE — LFP chemistry comparison + sizing grid
   ============================================================== */

/* LFP vs NMC comparison */
.compare-chem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.chem-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.chem-card-good {
    border-left: 4px solid var(--accent-green);
    background: linear-gradient(135deg, rgba(39,174,96,0.08), rgba(255,255,255,0.02));
}

.chem-card-bad {
    border-left: 4px solid var(--accent);
    background: linear-gradient(135deg, rgba(178,34,34,0.08), rgba(255,255,255,0.02));
    opacity: 0.9;
}

.chem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chem-header h3 {
    font-size: 18px;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.chem-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.chem-tag-good {
    background: var(--accent-green);
    color: var(--white);
}

.chem-tag-bad {
    background: rgba(178,34,34,0.5);
    color: var(--white);
}

.chem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chem-list li {
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chem-list li:last-child {
    border-bottom: none;
}

.chem-list li i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
}

.chem-card-good .chem-list li i {
    color: var(--accent-green);
}

/* Sizing Guide grid */
.sizing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.sizing-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.sizing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sizing-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(178,34,34,0.05), rgba(255,255,255,1));
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.sizing-card-featured::before {
    content: 'Le plus courant';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sizing-consumption {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.sizing-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.4;
}

.sizing-battery {
    font-size: 13px;
    color: var(--text);
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.sizing-battery strong {
    display: block;
    font-size: 22px;
    color: var(--accent);
    font-weight: 700;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .compare-chem {
        grid-template-columns: 1fr;
    }
    .sizing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sizing-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   SUBVENTIONS — hub grid + 3-layer cards + canton example calc
   ============================================================== */

/* 3-layer subvention cards */
.subvention-layers {
    grid-template-columns: repeat(3, 1fr);
}

.subvention-layer-card {
    text-align: left;
    padding: 34px 28px;
    position: relative;
    border-top: 3px solid var(--gray-200);
}

.subvention-layer-card .layer-num {
    position: absolute;
    top: -16px;
    left: 24px;
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.subvention-layer-card h3 {
    font-size: 20px;
    margin-top: 6px;
    margin-bottom: 6px;
    color: var(--primary);
}

.layer-tagline {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.5;
}

.layer-amount {
    background: var(--gray-50);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    border-left: 3px solid var(--accent);
}

.layer-amount span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.layer-amount strong {
    display: block;
    font-size: 20px;
    color: var(--accent);
    font-weight: 700;
}

.layer-card-featured {
    border-top-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    position: relative;
}

/* Canton grid */
.canton-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.canton-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: left;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text);
}

.canton-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.canton-card-flag {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
    background: #fff;
}

.canton-card-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.canton-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 0;
    padding-right: 60px;
}

.canton-card-capital {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.canton-card-program {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
    margin: 6px 0 4px;
}

.canton-card-amount {
    padding: 12px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin: 6px 0 10px;
}

.canton-card-amount span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.canton-card-amount strong {
    display: block;
    font-size: 16px;
    color: var(--accent);
    font-weight: 700;
}

.canton-card-cta {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

.canton-card:hover .canton-card-cta {
    color: var(--accent-hover);
}

/* Example calculation block (canton pages) */
.example-calc {
    max-width: 720px;
    margin: 40px auto 0;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.example-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 14px 22px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.example-row:last-child {
    border-bottom: none;
}

.example-row-head {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.82);
    padding: 12px 22px;
}

.example-row strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.example-row-sub {
    padding-left: 34px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.example-row-sub strong {
    color: var(--accent-green);
    font-size: 15px;
}

.example-row-total {
    background: rgba(178,34,34,0.15);
    border-bottom: none !important;
    border-top: 2px solid var(--accent);
}

.example-row-total strong {
    color: var(--accent);
    font-size: 20px;
}

.example-row-reduction {
    background: rgba(39,174,96,0.15);
    border-top: 1px solid rgba(39,174,96,0.3);
}

.example-row-reduction strong {
    color: var(--accent-green);
    font-size: 22px;
}

/* Responsive */
@media (max-width: 1100px) {
    .canton-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .canton-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .subvention-layers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .canton-grid {
        grid-template-columns: 1fr;
    }
    .example-row {
        padding: 12px 16px;
    }
    .example-row-sub {
        padding-left: 22px;
    }
}

/* ==============================================================
   POURQUOI ABELARTI — pillars, not-claims, commitments, team
   ============================================================== */

/* Pillar blocks (alternating two-col) */
.pillar-block {
    margin-bottom: 60px;
    align-items: center;
    gap: 50px;
}

.pillar-block:last-child {
    margin-bottom: 0;
}

.pillar-block-reverse .two-col-image {
    order: 1;
}

.pillar-num {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    background: rgba(178,34,34,0.1);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.pillar-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 16px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.brand-chip {
    display: inline-block;
    padding: 7px 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

/* "Ce que nous ne disons pas" */
.not-claims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 40px auto 0;
}

.not-claim {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--radius);
    padding: 28px 26px;
}

.not-claim h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.not-claim-label {
    display: block;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.not-claim p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 12px;
}

.not-claim p:last-child {
    margin-bottom: 0;
}

.not-claim em {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
}

/* Commitments grid */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 40px auto 0;
}

.commitment {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: left;
    transition: var(--transition);
}

.commitment:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.commitment i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.commitment h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
}

.commitment p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.team-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.team-member h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .not-claims-grid,
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pillar-block-reverse .two-col-image {
        order: 0;
    }
}

@media (max-width: 640px) {
    .not-claims-grid,
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   VS COMPARISON PAGES — winners grids, scenarios, badges
   ============================================================== */

.vs-winners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1080px;
    margin: 40px auto 0;
}

.vs-winner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.vs-winner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.vs-winner-header {
    padding: 22px 24px;
    color: var(--white);
    text-align: center;
}

.vs-winner-them {
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
}

.vs-winner-us {
    background: var(--gradient-accent);
}

.vs-badge {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.vs-badge strong {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.vs-list {
    list-style: none;
    padding: 26px 28px;
    margin: 0;
}

.vs-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-200);
}

.vs-list li:last-child {
    border-bottom: none;
}

.vs-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.vs-list strong {
    color: var(--primary);
}

/* Scenarios grid */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 40px auto 0;
}

.scenario {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    border-left: 4px solid var(--gray-300);
    transition: var(--transition);
}

.scenario:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.scenario-us {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, rgba(178,34,34,0.03), var(--white));
}

.scenario-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 22px;
}

.scenario-us .scenario-icon {
    background: rgba(178,34,34,0.1);
    color: var(--accent);
}

.scenario h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.scenario-winner {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.scenario-us .scenario-winner {
    color: var(--accent);
}

.scenario p:last-child {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .vs-winners-grid,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================================================
   BENTO GRID — Apple/Linear-style varied-size cell layout (2026)
   ============================================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 14px;
    max-width: 1140px;
    margin: 40px auto 0;
    container-type: inline-size;
}

.bento-cell {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bento-cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--accent) 30%, var(--gray-200));
}

.bento-cell-hero {
    grid-column: span 8;
    grid-row: span 2;
    padding: 40px 36px;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--accent) 4%, var(--white)) 0%,
        var(--white) 60%);
}

.bento-cell-stat {
    grid-column: span 4;
    grid-row: span 1;
    text-align: left;
}

.bento-cell-wide {
    grid-column: span 12;
    grid-row: span 1;
    min-height: 180px;
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
}

.bento-cell-narrow {
    grid-column: span 4;
}

.bento-cell-feature {
    grid-column: span 8;
    grid-row: span 1;
    min-height: 180px;
}

.bento-cell-accent {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
}

.bento-cell-dark {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.bento-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin: 0;
}

.bento-cell-dark .bento-eyebrow,
.bento-cell-accent .bento-eyebrow,
.bento-cell-wide .bento-eyebrow {
    color: var(--accent-gold);
}

.bento-title {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
    color: inherit;
    text-wrap: balance;
}

.bento-cell-hero .bento-title {
    font-size: clamp(24px, 3vw, 34px);
}

.bento-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.bento-cell-dark .bento-text,
.bento-cell-accent .bento-text,
.bento-cell-wide .bento-text {
    color: rgba(255,255,255,0.88);
}

.bento-number {
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    margin: 0;
}

.bento-cell-dark .bento-number,
.bento-cell-accent .bento-number {
    color: var(--white);
}

.bento-number-label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.bento-cell-dark .bento-number-label,
.bento-cell-accent .bento-number-label {
    color: rgba(255,255,255,0.8);
}

.bento-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    opacity: 0.15;
    color: currentColor;
    pointer-events: none;
}

.bento-cell-accent .bento-icon,
.bento-cell-dark .bento-icon {
    opacity: 0.25;
}

a.bento-cell {
    color: inherit;
    text-decoration: none;
}

a.bento-cell:hover {
    border-color: var(--accent);
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
}

.bento-cell-dark .bento-cta,
.bento-cell-wide .bento-cta {
    color: var(--accent-gold);
}

.bento-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0 0;
}

.bento-chips span {
    display: inline-block;
    padding: 5px 11px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}

.bento-cell-dark .bento-chips span,
.bento-cell-accent .bento-chips span,
.bento-cell-wide .bento-chips span {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

/* Responsive — progressively collapse the bento */
@media (max-width: 960px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-cell-hero {
        grid-column: span 6;
        grid-row: span 1;
    }
    .bento-cell-stat,
    .bento-cell-narrow {
        grid-column: span 3;
    }
    .bento-cell-feature {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-cell-hero,
    .bento-cell-stat,
    .bento-cell-wide,
    .bento-cell-narrow,
    .bento-cell-feature {
        grid-column: span 1;
    }
    .bento-cell-hero {
        padding: 28px 24px;
    }
    .bento-number {
        font-size: 56px;
    }
}

/* ==============================================================
   POURQUOI ABELARTI — simplified, Swiss-confidence layout
   ============================================================== */

.pq-reasons {
    padding: 80px 0;
}

.pq-reason {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto 80px;
}

.pq-reason:last-child {
    margin-bottom: 0;
}

.pq-reason-reverse .pq-reason-image {
    order: 2;
}

.pq-reason-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.pq-reason-body h3 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    text-wrap: balance;
}

.pq-reason-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

/* Customer quote section */
.pq-quote-section {
    padding: 100px 0;
}

.pq-quote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.pq-quote-mark {
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 24px;
}

.pq-quote blockquote {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.45;
    color: var(--primary);
    font-weight: 400;
    margin: 0 0 28px;
    letter-spacing: -0.005em;
    font-style: italic;
    text-wrap: balance;
}

.pq-quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.pq-quote-author strong {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

.pq-quote-author span {
    font-size: 14px;
    color: var(--text-light);
}

/* Commitments — simple two-column */
.pq-commitments {
    padding: 80px 0;
}

.pq-commitments-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}

.pq-commitments-text {
    position: sticky;
    top: 100px;
}

.pq-commitments-text .section-label,
.pq-commitments-text .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.pq-commitments-text .section-title {
    margin-bottom: 16px;
}

.pq-commitments-text p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.pq-commitments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pq-commitments-list li {
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.pq-commitments-list li:first-child {
    padding-top: 0;
}

.pq-commitments-list li:last-child {
    border-bottom: none;
}

.pq-commitments-list strong {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

/* Deeper (comparison links) */
.pq-deeper {
    padding: 80px 0;
}

.pq-deeper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 40px auto 0;
}

.pq-deeper-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pq-deeper-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.pq-deeper-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.pq-deeper-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.pq-deeper-card .service-card-link {
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .pq-reason,
    .pq-commitments-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .pq-reason-reverse .pq-reason-image {
        order: 0;
    }
    .pq-reason-image img {
        height: 260px;
    }
    .pq-commitments-text {
        position: static;
    }
    .pq-deeper-grid {
        grid-template-columns: 1fr;
    }
    .pq-reasons,
    .pq-commitments,
    .pq-deeper {
        padding: 60px 0;
    }
    .pq-quote-section {
        padding: 70px 0;
    }
}

/* ==============================================================
   ABOUT — simplified, Swiss-confidence layout
   ============================================================== */

.about-story {
    padding: 80px 0;
}

.about-story-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-story-wrap .section-title {
    margin-bottom: 20px;
}

.about-story-wrap p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
    text-align: left;
}

.about-story-wrap p:last-child {
    margin-bottom: 0;
}

/* Three numbers — clean stat row, no cards */
.about-numbers {
    padding: 80px 0;
}

.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.about-number {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-number-value {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.about-number-label {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

/* Visit us — two column, readable */
.about-visit {
    padding: 80px 0;
}

.about-visit-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.about-visit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.about-visit-details {
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.about-visit-details > div {
    margin: 0;
}

.about-visit-details dt {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.about-visit-details dd {
    font-size: 15px;
    color: var(--primary);
    line-height: 1.5;
    margin: 0;
}

.about-visit-details dd a {
    color: var(--accent);
    text-decoration: none;
}

.about-visit-details dd a:hover {
    text-decoration: underline;
}

.about-visit-image {
    aspect-ratio: 1 / 1;
    max-height: 520px;
}

.about-visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    -webkit-clip-path: url(#shapeBlob);
            clip-path: url(#shapeBlob);
}

@media (max-width: 900px) {
    .about-numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-visit-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-visit-image {
        aspect-ratio: 4 / 3;
        max-height: 300px;
    }
    .about-story,
    .about-numbers,
    .about-visit {
        padding: 60px 0;
    }
    .about-visit-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==============================================================
   SERVICE PAGE — shared simplified pattern (.svc-*)
   ============================================================== */

.svc-context {
    padding: 80px 0;
}

.svc-context-wrap {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.svc-context-wrap p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin: 16px 0 0;
    text-align: left;
}

/* Products — image + prose side by side */
.svc-products {
    padding: 80px 0;
}

/* ========================================
   Panel showcase — premium product presentation (centered in container)
   Image column stretches to match content vertical height.
   ======================================== */
.panel-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 56px);
    align-items: stretch;
    padding: 20px 0;
    margin-top: 40px;
}

.panel-showcase-image {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    min-height: 480px;
    /* align-items: stretch on parent → image column fills grid row height */
}

.panel-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.panel-showcase-body {
    padding: 20px 0;
    min-width: 0;
}

.panel-showcase-body {
    max-width: 560px;
}

.panel-showcase-kicker {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 12px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
    width: fit-content;
}

.panel-showcase-title {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin: 0 0 20px;
    text-wrap: balance;
}

.panel-showcase-accent {
    color: var(--accent);
}

.panel-showcase-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 32px;
    max-width: 480px;
}

/* 2x2 stats grid */
.panel-showcase-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    margin: 0 0 32px;
    padding: 28px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.panel-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.panel-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(178,34,34,0.22);
}

.panel-stat-body strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.25;
}

.panel-stat-body span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Swiss quality card */
.panel-showcase-swiss {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #f3f3f0;
    border-radius: 12px;
}

.panel-swiss-flag {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
}

.panel-showcase-swiss > div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.panel-showcase-swiss > div p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 900px) {
    .panel-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
        margin-top: 24px;
    }
    .panel-showcase-image {
        min-height: auto;
        height: clamp(260px, 62vw, 400px);
    }
    .panel-showcase-body {
        padding: 8px 0;
    }
    .panel-showcase-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.svc-product-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1080px;
    margin: 50px auto 0;
}

.svc-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.svc-product-reverse .svc-product-image {
    order: 2;
}

.svc-product-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius);
}

.svc-product-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

.svc-product-body h3 {
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-wrap: balance;
}

.svc-product-body > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 20px;
}

/* Product facts — compact 2-col dl, no bullet chaos */
.svc-product-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin: 0 0 22px;
    padding: 0;
}

.svc-product-facts > div {
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
    margin: 0;
}

.svc-product-facts dt {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.svc-product-facts dd {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.svc-product-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.svc-product-pdf:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Process — vertical numbered list, clean */
.svc-process {
    padding: 80px 0;
}

.svc-process-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 760px;
    counter-reset: none;
}

.svc-process-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

.svc-process-list li:last-child {
    border-bottom: none;
}

.svc-process-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.svc-process-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 4px 0 6px;
}

.svc-process-list p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* Subventions callout */
.svc-subventions {
    padding: 80px 0;
}

.svc-subventions-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.svc-subventions-wrap p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 16px;
}

.svc-subventions-fact {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.svc-subventions-pct {
    display: block;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.svc-subventions-fact p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* FAQ spacing */
.svc-faq {
    padding: 80px 0;
}

@media (max-width: 900px) {
    .svc-product,
    .svc-subventions-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .svc-product-reverse .svc-product-image {
        order: 0;
    }
    .svc-product-image img {
        height: 240px;
    }
    .svc-product-row {
        gap: 40px;
    }
    .svc-process-list li {
        grid-template-columns: 44px 1fr;
        gap: 16px;
    }
    .svc-context,
    .svc-products,
    .svc-process,
    .svc-subventions,
    .svc-faq {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .svc-product-facts {
        grid-template-columns: 1fr;
    }
}

/* Retrofit reassurance — used on /pompe-a-chaleur */
.svc-retrofit {
    padding: 80px 0;
}

.svc-retrofit-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.svc-retrofit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.svc-retrofit p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin: 16px 0 0;
}

@media (max-width: 900px) {
    .svc-retrofit-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .svc-retrofit-image img {
        height: 260px;
    }
    .svc-retrofit {
        padding: 60px 0;
    }
}

/* ==============================================================
   TIMELINE (about page)
   ============================================================== */

.timeline {
    max-width: 820px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(255,255,255,0.15);
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 36px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: right;
    padding-right: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -9px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid var(--primary-dark);
    border-radius: 50%;
    z-index: 2;
}

.timeline-body {
    padding-left: 10px;
}

.timeline-body h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 6px;
}

.timeline-body p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 640px) {
    .timeline::before { left: 8px; }
    .timeline-item { grid-template-columns: 60px 1fr; gap: 20px; }
    .timeline-year { font-size: 16px; padding-right: 10px; }
    .timeline-year::after { right: -5px; width: 10px; height: 10px; top: 6px; }
}

/* ==============================================================
   BLOG — hub grid + featured card + single article typography
   ============================================================== */

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-card-image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 48px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card-body h3 {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--primary);
}

.blog-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-body > p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

/* Featured post (blog hub) */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    margin-top: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.blog-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.blog-featured-image {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-featured-image-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 80px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
}

.blog-featured-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-body h2 {
    font-size: 30px;
    line-height: 1.25;
    margin: 10px 0 14px;
    color: var(--primary);
}

.blog-featured-excerpt {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Blog single — article body typography */
.blog-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text);
    padding: 18px 0 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
    font-weight: 400;
}

.blog-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}

.blog-content > p,
.blog-content > ul,
.blog-content > ol,
.blog-content > blockquote,
.blog-content > table {
    margin-bottom: 22px;
}

.blog-content p.lead {
    font-size: 19px;
    color: var(--primary);
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 30px;
    padding: 18px 22px;
    background: var(--gray-50);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 40px 0 16px;
    line-height: 1.25;
}

.blog-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 30px 0 14px;
    line-height: 1.3;
}

.blog-content h4 {
    font-size: 18px;
    color: var(--primary);
    margin: 24px 0 10px;
}

.blog-content ul,
.blog-content ol {
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.blog-content a:hover {
    color: var(--accent-hover);
}

.blog-content blockquote {
    border-left: 3px solid var(--accent);
    background: var(--gray-50);
    padding: 18px 24px;
    margin: 24px 0;
    font-size: 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.blog-content table thead {
    background: var(--gray-100);
}

.blog-content table th,
.blog-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
}

.blog-content table tr:last-child td {
    border-bottom: none;
}

.blog-content table th {
    font-weight: 600;
    color: var(--primary);
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.blog-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Blog share */
.blog-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-share-buttons {
    display: flex;
    gap: 10px;
}

.blog-share-buttons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.blog-share-buttons a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured-image {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-featured-body {
        padding: 28px 22px;
    }
    .blog-featured-body h2 {
        font-size: 24px;
    }
    .blog-content h2 {
        font-size: 24px;
    }
    .blog-content h3 {
        font-size: 19px;
    }
}

/* =========================================
   About page — authentic content blocks
   ========================================= */

/* 10+ years headline */
.about-headline {
    padding: 80px 0 40px;
    background: #fff;
}

.about-headline-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-headline-stat {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid #e5e5e5;
}

.about-headline-num {
    display: block;
    font-size: clamp(90px, 12vw, 140px);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.about-headline-num sup {
    font-size: 0.5em;
    top: -0.45em;
    font-weight: 600;
}

.about-headline-caption {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.about-headline-text .section-label {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.about-headline-text h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.2;
    text-wrap: balance;
    margin: 0;
}

/* Content blocks (alternating image + prose) */
.about-block {
    padding: 80px 0;
}

.about-block-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-block-wrap.about-block-reverse .about-block-image {
    order: 2;
}

.about-block-image {
    aspect-ratio: 1 / 1;
    overflow: visible;
}

.about-block-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    -webkit-clip-path: url(#shapeBlob);
            clip-path: url(#shapeBlob);
}

/* Alternating block: mirror the shape so the tab points toward the text column */
.about-block-wrap.about-block-reverse .about-block-image img {
    -webkit-clip-path: url(#shapeBlobMirror);
            clip-path: url(#shapeBlobMirror);
}

.about-block-content .section-label {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.about-block-content h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.2;
    text-wrap: balance;
    margin: 0 0 20px;
}

.about-block-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 16px;
    max-width: 520px;
}

.about-pillars {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    max-width: 520px;
}

.about-pillars li {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-light);
    border-top: 1px solid #e5e5e5;
}

.about-pillars li:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.about-pillars li strong {
    color: var(--text-dark);
}

/* Closing two-column philosophy blocks */
.about-closing {
    padding: 80px 0;
}

.about-closing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-closing-col h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 16px;
    text-wrap: balance;
}

.about-closing-col p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 900px) {
    .about-headline { padding: 60px 0 30px; }
    .about-headline-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .about-headline-stat {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    .about-block { padding: 60px 0; }
    .about-block-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-block-wrap.about-block-reverse .about-block-image {
        order: -1;
    }
    .about-block-content p,
    .about-pillars { max-width: 100%; }
    .about-closing { padding: 60px 0; }
    .about-closing-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* =========================================
   Savings callout (homepage, "Économisez jusqu'à 70 %")
   ========================================= */
.savings-callout {
    padding: 80px 0;
    background: #fff;
}

.savings-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.savings-visual {
    text-align: center;
}

.savings-visual img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: inline-block;
}

.savings-text .section-label {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.savings-text h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    text-wrap: balance;
    margin: 0 0 18px;
}

.savings-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 0 24px;
}

@media (max-width: 900px) {
    .savings-callout { padding: 60px 0; }
    .savings-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .savings-text p { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   Motion — subtle, Swiss-confidence aware
   1. Hero stagger reveal on initial paint (CSS-only)
   2. Scroll reveal via IntersectionObserver (.reveal → .is-visible)
   3. prefers-reduced-motion: reduce → all animations off
   ========================================================================== */

@keyframes abelartiFadeUp {
    from { opacity: 0; transform: translate3d(0, 16px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ---------- Hero load animation: stagger from kicker → features ---------- */
.hero-content > * {
    opacity: 0;
    animation: abelartiFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content > .hero-kicker   { animation-delay: 0.05s; }
.hero-content > .hero-title    { animation-delay: 0.18s; }
.hero-content > .hero-desc     { animation-delay: 0.30s; }
.hero-content > .hero-ctas     { animation-delay: 0.42s; }
.hero-content > .hero-features { animation-delay: 0.54s; }

/* ---------- Scroll reveal: applied via JS data-reveal attribute or .reveal class ---------- */
.reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Stagger children inside a reveal-stagger parent (e.g. card grids) */
.reveal-stagger > * {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: 0.48s; opacity: 1; transform: none; }

/* ---------- Respect user's motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
    .hero-content > *,
    .reveal,
    .reveal-stagger > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==============================================================
   SERVICE HUB PAGE — split hero + form + sticky CTA
   Shared by: panneaux-photovoltaiques, batterie, pompe-a-chaleur,
              isolation, climatisation
   ============================================================== */

/* ---------- 1. Split hero (copy left, form right) ---------- */
.svc-hero {
    position: relative;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 130px);
}
.svc-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
}
.svc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,25,0.85) 0%, rgba(35,35,45,0.72) 60%, rgba(178,34,34,0.55) 100%);
    z-index: -1;
}
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
    z-index: -1;
}
.svc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}
.svc-hero-copy {
    max-width: 600px;
}
.svc-hero-kicker {
    color: var(--text-on-dark-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.svc-hero-title {
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.12;
    margin: 0 0 22px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.svc-hero-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--text-on-dark);
    margin: 0 0 28px;
    max-width: 540px;
}
.svc-hero-trust {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}
.svc-hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-on-dark);
}
.svc-hero-trust li i {
    color: var(--accent-gold);
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex: 0 0 auto;
}
.svc-hero .breadcrumb {
    color: var(--text-on-dark-muted);
    font-size: 13px;
    margin: 12px 0 0;
}
.svc-hero .breadcrumb a {
    color: var(--text-on-dark);
    text-decoration: none;
}
.svc-hero .breadcrumb a:hover { text-decoration: underline; }

/* ---------- Hero quick form card ---------- */
.svc-hero-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    padding: clamp(24px, 3vw, 36px);
    color: var(--text);
}
.svc-hero-form-kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.svc-hero-form-title {
    font-size: clamp(22px, 2vw, 26px);
    line-height: 1.2;
    margin: 0 0 8px;
    color: var(--text-dark, var(--gray-900));
    font-weight: 700;
}
.svc-hero-form-sub {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 20px;
}
.svc-hero-form .form-group {
    margin-bottom: 14px;
}
.svc-hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}
.svc-hero-form .form-row .form-group { margin-bottom: 14px; }
.svc-hero-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.svc-hero-form .req { color: var(--accent); }
.svc-hero-form input,
.svc-hero-form select {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.svc-hero-form input:focus,
.svc-hero-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.12);
}
.svc-hero-form-submit {
    width: 100%;
    margin-top: 6px;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .15s ease, transform .15s ease;
}
.svc-hero-form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.svc-hero-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}
.svc-hero-form-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.svc-hero-form-note i { color: var(--text-muted); }

/* ---------- 3. Approach — 4-card grid ---------- */
.svc-approach { padding: 80px 0; }
.svc-approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.svc-approach-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease;
}
.svc-approach-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.svc-approach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.08);
    color: var(--accent);
    font-size: 19px;
    margin-bottom: 16px;
}
.svc-approach-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--gray-900);
}
.svc-approach-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

/* ---------- 6. Subventions canton grid ---------- */
.svc-subventions {
    padding: 80px 0;
}
.svc-canton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 36px;
}
.svc-canton-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    min-height: 110px;
}
.svc-canton-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.svc-canton-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
}
.svc-canton-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.svc-canton-link i { font-size: 11px; transition: transform .15s ease; }
.svc-canton-card:hover .svc-canton-link i { transform: translateX(3px); }

.svc-subventions-cta {
    text-align: center;
    margin-top: 36px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- 7. Coverage — pill list ---------- */
.svc-coverage { padding: 80px 0; }
.svc-coverage-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.svc-coverage-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
}
.svc-coverage-list li i {
    color: var(--accent);
    font-size: 13px;
}

/* ---------- 8. Proof — stats + reviews + badges ---------- */
.svc-proof { padding: 80px 0; }

.svc-proof-stats {
    list-style: none;
    padding: 0;
    margin: 40px 0 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.svc-proof-stats li {
    text-align: center;
    padding: 28px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}
.svc-proof-stats strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1.1;
}
.svc-proof-stats span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.svc-proof-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 56px;
}
.svc-review {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px 22px;
    margin: 0;
}
.svc-review-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}
.svc-review blockquote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 14px;
    font-style: italic;
}
.svc-review figcaption {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.svc-proof-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
}
.svc-proof-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}
.svc-proof-badges li i {
    color: var(--accent);
    font-size: 14px;
}
.svc-proof-badges li img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* ---------- 11. Sticky CTA bar ---------- */
.svc-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform .3s ease;
    z-index: 950;
}
.svc-sticky-cta.is-visible {
    transform: translateY(0);
}
.svc-sticky-cta .container {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.svc-sticky-msg {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}
.svc-sticky-msg strong {
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 700;
}
.svc-sticky-msg span {
    font-size: 13px;
    color: var(--text-light);
}
.svc-sticky-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}
.svc-sticky-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-900);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s ease;
}
.svc-sticky-call:hover { background: var(--gray-100); }
.svc-sticky-call i { color: var(--accent); }
.svc-sticky-btn {
    padding: 11px 20px;
    font-size: 14px;
}

/* Desktop: floating bottom-right mini CTA (elegant, doesn't fight sticky header) */
@media (min-width: 992px) {
    .svc-sticky-cta {
        left: auto;
        right: 24px;
        bottom: 24px;
        max-width: 380px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
        padding: 14px 18px;
        transform: translateY(140%);
    }
    .svc-sticky-cta.is-visible {
        transform: translateY(0);
    }
    .svc-sticky-cta .container {
        padding: 0;
        max-width: none;
        gap: 14px;
    }
    .svc-sticky-msg strong { font-size: 14px; }
    .svc-sticky-msg span { font-size: 12px; }
}

/* Mobile: hide message text on very small screens, keep buttons */
@media (max-width: 480px) {
    .svc-sticky-msg { display: none; }
    .svc-sticky-cta .container { justify-content: center; }
    .svc-sticky-actions { width: 100%; justify-content: space-between; }
    .svc-sticky-call,
    .svc-sticky-btn { flex: 1; justify-content: center; }
}

/* ---------- Hero responsive ---------- */
@media (max-width: 991px) {
    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .svc-hero-copy { max-width: none; }
    .svc-hero-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .svc-hero-form .form-row {
        grid-template-columns: 1fr;
    }
    .svc-subventions-cta { flex-direction: column; }
    .svc-subventions-cta .btn { width: 100%; }
}

/* Page-level: avoid double padding when hero replaces page-banner */
.page-panneaux .svc-hero { margin-top: 0; }

/* Coverage pills now act as links to canton landing pages */
.svc-coverage-list li { padding: 0; }
.svc-coverage-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--gray-900);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .15s ease, transform .15s ease;
}
.svc-coverage-list li:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.svc-coverage-list a:hover { color: var(--accent); }

/* ==============================================================
   CANTON LANDING PAGES — distributor block, cities, summary, other-cantons
   ============================================================== */

/* ---------- Distributor & solar data block ---------- */
.svc-distributor { padding: 80px 0; }

.svc-distributor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.svc-distributor-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: left;
    transition: border-color .15s ease, transform .15s ease;
}
.svc-distributor-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.svc-distributor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.08);
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 14px;
}
.svc-distributor-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.svc-distributor-value {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
    line-height: 1.3;
}
.svc-distributor-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.svc-specifics-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 760px;
    display: grid;
    gap: 14px;
}
.svc-specifics-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
}
.svc-specifics-list li i {
    color: var(--accent-green);
    font-size: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
}

/* ---------- Subventions summary (canton page only) ---------- */
.svc-subventions-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin: 36px auto 28px;
    max-width: 880px;
}
.svc-subventions-program,
.svc-subventions-amount {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px 24px;
    text-align: left;
}
.svc-subventions-program-label,
.svc-subventions-amount-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.svc-subventions-program-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.4;
}
.svc-subventions-amount-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 10px;
    line-height: 1.1;
}
.svc-subventions-amount-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}
.svc-subventions-cta-text {
    text-align: center;
    max-width: 720px;
    margin: 8px auto 24px;
    color: var(--text-light);
    font-size: 15px;
}

/* ---------- Cities served (canton page) ---------- */
.svc-cities { padding: 80px 0; }
.svc-cities-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.svc-cities-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-900);
}
.svc-cities-list li i {
    color: var(--accent);
    font-size: 13px;
}
.svc-cities-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin: 0 auto;
    max-width: 720px;
}

/* ---------- Other cantons cross-link strip ---------- */
.svc-other-cantons {
    padding: 30px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.svc-other-cantons .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    justify-content: center;
}
.svc-other-cantons-label {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}
.svc-other-cantons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}
.svc-other-cantons-list a {
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .15s ease;
}
.svc-other-cantons-list a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}
.svc-other-cantons-list li:not(:last-child)::after {
    content: '·';
    margin-left: 14px;
    color: var(--gray-300);
}

@media (max-width: 600px) {
    .svc-distributor-grid { grid-template-columns: 1fr; }
    .svc-subventions-summary { grid-template-columns: 1fr; }
}

/* ==============================================================
   CAREERS — job listing card + job detail page
   ============================================================== */

/* ---------- Job listing cards on /carrieres ---------- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.job-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.job-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.job-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.job-card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(39, 174, 96, 0.12);
    color: var(--accent-green);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.job-card-date {
    font-size: 12px;
    color: var(--text-muted);
}
.job-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}
.job-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}
.job-card-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.job-card-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
}
.job-card-meta li i {
    color: var(--accent);
    width: 14px;
    text-align: center;
}
.job-card-cta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .15s ease;
}
.job-card:hover .job-card-cta { gap: 12px; }

/* ---------- Job detail page ---------- */
.job-detail-meta-hero {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}
.job-detail-meta-hero li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.job-detail-meta-hero li i {
    color: var(--accent-gold);
}

.job-detail-section {
    padding: 80px 0;
}
.job-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.job-detail-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--gray-900);
}
.job-detail-content h2:first-child { margin-top: 0; }
.job-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 16px;
}
.job-detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
}
.job-detail-list li i {
    color: var(--accent-green);
    font-size: 16px;
    margin-top: 3px;
    flex: 0 0 auto;
}

.job-detail-cta-mobile {
    display: none;
    margin-top: 32px;
    text-align: center;
}

/* ---------- Application form (sticky on desktop) ---------- */
.job-detail-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
    padding: clamp(24px, 3vw, 36px);
    position: sticky;
    top: 100px;
}
.job-form-kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.job-form-title {
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--gray-900);
}
.job-form-sub {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 20px;
}
.job-application-form .form-group {
    margin-bottom: 14px;
}
.job-application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.job-application-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.job-application-form .req { color: var(--accent); }
.job-application-form input[type="text"],
.job-application-form input[type="email"],
.job-application-form input[type="tel"],
.job-application-form textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.job-application-form textarea {
    resize: vertical;
    min-height: 110px;
}
.job-application-form input:focus,
.job-application-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.12);
}
.job-application-form input[type="file"] {
    width: 100%;
    padding: 9px;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 13px;
    background: var(--gray-50);
    cursor: pointer;
}
.job-application-form input[type="file"]:hover {
    border-color: var(--accent);
}
.job-application-form .btn-submit {
    width: 100%;
    margin-top: 6px;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .15s ease, transform .15s ease;
}
.job-application-form .btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.job-application-form .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}
.job-form-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.job-form-note i { color: var(--text-muted); }

@media (max-width: 991px) {
    .job-detail-grid { grid-template-columns: 1fr; }
    .job-detail-form-wrap {
        position: static;
        margin-top: 0;
    }
    .job-detail-cta-mobile { display: block; }
}

@media (max-width: 600px) {
    .job-application-form .form-row { grid-template-columns: 1fr; }
    .jobs-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   CONTACT page — direct contact links in hero, info strip, hours table
   ============================================================== */

/* ---------- Hero direct contact (phone + email links) ---------- */
.contact-hero-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 0 0 18px;
}
.contact-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s ease, border-color .15s ease;
}
.contact-hero-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}
.contact-hero-link i {
    color: var(--accent-gold);
}

/* ---------- Info strip (3 cards : address, hours, commitment) ---------- */
.contact-info-strip {
    padding: 80px 0;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}
.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.08);
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 14px;
}
.contact-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--gray-900);
}
.contact-info-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 8px;
}
.contact-info-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}
.contact-info-link {
    margin-top: auto;
    padding-top: 14px;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .15s ease;
}
.contact-info-link:hover { gap: 10px; }
.contact-info-link i { font-size: 11px; }

/* Hours list */
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--gray-200);
}
.contact-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-hours-list li span {
    color: var(--text-light);
}
.contact-hours-list li strong {
    color: var(--gray-900);
}

/* Commitment list */
.contact-info-commitment {
    border-left: 3px solid var(--accent-green);
}
.contact-commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
}
.contact-commitment-list li i {
    color: var(--accent-green);
    font-size: 11px;
    margin-top: 5px;
    flex: 0 0 auto;
}

/* Social row at bottom of info strip */
.contact-info-social {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.contact-info-social span {
    font-size: 13px;
    color: var(--text-light);
    margin-right: 4px;
}
.contact-info-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    text-decoration: none;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.contact-info-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

@media (max-width: 600px) {
    .contact-hero-direct { flex-direction: column; align-items: stretch; }
    .contact-hero-link { justify-content: center; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   BEATON — Mobilier urbain par Abelarti (1:1 mirror of live)
   ============================================================== */

.page-beaton .beaton-section-title {
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.18;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.page-beaton .section-label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

/* ---------- 1. Hero (logo + title + video) ---------- */
.beaton-hero {
    padding: clamp(60px, 7vw, 110px) 0;
    background: linear-gradient(180deg, #f8f8f8 0%, var(--white) 100%);
}
.beaton-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}
.beaton-hero-logo {
    height: 64px;
    width: auto;
    margin-bottom: 22px;
}
.beaton-hero-kicker {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.beaton-hero-title {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.08;
    margin: 0 0 28px;
    color: var(--gray-900);
    font-weight: 700;
    letter-spacing: -0.015em;
}
.beaton-hero-copy .breadcrumb {
    color: var(--text-light);
    font-size: 13px;
}
.beaton-hero-copy .breadcrumb a {
    color: var(--text);
    text-decoration: none;
}
.beaton-hero-copy .breadcrumb a:hover { color: var(--accent); }

/* Responsive 16:9 video container */
.beaton-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.beaton-video-wrap iframe,
.beaton-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    /* Pure background video — no interaction */
    pointer-events: none;
}

/* ---------- 2. Intro / Les Harmonies du Design ---------- */
.beaton-intro {
    padding: 80px 0;
}
.beaton-intro-wrap {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.beaton-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 26px;
}
.beaton-intro .btn i {
    margin-right: 8px;
}

/* ---------- 3. Design & Ingénierie Suisses ---------- */
.beaton-engineering {
    padding: 80px 0;
}
.beaton-engineering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}
.beaton-engineering-grid p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}
.beaton-brand-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}
.beaton-inline-logo {
    height: 32px;
    width: auto;
}
.beaton-brand-line span {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}
.beaton-engineering-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
}

/* ---------- 4. Nos produits — 6-card grid ---------- */
.beaton-products {
    padding: 80px 0;
}
.beaton-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 40px;
}
.beaton-product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 24px 28px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    text-align: center;
}
.beaton-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    border-color: var(--accent);
}
.beaton-product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.beaton-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.beaton-product-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 10px;
}
.beaton-product-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0;
}

/* ---------- 5. Nos collections — 3 numbered benefits + 2 images ---------- */
.beaton-collections {
    padding: 80px 0;
}
.beaton-collections-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
    margin-top: 40px;
}
.beaton-collection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.beaton-collection-list li {
    display: flex;
    gap: 18px;
}
.beaton-collection-num {
    flex: 0 0 auto;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 48px;
}
.beaton-collection-list h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}
.beaton-collection-list p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.beaton-collection-images {
    display: grid;
    gap: 18px;
}
.beaton-collection-images img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}
.beaton-collections-cta-text {
    max-width: 880px;
    margin: 40px auto 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    text-align: center;
}

/* ---------- 6. Pourquoi choisir Beaton — 3 service cards ---------- */
.beaton-why {
    padding: 80px 0;
}
.beaton-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.beaton-why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: left;
    transition: transform .2s ease, border-color .2s ease;
}
.beaton-why-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}
.beaton-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.08);
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 18px;
}
.beaton-why-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 10px;
}
.beaton-why-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ---------- 7. Villes durables — 5 value pills ---------- */
.beaton-values {
    padding: 80px 0;
}
.beaton-values-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}
.beaton-values-list li {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease;
}
.beaton-values-list li:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}
.beaton-values-list strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 4px;
}
.beaton-values-list span {
    font-size: 14px;
    color: var(--text-light);
}

/* ---------- 8. Partenaires de confiance — uses shared .partner-logos carousel from home page ---------- */

/* ---------- 9. CTA dark band ---------- */
.beaton-cta {
    padding: 80px 0;
}

/* ---------- 10. B2B form section (Beaton-specific) ---------- */
.beaton-form-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.beaton-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

/* LEFT — B2B trust panel */
.beaton-form-trust {
    padding: clamp(28px, 3vw, 40px);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}
.beaton-form-trust .section-label {
    margin-bottom: 12px;
}
.beaton-form-trust .beaton-section-title {
    font-size: clamp(24px, 2.6vw, 30px);
    margin-bottom: 18px;
}
.beaton-form-trust-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    margin: 0 0 24px;
}
.beaton-form-trust-image {
    margin: 0 0 28px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.beaton-form-trust-image img {
    width: 100%;
    height: auto;
    display: block;
}

.beaton-form-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.beaton-form-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.beaton-form-step-num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.beaton-form-step-body {
    flex: 1;
    min-width: 0;
}
.beaton-form-step-body strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
    margin-bottom: 3px;
}
.beaton-form-step-body span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.beaton-form-badges {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}
.beaton-form-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
}
.beaton-form-badges li i {
    color: var(--accent);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* RIGHT — B2B form */
.beaton-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: clamp(28px, 3vw, 40px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}
.beaton-form-kicker {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.beaton-form-title {
    font-size: clamp(22px, 2.2vw, 26px);
    line-height: 1.2;
    color: var(--gray-900);
    font-weight: 700;
    margin: 0 0 8px;
}
.beaton-form-sub {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0 0 22px;
}

.beaton-form .form-group {
    margin-bottom: 14px;
}
.beaton-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}
.beaton-form .form-row .form-group {
    margin-bottom: 14px;
}
.beaton-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.beaton-form .req { color: var(--accent); }
.beaton-form input,
.beaton-form select,
.beaton-form textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.beaton-form textarea {
    resize: vertical;
    min-height: 110px;
}
.beaton-form input:focus,
.beaton-form select:focus,
.beaton-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.12);
}
.beaton-form .btn-submit {
    width: 100%;
    margin-top: 6px;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .15s ease, transform .15s ease;
}
.beaton-form .btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.beaton-form .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}
.beaton-form-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
.beaton-form-note i { color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .beaton-hero-grid,
    .beaton-engineering-grid,
    .beaton-collections-grid,
    .beaton-form-grid {
        grid-template-columns: 1fr;
    }
    .beaton-hero-video { order: -1; }
    .beaton-form-trust-image img {
        max-height: 280px;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .beaton-form .form-row { grid-template-columns: 1fr; }
    .beaton-form-badges { grid-template-columns: 1fr; }
}

/* ==============================================================
   /entreprise — B2B homepage hero slider + trust strip
   ============================================================== */

.entreprise-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 78vh;
    max-height: 760px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
    background: #1a1a1a;
}
.entreprise-slider-track {
    position: absolute;
    inset: 0;
}

/* Slides — absolute layered, opacity crossfade */
.entreprise-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility 0s linear .6s;
    pointer-events: none;
}
.entreprise-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .6s ease, visibility 0s linear 0s;
    pointer-events: auto;
    z-index: 1;
}
.entreprise-slide[hidden] {
    /* Override inert hidden when CSS controls visibility */
    display: flex;
}

.entreprise-slide-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

/* Force slide's .container to span full width (flex item) so its
   max-width + margin:auto centering matches the header logo's X position. */
.entreprise-slide > .container {
    width: 100%;
}

/* ---------- Entreprise showcase block — image + floating stats card + headlined content ---------- */
.entreprise-showcase {
    padding: clamp(60px, 7vw, 100px) 0;
}
.entreprise-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

/* LEFT : image + floating card */
.entreprise-showcase-visual {
    position: relative;
}
.entreprise-showcase-image {
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--gray-100); /* fallback if bg image fails */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}
.entreprise-showcase-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}
.entreprise-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.entreprise-stat-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
/* Soft variant : no circle bg, just the line-icon in brand red */
.entreprise-stat-icon-soft {
    background: transparent;
    color: var(--accent);
    width: 44px;
    height: 44px;
}
.entreprise-stat-icon-soft svg {
    width: 36px;
    height: 36px;
}
.entreprise-stat-body {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.entreprise-stat-pre {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    margin-bottom: 2px;
}
.entreprise-stat-big {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin: 0;
}
.entreprise-stat-mid {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.entreprise-stat-label {
    font-size: 11px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    line-height: 1.3;
    margin-top: 4px;
    font-weight: 600;
}
.entreprise-stat-divider {
    width: 1px;
    align-self: stretch;
    background: var(--gray-200);
    margin: 6px 0;
    flex: 0 0 auto;
}

/* RIGHT : content */
.entreprise-showcase-kicker {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 22px;
}
.entreprise-showcase-title {
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--gray-900);
    margin: 0 0 24px;
    letter-spacing: -0.012em;
}
.entreprise-showcase-accent {
    color: var(--accent);
}
.entreprise-showcase-divider {
    width: 64px;
    height: 4px;
    background: var(--accent);
    border: none;
    margin: 0 0 26px;
    border-radius: 2px;
}
.entreprise-showcase-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 30px;
    max-width: 540px;
}
.entreprise-showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    margin-bottom: 36px;
    border-radius: 10px;
}
.entreprise-showcase-cta i {
    transition: transform .15s ease;
}
.entreprise-showcase-cta:hover i {
    transform: translateX(4px);
}

/* Bottom mini badges — 3 across with vertical dividers */
.entreprise-showcase-badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
}
.entreprise-showcase-badges li {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray-700);
    border-right: 1px solid var(--gray-200);
}
.entreprise-showcase-badges li:first-child { padding-left: 0; }
.entreprise-showcase-badges li:last-child {
    border-right: none;
    padding-right: 0;
}
.entreprise-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.10);
    color: var(--accent);
    flex: 0 0 auto;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .entreprise-showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .entreprise-showcase-image {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 600px) {
    .entreprise-showcase-card {
        position: static;
        margin-top: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .entreprise-stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .entreprise-showcase-image {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }
    .entreprise-showcase-badges {
        flex-direction: column;
    }
    .entreprise-showcase-badges li {
        padding: 14px 0;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
    .entreprise-showcase-badges li:first-child { padding-top: 0; }
    .entreprise-showcase-badges li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* ---------- Sticky CTA card variant (used in /entreprise B2B) ---------- */
.svc-sticky-cta.svc-sticky-cta-card {
    /* Remove default flex layout from base .svc-sticky-cta */
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}
.svc-sticky-cta.svc-sticky-cta-card .container {
    /* Hide if any container exists from base markup (we don't use one here) */
    display: none;
}

@media (max-width: 991px) {
    /* Mobile : full width bottom card with internal padding */
    .svc-sticky-cta.svc-sticky-cta-card {
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.10);
        padding: 18px 18px 16px;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto auto;
        column-gap: 14px;
        row-gap: 6px;
        align-items: center;
    }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-close {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-icon {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
        margin: 0;
    }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-title br { display: none; }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-sub {
        grid-column: 2;
        grid-row: 2;
        font-size: 12px;
        margin: 0;
    }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-sub br { display: none; }
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-btn-primary,
    .svc-sticky-cta.svc-sticky-cta-card .svc-sticky-btn-call {
        grid-column: 1 / -1;
        margin-top: 6px;
    }
}

@media (min-width: 992px) {
    /* Desktop : floating card, bottom-right */
    .svc-sticky-cta.svc-sticky-cta-card {
        left: auto;
        right: 24px;
        bottom: 24px;
        max-width: 360px;
        width: calc(100% - 48px);
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 18px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
        padding: 24px 24px 20px;
        transform: translateY(140%);
    }
}

.svc-sticky-cta.svc-sticky-cta-card.is-visible {
    transform: translateY(0);
}
.svc-sticky-cta.svc-sticky-cta-card.is-dismissed {
    transform: translateY(220%) !important;
    pointer-events: none;
}

/* Close button (top-right) */
.svc-sticky-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}
.svc-sticky-close:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}
.svc-sticky-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Swiss-cross icon in pink-tint circle */
.svc-sticky-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(178, 34, 34, 0.10);
    color: var(--accent);
    margin: 0 0 16px;
}
.svc-sticky-icon svg {
    width: 28px;
    height: 28px;
}

/* Title + subtitle */
.svc-sticky-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.svc-sticky-sub {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 18px;
}

/* Primary button (red filled) */
.svc-sticky-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: var(--accent);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background .15s ease, transform .15s ease;
}
.svc-sticky-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
.svc-sticky-btn-primary i {
    font-size: 14px;
    transition: transform .15s ease;
}
.svc-sticky-btn-primary:hover i { transform: translateX(3px); }

/* Outline call button */
.svc-sticky-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 18px;
    margin-top: 8px;
    background: var(--white);
    color: var(--gray-900);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: border-color .15s ease, background .15s ease;
}
.svc-sticky-btn-call:hover {
    border-color: var(--accent);
    background: var(--gray-50);
}
.svc-sticky-btn-call i {
    color: var(--accent);
    font-size: 15px;
}

.entreprise-slide.is-active .entreprise-slide-bg {
    /* Subtle Ken-Burns zoom on active slide */
    transform: scale(1.0);
}
.entreprise-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.78) 0%, rgba(30, 30, 40, 0.62) 55%, rgba(178, 34, 34, 0.45) 100%);
    z-index: -1;
}

.entreprise-slide-content {
    max-width: 720px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease .15s, transform .7s ease .15s;
}
.entreprise-slide.is-active .entreprise-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.entreprise-slide-kicker {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.entreprise-slide-title {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.1;
    margin: 0 0 22px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.012em;
}
.entreprise-slide-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--text-on-dark);
    margin: 0 0 32px;
    max-width: 620px;
}
.entreprise-slide-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.entreprise-slide-ctas .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: var(--white);
}
.entreprise-slide-ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Slider arrows */
.entreprise-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.entreprise-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}
.entreprise-slider-arrow:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}
.entreprise-slider-prev { left: 24px; }
.entreprise-slider-next { right: 24px; }

/* Slider dots */
.entreprise-slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.entreprise-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.entreprise-slider-dot:hover {
    border-color: var(--white);
    transform: scale(1.15);
}
.entreprise-slider-dot.is-active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}
.entreprise-slider-dot:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Breadcrumb at very bottom-left */
.entreprise-slider-breadcrumb {
    position: absolute;
    left: 24px;
    bottom: 28px;
    z-index: 5;
    color: var(--text-on-dark-muted);
    font-size: 13px;
    margin: 0;
}
.entreprise-slider-breadcrumb a {
    color: var(--text-on-dark);
    text-decoration: none;
}
.entreprise-slider-breadcrumb a:hover {
    text-decoration: underline;
}

/* Reduced motion : kill all transitions */
@media (prefers-reduced-motion: reduce) {
    .entreprise-slide,
    .entreprise-slide-bg,
    .entreprise-slide-content {
        transition: none !important;
        transform: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .entreprise-slider {
        height: auto;
        min-height: 520px;
        padding: 80px 0 90px;
    }
    .entreprise-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .entreprise-slider-prev { left: 12px; }
    .entreprise-slider-next { right: 12px; }
    .entreprise-slider-dots { bottom: 22px; }
    .entreprise-slider-breadcrumb { display: none; }
}

@media (max-width: 480px) {
    .entreprise-slide-ctas { flex-direction: column; align-items: stretch; }
    .entreprise-slide-ctas .btn { text-align: center; }
}

@media (max-width: 600px) {
    .beaton-hero-logo { height: 48px; }
    .beaton-product-image { height: 170px; }
}

