/* ============================================
   NOVEWAY - Design System
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors - Light Theme */
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7fa;
    --color-bg-card: #ffffff;
    --color-bg-card-hover: #f0f2f5;
    --color-surface: #f8f9fb;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-light: rgba(0, 0, 0, 0.12);

    --color-text: #1a1d26;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;

    --color-primary: #1E8FD5;
    --color-primary-light: #1a7fc0;
    --color-primary-dark: #0A6CB5;
    --color-primary-glow: rgba(30, 143, 213, 0.1);
    --color-cyan: #00E5B0;

    --color-accent: #00E5B0;
    --color-accent-light: #33EBBF;

    --color-white: #ffffff;
    --color-black: #000000;
    --color-heading: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1E8FD5 0%, #00E5B0 100%);
    --gradient-hero: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f0f4f8 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fb 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(30, 143, 213, 0.06) 0%, transparent 70%);

    /* Typography */
    --font-heading: 'Nexa Bold', 'Nexa', sans-serif;
    --font-body: 'Nexa', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(30, 143, 213, 0.2);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-heading);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Utility Classes --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-accent {
    color: var(--color-accent) !important;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: var(--space-md) auto 0;
    border-radius: var(--radius-full);
}

.section-header p {
    font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(30, 143, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 143, 213, 0.4);
    color: var(--color-white);
}

.btn-outline {
    background: #ffffff;
    color: var(--color-primary-light);
    border: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* --- Header (Glassmorphism / iPhone-style) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px) saturate(110%);
    -webkit-backdrop-filter: blur(5px) saturate(110%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-inner .main-nav {
    display: flex;
    justify-content: center;
}

.logo {
    text-decoration: none;
    z-index: 1001;
    position: relative;
}

.logo-img {
    display: block;
    width: auto;
    height: 32px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.site-header.scrolled .logo-img {
    height: 28px;
}

.logo:hover .logo-img,
.footer-logo:hover .logo-img {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Navigation list */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list a {
    display: block;
    padding: 0.5rem 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-list a:hover {
    color: #ffffff;
    background: none;
    opacity: 0.8;
}

.nav-list a.active {
    color: #ffffff;
    background: none;
    font-weight: 700;
}

/* Scrolled state: dark text on white/light background */
.site-header.scrolled .nav-list a {
    color: var(--color-text);
}

.site-header.scrolled .nav-list a:hover {
    color: var(--color-primary-dark);
    background: rgba(30, 143, 213, 0.08);
}

.site-header.scrolled .nav-list a.active {
    color: var(--color-primary);
    background: rgba(30, 143, 213, 0.1);
    box-shadow: none;
}

/* CTA Button (Contact) */
.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius-full) !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(30, 143, 213, 0.25) !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(30, 143, 213, 0.4), 0 0 40px rgba(30, 143, 213, 0.15) !important;
    transform: translateY(-1px) scale(1.03);
}

.site-header.scrolled .nav-cta {
    color: var(--color-white) !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.site-header.scrolled .hamburger span {
    background: var(--color-text);
    box-shadow: none;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE MOBILE MENU ========== */
@media (max-width: 1024px) {
    .site-header.menu-open {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.3rem;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .main-nav.open .nav-list {
        transform: translateY(0);
    }

    .nav-list a {
        font-size: 1.15rem;
        padding: 0.8rem 2rem;
        color: var(--color-text);
        text-align: center;
        font-weight: 600;
    }

    .nav-list a:hover,
    .nav-list a.active {
        color: var(--color-primary);
        background: rgba(30, 143, 213, 0.08);
        /* slight grey/blue highlight */
    }

    .nav-cta {
        margin-top: 0.5rem;
        padding: 0.85rem 2.5rem !important;
        font-size: 1rem !important;
    }

    /* Force dark hamburger when mobile menu is open */
    .menu-toggle.active .hamburger span {
        background: var(--color-text);
        box-shadow: none;
    }

}

/* --- Hero Sections --- */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Reduced height for video hero on secondary pages */
.hero.hero-video {
    min-height: 65vh;
}

/* Dark overlay for hero sections with background-image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.95) 100%);
}

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

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Gradient overlay only on the homepage hero */
.hero .hero-video-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(255, 255, 255, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-text {
    max-width: 700px;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    color: #ffffff;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto var(--space-xl);
    max-width: 550px;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

/* Page Hero (smaller) */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 143, 213, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: var(--space-md);
}

.page-hero .subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

/* Page Hero with Video Background */
.page-hero-video {
    background: #0a1628;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--header-height) 0 var(--space-3xl);
}

.page-hero-video::before {
    display: none;
}

.page-hero-video .container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.page-hero-video h1 {
    color: #ffffff;
    text-align: center;
}

.page-hero-video h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-video .subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.page-hero-video .breadcrumb,
.page-hero-video .breadcrumb a,
.page-hero-video .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-video .breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

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

.breadcrumb a:hover {
    color: var(--color-primary);
}

/* Breadcrumb Navigation (SEO partial) — visually hidden, SEO handled via JSON-LD */
.breadcrumb-nav {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
    background: #ffffff;
    border: 1px solid rgba(30, 143, 213, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.03) 0%, rgba(0, 229, 176, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.card:hover {
    border-color: rgba(30, 143, 213, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 143, 213, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.12) 0%, rgba(0, 229, 176, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
    transition: all 0.4s ease;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover .card-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(30, 143, 213, 0.25);
}

.card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--color-primary);
}

.card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-lg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.card:hover .card-link::after {
    width: 100%;
}

.card:hover .card-link {
    gap: 0.7rem;
}

.card-link svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-link svg {
    transform: translateX(4px);
}

/* Service Card (homepage) */
.service-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.service-card .card-tag {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.service-card .card-link {
    margin-top: auto;
    padding-top: var(--space-lg);
}

/* --- Image Cards (noveway.com style) --- */
.image-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
    cursor: pointer;
}

.image-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(30, 143, 213, 0.55) 0%,
            rgba(22, 110, 180, 0.7) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.image-card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    text-align: center;
}

.image-card-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.02em;
}

.image-card-tag {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Discover button */
.image-card-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.image-card-btn:hover {
    background: #ffffff;
    transform: translateY(0) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hover effects */
.image-card:hover .image-card-bg {
    transform: scale(1.08);
}

.image-card:hover .image-card-overlay {
    background: linear-gradient(180deg,
            rgba(30, 143, 213, 0.45) 0%,
            rgba(22, 110, 180, 0.6) 100%);
}

.image-card:hover .image-card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- Feature Sections --- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

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

.feature-content h2,
.feature-content h3 {
    margin-bottom: var(--space-md);
}

.feature-list {
    margin-top: var(--space-lg);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    margin-top: 0.5rem;
}

/* --- Stats Bar (legacy) --- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* --- Stats Band (premium full-width) --- */
.stats-band {
    width: 100%;
    background: #ffffff;
    position: relative;
    overflow: visible;
    padding: 4rem 2rem;
}



/* Ligne dégradée en haut (removed) */
.stats-band::after {
    display: none;
}

.stats-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    cursor: default;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stat-card::before {
    display: none;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(30, 143, 213, 0.04);
    box-shadow: 0 8px 32px rgba(30, 143, 213, 0.1);
}

.stat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.1) 0%, rgba(0, 229, 176, 0.1) 100%);
    border: 1.5px solid rgba(30, 143, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon-wrap {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(30, 143, 213, 0.3);
    transform: scale(1.1);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary, #1e8fd5);
    line-height: 1.5;
    padding-bottom: 0.15em;
    padding-top: 0.25em;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    overflow: visible;
}

.stat-value.stat-text {
    font-size: 1.4rem;
}

.stat-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(30, 143, 213, 0.2), rgba(0, 229, 176, 0.2), transparent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-band {
        padding: 3rem 1.5rem;
    }

    .stats-band-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.3), transparent);
    }

    .stat-value {
        font-size: 1.7rem;
    }

    .stat-value.stat-text {
        font-size: 1.2rem;
    }
}

/* --- Pricing --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
}

.price-table th,
.price-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.price-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-bg-card);
}

.price-table td {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.price-table tr:hover td {
    background: rgba(30, 143, 213, 0.03);
}

.price-value {
    font-weight: 700;
    color: var(--color-heading);
}

/* --- FAQ / Accordion --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.accordion-item.active {
    border-color: var(--color-primary);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    background: var(--color-surface);
    border: none;
    width: 100%;
    text-align: left;
    color: var(--color-heading);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.accordion-header:hover {
    background: var(--color-bg-card-hover);
}

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
    color: var(--color-primary);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.accordion-content p {
    margin-bottom: 0.8rem;
}

/* --- Contact Form --- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.form-group label .required {
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* --- News / Blog Cards --- */
.news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-light);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg-card);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: var(--space-lg);
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.news-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.news-card-body p {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Info Box --- */
.info-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
}

.info-box h4 {
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

/* --- Realisations Gallery --- */
.realisations-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.realisation-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(30, 143, 213, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.realisation-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 143, 213, 0.12), 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(30, 143, 213, 0.15);
}

.realisation-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.realisation-item:hover .realisation-image img {
    transform: scale(1.06);
}

.realisation-caption {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-heading);
    text-align: center;
    margin: 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-4xl);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer-logo .logo-img {
    height: 36px;
    width: auto;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
    margin-bottom: var(--space-lg);
}

.footer-nav ul li {
    margin-bottom: 0.5rem;
}

.footer-nav ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-nav ul li a:hover {
    color: var(--color-primary);
}

.footer-contact address p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.footer-contact address a {
    color: var(--color-text-muted);
}

.footer-contact address a:hover {
    color: var(--color-primary);
}

.footer-contact address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

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

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* --- Cookie Consent --- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.cookie-inner p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Counter animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse glow */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(30, 143, 213, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(30, 143, 213, 0.4);
    }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .hero-stats {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --container-padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 1000;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.3rem;
    }

    .nav-list a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

    .card-grid-2 {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
    }

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

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

    .section {
        padding: var(--space-3xl) 0;
    }

    .page-hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }

    .price-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

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

/* --- Content Sections specific styles --- */
.content-section {
    padding: var(--space-2xl) 0;
}

.content-section h2 {
    margin-bottom: var(--space-lg);
}

.content-section h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-section p {
    margin-bottom: var(--space-md);
}

.content-section ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* --- Étapes Grid (Fixation) --- */
.etapes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.etape-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(30, 143, 213, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.etape-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(30, 143, 213, 0.12), 0 6px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(30, 143, 213, 0.15);
}

.etape-number {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(30, 143, 213, 0.35);
}

.etape-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.etape-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.etape-item:hover .etape-image img {
    transform: scale(1.06);
}

.etape-label {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-heading);
    text-align: center;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0A6CB5 0%, #1E8FD5 45%, #00C99A 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 108, 181, 0.25);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -6%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-banner .hero-actions {
    position: relative;
    z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Map container */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-top: var(--space-xl);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Alert / Success messages */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(30, 143, 213, 0.1);
    border: 1px solid rgba(30, 143, 213, 0.3);
    color: var(--color-primary-light);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* --- News Page --- */
.news-hero {
    padding-top: calc(var(--header-height) + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0f3060 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 143, 213, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.news-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.news-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.news-article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-article-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 143, 213, 0.2);
    box-shadow: 0 16px 48px rgba(30, 143, 213, 0.1), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.news-article-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-article-card:hover .news-article-image img {
    transform: scale(1.06);
}

.news-article-body {
    padding: var(--space-lg);
}

.news-article-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.news-article-body h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-article-body p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .news-hero h1 {
        font-size: 1.8rem;
    }

    .news-hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }
}


/* ================================================
   ARTICLE PAGE  (art-* namespace) — simplified
   ================================================ */

/* Page header (replaces cover photo) */
.art-header {
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0f3060 100%);
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.art-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 143, 213, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.art-header-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.art-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: var(--space-lg);
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.art-back:hover {
    color: rgba(255, 255, 255, 0.95);
    gap: 0.55rem;
}

.art-meta-bar {
    margin-bottom: var(--space-md);
}

.art-date-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(30, 143, 213, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(30, 143, 213, 0.3);
    letter-spacing: 0.03em;
}

.art-title {
    color: #ffffff;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Single-column article body */
.art-single-inner {
    max-width: 780px;
    margin: 0 auto;
}

/* Featured image inside article */
.art-featured-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.art-featured-img img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}

/* Lead paragraph */
.art-lead {
    font-size: 1.13rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

/* Body content */
.art-content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.art-content p {
    margin-bottom: var(--space-lg);
}

.art-content h2 {
    font-size: 1.4rem;
    color: var(--color-heading);
    margin: var(--space-2xl) 0 var(--space-md);
}

.art-content h3 {
    font-size: 1.15rem;
    color: var(--color-heading);
    margin: var(--space-xl) 0 var(--space-sm);
}

.art-content ul {
    padding-left: 1.4rem;
    margin-bottom: var(--space-lg);
}

.art-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Prev/Next navigation */
.art-nav {
    background: var(--color-bg-alt);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
}

.art-nav-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.art-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.art-nav-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.art-nav-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 143, 213, 0.2);
    box-shadow: 0 12px 40px rgba(30, 143, 213, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.art-nav-img {
    aspect-ratio: 16/5;
    overflow: hidden;
}

.art-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.art-nav-card:hover .art-nav-img img {
    transform: scale(1.05);
}

.art-nav-info {
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.art-nav-dir {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.art-nav-date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.art-nav-info h4 {
    font-size: 0.85rem;
    line-height: 1.35;
    color: var(--color-heading);
    margin: 0;
}

.art-nav-right {
    text-align: right;
}

.art-nav-right .art-nav-info {
    align-items: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
    .art-nav-grid {
        grid-template-columns: 1fr;
    }

    .art-nav-right {
        text-align: left;
    }

    .art-nav-right .art-nav-info {
        align-items: flex-start;
    }

    .art-featured-img img {
        max-height: 280px;
    }
}

/* ============================================
   CAROUSEL (Nos réalisations)
   ============================================ */

.carousel-wrapper {
    position: relative;
    padding: 0 var(--space-2xl);
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.carousel-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

.carousel-slide {
    flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3);
    min-width: 0;
}

.carousel-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--color-bg-alt);
    border: 1px solid rgba(30, 143, 213, 0.08);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    display: block;
}

.carousel-image:hover img {
    transform: scale(1.06);
}

.carousel-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 108, 181, 0);
    transition: background 0.35s ease;
}

.carousel-zoom-icon svg {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 9px;
    color: var(--color-primary);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-image:hover .carousel-zoom-icon {
    background: rgba(10, 108, 181, 0.15);
}

.carousel-image:hover .carousel-zoom-icon svg {
    opacity: 1;
    transform: scale(1);
}

.carousel-caption {
    padding: var(--space-sm) var(--space-sm) 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Prev / Next arrow buttons */
.carousel-btn {
    position: absolute;
    top: calc(50% - 1.5rem);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(30, 143, 213, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.carousel-prev {
    left: -8px;
}

.carousel-next {
    right: -8px;
}

/* Dot navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5, 12, 28, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s ease;
    display: block;
}

.lightbox-content img.loading {
    opacity: 0.3;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    max-width: 600px;
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ---- Responsive carousel ---- */
@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc((100% - var(--space-lg)) / 2);
    }
}

@media (max-width: 640px) {
    .carousel-wrapper {
        padding: 0 var(--space-xl);
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

/* ============================================
   PRIX PAGE — Premium Redesign
   ============================================ */

/* --- Hero Cover (image plein écran) --- */
.prix-hero-cover {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.prix-hero-cover-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.prix-hero-cover:hover .prix-hero-cover-img {
    transform: scale(1);
}

.prix-hero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 12, 28, 0.82) 0%,
            rgba(10, 40, 80, 0.70) 50%,
            rgba(5, 12, 28, 0.65) 100%);
}

.prix-hero-cover-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.prix-hero-cover-content .prix-hero-eyebrow {
    color: rgba(100, 195, 255, 0.9);
}

.prix-hero-cover-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.prix-hero-cover-content h1 .highlight {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary-light, #64c3ff) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prix-hero-cover-content .subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    max-width: 580px;
}

.prix-hero-cover-content .prix-badge {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
}

.prix-hero-cover-content .prix-badge svg {
    color: rgba(100, 220, 180, 0.9);
}

@media (max-width: 768px) {
    .prix-hero-cover {
        min-height: 420px;
    }

    .prix-hero-cover-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* --- Hero --- */
.prix-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.prix-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.prix-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(30, 143, 213, 0.08);
    border: 1px solid rgba(30, 143, 213, 0.15);
    color: var(--color-primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

.prix-badge svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* --- Section Icon Header --- */
.prix-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #ffffff;
    margin-bottom: var(--space-md);
}

/* --- Policy Banner --- */
.prix-policy-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.06) 0%, rgba(0, 229, 176, 0.04) 100%);
    border: 1px solid rgba(30, 143, 213, 0.15);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
}

.prix-policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: rgba(30, 143, 213, 0.1);
    color: var(--color-primary);
    margin-top: 2px;
}

.prix-policy-content h4 {
    font-size: 1.05rem;
    color: var(--color-heading);
    margin-bottom: var(--space-sm);
}

.prix-policy-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.prix-policy-content strong {
    color: var(--color-heading);
}

/* --- Delais Grid --- */
.prix-delais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-md);
}

.prix-delai-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.prix-delai-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.prix-delai-card:hover {
    border-color: rgba(30, 143, 213, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.prix-delai-card:hover::before {
    transform: scaleX(1);
}

.prix-delai-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.prix-delai-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.prix-delai-card--geo .prix-delai-value {
    color: var(--color-accent);
}

/* --- PV Pricing Cards --- */
.prix-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.prix-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.prix-card:hover {
    border-color: rgba(30, 143, 213, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 143, 213, 0.12);
}

.prix-card--featured {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(30, 143, 213, 0.3);
}

.prix-card--featured:hover {
    box-shadow: 0 16px 50px rgba(30, 143, 213, 0.4);
    border-color: transparent;
}

.prix-card--featured .prix-card-power,
.prix-card--featured .prix-card-price,
.prix-card--featured .prix-card-label {
    color: #ffffff;
}

.prix-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.prix-card-power {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-heading);
}

.prix-card-price {
    font-size: 1.85rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.prix-card-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.prix-card--cta {
    background: var(--color-bg-alt);
    border-style: dashed;
    justify-content: center;
    gap: var(--space-md);
}

.prix-card--cta:hover {
    background: rgba(30, 143, 213, 0.04);
}

.prix-card-price-custom {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-secondary);
}

/* --- Borne Table Card --- */
.prix-table-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.prix-table-section {
    padding: var(--space-2xl);
}

.prix-table-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.prix-table-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0 var(--space-2xl);
}

.prix-table-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prix-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-lg);
}

.prix-table-row:last-child {
    border-bottom: none;
}

.prix-table-name {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.prix-table-name em {
    font-style: normal;
    font-weight: 600;
    color: var(--color-heading);
}

.prix-table-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.prix-table-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: var(--space-md) var(--space-2xl);
    background: var(--color-bg-alt);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

.prix-table-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

/* --- Battery Grid --- */
.prix-battery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.prix-battery-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.prix-battery-block:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 143, 213, 0.15);
}

.prix-battery-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border);
}

.prix-battery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: rgba(30, 143, 213, 0.1);
    color: var(--color-primary);
}

.prix-battery-icon--accent {
    background: rgba(0, 229, 176, 0.12);
    color: var(--color-accent);
}

.prix-battery-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
}

.prix-battery-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.prix-battery-rows {
    padding: var(--space-md) var(--space-xl);
}

.prix-battery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.prix-battery-row:last-child {
    border-bottom: none;
}

.prix-battery-row--sur-demande {
    opacity: 0.7;
}

.prix-battery-cap {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.prix-battery-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
}

.prix-battery-price--muted {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- Monitoring Grid --- */
.prix-monitoring-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.prix-monitoring-col {
    padding: var(--space-2xl);
}

.prix-monitoring-divider {
    width: 1px;
    background: var(--color-border);
    align-self: stretch;
    min-height: 200px;
}

.prix-monitoring-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.prix-monitoring-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.prix-monitoring-row:last-child {
    border-bottom: none;
}

.prix-monitoring-pack {
    font-size: 0.9rem;
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.3;
}

.prix-monitoring-pack span {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.prix-monitoring-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* --- Services Grid --- */
.prix-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.prix-service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.prix-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.prix-service-card:hover {
    border-color: rgba(30, 143, 213, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 143, 213, 0.1);
}

.prix-service-card:hover::before {
    opacity: 1;
}

.prix-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(30, 143, 213, 0.1);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.prix-service-icon--cyan {
    background: rgba(0, 229, 176, 0.12);
    color: var(--color-accent);
}

.prix-service-card h3 {
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: var(--space-md);
}

.prix-service-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prix-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--color-border);
    gap: var(--space-md);
}

.prix-service-row:first-child {
    border-top: none;
}

.prix-service-row span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.prix-service-row strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* --- Remorque Grid --- */
.prix-remorque-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.prix-remorque-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.prix-remorque-card:hover {
    border-color: rgba(30, 143, 213, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.prix-remorque-card--buy {
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.06) 0%, rgba(0, 229, 176, 0.04) 100%);
    border-color: rgba(30, 143, 213, 0.2);
}

.prix-remorque-type {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.prix-remorque-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}

.prix-remorque-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 3px;
}

.prix-remorque-sub {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .prix-monitoring-grid {
        grid-template-columns: 1fr;
    }

    .prix-monitoring-divider {
        width: 100%;
        height: 1px;
        min-height: unset;
    }

    .prix-battery-grid {
        grid-template-columns: 1fr;
    }

    .prix-table-section {
        padding: var(--space-lg);
    }

    .prix-table-divider {
        margin: 0 var(--space-lg);
    }

    .prix-table-note {
        padding: var(--space-md) var(--space-lg);
    }

    .prix-hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .prix-policy-banner {
        flex-direction: column;
        padding: var(--space-lg);
    }

    .prix-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ===================== REFERENCES / LOGOS MARQUEE ===================== */
.references-section {
    overflow: hidden;
    padding-bottom: var(--space-2xl);
}

.logos-marquee-wrapper {
    position: relative;
    width: 100%;
    margin-top: var(--space-xl);
    overflow: hidden;
}

/* Edge fade mask */
.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary, #fff) 0%, transparent 100%);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary, #fff) 0%, transparent 100%);
}

.logos-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: logos-scroll 32s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes logos-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.logo-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    border-color: #c0cdd8;
}

.logo-item img {
    max-width: 120px;
    max-height: 58px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .logos-track {
        animation: none;
    }
}

@media (max-width: 768px) {

    .logos-marquee-wrapper::before,
    .logos-marquee-wrapper::after {
        width: 60px;
    }

    .logo-item {
        width: 130px;
        height: 75px;
        padding: 12px 16px;
    }
}

/* ============================================
   AVANTAGES PHOTOVOLTAÏQUE SECTION
   ============================================ */

.avantages-section {
    background: var(--color-bg);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xl);
}

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

.avantage-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.avantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 143, 213, 0.16);
}

.avantage-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 62%;
    overflow: hidden;
}

.avantage-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avantage-card:hover .avantage-img-wrap img {
    transform: scale(1.07);
}

.avantage-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 18, 40, 0.55) 100%);
    z-index: 1;
}

.avantage-body {
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.avantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(30, 143, 213, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avantage-card:hover .avantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(30, 143, 213, 0.45);
}

.avantage-body h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--color-heading);
    line-height: 1.3;
}

.avantage-body p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.avantage-body p strong {
    color: var(--color-primary);
}

@media (max-width: 1280px) {
    .avantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .avantages-grid {
        grid-template-columns: 1fr;
    }

    .avantage-img-wrap {
        padding-top: 55%;
    }
}

/* ============================================
   MISSION ICONS SECTION (style ancien site)
   ============================================ */
.mission-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl) var(--space-2xl);
    text-align: center;
}

.mission-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mission-icon-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(30, 143, 213, 0.12);
    outline: 3px solid rgba(30, 143, 213, 0.25);
    outline-offset: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-icon-wrap:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 30px rgba(30, 143, 213, 0.22);
}

.mission-icon-wrap img {
    width: 56px;
    height: auto;
    display: block;
    margin: auto;
    filter: invert(45%) sepia(80%) saturate(500%) hue-rotate(180deg) brightness(95%);
}

.mission-icon-col h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: var(--color-heading);
    margin-bottom: 0;
}

.mission-icon-col p {
    font-size: 1rem;
    color: var(--color-text-secondary, #555);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .mission-icons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

/* ============================================
   PAGE PRIX — Hero Cover
   ============================================ */

.prix-hero-cover {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.prix-hero-cover-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.prix-hero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 25, 55, 0.72) 0%, rgba(10, 50, 90, 0.55) 100%);
    z-index: 1;
}

.prix-hero-cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.prix-hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: var(--space-md);
}

.prix-hero-cover-content h1 {
    color: #ffffff;
    margin-bottom: var(--space-md);
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.prix-hero-cover-content h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prix-hero-cover-content .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin: 0 auto var(--space-xl);
}

.prix-hero-badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prix-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
}

.prix-badge svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* ============================================
   PAGE PRIX — Section Icon
   ============================================ */

.prix-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #ffffff;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(30, 143, 213, 0.3);
}

/* ============================================
   PAGE PRIX — Table Cards
   ============================================ */

.prix-table-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.prix-table-section {
    padding: var(--space-xl);
}

.prix-table-section-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.prix-table-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prix-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.prix-table-row:last-child {
    border-bottom: none;
}

.prix-table-name {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.prix-table-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.prix-table-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0 var(--space-xl);
}

.prix-table-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: var(--color-bg-alt);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

.prix-table-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PAGE PRIX — Monitoring Grid
   ============================================ */

.prix-monitoring-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.prix-monitoring-col {
    padding: var(--space-xl);
}

.prix-monitoring-divider {
    width: 1px;
    background: var(--color-border);
    margin: var(--space-xl) 0;
}

.prix-monitoring-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.prix-monitoring-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
}

.prix-monitoring-row:last-child {
    border-bottom: none;
}

.prix-monitoring-pack {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.prix-monitoring-pack span {
    display: block;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.prix-monitoring-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

/* ============================================
   PAGE PRIX — Policy Banner
   ============================================ */

.prix-policy-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.06) 0%, rgba(0, 229, 176, 0.04) 100%);
    border: 1px solid rgba(30, 143, 213, 0.15);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
}

.prix-policy-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prix-policy-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.prix-policy-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   PAGE PRIX — Responsive
   ============================================ */

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

    .prix-monitoring-divider {
        width: 100%;
        height: 1px;
        margin: 0 var(--space-xl);
    }

    .prix-policy-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .prix-hero-cover {
        min-height: 50vh;
    }

    .prix-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .prix-table-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .prix-monitoring-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Régulation Dynamique Section --- */
.regulation-section {
    background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.regulation-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 176, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.regulation-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 143, 213, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.regulation-visual {
    max-width: 820px;
    margin: 0 auto var(--space-3xl);
}

.regulation-graph-card {
    background: #ffffff;
    border: 1px solid rgba(30, 143, 213, 0.1);
    border-radius: 20px;
    padding: var(--space-2xl) var(--space-xl);
    box-shadow:
        0 4px 24px rgba(30, 143, 213, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.regulation-graph-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00e5b0, #1e8fd5);
    opacity: 0.7;
}

.regulation-graph-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(30, 143, 213, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(30, 143, 213, 0.18);
}

.regulation-graph-card img {
    width: 100%;
    height: auto;
    display: block;
}

.regulation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.regulation-benefit {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.regulation-benefit:hover {
    background: rgba(30, 143, 213, 0.04);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(30, 143, 213, 0.08);
}

.regulation-benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 143, 213, 0.1) 0%, rgba(0, 229, 176, 0.08) 100%);
    border: 1.5px solid rgba(30, 143, 213, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.regulation-benefit:hover .regulation-benefit-icon {
    background: linear-gradient(135deg, #1e8fd5, #00e5b0);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(30, 143, 213, 0.3);
    transform: scale(1.1);
}

.regulation-benefit h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-heading);
    transition: color 0.3s ease;
}

.regulation-benefit:hover h3 {
    color: var(--color-primary);
}

.regulation-benefit p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .regulation-benefits {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .regulation-graph-card {
        padding: var(--space-lg) var(--space-md);
    }
}