/* ==========================================================================
   Generafi - Codia Design System CSS
   Matches /codia/index.html mockup exactly
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Codia Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors - from Codia */
    --generafi-primary: #0066CC;
    --generafi-primary-hover: #0052a3;
    --generafi-cyan: #00BBCE;
    --generafi-dark: #001428;

    /* Text Colors */
    --generafi-text-dark: #001428;
    --generafi-text-body: #5B5B5B;
    --generafi-text-light: #94A3B8;

    /* Background Colors */
    --generafi-bg-white: #FFFFFF;
    --generafi-bg-light: #F7FAFD;
    --generafi-bg-section: #F8FAFC;

    /* Footer */
    --generafi-footer-bg: #0859A9;

    /* Typography */
    --font-heading: 'Parkinsans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Container */
    --container-content: 1280px;
    --container-page: 1440px;
}

/* --------------------------------------------------------------------------
   Elementor Editor Fix — prevent section height jumps when editing text.
   content_position:center → align-self:center on columns → column sizes to
   content. TinyMCE inline editor adds height → section jumps.
   Fix: force columns to stretch to row height; widget-wrap keeps centering.
   -------------------------------------------------------------------------- */
body.elementor-editor-active .elementor-column {
    align-self: stretch !important;
}

/* Fix: TinyMCE wraps content in <p> with default margins on click → height jump.
   Reset <p> margins inside Text Editor widgets when editing. */
body.elementor-editor-active .elementor-widget-text-editor .elementor-text-editor p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--generafi-text-body);
    background-color: var(--generafi-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

p {
    color: var(--generafi-text-body);
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   Global Container - Content boxed at 1280px, backgrounds full-width
   -------------------------------------------------------------------------- */
.elementor-section.elementor-section-full_width > .elementor-container {
    max-width: var(--container-content);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header - Elementor Location Header
   -------------------------------------------------------------------------- */

/* The location wrapper: NOT sticky, transparent bg (grid shows through on homepage) */
.elementor-location-header {
    position: relative;
    z-index: 100;
    background: transparent;
}

/* The header section bar: 1354px, centered, rounded, white bg, shadow */
.elementor-location-header .elementor-section.elementor-top-section {
    max-width: 1354px;
    margin: 40px auto 0 auto;
    border-radius: 100px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header container inside the bar */
.elementor-location-header .elementor-top-section > .elementor-container {
    max-width: 100%;
    padding: 0 30px;
}

/* Header columns: space-between layout, auto-width columns */
.elementor-location-header .elementor-top-section > .elementor-container > .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
}

.elementor-location-header .elementor-top-section > .elementor-container {
    justify-content: space-between !important;
    align-items: center !important;
}

/* Nav menu styling */
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu a {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--generafi-text-dark) !important;
}

.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu a:hover {
    color: var(--generafi-primary) !important;
}

/* Active nav item */
.elementor-location-header .elementor-nav-menu--main .elementor-item.elementor-item-active {
    color: var(--generafi-primary) !important;
}

/* Header CTA button - "Contactez-nous" */
.elementor-location-header .elementor-button {
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    border-radius: 100px !important;
}

/* --------------------------------------------------------------------------
   Codia Button Style: text + circle icon (30x30px) on the right
   Used in header, hero, and CTA sections
   -------------------------------------------------------------------------- */

/* All buttons with circle icon pattern */
.codia-btn .elementor-button,
.elementor-location-header .elementor-element-hd01777 .elementor-button {
    padding: 5px 5px 5px 18px !important;
    gap: 8px;
}

.codia-btn .elementor-button-content-wrapper,
.hero-cta-primary .elementor-button-content-wrapper,
.hero-cta-phone .elementor-button-content-wrapper,
.elementor-location-header .elementor-element-hd01777 .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.codia-btn .elementor-button-text,
.hero-cta-primary .elementor-button-text,
.hero-cta-phone .elementor-button-text,
.elementor-location-header .elementor-element-hd01777 .elementor-button-text {
    line-height: 30px !important;
}

/* Icon circle - solid white (for blue/primary buttons) */
.codia-btn .elementor-button-icon,
.elementor-location-header .elementor-element-hd01777 .elementor-button-icon {
    background-color: #ffffff;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.codia-btn .elementor-button-icon svg,
.elementor-location-header .elementor-element-hd01777 .elementor-button-icon svg {
    width: 11px;
    height: 11px;
    fill: #0066cc;
}

/* Hero primary button (Contactez-nous) */
.hero-cta-primary .elementor-button {
    background-color: #0066cc !important;
    border-radius: 100px !important;
    padding: 5px 5px 5px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

.hero-cta-primary .elementor-button-icon {
    background-color: #ffffff;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cta-primary .elementor-button-icon svg {
    width: 11px;
    height: 11px;
    fill: #0066cc;
}

/* Hero secondary button (phone) - white bg, blue circle */
.hero-cta-phone .elementor-button {
    background-color: #ffffff !important;
    border: 1px solid #eff0f0 !important;
    border-radius: 100px !important;
    padding: 5px 5px 5px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #0066cc !important;
}

.hero-cta-phone .elementor-button-icon {
    background-color: #0066cc;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-cta-phone .elementor-button-icon svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
}

/* --------------------------------------------------------------------------
   Hero Section - Background Grid
   Only on homepage (page ID 8 = elementor-page-8)
   -------------------------------------------------------------------------- */

/* Body setup for hero bg */
body.elementor-page-8 {
    position: relative;
    overflow-x: hidden;
}

/* Grid SVG as pseudo-element behind header - full viewport width */
body.elementor-page-8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1180px;
    background-image: url('https://generafi.viixdigital.ch/wp-content/uploads/2026/02/hero-bg-grid.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
    pointer-events: none;
}

/* Make sure the header sits on top of the grid */
body.elementor-page-8 .elementor-location-header {
    position: relative;
    z-index: 100;
    background: transparent !important;
}

/* Page content sits above the grid */
body.elementor-page-8 .elementor {
    position: relative;
    z-index: 1;
}

/* Hero section badge - pill with border like Codia */
.hero-badge .elementor-heading-title {
    display: inline-block !important;
    background-color: #ffffff;
    color: #0066cc;
    padding: 9px 22px;
    border-radius: 100px;
    border: 1px solid #eff0f0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    width: auto !important;
}

/* Hero title */
.elementor-page-8 h1.elementor-heading-title {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    color: var(--generafi-text-dark) !important;
}

/* Hero subtitle */
.hero-subtitle p,
.hero-subtitle .elementor-text-editor {
    font-family: var(--font-body);
    color: var(--generafi-text-body);
}

/* Hero image */
.hero-image img {
    border-radius: 20px !important;
}

/* Hero buttons row - centered */
.hero-buttons-row.elementor-inner-section {
    margin: 0 auto !important;
}

.hero-buttons-row .elementor-container {
    justify-content: center !important;
    gap: 24px !important;
}

.hero-buttons-row .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
}

/* --------------------------------------------------------------------------
   Social Proof Section
   -------------------------------------------------------------------------- */
/* Partner logos — infinite marquee */
.partner-carousel img {
    /*height: 28px !important;*/
    width: auto !important;
    object-fit: contain !important;
    max-width: 100%;
}

.partner-carousel .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Marquee: continuous scroll (activated by JS) */
.partner-carousel.marquee-active .swiper {
    overflow: hidden !important;
}

.partner-carousel.marquee-active .swiper-wrapper {
    display: flex !important;
    width: max-content !important;
    animation: partner-marquee 18s linear infinite !important;
    transition: none !important;
    align-items: center;
}

.partner-carousel.marquee-active .swiper-slide {
    flex-shrink: 0 !important;
    width: auto !important;
    padding: 0 28px !important;
}

@keyframes partner-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Qui est GénéraFi Section
   -------------------------------------------------------------------------- */
.qui-image img {
    border-radius: 14px !important;
    width: 100% !important;
}

/* Buttons row - left aligned, auto-width columns */
.elementor-element-qeg00a8 {
    margin: 0 !important;
}

.elementor-element-qeg00a8 > .elementor-container {
    justify-content: flex-start !important;
    gap: 8px !important;
}

.elementor-element-qeg00a8 .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
}

/* Codia outlined button style */
.codia-btn-outlined .elementor-button {
    background-color: transparent !important;
    border: 1px solid #0066cc !important;
    border-radius: 100px !important;
    padding: 5px 5px 5px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #0066cc !important;
}

.codia-btn-outlined .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.codia-btn-outlined .elementor-button-icon {
    background-color: #0066cc;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.codia-btn-outlined .elementor-button-icon svg {
    width: 11px;
    height: 11px;
    fill: #ffffff;
}

.codia-btn-outlined .elementor-button-text {
    line-height: 30px !important;
}

/* Codia primary button reusable */
.codia-btn-primary .elementor-button {
    background-color: #0066cc !important;
    border-radius: 100px !important;
    padding: 5px 5px 5px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
}

.codia-btn-primary .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.codia-btn-primary .elementor-button-icon {
    background-color: #ffffff;
    border-radius: 100px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.codia-btn-primary .elementor-button-icon svg {
    width: 11px;
    height: 11px;
    fill: #0066cc;
}

.codia-btn-primary .elementor-button-text {
    line-height: 30px !important;
}

/* --------------------------------------------------------------------------
   Mission & Impact - Stats Block
   -------------------------------------------------------------------------- */
.mission-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.mission-stat-big {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.stat-number-big {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 60px;
    color: #0066cc;
}

.stat-label-big {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #424242;
}

.mission-stat-divider {
    width: 4px;
    height: 61px;
    border-radius: 4px;
    background: linear-gradient(to bottom, #0066cc 85%, #00bbce 85%);
    flex-shrink: 0;
}

.mission-stat-group {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
}

.mission-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-sm {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    color: #424242;
    min-width: 60px;
    display: flex;
    align-items: flex-start;
}

.stat-label-sm {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #868686;
}

.stat-plus {
    font-size: 28px;
    font-weight: 500;
    vertical-align: super;
}

.stat-plus-sm {
    font-size: 12px;
    font-weight: 500;
    vertical-align: super;
}

.stat-arrow-wrap {
    display: inline-flex;
    align-self: flex-start;
    margin-right: 4px;
    margin-top: 2px;
}

.stat-number-sm {
    display: flex !important;
    align-items: flex-start !important;
}

/* Mission image */
.mission-image img {
    border-radius: 14px !important;
    width: 100% !important;
}

/* Mission buttons row */
.elementor-element-mis00a7 > .elementor-container {
    justify-content: flex-start !important;
    gap: 8px !important;
}

.elementor-element-mis00a7 .elementor-column {
    width: auto !important;
    flex: 0 0 auto !important;
}

/* --------------------------------------------------------------------------
   Product Cards
   -------------------------------------------------------------------------- */
.product-cards-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.product-cards-row .product-card:nth-child(2) {
    margin-top: 30px;
}

/* Row 2: ÉTATS FINANCIERS (right) en haut, TVA (left) en bas */
.elementor-element-prd00c2 .product-cards-row .product-card:nth-child(1) {
    margin-top: 30px;
}

.elementor-element-prd00c2 .product-cards-row .product-card:nth-child(2) {
    margin-top: 0;
}

/* Fix: product cards use absolute positioning → don't contribute to column height.
   Give HTML columns min-height matching the visual card height.
   Also constrain the native text columns so inline editor doesn't expand the section. */
.elementor-element-prd00b7 > .elementor-widget-wrap,
.elementor-element-prd00c2 > .elementor-widget-wrap,
.elementor-element-prd00d2 > .elementor-widget-wrap {
    min-height: 520px;
}



.product-card {
    width: 348px;
    position: relative;
    flex-shrink: 0;
    min-height: 454px;
}

.pc-header {
    width: 305px;
    height: 108px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.pc-body {
    width: 348px;
    padding: 24px;
    background-color: #ffffff;
    border: 0.75px solid #e2e8f0;
    border-radius: 20px;
    position: absolute;
    top: 4px;
    left: 0;
    box-sizing: border-box;
}

.pc-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pc-icon-letter {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.pc-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #001428;
    margin-bottom: 8px;
}

.pc-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #5b5c5c;
    margin-bottom: 16px;
}

.pc-features-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
    color: #66727e;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pc-features-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.pc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.pc-check {
    width: 17px;
    height: 17px;
    min-width: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
}

.pc-feature-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    color: #5b5c5c;
}

.pc-divider {
    height: 0.75px;
    background: #e2e8f0;
}

.pc-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    display: none;
}

/* Single INEO cards */
.product-card-single .product-card {
    width: 100%;
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   Section Headers - Consistent styling
   -------------------------------------------------------------------------- */
.section-pill .elementor-text-editor span {
    display: inline-block;
    background: rgba(0, 102, 204, 0.08);
    color: var(--generafi-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   Elementor Widget Overrides
   -------------------------------------------------------------------------- */

/* All Elementor buttons */
.elementor-widget-button .elementor-button {
    font-family: var(--font-body) !important;
    transition: all 0.2s ease !important;
}

/* Elementor headings */
.elementor-widget-heading .elementor-heading-title {
    font-family: var(--font-heading);
}

/* Elementor text editor */
.elementor-widget-text-editor {
    font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
/* ===== TESTIMONIALS — Native Elementor Testimonial Carousel ===== */

/* Section container wider: 3 cards × 445px + 2 gaps × 24px = 1384px (Codia spec) */
.elementor-element-tst001 > .elementor-container {
    max-width: 1384px !important;
}

/* Header inner section: stays at 1280px centered within wider container */
.elementor-element-tst010 > .elementor-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
}

/* Reset widget margins in header columns */
.elementor-element-tst011 > .elementor-widget-wrap > .elementor-widget {
    margin-bottom: 0 !important;
}
.elementor-element-tst012 { margin-bottom: 5px !important; }

/* Nav buttons (header right column) */
.tst-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}
.tst-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: none;
    transition: opacity 0.2s;
}
.tst-nav-btn:hover { opacity: 0.85; }
.tst-nav-prev {
    background-color: #fafcfe;
    border: 0.5px solid #e1edf9 !important;
}
.tst-nav-next {
    background-color: #0066cc;
}

/* Slide styling */
.tst-native-carousel .swiper-slide {
    border-style: solid !important;
    height: auto !important;
}

/* Card fills full slide height */
.tst-native-carousel .elementor-testimonial {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
}

/* Quote mark icon — Codia: 38.8x28.1px, 48px gap to stars section */
.tst-native-carousel .elementor-testimonial__content::before {
    content: '';
    display: block;
    width: 39px;
    height: 28px;
    background-image: url('https://generafi.viixdigital.ch/wp-content/uploads/2026/02/quote-mark.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 32px;
    flex-shrink: 0;
}

/* Star rating — 5 gold stars, Codia gap 7.143px, then 16px to text */
.tst-native-carousel .elementor-testimonial__text::before {
    content: '\2605\2605\2605\2605\2605';
    display: block;
    color: #f5a623;
    font-size: 20px;
    letter-spacing: 7px;
    line-height: 1;
    margin-bottom: 16px;
}

/* Cite (name + title) */
.tst-native-carousel .elementor-testimonial__cite {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Footer alignment */
.tst-native-carousel .elementor-testimonial__footer {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

/* Text color inherit */
.tst-native-carousel .elementor-testimonial__text {
    color: inherit !important;
}

/* --------------------------------------------------------------------------
   Avantages / Pourquoi choisir GénéraFi — Native Elementor
   -------------------------------------------------------------------------- */

/* Container max-width override (inner sections boxed) */
.elementor-element-avt020 > .elementor-container,
.elementor-element-avt030 > .elementor-container {
    max-width: 100% !important;
    gap: 24px !important;
}

/* Icon image inside Image Box — 56x56 container with border-radius */
.avt-native-card .elementor-image-box-img img {
    width: 56px !important;
    height: 56px !important;
    object-fit: cover;
    border-radius: 16px !important;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(82, 88, 102, 0.06);
    padding: 12px;
    box-sizing: content-box;
}

/* Fix: force <p> inside Image Box desc to inherit color */
.avt-native-card .elementor-image-box-description {
    color: inherit !important;
}

/* Image Box text alignment */
.avt-native-card .elementor-image-box-wrapper {
    text-align: left !important;
}

.avt-native-card .elementor-image-box-img {
    text-align: left !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* --------------------------------------------------------------------------
   Avantages — Old HTML classes (kept for fallback)
   -------------------------------------------------------------------------- */
.avantages-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.avantages-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 904px;
    text-align: center;
}

.avantages-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: #00bbce;
    text-transform: capitalize;
}

.avantages-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    line-height: 52.5px;
    color: #001428;
    margin: 0;
}

.avantages-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5b5c5c;
    margin: 0;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    width: 100%;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    padding: 20px;
    background-color: rgba(0, 102, 204, 0.02);
    border-radius: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(82, 88, 102, 0.06);
    flex-shrink: 0;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    color: #001428;
    margin: 0;
}

.benefit-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5b5c5c;
    margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Banner Section — Native Elementor (minimal CSS, rest via Elementor settings)
   -------------------------------------------------------------------------- */

/* Container max-width override (inner section boxed) */
.elementor-element-cta010 > .elementor-container {
    max-width: 100% !important;
}

/* Badge pill — only visual that Elementor settings can't handle */
.cta-native-badge .elementor-heading-title {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(244,244,244,0.08));
    border-radius: 200px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 16.8px !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Force text-editor <p> inside CTA to inherit widget color (kit global overrides it) */
.elementor-element-cta014 p {
    color: inherit !important;
}

/* Image border-radius */
.cta-native-img img {
    border-radius: 10px !important;
}

/* --------------------------------------------------------------------------
   CTA Banner Section — Old HTML classes (kept for fallback)
   -------------------------------------------------------------------------- */
.cta-block {
    width: 100%;
    height: 478px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(266deg, rgba(255, 255, 255, 0.20) 38.47%, rgba(255, 255, 255, 0.00) 84.93%), #025CB5;
    background-image: url('https://generafi.viixdigital.ch/wp-content/uploads/2026/02/cta-bg-decor.webp'), linear-gradient(266deg, rgba(255, 255, 255, 0.20) 38.47%, rgba(255, 255, 255, 0.00) 84.93%);
    background-color: #025CB5;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.cta-left {
    display: flex;
    width: 497px;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.cta-image-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cta-img {
    width: 90%;
    max-width: 622px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.cta-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(244,244,244,0.08));
    border-radius: 200px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    color: rgba(255,255,255,0.7);
}

.cta-heading {
    font-family: var(--font-heading) !important;
    font-size: 48px !important;
    font-weight: 600 !important;
    line-height: 57.6px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #ffffff;
    margin: 0;
}

.cta-form {
    display: flex;
    gap: 5px;
    align-items: stretch;
    width: 100%;
}

.cta-input {
    flex: 1;
    height: 42px;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 78px 2px 2px 78px;
    border: 0.5px solid #e2e4e9;
    box-shadow: 0 1px 2px 0 rgba(82, 88, 102, 0.06);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: #001428;
    outline: none;
    box-sizing: border-box;
}

.cta-input::placeholder {
    color: #8b9eb0;
}

.cta-submit {
    display: flex;
    height: 42px;
    padding: 5px 5px 5px 18px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    background-color: #00bbce !important;
    border-radius: 0 100px 100px 0 !important;
    border: none !important;
    cursor: pointer;
    flex-shrink: 0;
}

.cta-submit-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #ffffff;
    white-space: nowrap;
}

.cta-submit-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 100px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Notre Vision Section
   -------------------------------------------------------------------------- */
.vision-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.vision-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    text-align: center;
    max-width: 846px;
}

.vision-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #00bbce;
    text-transform: capitalize;
}

.vision-main-title {
    font-family: var(--font-heading) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52.5px !important;
    color: #001428 !important;
    margin: 0 !important;
    text-align: center;
}

.vision-block {
    display: flex;
    width: 100%;
    height: 490px;
    padding: 50px;
    align-items: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    gap: 40px;
}

.vision-block-blue {
    background-color: rgba(0, 102, 204, 0.02);
    border: 0.7px solid rgba(0, 102, 204, 0.1);
}

.vision-block-cyan {
    background-color: rgba(0, 187, 206, 0.02);
    border: 0.7px solid rgba(0, 187, 206, 0.1);
}

.vision-block-reversed {
    flex-direction: row;
}

.vision-block-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 50%;
    flex-shrink: 0;
    z-index: 2;
}

.vision-icon {
    width: 54px;
    height: 54px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon img {
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.vision-block-title {
    font-family: var(--font-heading) !important;
    font-size: 33px !important;
    font-weight: 500 !important;
    line-height: 42.9px !important;
    color: #001428 !important;
    margin: 0 !important;
}

.vision-block-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5b5c5c;
    margin: 0;
    max-width: 614px;
}

.vision-btn {
    display: inline-flex;
    height: 42px;
    padding: 5px 5px 5px 18px;
    gap: 8px;
    align-items: center;
    border-radius: 100px;
    text-decoration: none;
    flex-shrink: 0;
}

.vision-btn-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #ffffff;
    white-space: nowrap;
}

.vision-btn-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 100px;
    flex-shrink: 0;
}

.vision-block-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.vision-block-img img {
    max-width: 100%;
    height: auto;
    border-radius: 17px;
    object-fit: contain;
}

/* ==========================================================================
   Vision Native Elementor — Codia-exact specs
   ========================================================================== */

/* --- Reset ALL Elementor default margins in the outer vision column (vis002) --- */
.elementor-element-vis002 > .elementor-widget-wrap > .elementor-widget,
.elementor-element-vis002 > .elementor-widget-wrap > .elementor-inner-section {
    margin-bottom: 0 !important;
}

/* --- Section header (label + title) — Codia: gap 5px --- */
.vision-native-label {
    margin-bottom: 5px !important;
}

.vision-native-label .elementor-heading-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 16.8px !important;
    color: #00bbce !important;
    text-transform: capitalize;
}

.vision-native-title {
    max-width: 846px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0 !important;
}

.vision-native-title h3.elementor-heading-title {
    font-family: 'Parkinsans', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52.5px !important;
    color: #001428 !important;
    text-align: center !important;
    margin: 0 !important;
}

/* --- Block containers (by element ID — _css_classes ignored on inner sections) --- */
.elementor-element-vis020 > .elementor-container,
.elementor-element-vis030 > .elementor-container {
    display: flex !important;
    align-items: stretch !important;
    min-height: 490px;
    border-radius: 24px !important;
    gap: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
}

.elementor-element-vis020 > .elementor-container {
    padding: 50px !important;
    background-color: rgba(0, 102, 204, 0.02);
    border: 0.7px solid rgba(0, 102, 204, 0.1);
}

.elementor-element-vis030 > .elementor-container {
    padding: 54px 50px !important;
    background-color: rgba(0, 187, 206, 0.02);
    border: 0.7px solid rgba(0, 187, 206, 0.1);
}

/* Columns stretch to full block height */
.elementor-element-vis020 .elementor-column,
.elementor-element-vis030 .elementor-column {
    height: 100% !important;
}

/* Spacer between blocks: Codia = 40px */
.elementor-element-vis028 .elementor-spacer-inner {
    height: 40px !important;
}

/* --- Text columns — content vertically centered --- */
.elementor-element-vis021 > .elementor-widget-wrap,
.elementor-element-vis033 > .elementor-widget-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: flex-start !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 0 !important;
}

/* --- Image columns — image vertically centered --- */
.elementor-element-vis026,
.elementor-element-vis031 {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.elementor-element-vis026 > .elementor-widget-wrap,
.elementor-element-vis031 > .elementor-widget-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 !important;
}

/* --- Reset ALL Elementor default widget margins inside vision blocks --- */
.elementor-element-vis021 .elementor-widget,
.elementor-element-vis033 .elementor-widget,
.elementor-element-vis026 .elementor-widget,
.elementor-element-vis031 .elementor-widget {
    margin-bottom: 0 !important;
}

/* --- Spacing per Codia: icon 40px → title 16px → desc 32px → button --- */
.elementor-element-vis021 .elementor-element-vis022,
.elementor-element-vis033 .elementor-element-vis034 {
    margin-bottom: 40px !important;
}

.elementor-element-vis021 .elementor-element-vis023,
.elementor-element-vis033 .elementor-element-vis035 {
    margin-bottom: 16px !important;
}

.elementor-element-vis021 .elementor-element-vis024,
.elementor-element-vis033 .elementor-element-vis036 {
    margin-bottom: 32px !important;
}

/* --- Icon circles (high specificity to override widget reset) --- */
.elementor-widget.vision-native-icon-blue,
.elementor-widget.vision-native-icon-blue > .elementor-widget-container {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    border-radius: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-color: #0066cc !important;
}

.elementor-widget.vision-native-icon-cyan,
.elementor-widget.vision-native-icon-cyan > .elementor-widget-container {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    max-width: 54px !important;
    border-radius: 100px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-color: #00bbce !important;
}

.vision-native-icon-blue img,
.vision-native-icon-cyan img {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* --- Block title --- */
.vision-native-block-title .elementor-heading-title {
    font-family: 'Parkinsans', sans-serif !important;
    font-size: 33px !important;
    font-weight: 500 !important;
    line-height: 42.9px !important;
    color: #001428 !important;
    margin: 0 !important;
}

/* --- Block description --- */
.vision-native-block-desc,
.vision-native-block-desc .elementor-widget-container,
.vision-native-block-desc p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #5b5c5c !important;
    margin: 0 !important;
}

/* --- Button — Codia pill with arrow circle --- */
.vision-native-btn .elementor-button {
    height: 42px !important;
    padding: 5px 5px 5px 18px !important;
    gap: 8px !important;
    border-radius: 100px !important;
    display: inline-flex !important;
    align-items: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 19px !important;
    color: #ffffff !important;
    border: none !important;
}

.vision-native-btn-blue .elementor-button {
    background-color: #0066cc !important;
}

.vision-native-btn-cyan .elementor-button {
    background-color: #00bbce !important;
}

.vision-native-btn .elementor-button::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5h9M6 1l4 4-4 4' stroke='%230066cc' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.vision-native-btn-cyan .elementor-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5h9M6 1l4 4-4 4' stroke='%2300bbce' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.vision-native-btn .elementor-button-icon {
    display: none !important;
}

.vision-native-btn .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* --- Image styling --- */
.vision-native-img img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 17px !important;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-info-card {
    background-color: #0066cc;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.contact-info-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #ffffff;
    text-transform: capitalize;
}

.contact-info-title {
    font-family: var(--font-heading) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52.5px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.contact-info-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-info-item svg {
    flex-shrink: 0;
}

.contact-info-item span {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
}

.contact-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 133px;
    height: 145px;
    z-index: 1;
    opacity: 0.3;
}

/* Equal height columns */
.elementor-element-cnt001 > .elementor-container {
    align-items: stretch !important;
}

.elementor-element-cnt001 .elementor-widget-wrap {
    height: 100%;
}

.elementor-element-cnt001 .elementor-widget-html,
.elementor-element-cnt001 .elementor-widget-form {
    height: 100%;
}

.elementor-element-cnt001 .elementor-widget-html .elementor-widget-container,
.elementor-element-cnt001 .elementor-widget-form .elementor-widget-container {
    height: 100%;
}

/* Contact Form Styling */
.elementor-element-cnt004 .elementor-widget-form,
.elementor-element-cnt004 .elementor-widget-form .elementor-widget-container {
    height: 100%;
}

.elementor-element-cnt004 .elementor-form {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.06);
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elementor-element-cnt004 .elementor-field-group {
    padding: 0 !important;
    margin-bottom: 24px !important;
}

.elementor-element-cnt004 .elementor-field-label {
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 16.8px !important;
    color: #001428 !important;
    margin-bottom: 11px !important;
}

.elementor-element-cnt004 .elementor-form-fields-wrapper {
    gap: 24px !important;
}

.elementor-element-cnt004 .elementor-field-group.elementor-col-50 {
    width: calc(50% - 12px) !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.elementor-element-cnt004 .elementor-field-textual {
    border-radius: 400px !important;
    border: 1px solid #dadada !important;
    padding: 14px 18px 14px 44px !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 300 !important;
    color: #001428 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: 18px center !important;
    background-size: 16px 16px !important;
}

/* Icon: Nom complet - user */
.elementor-element-cnt004 .elementor-field-group-name .elementor-field-textual {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='7' r='4' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* Icon: Société - building */
.elementor-element-cnt004 .elementor-field-group-company .elementor-field-textual,
.elementor-element-cnt004 .elementor-field-group:nth-child(2) .elementor-field-textual {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21h18M9 8h1M9 12h1M9 16h1M14 8h1M14 12h1M14 16h1M5 21V5a2 2 0 012-2h10a2 2 0 012 2v16' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* Icon: Téléphone - phone */
.elementor-element-cnt004 .elementor-field-group-tel .elementor-field-textual,
.elementor-element-cnt004 .elementor-field-group:nth-child(3) .elementor-field-textual {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6A19.79 19.79 0 012.12 4.18 2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* Icon: Email - envelope */
.elementor-element-cnt004 .elementor-field-group-email .elementor-field-textual,
.elementor-element-cnt004 .elementor-field-group:nth-child(4) .elementor-field-textual {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 6l-10 7L2 6' stroke='%236d6d6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.elementor-element-cnt004 .elementor-field-textual::placeholder {
    color: #6d6d6d !important;
}

.elementor-element-cnt004 textarea.elementor-field-textual {
    border-radius: 22px !important;
    min-height: 138px !important;
    padding-left: 18px !important;
    background-image: none !important;
}

.elementor-element-cnt004 .elementor-field-type-submit {
    display: flex !important;
    justify-content: flex-end !important;
    width: auto !important;
    flex: none !important;
    margin-left: auto !important;
}

.elementor-element-cnt004 .elementor-field-type-submit .elementor-button {
    background-color: #0066cc !important;
    border-radius: 100px !important;
    padding: 5px 7px 5px 18px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    width: auto !important;
    max-width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
}

.elementor-element-cnt004 .elementor-button::after {
    content: '';
    display: inline-flex;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: #ffffff;
    border-radius: 100px;
    margin-left: 8px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='10' viewBox='0 0 11 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5h9M6 1l4 4-4 4' stroke='%230066cc' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 10px;
    flex-shrink: 0;
}

.elementor-element-cnt004 .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.elementor-element-cnt004 .elementor-button .elementor-button-text {
    line-height: 30px !important;
}

/* --------------------------------------------------------------------------
   Blog Section
   -------------------------------------------------------------------------- */
.blog-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.blog-header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 631px;
}

.blog-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: #00bbce;
    text-transform: capitalize;
}

.blog-title {
    font-family: var(--font-heading) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52.5px !important;
    color: #001428 !important;
    margin: 0 !important;
}

.blog-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5b5c5c;
    margin: 0;
}

.blog-header-btn {
    display: inline-flex;
    height: 42px;
    padding: 5px 5px 5px 18px;
    gap: 8px;
    align-items: center;
    background-color: #0066cc;
    border-radius: 100px;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-header-btn-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 100px;
    flex-shrink: 0;
}

.blog-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.blog-card {
    flex: 1;
    padding: 12px;
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 40px 0 rgba(219, 227, 237, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-card-img {
    height: 259px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0 4px 4px 4px;
}

.blog-card-meta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.blog-meta-item {
    display: flex;
    gap: 6px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #575757;
}

.blog-card-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 27px !important;
    color: #001428 !important;
    margin: 0 !important;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #5b5c5c;
    margin: 0;
}

.blog-card-btn {
    display: flex;
    height: 40px;
    padding: 4px 4px 4px 18px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid #0066cc;
    background: transparent;
    text-decoration: none;
    color: #0066cc;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.blog-card-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-card-btn-icon svg path {
    stroke: #0066cc;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    max-width: 904px;
    text-align: center;
}

.faq-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.8px;
    color: #00bbce;
    text-transform: capitalize;
}

.faq-title {
    font-family: 'Parkinsans', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 52.5px;
    color: #001428;
    margin: 0;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.faq-item {
    padding: 7px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 0.75px solid #d9e8f8;
    backdrop-filter: blur(6px);
}

.faq-item-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-question {
    padding: 24px;
    background-color: rgba(0, 102, 204, 0.04);
    border-radius: 16px;
    cursor: pointer;
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question-text {
    font-family: 'Parkinsans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    color: #001428;
}

.faq-toggle-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1.5px solid #0066cc;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: rotate(-90deg);
    padding: 0;
}

.faq-toggle-btn svg path {
    stroke: #0066cc !important;
    transition: stroke 0.3s ease;
}

.faq-item-open .faq-toggle-btn svg path {
    stroke: #ffffff !important;
}

.faq-item-open .faq-toggle-btn,
.faq-toggle-btn.faq-toggle-active {
    background-color: #0066cc;
    border-color: #0066cc;
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 24px 16px 24px;
}

.faq-answer-content {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #5b5c5c;
}

.faq-answer-content p {
    margin: 0;
}

/* FAQ Native Elementor Toggle styling */
.faq-native-label .elementor-heading-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 16.8px !important;
    color: #00bbce !important;
    text-transform: capitalize;
}

.faq-native-title .elementor-heading-title {
    font-family: 'Parkinsans', sans-serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    line-height: 52.5px !important;
    color: #001428 !important;
    margin: 0;
}

/* Remove default Elementor toggle borders/separators */
.faq-native-toggle .elementor-toggle {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: none !important;
}

.faq-native-toggle .elementor-toggle-item {
    padding: 7px !important;
    background-color: #ffffff !important;
    border-radius: 20px !important;
    border: 0.75px solid #d9e8f8 !important;
    backdrop-filter: blur(6px);
    margin: 0 !important;
}

/* Title bar */
.faq-native-toggle .elementor-tab-title {
    padding: 24px !important;
    background-color: rgba(0, 102, 204, 0.04) !important;
    border-radius: 16px !important;
    border: none !important;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px;
}

/* Question text */
.faq-native-toggle .elementor-tab-title .elementor-toggle-title,
.faq-native-toggle .elementor-tab-title a.elementor-toggle-title {
    font-family: 'Parkinsans', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 29px !important;
    color: #001428 !important;
    text-decoration: none !important;
    flex: 1;
    order: 1 !important;
}

/* Icon circle - force RIGHT side */
.faq-native-toggle .elementor-toggle-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    border: 1.5px solid #0066cc !important;
    background: transparent !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 2 !important;
    flex-shrink: 0;
    transform: rotate(-90deg);
}

/* Hide default Elementor SVG icons completely */
.faq-native-toggle .elementor-toggle-icon-closed,
.faq-native-toggle .elementor-toggle-icon-opened,
.faq-native-toggle .elementor-toggle-icon svg {
    display: none !important;
}

/* Custom chevron via ::after */
.faq-native-toggle .elementor-toggle-icon::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0066cc;
    border-bottom: 2px solid #0066cc;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: border-color 0.3s ease;
}

/* Active state - filled blue circle, rotated back, white arrow */
.faq-native-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon {
    background-color: #0066cc !important;
    border-color: #0066cc !important;
    transform: rotate(0deg);
}

.faq-native-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon::after {
    border-color: #ffffff;
}

/* Answer content */
.faq-native-toggle .elementor-tab-content {
    padding: 16px 24px 16px 24px !important;
    border: none !important;
    border-top: none !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    color: #5b5c5c !important;
    background: transparent !important;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ft-footer {
    background-color: #0859a9;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.ft-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.ft-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 518px;
}

.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft-logo {
    width: 120px;
    height: auto;
}

.ft-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22.4px;
    color: #ffffff;
    margin: 0;
}

.ft-social {
    display: flex;
    gap: 12px;
}

.ft-social-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ft-social-btn:hover {
    opacity: 0.85;
}

.ft-right {
    display: flex;
    gap: 72px;
}

.ft-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ft-col-title {
    font-family: 'Parkinsans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    color: #ffffff !important;
    margin: 0;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ft-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.64px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: opacity 0.2s;
}

.ft-links a:hover {
    opacity: 0.8;
}

.ft-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ft-address {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ft-address-city,
.ft-address-street {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.64px;
    color: rgba(255, 255, 255, 0.95);
}

.ft-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ft-contact-btn span {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #0859a9;
}

.ft-contact-btn:hover {
    opacity: 0.9;
}

.ft-divider {
    width: 100%;
    max-width: 1280px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: -40px auto 0;
}

.ft-copyright,
.ft-credit {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19.6px;
    color: rgba(255, 255, 255, 0.95);
}

/* Footer section - remove Elementor wrapper padding */
.elementor-location-footer .elementor-section-wrap > .elementor-section,
.elementor-location-footer .elementor-element-ftr001 {
    padding: 0 !important;
    margin: 0 !important;
}

.elementor-location-footer .elementor-element-ftr001 > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* --------------------------------------------------------------------------
   Force visibility on custom HTML widgets
   -------------------------------------------------------------------------- */
.elementor-widget-html .elementor-widget-container {
    visibility: visible !important;
    opacity: 1 !important;
}

.avantages-section,
.product-cards-row,
.product-cards-wrapper,
.mission-stats {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

/* --------------------------------------------------------------------------
   Mobile Menu Overlay + Body scroll lock
   -------------------------------------------------------------------------- */
body.generafi-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.generafi-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.45);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.generafi-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

/* ==========================================================================
   DESKTOP — Standard section spacing & balanced internal spacing
   ========================================================================== */

/* ===== STANDARD SECTION SPACING — 80px desktop ===== */
/* Harmonise QEG et Mission avec les autres sections (étaient 60/60) */
.elementor-element-qeg00a1,
.elementor-element-mis00a1 {
    padding: 80px 0 !important;
}

/* ===== BALANCED INTERNAL SPACING — desktop ===== */
/* Reduce spacers between title and content (48px → 32px) */
.elementor-element-tst016,
.elementor-element-vis012,
.elementor-element-faq012 {
    --spacer-size: 32px !important;
}

/* Reduce widget margins in section headers (label + title) */
.elementor-element-faq010,
.elementor-element-faq011,
.elementor-element-vis010,
.elementor-element-vis011,
.elementor-element-tst012,
.elementor-element-tst013,
.elementor-element-avt010,
.elementor-element-avt011,
.elementor-element-avt012,
.elementor-element-mis00a3,
.elementor-element-mis00a4,
.elementor-element-prd00b3,
.elementor-element-prd00c5,
.elementor-element-prd00d5,
.elementor-element-qeg00a5 {
    margin-bottom: 10px !important;
}

/* ==========================================================================
   RESPONSIVE — Tablet (≤1024px), Mobile (≤768px), Small Mobile (≤480px)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet — max-width: 1024px
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

    /* --- Prevent horizontal scrollbar --- */
    body,
    body.elementor-page-8 {
        overflow-x: hidden !important;
    }

    /* ===== GLOBAL: all containers fluid ===== */
    .elementor-section.elementor-section-full_width > .elementor-container,
    .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        box-sizing: border-box !important;
    }

    /* Force all multi-column sections to wrap */
    .elementor-section > .elementor-container {
        flex-wrap: wrap !important;
    }

    /* ===== HEADER — Professional mobile drawer menu ===== */

    /* Header bar: stays above everything */
    .elementor-location-header {
        position: relative !important;
        z-index: 99995 !important;
    }

    .elementor-location-header .elementor-section.elementor-top-section {
        max-width: 95%;
        margin-top: 20px;
        border-radius: 50px;
        overflow: visible !important;
    }

    .elementor-location-header .elementor-top-section > .elementor-container {
        padding: 10px 24px !important;
        flex-wrap: nowrap !important;
    }

    /* Nav column: allow overflow for fixed drawer */
    .elementor-location-header .elementor-element-hd01774 {
        overflow: visible !important;
        position: static !important;
    }

    .elementor-location-header .elementor-element-hd01775 {
        overflow: visible !important;
    }

    /* Hide CTA button column on tablet */
    .elementor-element-hd01776 {
        display: none !important;
    }

    /* Hamburger toggle button — proper size & styling */
    .elementor-location-header .elementor-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 99999 !important;
    }

    .elementor-location-header .elementor-menu-toggle svg {
        width: 22px !important;
        height: 22px !important;
        fill: var(--generafi-text-dark) !important;
    }

    /* Hide Elementor's toggle X when menu is open (our drawer has its own close btn) */
    .elementor-location-header .elementor-menu-toggle.elementor-active {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* ---- DRAWER: base styles (always applied) ---- */
    .elementor-location-header .elementor-nav-menu--dropdown,
    .elementor-location-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        width: 85% !important;
        max-width: 380px !important;
        height: 100vh !important;
        height: 100dvh !important;
        margin: 0 !important;
        margin-top: 0 !important;
        background-color: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15) !important;
        padding: 100px 28px 32px 28px !important;
        z-index: 99998 !important;
        border: none !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        transform-origin: right center !important;
    }

    /* ---- Override Elementor CLOSED state ---- */
    .elementor-nav-menu--toggle .elementor-menu-toggle:not(.elementor-active)
    + .elementor-nav-menu--dropdown,
    .elementor-nav-menu--toggle .elementor-menu-toggle:not(.elementor-active)
    + .elementor-nav-menu__container {
        transform: translateX(100%) !important;
        max-height: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
        overflow: hidden !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease !important;
    }

    /* ---- Override Elementor OPEN state ---- */
    .elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active
    + .elementor-nav-menu--dropdown,
    .elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active
    + .elementor-nav-menu__container {
        transform: translateX(0) !important;
        max-height: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        overflow-y: auto !important;
        animation: none !important;
        visibility: visible !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease !important;
    }

    /* ---- Drawer UL reset ---- */
    .elementor-location-header .elementor-nav-menu--dropdown ul {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* ---- Drawer menu items — with bullet dot ---- */
    .elementor-location-header .elementor-nav-menu--dropdown li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item {
        display: flex !important;
        align-items: center !important;
        padding: 18px 4px !important;
        font-family: var(--font-body) !important;
        font-size: 17px !important;
        font-weight: 400 !important;
        color: var(--generafi-text-dark) !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        text-align: left !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: none !important;
    }

    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item:hover,
    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item:focus {
        background: #f8fafc !important;
        color: var(--generafi-primary) !important;
    }

    /* Bullet dot before each item */
    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item::before {
        content: '' !important;
        display: inline-block !important;
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        border-radius: 50% !important;
        background-color: #94a3b8 !important;
        margin-right: 14px !important;
    }

    .elementor-location-header .elementor-nav-menu--dropdown li:last-child .elementor-item {
        border-bottom: none !important;
    }

    /* Active item: blue text + blue dot */
    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item-active {
        color: var(--generafi-primary) !important;
        font-weight: 600 !important;
    }

    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item-active::before {
        display: none !important;
    }

    /* CTA button at bottom of drawer (injected by JS as real link) */
    .generafi-drawer-cta {
        display: block !important;
        margin-top: auto !important;
        padding: 16px 0 !important;
        background-color: var(--generafi-primary) !important;
        color: #ffffff !important;
        font-family: var(--font-body) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-align: center !important;
        border-radius: 100px !important;
        width: 100% !important;
        flex-shrink: 0 !important;
        text-decoration: none !important;
        cursor: pointer !important;
        transition: background-color 0.2s ease !important;
    }

    .generafi-drawer-cta:hover {
        background-color: #0052a3 !important;
    }

    /* Drawer close button (injected by JS) */
    .generafi-drawer-close {
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f1f5f9 !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        z-index: 10 !important;
        font-size: 20px !important;
        color: var(--generafi-text-dark) !important;
        line-height: 1 !important;
        transition: background 0.2s ease !important;
    }

    .generafi-drawer-close:hover {
        background: #e2e8f0 !important;
    }

    /* ===== HERO (hr01b59) ===== */

    /* Section padding reduced */
    .elementor-element-hr01b59 {
        padding: 24px 0 40px 0 !important;
    }

    body.elementor-page-8::before {
        height: 900px;
    }

    /* Badge */
    .hero-badge .elementor-heading-title {
        font-size: 13px !important;
        padding: 7px 16px !important;
    }

    .elementor-element-hr01b5b {
        margin-bottom: 16px !important;
    }

    /* Title */
    .elementor-page-8 h1.elementor-heading-title {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }

    .elementor-element-hr01b5c {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 14px !important;
    }

    /* Subtitle */
    .elementor-element-hr01b5d {
        margin-bottom: 0 !important;
    }

    /* Buttons row — reduce top padding */
    .elementor-element-hr01b5e {
        padding: 20px 0 0 0 !important;
        margin-bottom: 40px !important;
    }

    /* Hero image */
    .elementor-element-hr01b63 {
        margin-top: 16px !important;
    }

    .hero-image img {
        width: 100% !important;
        height: auto !important;
    }

    /* ===== SOCIAL PROOF (sp01a01) — Stack text above carousel ===== */
    .elementor-element-sp01a01 {
        margin-top: 20px !important;
    }

    .elementor-element-sp01a02,
    .elementor-element-sp01a05 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .elementor-element-sp01a02 {
        text-align: center !important;
        margin-bottom: 36px !important;
    }

    /* Reduce space between title and description */
    .elementor-element-sp01a03 {
        margin-bottom: 4px !important;
    }

    .elementor-element-sp01a02 .elementor-widget-wrap {
        text-align: center !important;
    }

    .partner-carousel img {
        height: 24px !important;
    }

    /* ===== QUI EST GENERAFI (qeg00a1) — Stack image + text ===== */
    .elementor-element-qeg00a2,
    .elementor-element-qeg00a4 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .elementor-element-qeg00a2 {
        margin-bottom: 24px !important;
    }

    /* Remove desktop left padding on text column */
    .elementor-element-qeg00a4 > .elementor-element-populated {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Buttons row inside qui-est */
    .elementor-element-qeg00a8 > .elementor-container {
        flex-wrap: wrap !important;
    }

    .elementor-element-qeg00a9,
    .elementor-element-qeg00ba {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* ===== MISSION & IMPACT (mis00a1) — Stack columns ===== */
    .elementor-element-mis00a2,
    .elementor-element-mis00a9,
    .elementor-element-mis00c1 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .elementor-element-mis00a2 {
        margin-bottom: 24px !important;
    }

    /* Title smaller on mobile */
    .elementor-element-mis00a4 .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    /* Description justified */
    .elementor-element-mis00a5 {
        text-align: justify !important;
    }

    /* Image centered */
    .elementor-element-mis00c2 {
        text-align: center !important;
    }

    /* Mission buttons row — side by side */
    .elementor-element-mis00a7 > .elementor-container {
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    .elementor-element-mis00a8,
    .elementor-element-mis00a9 {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .mission-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-number-big {
        font-size: 40px;
        line-height: 48px;
    }

    .mission-stat-group {
        gap: 16px;
    }

    /* ===== PRODUCT ROWS (prd00b1, prd00c1, prd00d1) — CRITICAL ===== */

    /* Spacing between the 3 product blocks */
    .elementor-element-prd00b1 {
        padding: 40px 0 0 0 !important;
    }

    .elementor-element-prd00c1,
    .elementor-element-prd00d1 {
        padding: 80px 0 0 0 !important;
    }

    /* All columns 100% */
    .elementor-element-prd00b7,
    .elementor-element-prd00b2,
    .elementor-element-prd00c4,
    .elementor-element-prd00c2,
    .elementor-element-prd00d2,
    .elementor-element-prd00d4 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Remove desktop padding on text columns */
    .elementor-element-prd00b2 > .elementor-element-populated,
    .elementor-element-prd00c4 > .elementor-element-populated,
    .elementor-element-prd00d4 > .elementor-element-populated {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Title reduced */
    .elementor-element-prd00b4 .elementor-heading-title,
    .elementor-element-prd00c6 .elementor-heading-title,
    .elementor-element-prd00d6 .elementor-heading-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    /* Description justified */
    .elementor-element-prd00b5,
    .elementor-element-prd00c7,
    .elementor-element-prd00d7 {
        text-align: justify !important;
    }

    /* Force text column ABOVE cards */
    .elementor-element-prd00b2 {
        order: -1 !important;
        margin-bottom: 24px !important;
    }

    .elementor-element-prd00c4 {
        order: -1 !important;
        margin-bottom: 24px !important;
    }

    .elementor-element-prd00d4 {
        order: -1 !important;
        margin-bottom: 24px !important;
    }

    /* Cards: responsive layout, full width */
    .product-cards-row {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: stretch !important;
    }

    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        position: relative !important;
    }

    .pc-body {
        width: 100% !important;
        position: relative !important;
        top: 6px !important;
        box-sizing: border-box !important;
    }

    /* pc-header: same as desktop */
    .pc-header {
        display: block !important;
        position: absolute !important;
        width: 85% !important;
        height: 108px !important;
        border-radius: 20px 20px 0 0 !important;
        top: 0 !important;
        left: 0 !important;
    }

    .product-cards-row .product-card:nth-child(2),
    .elementor-element-prd00c2 .product-cards-row .product-card:nth-child(1) {
        margin-top: 0 !important;
    }

    .elementor-element-prd00b7 > .elementor-widget-wrap,
    .elementor-element-prd00c2 > .elementor-widget-wrap,
    .elementor-element-prd00d2 > .elementor-widget-wrap {
        min-height: auto !important;
    }

    /* ===== TESTIMONIALS (tst001) ===== */
    .elementor-element-tst001 {
        padding: 48px 0 48px 0 !important;
    }

    .elementor-element-tst001 > .elementor-container {
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .elementor-element-tst010 > .elementor-container {
        max-width: 100% !important;
    }

    /* Title reduced */
    .elementor-element-tst013 .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    /* Testimonial header: title col + nav col */
    .elementor-element-tst011,
    .elementor-element-tst014 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .tst-nav {
        justify-content: flex-start !important;
        margin-top: 12px;
    }

    /* Spacer reduced */
    .elementor-element-tst016 {
        --spacer-size: 24px !important;
    }

    /* Testimonial text */
    .elementor-element-tst020 .elementor-testimonial__text {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    /* Footer margin reduced */
    .elementor-element-tst020 .elementor-testimonial__footer {
        margin-top: 32px !important;
    }

    /* ===== AVANTAGES (avt001) — 2 columns on tablet ===== */
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 20px !important;
    }

    /* Native Elementor avantages: force 2 per row */
    .elementor-element-avt020 > .elementor-container,
    .elementor-element-avt030 > .elementor-container {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .elementor-element-avt021,
    .elementor-element-avt023,
    .elementor-element-avt025,
    .elementor-element-avt031,
    .elementor-element-avt033,
    .elementor-element-avt035 {
        width: calc(50% - 10px) !important;
        flex: 0 0 calc(50% - 10px) !important;
        margin: 0 !important;
    }

    /* Spacer between row 1 and row 2 */
    .elementor-element-avt027 {
        --spacer-size: 24px !important;
    }

    /* ===== CTA BANNER (cta001) ===== */
    /* Inner section: remove big padding, reduce min-height */
    .elementor-element-cta010 {
        padding: 0 16px !important;
        min-height: auto !important;
    }

    .elementor-element-cta010 > .elementor-container {
        flex-wrap: wrap !important;
        min-height: auto !important;
        padding: 0 !important;
    }

    /* Text column: reduce padding */
    .elementor-element-cta011 > .elementor-element-populated {
        padding: 24px 0 !important;
    }

    /* Columns stack */
    .elementor-element-cta011,
    .elementor-element-cta016 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Native CTA title — 48px → 22px */
    .elementor-element-cta013 .elementor-heading-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    /* Native CTA description */
    .elementor-element-cta014 {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    /* Native CTA image — full width, stretch beyond padding */
    .elementor-element-cta016 > .elementor-element-populated {
        padding: 0 !important;
    }

    .elementor-element-cta017 {
        width: calc(100% + 32px) !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }

    .cta-native-img img,
    .elementor-element-cta017 img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 0 0 20px 20px !important;
    }

    /* Native CTA form (HTML widget) — full width */
    .elementor-element-cta015 {
        width: 100% !important;
    }

    .elementor-element-cta015 .cta-form {
        flex-direction: column !important;
        width: 100% !important;
    }

    .elementor-element-cta015 .cta-input {
        width: 100% !important;
        border-radius: 78px !important;
    }

    .elementor-element-cta015 .cta-submit {
        width: 100% !important;
        border-radius: 100px !important;
        justify-content: center !important;
    }

    /* HTML CTA block (fallback) */
    .cta-block {
        height: auto !important;
        padding: 20px !important;
    }

    .cta-content {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 20px;
    }

    .cta-left {
        width: 100% !important;
        gap: 16px;
    }

    .cta-image-area {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
    }

    .cta-img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .cta-heading {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }

    /* ===== NOTRE VISION (vis001) ===== */
    /* Native Elementor vision blocks */
    .elementor-element-vis020 > .elementor-container,
    .elementor-element-vis030 > .elementor-container {
        min-height: auto !important;
        padding: 32px !important;
        flex-wrap: wrap !important;
        gap: 32px !important;
    }

    .elementor-element-vis021,
    .elementor-element-vis026,
    .elementor-element-vis031,
    .elementor-element-vis033 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* In block 2 (vis030), image first, text second — reverse order */
    .elementor-element-vis033 {
        order: -1 !important;
    }

    .vision-native-block-title .elementor-heading-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .vision-native-title h3.elementor-heading-title {
        font-size: 36px !important;
        line-height: 44px !important;
    }

    /* HTML vision blocks */
    .vision-block {
        height: auto !important;
        padding: 32px !important;
        flex-direction: column !important;
        gap: 30px;
    }

    .vision-block-text,
    .vision-block-img {
        width: 100% !important;
    }

    .vision-block-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .vision-main-title {
        font-size: 36px !important;
        line-height: 44px !important;
    }

    /* ===== CONTACT (cnt001) ===== */
    .elementor-element-cnt001 {
        padding: 48px 0 !important;
        overflow: hidden !important;
    }

    .elementor-element-cnt001 > .elementor-container {
        flex-wrap: wrap !important;
    }

    .elementor-element-cnt002,
    .elementor-element-cnt004 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Remove Elementor lateral padding on columns */
    .elementor-element-cnt002 > .elementor-element-populated {
        padding: 0 !important;
    }

    .elementor-element-cnt004 > .elementor-element-populated {
        padding: 0 !important;
    }

    .elementor-element-cnt002 {
        margin-bottom: 24px !important;
    }

    /* Contact info card — prevent overflow */
    .contact-info-card {
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .contact-info-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .contact-decor {
        max-width: 100% !important;
    }

    /* Kill desktop height: 100% on form elements */
    .elementor-element-cnt001 .elementor-widget-html,
    .elementor-element-cnt001 .elementor-widget-form,
    .elementor-element-cnt001 .elementor-widget-html .elementor-widget-container,
    .elementor-element-cnt001 .elementor-widget-form .elementor-widget-container,
    .elementor-element-cnt004 .elementor-widget-wrap {
        height: auto !important;
    }

    /* Form full width + responsive — no overflow */
    .elementor-element-cnt004 .elementor-widget-container {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .elementor-element-cnt004 .elementor-form {
        padding: 24px 24px 24px 24px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    .elementor-element-cnt004 .elementor-form-fields-wrapper,
    .elementor-element-cnt004 .elementor-form-fields-wrapper.elementor-labels-above {
        display: flex !important;
        flex-direction: column !important;
        max-width: 100% !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .elementor-element-cnt004 .elementor-field-group {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-cnt004 .elementor-field-group.elementor-col-50,
    .elementor-element-cnt004 .elementor-field-group.elementor-col-100,
    .elementor-element-cnt004 .elementor-column.elementor-col-50 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .elementor-element-cnt004 .elementor-field-textual,
    .elementor-element-cnt004 textarea.elementor-field-textual {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-cnt004 .elementor-field-type-submit {
        justify-content: center !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .elementor-element-cnt004 .elementor-field-type-submit .elementor-button {
        width: 100% !important;
        justify-content: center !important;
    }

    /* ===== BLOG (blg001) ===== */
    .blog-cards {
        flex-wrap: wrap !important;
    }

    .blog-card {
        flex: 1 1 calc(50% - 12px) !important;
        min-width: calc(50% - 12px) !important;
    }

    .blog-title {
        font-size: 34px !important;
        line-height: 42px !important;
    }

    .blog-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }

    /* ===== FAQ (faq001) ===== */
    .elementor-element-faq001 {
        padding: 48px 0 !important;
    }

    .elementor-element-faq012 {
        --spacer-size: 20px !important;
    }

    .faq-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .faq-native-title .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .faq-question-text {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    .faq-native-toggle .elementor-tab-title .elementor-toggle-title,
    .faq-native-toggle .elementor-tab-title a.elementor-toggle-title {
        font-size: 18px !important;
        line-height: 26px !important;
    }

    /* ===== STANDARD SECTION SPACING — 60px tablet ===== */
    .elementor-element-sp01a01 {
        padding: 30px 0 !important;
        margin-top: 0 !important;
    }

    .elementor-element-qeg00a1,
    .elementor-element-mis00a1,
    .elementor-element-tst001,
    .elementor-element-avt001,
    .elementor-element-vis001,
    .elementor-element-cnt001,
    .elementor-element-blg001,
    .elementor-element-faq001 {
        padding: 60px 0 !important;
    }

    .elementor-element-prd00b1 {
        padding: 40px 0 0 0 !important;
    }

    .elementor-element-prd00c1 {
        padding: 60px 0 0 0 !important;
    }

    .elementor-element-prd00d1 {
        padding: 60px 0 60px 0 !important;
    }

    /* ===== STANDARD SECTION TITLES — 30px tablet ===== */
    .elementor-element-qeg00a6 .elementor-heading-title,
    .elementor-element-mis00a4 .elementor-heading-title,
    .elementor-element-tst013 .elementor-heading-title,
    .elementor-element-avt011 .elementor-heading-title,
    .elementor-element-vis011 .elementor-heading-title,
    .elementor-element-faq011 .elementor-heading-title,
    .avantages-title,
    .vision-main-title,
    .blog-title,
    .faq-title,
    .contact-info-title {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }

    /* Product sub-titles — 26px */
    .elementor-element-prd00b4 .elementor-heading-title,
    .elementor-element-prd00c6 .elementor-heading-title,
    .elementor-element-prd00d6 .elementor-heading-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    /* CTA title — 24px (banner context) */
    .elementor-element-cta013 .elementor-heading-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    /* ===== STANDARD INTERNAL SPACING — balanced top/bottom tablet ===== */
    /* Reduce spacers between title and content */
    .elementor-element-tst016,
    .elementor-element-vis012,
    .elementor-element-faq012 {
        --spacer-size: 24px !important;
    }

    .elementor-element-vis028,
    .elementor-element-avt027 {
        --spacer-size: 20px !important;
    }

    /* Reduce widget margins in section headers (label + title) */
    .elementor-element-faq010,
    .elementor-element-faq011,
    .elementor-element-vis010,
    .elementor-element-vis011,
    .elementor-element-tst012,
    .elementor-element-tst013,
    .elementor-element-avt010,
    .elementor-element-avt011,
    .elementor-element-avt012,
    .elementor-element-mis00a3,
    .elementor-element-mis00a4,
    .elementor-element-prd00b3,
    .elementor-element-prd00c5,
    .elementor-element-prd00d5,
    .elementor-element-qeg00a5 {
        margin-bottom: 8px !important;
    }

    /* ===== FOOTER ===== */
    .elementor-location-footer,
    .elementor-10 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .elementor-element-ftr001 {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Higher specificity to override global .elementor-section.elementor-section-full_width > .elementor-container */
    .elementor-section.elementor-element-ftr001.elementor-section-full_width > .elementor-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .elementor-element-ftr002 > .elementor-element-populated {
        padding: 0 !important;
    }

    .ft-footer {
        padding: 40px 24px !important;
        gap: 40px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .ft-main {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .ft-left {
        max-width: 100% !important;
        width: 100% !important;
    }

    .ft-right {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 32px !important;
    }

    .ft-col {
        width: calc(50% - 16px) !important;
        flex: 0 0 calc(50% - 16px) !important;
    }

    .ft-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        margin-top: 0 !important;
    }

    /* ===== ALL IMAGES: prevent overflow ===== */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile — max-width: 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* ===== GLOBAL ===== */
    .elementor-section.elementor-section-full_width > .elementor-container,
    .elementor-section.elementor-section-boxed > .elementor-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* ===== HEADER ===== */
    .elementor-location-header .elementor-section.elementor-top-section {
        border-radius: 16px;
        margin-top: 10px;
        max-width: 94%;
    }

    .elementor-location-header .elementor-top-section > .elementor-container {
        padding: 8px 16px !important;
    }

    /* Logo on mobile */
    .elementor-element-hd01773 img {
        max-width: 130px !important;
        height: auto !important;
    }

    /* Drawer adjustments on small mobile */
    .elementor-location-header .elementor-nav-menu--dropdown {
        width: 88% !important;
        padding: 80px 24px 28px 24px !important;
    }

    .elementor-location-header .elementor-nav-menu--dropdown .elementor-item {
        font-size: 16px !important;
        padding: 16px 4px !important;
    }

    /* ===== HERO ===== */
    .elementor-element-hr01b59 {
        padding: 16px 0 32px 0 !important;
    }

    body.elementor-page-8::before {
        width: 100%;
        height: 700px;
        background-size: 100% auto;
    }

    .elementor-page-8 h1.elementor-heading-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .hero-badge .elementor-heading-title {
        font-size: 12px !important;
    }

    .elementor-element-hr01b5b {
        margin-bottom: 12px !important;
    }

    .elementor-element-hr01b5c {
        margin-bottom: 12px !important;
    }

    .hero-subtitle p,
    .hero-subtitle .elementor-text-editor {
        font-size: 15px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }

    .elementor-element-hr01b5d {
        margin-bottom: 0 !important;
    }

    /* Buttons row */
    .elementor-element-hr01b5e {
        padding: 16px 0 0 0 !important;
        margin-bottom: 36px !important;
    }

    /* Hero badge centered */
    .elementor-element-hr01b5b .elementor-widget-container {
        text-align: center !important;
    }

    /* Hero buttons stack vertical */
    .hero-buttons-row .elementor-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .hero-buttons-row .elementor-column {
        width: 100% !important;
        max-width: 300px;
        flex: 0 0 auto !important;
    }

    .hero-buttons-row .elementor-button {
        width: 100% !important;
        justify-content: center !important;
    }

    .elementor-element-hr01b63 {
        margin-top: 12px !important;
    }

    .hero-image img {
        border-radius: 14px !important;
    }

    /* ===== SOCIAL PROOF ===== */
    .partner-carousel img {
        height: 20px !important;
    }

    /* ===== SECTION HEADINGS — global reduction ===== */
    .avantages-title,
    .vision-main-title,
    .blog-title,
    .faq-title,
    .contact-info-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .vision-native-title h3.elementor-heading-title,
    .faq-native-title .elementor-heading-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    /* Section pills */
    .section-pill .elementor-text-editor span {
        font-size: 12px !important;
        padding: 5px 12px !important;
    }

    /* ===== QUI EST GENERAFI — left align + justify ===== */
    .elementor-element-qeg00a4 .elementor-widget-wrap {
        text-align: left !important;
    }

    .elementor-element-qeg00a4 {
        padding-left: 0 !important;
    }

    .elementor-element-qeg00a5 .elementor-heading-title,
    .elementor-element-qeg00a6 .elementor-heading-title {
        text-align: left !important;
    }

    .elementor-element-qeg00a6 .elementor-heading-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }

    .elementor-element-qeg00a7 {
        text-align: justify !important;
    }

    .elementor-element-qeg00a8 > .elementor-container {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    .elementor-element-qeg00a9,
    .elementor-element-qeg00ba {
        width: auto !important;
        flex: 0 0 auto !important;
    }

    /* ===== MISSION — title + justify + image centered ===== */
    .elementor-element-mis00a4 .elementor-heading-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    .elementor-element-mis00a5 {
        text-align: justify !important;
    }

    .elementor-element-mis00c2 {
        text-align: center !important;
    }

    .mission-stats {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }

    .mission-stat-divider {
        width: 60px !important;
        height: 4px !important;
        background: linear-gradient(to right, #0066cc 85%, #00bbce 85%) !important;
    }

    .stat-number-big {
        font-size: 36px !important;
        line-height: 42px !important;
    }

    .mission-stat-group {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    /* ===== PRODUCT ROWS ===== */
    .elementor-element-prd00b1 {
        padding: 32px 0 0 0 !important;
    }

    .elementor-element-prd00c1,
    .elementor-element-prd00d1 {
        padding: 64px 0 0 0 !important;
    }

    .elementor-element-prd00b4 .elementor-heading-title,
    .elementor-element-prd00c6 .elementor-heading-title,
    .elementor-element-prd00d6 .elementor-heading-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .elementor-element-prd00b5,
    .elementor-element-prd00c7,
    .elementor-element-prd00d7 {
        text-align: justify !important;
    }

    .product-card {
        max-width: 100% !important;
    }

    .product-card-single .product-card {
        max-width: 100% !important;
    }

    /* ===== TESTIMONIALS ===== */
    .tst-nav {
        justify-content: center !important;
    }

    .elementor-element-tst011 .elementor-widget-wrap {
        text-align: center !important;
    }

    /* ===== AVANTAGES — 1 column on mobile ===== */
    .avantages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .avantages-header {
        max-width: 100% !important;
    }

    .avantages-title {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    /* Native avantages: 1 per row */
    .elementor-element-avt021,
    .elementor-element-avt023,
    .elementor-element-avt025,
    .elementor-element-avt031,
    .elementor-element-avt033,
    .elementor-element-avt035 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* ===== CTA ===== */
    .cta-block {
        padding: 24px !important;
        border-radius: 16px !important;
    }

    .cta-heading {
        font-size: 26px !important;
        line-height: 34px !important;
    }

    .cta-form {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cta-input {
        border-radius: 78px !important;
        width: 100% !important;
    }

    .cta-submit {
        border-radius: 100px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* ===== VISION ===== */
    .vision-block {
        padding: 24px !important;
        gap: 24px !important;
    }

    .vision-block-title {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .vision-native-block-title .elementor-heading-title {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .elementor-element-vis020 > .elementor-container,
    .elementor-element-vis030 > .elementor-container {
        padding: 24px !important;
    }

    /* ===== CONTACT ===== */
    .contact-info-card {
        padding: 24px !important;
    }

    .contact-info-title {
        font-size: 26px !important;
        line-height: 34px !important;
    }

    .elementor-element-cnt004 .elementor-form-fields-wrapper {
        display: flex !important;
        flex-direction: column !important;
    }

    .elementor-element-cnt004 .elementor-form {
        padding: 24px !important;
    }

    .elementor-element-cnt004 .elementor-field-group,
    .elementor-element-cnt004 .elementor-field-group.elementor-col-50,
    .elementor-element-cnt004 .elementor-field-group.elementor-col-100,
    .elementor-element-cnt004 .elementor-column.elementor-col-50 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .elementor-element-cnt004 .elementor-field-textual,
    .elementor-element-cnt004 textarea.elementor-field-textual {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .elementor-element-cnt004 .elementor-field-type-submit {
        justify-content: center !important;
        margin-left: 0 !important;
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .elementor-element-cnt004 .elementor-field-type-submit .elementor-button {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    /* ===== BLOG ===== */
    .blog-card {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }

    .blog-card-img {
        height: 200px !important;
    }

    .blog-header {
        gap: 16px !important;
    }

    .blog-header-btn {
        align-self: flex-start;
    }

    /* ===== FAQ ===== */
    .faq-question {
        padding: 16px !important;
    }

    .faq-answer {
        padding: 0 16px 12px 16px !important;
    }

    .faq-question-text {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .faq-native-toggle .elementor-tab-title {
        padding: 16px !important;
    }

    .faq-native-toggle .elementor-tab-content {
        padding: 12px 16px !important;
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .faq-native-toggle .elementor-tab-title .elementor-toggle-title,
    .faq-native-toggle .elementor-tab-title a.elementor-toggle-title {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .faq-answer-content {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    /* ===== STANDARD SECTION SPACING — 48px mobile ===== */
    .elementor-element-sp01a01 {
        padding: 24px 0 !important;
    }

    .elementor-element-qeg00a1,
    .elementor-element-mis00a1,
    .elementor-element-tst001,
    .elementor-element-avt001,
    .elementor-element-vis001,
    .elementor-element-cnt001,
    .elementor-element-blg001,
    .elementor-element-faq001 {
        padding: 48px 0 !important;
    }

    .elementor-element-prd00b1 {
        padding: 32px 0 0 0 !important;
    }

    .elementor-element-prd00c1 {
        padding: 48px 0 0 0 !important;
    }

    .elementor-element-prd00d1 {
        padding: 48px 0 48px 0 !important;
    }

    /* ===== STANDARD SECTION TITLES — 26px mobile ===== */
    .elementor-element-qeg00a6 .elementor-heading-title,
    .elementor-element-mis00a4 .elementor-heading-title,
    .elementor-element-tst013 .elementor-heading-title,
    .elementor-element-avt011 .elementor-heading-title,
    .elementor-element-vis011 .elementor-heading-title,
    .elementor-element-faq011 .elementor-heading-title,
    .avantages-title,
    .vision-main-title,
    .blog-title,
    .faq-title,
    .contact-info-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }

    /* Product sub-titles — 22px */
    .elementor-element-prd00b4 .elementor-heading-title,
    .elementor-element-prd00c6 .elementor-heading-title,
    .elementor-element-prd00d6 .elementor-heading-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    /* CTA title — 20px (banner context) */
    .elementor-element-cta013 .elementor-heading-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    /* ===== STANDARD INTERNAL SPACING — balanced top/bottom mobile ===== */
    /* Reduce spacers between title and content */
    .elementor-element-tst016,
    .elementor-element-vis012,
    .elementor-element-faq012 {
        --spacer-size: 16px !important;
    }

    .elementor-element-vis028,
    .elementor-element-avt027 {
        --spacer-size: 14px !important;
    }

    /* Reduce widget margins in section headers */
    .elementor-element-faq010,
    .elementor-element-faq011,
    .elementor-element-vis010,
    .elementor-element-vis011,
    .elementor-element-tst012,
    .elementor-element-tst013,
    .elementor-element-avt010,
    .elementor-element-avt011,
    .elementor-element-avt012,
    .elementor-element-mis00a3,
    .elementor-element-mis00a4,
    .elementor-element-prd00b3,
    .elementor-element-prd00c5,
    .elementor-element-prd00d5,
    .elementor-element-qeg00a5 {
        margin-bottom: 6px !important;
    }

    /* ===== FOOTER ===== */
    .elementor-section.elementor-element-ftr001.elementor-section-full_width > .elementor-container {
        padding: 0 !important;
    }

    .ft-footer {
        padding: 32px 16px !important;
        gap: 32px !important;
    }

    .ft-right {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .ft-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        gap: 16px !important;
    }

    .ft-desc {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .ft-contact-btn {
        align-self: flex-start !important;
    }

    /* ===== BUTTONS: min tap target 44x44px ===== */
    .codia-btn .elementor-button,
    .codia-btn-outlined .elementor-button,
    .codia-btn-primary .elementor-button,
    .hero-cta-primary .elementor-button,
    .hero-cta-phone .elementor-button {
        min-height: 44px !important;
    }
}

/* --------------------------------------------------------------------------
   Small Mobile — max-width: 480px
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {

    /* ===== GLOBAL ===== */
    .elementor-section.elementor-section-full_width > .elementor-container,
    .elementor-section.elementor-section-boxed > .elementor-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* ===== HERO ===== */
    .elementor-element-hr01b59 {
        padding: 12px 0 24px 0 !important;
    }

    .elementor-page-8 h1.elementor-heading-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    .hero-badge .elementor-heading-title {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }

    .elementor-element-hr01b5b {
        margin-bottom: 10px !important;
    }

    .elementor-element-hr01b5c {
        margin-bottom: 10px !important;
    }

    .elementor-element-hr01b5e {
        padding: 14px 0 0 0 !important;
        margin-bottom: 32px !important;
    }

    .hero-subtitle p,
    .hero-subtitle .elementor-text-editor {
        font-size: 14px !important;
    }

    /* ===== SECTION HEADINGS ===== */
    .avantages-title,
    .vision-main-title,
    .blog-title,
    .faq-title,
    .contact-info-title {
        font-size: 24px !important;
        line-height: 30px !important;
    }

    .vision-native-title h3.elementor-heading-title,
    .faq-native-title .elementor-heading-title {
        font-size: 24px !important;
        line-height: 30px !important;
    }

    /* ===== PRODUCT CARDS ===== */
    .pc-body {
        padding: 16px !important;
    }

    .pc-title {
        font-size: 18px !important;
        line-height: 24px !important;
    }

    .pc-features-box {
        padding: 12px !important;
    }

    /* ===== VISION ===== */
    .vision-block {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .vision-block-title {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .vision-native-block-title .elementor-heading-title {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .elementor-element-vis020 > .elementor-container,
    .elementor-element-vis030 > .elementor-container {
        padding: 16px !important;
        border-radius: 16px !important;
    }

    /* ===== CTA ===== */
    .cta-block {
        padding: 16px !important;
        border-radius: 12px !important;
    }

    .cta-heading {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .cta-subtitle {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    /* ===== CONTACT ===== */
    .contact-info-card {
        padding: 16px !important;
        border-radius: 14px !important;
    }

    .contact-info-title {
        font-size: 22px !important;
        line-height: 28px !important;
    }

    .contact-info-content {
        gap: 32px !important;
    }

    .elementor-element-cnt004 .elementor-form {
        padding: 24px !important;
        border-radius: 14px !important;
    }

    .elementor-element-cnt004 .elementor-field-textual {
        padding: 12px 16px 12px 40px !important;
        font-size: 14px !important;
    }

    /* ===== BLOG ===== */
    .blog-card-img {
        height: 160px !important;
    }

    .blog-card-title {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .blog-card-excerpt {
        font-size: 13px !important;
        line-height: 19px !important;
    }

    .blog-card {
        gap: 16px !important;
    }

    /* ===== FAQ ===== */
    .faq-item {
        padding: 5px !important;
    }

    .faq-native-toggle .elementor-toggle-item {
        padding: 5px !important;
    }

    .faq-question {
        padding: 12px !important;
    }

    .faq-native-toggle .elementor-tab-title {
        padding: 12px !important;
    }

    .faq-question-text {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .faq-native-toggle .elementor-tab-title .elementor-toggle-title,
    .faq-native-toggle .elementor-tab-title a.elementor-toggle-title {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    .faq-answer-content {
        font-size: 15px !important;
        line-height: 22px !important;
    }

    /* ===== STANDARD SECTION SPACING — 36px small mobile ===== */
    .elementor-element-sp01a01 {
        padding: 20px 0 !important;
    }

    .elementor-element-qeg00a1,
    .elementor-element-mis00a1,
    .elementor-element-tst001,
    .elementor-element-avt001,
    .elementor-element-vis001,
    .elementor-element-cnt001,
    .elementor-element-blg001,
    .elementor-element-faq001 {
        padding: 36px 0 !important;
    }

    .elementor-element-prd00b1 {
        padding: 24px 0 0 0 !important;
    }

    .elementor-element-prd00c1 {
        padding: 36px 0 0 0 !important;
    }

    .elementor-element-prd00d1 {
        padding: 36px 0 36px 0 !important;
    }

    /* ===== STANDARD SECTION TITLES — 22px small mobile ===== */
    .elementor-element-qeg00a6 .elementor-heading-title,
    .elementor-element-mis00a4 .elementor-heading-title,
    .elementor-element-tst013 .elementor-heading-title,
    .elementor-element-avt011 .elementor-heading-title,
    .elementor-element-vis011 .elementor-heading-title,
    .elementor-element-faq011 .elementor-heading-title,
    .avantages-title,
    .vision-main-title,
    .blog-title,
    .faq-title,
    .contact-info-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    /* Product sub-titles — 20px */
    .elementor-element-prd00b4 .elementor-heading-title,
    .elementor-element-prd00c6 .elementor-heading-title,
    .elementor-element-prd00d6 .elementor-heading-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    /* CTA title — 18px (banner context) */
    .elementor-element-cta013 .elementor-heading-title {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    /* ===== STANDARD INTERNAL SPACING — balanced top/bottom small mobile ===== */
    /* Reduce spacers between title and content */
    .elementor-element-tst016,
    .elementor-element-vis012,
    .elementor-element-faq012 {
        --spacer-size: 12px !important;
    }

    .elementor-element-vis028,
    .elementor-element-avt027 {
        --spacer-size: 10px !important;
    }

    /* Reduce widget margins in section headers */
    .elementor-element-faq010,
    .elementor-element-faq011,
    .elementor-element-vis010,
    .elementor-element-vis011,
    .elementor-element-tst012,
    .elementor-element-tst013,
    .elementor-element-avt010,
    .elementor-element-avt011,
    .elementor-element-avt012,
    .elementor-element-mis00a3,
    .elementor-element-mis00a4,
    .elementor-element-prd00b3,
    .elementor-element-prd00c5,
    .elementor-element-prd00d5,
    .elementor-element-qeg00a5 {
        margin-bottom: 4px !important;
    }

    /* ===== FOOTER ===== */
    .elementor-section.elementor-element-ftr001.elementor-section-full_width > .elementor-container {
        padding: 0 !important;
    }

    .ft-footer {
        padding: 24px 12px !important;
    }

    .ft-col-title {
        font-size: 16px !important;
    }

    .ft-contact-btn {
        padding: 6px 10px !important;
    }

    /* ===== MISSION STATS ===== */
    .stat-number-big {
        font-size: 28px !important;
        line-height: 34px !important;
    }

    .stat-label-big {
        font-size: 15px !important;
        line-height: 19px !important;
    }

    .stat-number-sm {
        font-size: 18px !important;
    }

    /* ===== TESTIMONIALS ===== */
    .tst-native-carousel .elementor-testimonial__text::before {
        font-size: 16px !important;
        letter-spacing: 5px !important;
    }
}
