/* Variables CSS */
:root {
    --primary-color: #00AFEF;
    --primary-dark: #0096D6;
    --secondary-color: #00173C;
    --text-gray: #576A8A;
    --light-gray: #F3F4F6;
    --border-gray: #E3E3E3;
    --white: #FFFFFF;
    --gradient-blue: linear-gradient(180deg, #00AFEF 0%, #4DCFFF 100%);
    --gradient-radial: radial-gradient(circle at 50% 50%, #5640D9 0%, #7353D8 31.12%, #FFFFFF 100%);
    --font-primary: 'Radio Canada Big', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-stats: 'Space Grotesk', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

.hero .container {
    max-width: 1440px;
    padding: 0 120px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Products Page Styles */
.products-comparison-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.products-table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.products-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 900px;
}

.products-comparison-table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 24px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.products-comparison-table th:first-child {
    width: 180px;
    background: var(--primary-color);
}

.product-header {
    position: relative;
}

.product-header.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.product-header-link {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product-header {
    cursor: pointer;
}

.product-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-icon-small {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.product-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.product-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
    display: inline-block;
}

.products-comparison-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: top;
}

.criteria-cell {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--secondary-color);
}

.highlight-cell {
    background: linear-gradient(135deg, rgba(0, 175, 239, 0.1), rgba(0, 175, 239, 0.05));
    font-weight: 600;
    color: var(--primary-color);
}

.custom-solution-cta {
    background: linear-gradient(135deg, var(--light-gray), rgba(0, 175, 239, 0.02));
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(0, 175, 239, 0.1);
}

.custom-solution-content p {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-solution-content .btn {
    font-size: 16px;
    padding: 12px 32px;
}

.products-details-section {
    padding: 80px 0;
    background: var(--white);
    scroll-margin-top: 80px;
}

.products-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.product-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-gray);
    transition: var(--transition);
    scroll-margin-top: -50px;
}

.product-detail-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-detail-card.highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 175, 239, 0.02), rgba(255, 255, 255, 1));
}

.product-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.product-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.product-detail-header h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.features-table {
    margin-bottom: 24px;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
}

.features-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: top;
}

.features-table td:last-child {
    border-bottom: none;
}

.feature-category {
    width: 120px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.features-table td:last-child {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.product-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.pricing-models-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.pricing-table-container {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.pricing-table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 24px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.pricing-table td {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: top;
}

.model-cell {
    width: 160px;
}

.model-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.model-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.products-list {
    list-style: none;
    padding: 0;
}

.products-list li {
    padding: 4px 0;
    font-weight: 500;
    color: var(--secondary-color);
}

.single-product {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.pricing-structure div {
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.no-cost {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 4px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 16px;
}

.advantages-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-row {
    background: linear-gradient(135deg, rgba(0, 175, 239, 0.05), rgba(255, 255, 255, 1));
}

.highlight-pricing {
    background: linear-gradient(135deg, rgba(0, 175, 239, 0.1), rgba(0, 175, 239, 0.05));
    border-radius: 8px;
    padding: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-detail-card {
        padding: 24px;
    }
    
    .product-detail-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .products-table-container,
    .pricing-table-container {
        margin: 20px -20px 0;
        border-radius: 0;
    }
    
    .products-comparison-table th,
    .products-comparison-table td,
    .pricing-table th,
    .pricing-table td {
        padding: 16px 12px;
        font-size: 13px;
    }
    
    .product-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-icon-small {
        width: 24px;
        height: 24px;
    }
}

h1 {
    font-size: 64px;
    letter-spacing: -0.64px;
    margin-bottom: 24px;
    max-width: 515px;
    line-height: 76.8px;
}

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

h2 {
    font-size: 56px;
    letter-spacing: -0.56px;
    margin-bottom: 24px;
}

h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 29px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 175, 239, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.btn-link:hover {
    text-decoration: underline;
}
/* Navigation */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1440px;
    padding: 0 120px;
    transition: all 0.3s ease;
}

/* Navbar scrolled state */
.navbar.scrolled {
    background-color: transparent;
    padding: 15px 0;
}

.navbar.scrolled .container {
    max-width: calc(var(--container-width) * 0.8);
    border-radius: 5000px;
    border: 1px solid #D2D2D2;
    padding: 16px 16px 16px 20px;
    margin-top: 10px;

    background: linear-gradient(90deg, rgba(247, 250, 252, 0.18) 0%, rgba(247, 250, 252, 0.28) 25.96%, rgba(247, 250, 252, 0.28) 68.27%, rgba(247, 250, 252, 0.18) 100%);
    filter: drop-shadow(-8px -10px 46px #0000005f);
    backdrop-filter: brightness(1.1) blur(10px);
}

.navbar.scrolled .container::before {
    -webkit-box-shadow: inset 2px 2px 0px -2px rgba(255, 255, 255, 0.7), 
                        inset 0 0 3px 1px rgba(255, 255, 255, 0.7);
    box-shadow: inset 6px 6px 0px -6px rgba(255, 255, 255, 0.7), 
                inset 0 0 8px 1px rgba(255, 255, 255, 0.7);
    
}

/* Le bouton reste blanc même dans la navbar scrollée */
.navbar.scrolled .btn-primary {
    background-color: var(--white);
    color: #00173C;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

/* Navbar button override */
.navbar .btn-primary {
    background-color: var(--white);
    color: #00173C;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Navbar Conseil Mode (only when not scrolled) */
.navbar.conseil-mode:not(.scrolled) .nav-link {
    color: var(--white);
}

.navbar.conseil-mode:not(.scrolled) .nav-link:hover {
    color: #c9a962;
}

.navbar.conseil-mode:not(.scrolled) .language-toggle {
    color: var(--white);
}

.navbar.conseil-mode:not(.scrolled) .language-toggle:hover {
    color: #c9a962;
}

.navbar.conseil-mode:not(.scrolled) .btn-primary {
    background-color: #c9a962;
    color: var(--white);
    border: 1px solid #c9a962;
}

.navbar.conseil-mode:not(.scrolled) .btn-primary:hover {
    background-color: #b8984f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.3);
}

/* Language Selector */
.language-selector {
    position: relative;
    margin: 0 20px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.language-toggle:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
}

.language-toggle svg {
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--secondary-color);
    transition: var(--transition);
    text-align: left;
}

.language-option:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.language-option span:first-child {
    font-size: 18px;
}

/* Adjust navbar layout to accommodate language selector */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* When navbar is scrolled */
.navbar.scrolled .language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1000;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    /*background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(236, 244, 252, 0.3) 100%);*/
    background-image: url('assets/background-hero.png');
    background-size: cover;
    background-position:bottom;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #292929;
    max-width: 598px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-stats);
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #4B5563;
    max-width: 130px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    width: 500px;
}

.scene-3d {
    position: relative;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop {
    width: 230%;
    height: auto;
    position: absolute;
    z-index: 2;
    transform: translateX(10%);
}

@media screen and (max-width: 1920px) {
    .laptop {
        transform: translateX(0);
    }
}

.floating-elements {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Announcement Section */
.announcement {
    padding: 60px 0;
}

.announcement-card {
    padding: 32px 64px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 250px;

    border-radius: 24px;
    border: 0.833px solid #D5D5D5;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.earth-bg-container {
    position: absolute;
    left: 50px;
    bottom: -150px;
    width: 400px;
    height: 400px;
}

.earth-bg {
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    object-fit: cover;
    object-position: center center;
}


.announcement-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    width: 50%;
    margin-left: auto;
    text-align: left;
}

.flag {
    width: 45px;
    height: 32px;
    border-radius: 6px;
}

.announcement-content p {
    font-size: 14px;
    margin-top: 8px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
}

.announcement-content h3 {
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 0px;
    font-weight: 600;
}

.announcement .btn-primary {
    font-size: 14px;
    padding: 12px 24px;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 24px;
}

.announcement .container {
    max-width: 1200px;
}
/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10 !important;
}

.section-header h2 {
    max-width: 650px;
    margin: 0 auto 24px;
    line-height: 1.1;
}

.tag {
    display: inline-block;
    background-color: var(--white);
    border: 1px solid #CCD1D8;
    border-radius: 99px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.features-grid {
    display: flex;
    gap: 16px;  
    max-width: 1200px;
    height: 550px;
    align-items: center;
    justify-content: center;
}

/* La grande carte à gauche */
.feature-card.large {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

/* La colonne de droite avec 2 cartes */
.features-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 50%;
}

.feature-card {
    background: var(--gradient-blue);
    border-radius: 32px;
    display: flex;
    padding: 40px;
    border: 1px solid #F1F1F1;
    position: relative;
    transition: var(--transition);
    color: var(--white);
    height: calc(50% - 8px);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 175, 239, 0.2);
}

.feature-icon-white {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-white img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-family: "Radio Canada Big";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 140% */
    letter-spacing: -0.2px;
}

.feature-card p {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    color: #FFFFFF;
}

/* Feature preview section */
.feature-preview.large {
    margin-top: auto;
    padding-top: 24px;
    position: relative;
    bottom: -20px;
    right: auto;
    width: 100%;
}

.feature-preview {
    margin-top: auto;
    padding-top: 24px;
    position: relative;
    right: -42px;
    bottom: -5px;
    width: 50%;
}

.feature-preview.large img {
    width: 100%;
    height: auto;
}

.feature-preview img {
    width: 120%;
    height: auto;
}

/* Styles supprimés car remplacés par les images PNG */

/* Reporting Business section */
.feature-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 50%;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 280vh; /* Ajusté pour plus d'espace */
}
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.benefits-images {
    position: sticky;
    top: 20vh;
    height: fit-content;
    z-index: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 270px);
    gap: 10px;
}

.benefit-img-container {
    background-color: #F8F9FA;
    width: 270px;
    height: 240px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}

.benefit-img.active {
    filter: grayscale(0%);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240vh;
    padding-top: 10vh;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transition: opacity 0.6s ease;
    flex: 1;
    align-items: flex-start;
}

.benefit-item.visible {
    opacity: 1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.benefit-text h3 {
    margin-bottom: 12px;
}

.benefit-text p {
    margin-bottom: 20px;
}

/* Senegal CTA Section */
.senegal-cta {
    padding: 80px 0;
    background: #F8F9FA;
    margin: 80px 0;
    overflow: hidden;
}

.senegal-cta .container {
    max-width: 1200px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
}

.cta-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 300px;
}

.cta-image {
    position: absolute;
    bottom: -200px;
    z-index: 1;
}

.cta-image img {
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.cta-text {
    flex: 1;
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    width: 60px;
    height: 42px;
    margin-bottom: 20px;
}

.cta-badge img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.senegal-cta .btn-primary {
    font-size: 16px;
    padding: 14px 28px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}
.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

.faq-header h2 {
    margin-bottom: 24px;
}

.faq-header p {
    margin-bottom: 32px;
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 20px;
    font-family: var(--font-primary);
    color: var(--secondary-color);
    transition: var(--transition);
}
.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 32px 20px 64px;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact CTA Section */
.contact-cta {
    background-image: url('assets/background-more-infos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    z-index: 1;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}
.contact-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

.contact-phone {
    margin-top: 32px;
    font-size: 14px;
    opacity: 0.9;
    color: var(--white);
}

.contact-phone strong {
    font-weight: 600;
}

/* ========== FLOATING PRODUCT SWITCH ========== */
.product-switch-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--primary-color);
    z-index: 1000;
    cursor: grab;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.3s ease;
    user-select: none;
}

/* Tools active state (default) - Blue border */
.product-switch-floating.tools-active {
    border-color: var(--primary-color);
}

/* Conseil active state - Gold border */
.product-switch-floating.conseil-active {
    border-color: #c9a962;
}

.product-switch-floating:hover {
    transform: scale(1.05);
}

.product-switch-floating:active {
    cursor: grabbing;
}

.product-switch-floating.dragging {
    cursor: grabbing;
    transform: scale(1.08);
    transition: none;
}

.switch-half {
    position: absolute;
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.switch-half.switch-tools {
    top: 0;
    border-radius: 90px 90px 0 0;
    background: #f0f0f0;
    color: var(--text-gray);
}

.switch-half.switch-conseil {
    bottom: 0;
    border-radius: 0 0 90px 90px;
    background: #f0f0f0;
    color: var(--text-gray);
}

.switch-half.switch-tools.active {
    background: var(--primary-color);
    color: var(--white);
}

.switch-half.switch-conseil.active {
    background: #1a2b4a;
    color: var(--white);
}

.switch-half:hover:not(.active) {
    background: #e0e0e0;
}

.switch-label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    padding: 0 5px;
}

.switch-indicator {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.switch-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), #1a2b4a);
    border-radius: 50%;
}

/* Divider line */
.product-switch-floating::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
}

/* ========== CONSEIL THEME VARIABLES ========== */
.conseil-theme {
    --conseil-primary: #1a2b4a;
    --conseil-secondary: #2c4a6e;
    --conseil-accent: #c9a962;
    --conseil-text: #2d3436;
    --conseil-text-light: #636e72;
    --conseil-bg-light: #f8f9fa;
    --conseil-bg-dark: #0d1b2a;
}

/* ========== CONSEIL HERO ========== */
.conseil-hero {
    background: linear-gradient(135deg, #1a2b4a 0%, #0d1b2a 100%);
    padding: 140px 0 100px;
    color: var(--white);
}

.conseil-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.conseil-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-gold {
    color: #c9a962;
}

.conseil-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
}

.conseil-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.conseil-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold {
    background: #c9a962;
    color: #1a2b4a;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-gold:hover {
    background: #d4b872;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-gold {
    background: transparent;
    color: #c9a962;
    padding: 14px 28px;
    border: 2px solid #c9a962;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: #c9a962;
    color: #1a2b4a;
}

.conseil-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conseil-visual-element {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ========== CONSEIL SECTIONS COMMON ========== */
.conseil-tag {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    color: #c9a962;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.conseil-lead {
    font-size: 1.15rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== CONSEIL EXPERTISE ========== */
.conseil-expertise {
    padding: 80px 0;
    background: var(--white);
}

.expertise-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.expertise-pillar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4a6e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    margin-bottom: 20px;
}

.expertise-pillar h3 {
    font-size: 1.4rem;
    color: #1a2b4a;
    margin-bottom: 20px;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #636e72;
    border-bottom: 1px solid #e9ecef;
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #c9a962;
    border-radius: 50%;
}

/* ========== CONSEIL VISION ========== */
.conseil-vision {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* ========== VISION CIRCLE DIAGRAM 360° ========== */
.vision-circle-diagram {
    max-width: 700px;
    margin: 80px auto 40px;
    position: relative;
    aspect-ratio: 1;
}

/* Labels des axes extérieurs - positionnés hors du cercle */
.axis-labels {
    position: absolute;
    inset: -50px;
    pointer-events: none;
    z-index: 10;
}

.axis-label {
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    color: #1a2b4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
}

/* État actif des labels (highlight au survol du quartier) */
.axis-label.highlighted {
    color: #c9a962;
    background: rgba(201, 169, 98, 0.15);
}

.axis-top {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.axis-top.highlighted {
    transform: translateX(-50%) scale(1.1);
}

.axis-bottom {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.axis-bottom.highlighted {
    transform: translateX(-50%) scale(1.1);
}

.axis-left {
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}
.axis-left.highlighted {
    transform: translateY(-50%) rotate(-90deg) scale(1.1);
}

.axis-right {
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}
.axis-right.highlighted {
    transform: translateY(-50%) rotate(90deg) scale(1.1);
}

/* SVG du diagramme */
.circle-diagram-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Quadrants positionnés à l'intérieur du cercle - éloignés des axes */
.circle-quadrants {
    position: absolute;
    inset: 25%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    z-index: 3;
}

.circle-quadrant {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.quadrant-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quadrant-description {
    font-size: 0.7rem;
    color: #636e72;
    line-height: 1.4;
    margin: 0;
    padding: 0 4px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.15s ease, opacity 0.15s ease, margin 0.15s ease;
}

/* État hover du quartier - agrandissement INSTANTANÉ et affichage description */
.circle-quadrant:hover {
    border-color: #c9a962;
    box-shadow: 0 12px 35px rgba(201, 169, 98, 0.3);
    z-index: 20;
    background: #fff;
}

/* Agrandissement spécifique par position pour dépasser le cercle */
.quadrant-top-left:hover {
    transform: translate(-25%, -25%) scale(1.35);
}
.quadrant-top-right:hover {
    transform: translate(25%, -25%) scale(1.35);
}
.quadrant-bottom-left:hover {
    transform: translate(-25%, 25%) scale(1.35);
}
.quadrant-bottom-right:hover {
    transform: translate(25%, 25%) scale(1.35);
}

.circle-quadrant:hover .quadrant-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.circle-quadrant:hover .quadrant-title {
    color: #c9a962;
}

.circle-quadrant .quadrant-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: #1a2b4a;
    transition: background 0.15s ease, color 0.15s ease;
}

.circle-quadrant:hover .quadrant-icon {
    background: linear-gradient(135deg, #c9a962 0%, #d4b872 100%);
    color: #fff;
}

.quadrant-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2b4a;
    line-height: 1.3;
    transition: color 0.15s ease;
}

/* Positionnement spécifique pour chaque quartier */
.quadrant-top-left {
    border-radius: 20% 12px 12px 12px;
}

.quadrant-top-right {
    border-radius: 12px 20% 12px 12px;
}

.quadrant-bottom-left {
    border-radius: 12px 12px 12px 20%;
}

.quadrant-bottom-right {
    border-radius: 12px 12px 20% 12px;
}

/* ========== CONSEIL PROPOSITION ========== */
.conseil-proposition {
    padding: 80px 0;
    background: var(--white);
}

.proposition-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.proposition-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #c9a962 0%, #1a2b4a 100%);
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4a6e 100%);
    color: #c9a962;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.step-icon {
    display: none;
}

.timeline-step h4 {
    font-size: 1rem;
    color: #1a2b4a;
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 0.9rem;
    color: #636e72;
}

/* ========== CONSEIL MODES ========== */
.conseil-modes {
    padding: 80px 0;
    background: #f8f9fa;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mode-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 43, 74, 0.12);
}

.mode-card.featured {
    border: 2px solid #c9a962;
    position: relative;
}

.mode-card.featured::before {
    content: 'Recommandé';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a962;
    color: #1a2b4a;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mode-header {
    text-align: center;
    margin-bottom: 24px;
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4a6e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    margin: 0 auto 16px;
}

.mode-card h3 {
    font-size: 1.3rem;
    color: #1a2b4a;
    margin-bottom: 8px;
}

.mode-tagline {
    color: #c9a962;
    font-weight: 500;
    font-size: 0.95rem;
}

.mode-description {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.mode-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #2d3436;
    font-size: 0.9rem;
}

.mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c9a962;
    font-weight: 700;
}

.mode-ideal {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.mode-ideal strong {
    color: #1a2b4a;
}

.mode-ideal span {
    color: #636e72;
}

.mode-card .btn {
    text-align: center;
    width: 100%;
}

/* ========== CONSEIL DOMAINES ========== */
.conseil-domaines {
    padding: 80px 0;
    background: var(--white);
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.domaine-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.domaine-card:hover {
    border-color: #c9a962;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(26, 43, 74, 0.08);
}

.domaine-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4a6e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    margin-bottom: 16px;
}

.domaine-card h4 {
    font-size: 1.1rem;
    color: #1a2b4a;
    margin-bottom: 10px;
}

.domaine-card p {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.5;
}

/* ========== CONSEIL WHY ========== */
.conseil-why {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #0d1b2a 100%);
    color: var(--white);
}

.conseil-why h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.why-list {
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:last-child {
    border-bottom: none;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    flex-shrink: 0;
}

.why-content h4 {
    color: #c9a962;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.why-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ========== CONSEIL REFERENCES ========== */
.conseil-references {
    padding: 80px 0;
    background: #f8f9fa;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reference-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #c9a962;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reference-category {
    display: inline-block;
    background: rgba(26, 43, 74, 0.1);
    color: #1a2b4a;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.reference-card h4 {
    font-size: 1.15rem;
    color: #1a2b4a;
    margin-bottom: 12px;
}

.reference-card p {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.5;
}

.reference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reference-tags span {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #636e72;
}

.references-banner {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c4a6e 100%);
    border-radius: 12px;
}

.references-banner p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========== CONSEIL VALEURS ========== */
.conseil-valeurs {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

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

.valeur-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2b4a;
    margin: 0 auto 20px;
}

.valeur-item h4 {
    font-size: 1.2rem;
    color: #1a2b4a;
    margin-bottom: 8px;
}

.valeur-item p {
    color: #636e72;
}

/* ========== CONSEIL CHIFFRES ========== */
.conseil-chiffres {
    padding: 60px 0;
    background: #f8f9fa;
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.chiffre-value {
    font-family: var(--font-stats);
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a962;
    margin-bottom: 8px;
}

.chiffre-label {
    font-size: 0.9rem;
    color: #636e72;
}

/* ========== CONSEIL CTA ========== */
.conseil-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4a 0%, #0d1b2a 100%);
    text-align: center;
    color: var(--white);
}

.conseil-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.conseil-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
}

.conseil-cta-phone {
    margin-top: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.conseil-cta-phone strong {
    color: #c9a962;
    font-size: 1.2rem;
}

/* ========== CONSEIL RESPONSIVE ========== */
@media (max-width: 1024px) {
    .conseil-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conseil-hero-visual {
        display: none;
    }

    .conseil-hero-buttons {
        justify-content: center;
    }

    .expertise-pillars {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .product-switch-floating {
        width: 140px;
        height: 140px;
        top: 80px;
        right: 15px;
        border-width: 2px;
    }

    .switch-half.switch-tools {
        border-radius: 70px 70px 0 0;
    }

    .switch-half.switch-conseil {
        border-radius: 0 0 70px 70px;
    }

    .switch-label {
        font-size: 0.75rem;
    }

    .switch-indicator {
        width: 24px;
        height: 24px;
    }

    .switch-indicator::before {
        width: 6px;
        height: 6px;
    }

    .conseil-hero {
        padding: 60px 0;
    }

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

    .conseil-hero-subtitle {
        font-size: 1.1rem;
    }

    .proposition-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .proposition-timeline::before {
        display: none;
    }

    .timeline-step {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin: 0;
    }

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

    .valeurs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chiffres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quadrant-labels {
        display: none;
    }

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

/* Footer */
.footer {
    background-color: #111827;
    color: var(--white);
    padding: 48px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 24px;
    align-items: start;
}

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

.footer-logo {
    height: 32px;
    margin-bottom: 20px;
}
.fintech-label {
    height: 100px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column address {
    font-style: normal;
    font-size: 14;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 14px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero .container,
    .navbar .container {
        padding: 0 40px;
    }
    
    .feature-card.large {
        min-height: auto;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-visual {
        width: 400px;
    }
    
    .laptop {
        width: 200%;
    }
}

@media (max-width: 768px) {
    /* Base styles */
    .container {
        padding: 0 16px;
    }
    
    /* Typography */
    h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    h3 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
    
    /* Navigation */
    .navbar {
        padding: 20px 0;
    }
    
    .navbar .container {
        padding: 0 20px;
        margin: 0 16px;
    }
    
    .navbar.scrolled .container {
        padding: 12px 20px;
        margin: 8px auto 0;
        width: 90%;
        border-radius: 50px;
        background: rgba(247, 250, 252, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    /* Language selector mobile */
    .language-selector {
        display: none;
    }
    
    /* Mobile Menu Overlay - Séparé de la navbar */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        z-index: 999;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 30px;
        padding: 40px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
        font-weight: 500;
        color: var(--secondary-color);
        text-decoration: none;
        padding: 12px 0;
        border-bottom: 1px solid transparent;
        transition: var(--transition);
    }
    
    .mobile-nav-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }
    
    .mobile-menu-content .btn-primary {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 29px;
        text-decoration: none;
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 16px;
        margin-top: 20px;
        transition: var(--transition);
    }
    
    .mobile-menu-content .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 175, 239, 0.3);
    }
    
    /* Mobile Language Selector */
    .mobile-language-selector {
        margin: 20px 0;
        padding: 16px 0;
        border-top: 1px solid var(--border-gray);
        border-bottom: 1px solid var(--border-gray);
    }
    
    .mobile-language-options {
        display: flex;
        gap: 12px;
        justify-content: center;
    }
    
    .mobile-language-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--light-gray);
        border: 1px solid var(--border-gray);
        border-radius: 20px;
        cursor: pointer;
        font-family: var(--font-secondary);
        font-size: 14px;
        font-weight: 500;
        color: var(--secondary-color);
        transition: var(--transition);
    }
    
    .mobile-language-option:hover,
    .mobile-language-option.active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }
    
    .mobile-language-option span:first-child {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 40px;
        background-position: center bottom;
        background-size: cover;
    }
    
    .hero .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-text h1 {
        margin-bottom: 16px;
        font-size: 36px;
    }
    
    .hero-text p {
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 40px;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stats {
        gap: 16px;
        justify-content: space-between;
        width: 100%;
    }
    
    .stat {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
        max-width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Announcement Section */
    .announcement {
        padding: 40px 0;
    }
    
    .announcement-card {
        padding: 24px;
        min-height: auto;
    }
    
    .earth-bg-container {
        display: none;
    }
    
    .announcement-content {
        width: 100%;
    }
    
    .flag {
        width: 36px;
        height: 24px;
    }
    
    .announcement-content h3 {
        font-size: 20px;
        margin-top: 12px;
    }
    
    .announcement-content p {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .announcement .btn-primary {
        margin-top: 16px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Features Section */
    .features {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h2 {
        margin-bottom: 16px;
    }
    
    .tag {
        font-size: 12px;
        padding: 4px 16px;
        margin-bottom: 16px;
    }
    
    .features-grid {
        flex-direction: column;
        height: auto;
        gap: 32px;
    }
    
    .feature-card.large,
    .features-column {
        width: 100%;
    }
    
    .features-column {
        gap: 32px;
        height: auto;
    }
    
    .feature-card {
        padding: 24px 24px 0;
        height: auto;
        min-height: 200px;
        flex-direction: column;
        border-radius: 24px;
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
    
    .feature-header {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }
    
    .feature-icon-white {
        margin-bottom: 16px;
    }
    
    .feature-preview,
    .feature-preview.large {
        display: block;
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }
    
    .feature-preview img,
    .feature-preview.large img {
        width: 100%;
        height: auto;
        max-height: 170px;
        object-fit: contain;
        border-radius: 0 0 0 0;
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        bottom: 0px;
    }
    
    /* Images mobiles pour les feature cards */
    .feature-preview img[src*="reporting-reglementaire"] {
        content: url('assets/reporting-reglementaire-mobile.png');
    }
    
    .feature-preview img[src*="reporting-business"] {
        content: url('assets/reporting-business-mobile.png');
    }
    
    .feature-preview img[src*="reporting-editique"] {
        content: url('assets/reporting-editique-mobile.png');
    }
    
    /* Benefits Section - Déjà gérée par les media queries globales */
    
    .benefits-layout {
        gap: 40px;
    }
    
    .benefits-images {
        position: relative;
        top: 0;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .benefit-img-container {
        width: 100%;
        height: 120px;
    }
    
    .benefit-img {
        width: 90%;
        height: 90%;
    }
    
    .benefits-content {
        min-height: auto;
        padding-top: 0;
        gap: 40px;
    }
    
    .benefit-item {
        gap: 16px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-icon img {
        width: 48px;
        height: 48px;
    }
    
    .benefit-text h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .benefit-text p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .benefit-text .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Senegal CTA */
    .senegal-cta {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .cta-image-container {
        display: none;
    }
    
    .cta-text {
        padding-left: 0;
        text-align: center;
    }
    
    .cta-badge {
        width: 48px;
        height: 32px;
        margin: 0 auto 16px;
    }
    
    .cta-text h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-text p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* FAQ Section */
    .faq {
        padding: 40px 0;
    }
    
    .faq-layout {
        gap: 32px;
        display: flex;
        flex-direction: column;
    }
    
    .faq-header {
        text-align: center;
        width: 100%;
    }
    
    .faq-header h2 {
        margin-bottom: 16px;
    }
    
    .faq-header p {
        margin-bottom: 24px;
    }
    
    .faq-list {
        width: 100%;
    }
    
    .faq-item {
        margin-bottom: 12px;
        width: 100%;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 16px;
        gap: 12px;
        width: 100%;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 14px;
    }
    
    /* Contact CTA */
    .contact-cta {
        padding: 40px 0;
    }
    
    .contact-content h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .contact-phone {
        margin-top: 24px;
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
        overflow: hidden;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 32px;
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 16px;
    }
    
    .fintech-label {
        height: 80px;
        margin-bottom: 16px;
    }
    
    .footer-links {
        gap: 24px;
        text-align: left;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column li {
        margin-bottom: 8px;
    }
    
    .footer-column a {
        font-size: 12px;
    }
    
    .footer-column address {
        font-size: 12px;
    }
    
    .footer-bottom {
        padding-top: 16px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom p,
    .footer-legal a {
        font-size: 11px;
    }
    
    .footer-legal {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats {
        gap: 8px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 24px;
    }
}
/* Grid adjustments for features */


/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Mobile Section - Masquée par défaut */
.benefits-mobile {
    display: none;
    padding: 40px 0 0;
    background-color: var(--white);
    padding-bottom: 10vh;
}

/* Masquer benefits desktop sur mobile et afficher benefits-mobile */
@media (max-width: 768px) {
    .benefits {
        display: none;
    }
    
    .benefits-mobile {
        display: block;
    }
}

.mobile-benefits-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-image-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 40px;
}

.mobile-image-sticky::before {
    content: '';
    position: absolute;
    top: -120px;
    left: calc(-1 * (100vw - 100%)/2);
    right: 0;
    height: 55vh;
    width: 100vw;
    background: linear-gradient(180deg, #FFFFFFFF 87.5%, #FFFFFF00 100%);
    z-index: -10;
    opacity: 1;
}

.mobile-img-container {
    position: relative;
    width: 280px;
    height: 200px;
    background-color: #F8F9FA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-benefit-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: grayscale(100%);
}

.mobile-benefit-img.active {
    opacity: 1;
    filter: grayscale(0%);
}

.mobile-benefits-content {
    display: flex;
    flex-direction: column;
    gap: 25vh;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.mobile-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.6s ease;
    padding: 20px;
    max-width: 500px;
}

/* Contact Process Section - Scroll Offset */
.contact-process {
    scroll-margin-top: 120px;
}

/* =====================
   CONTACT FORM STYLES
   ===================== */

/* Form Labels - Bold styling for specific labels to match contact info section */
.form-group label[data-translate="contact.form.products"],
.form-group label[data-translate="contact.form.attachment"],
.form-group label[data-translate="contact.form.message"] {
    font-weight: 700;
    color: var(--text-dark);
}

/* Checkbox Group Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

/* Checkbox Category Styling */
.checkbox-category {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
}

.checkbox-category:first-of-type {
    margin-top: 12px;
}

/* METRANE Tools - Bleu clair avec titre blanc */
.checkbox-category-tools {
    background: #4A90D9;
    border: none;
}

.checkbox-category-tools .checkbox-category-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.checkbox-category-tools .checkbox-item label {
    color: #ffffff;
}

.checkbox-category-tools .checkbox-item input[type="checkbox"] {
    accent-color: #ffffff;
}

/* METRANE Conseil - Bleu foncé avec titre doré */
.checkbox-category-conseil {
    background: #1a2b4a;
    border: none;
}

.checkbox-category-conseil .checkbox-category-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #c9a962;
    margin-bottom: 12px;
}

.checkbox-category-conseil .checkbox-item label {
    color: #c9a962;
}

.checkbox-category-conseil .checkbox-item input[type="checkbox"] {
    accent-color: #c9a962;
}

.checkbox-category .checkbox-group {
    margin-top: 0;
}

/* Form Message Styling */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.form-message-success .form-message-icon {
    color: #28a745;
}

.form-message-error .form-message-icon {
    color: #dc3545;
}

.form-message-text {
    font-size: 14px;
    line-height: 1.5;
}

/* Submit Button States */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Select Dropdown Styling */
select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-inter);
    color: var(--text-dark);
    background-color: var(--white);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

select option {
    padding: 8px;
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    margin-top: 8px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.file-upload-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 2px dashed var(--border-gray);
    border-radius: 12px;
    background-color: #fafafa;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-display:hover {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
}

.file-upload-text {
    color: var(--text-gray);
    font-size: 14px;
}

.file-upload-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-btn:hover {
    background: #0052cc;
}

.file-upload-wrapper.has-file .file-upload-display {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
}

.file-upload-wrapper.has-file .file-upload-text {
    color: var(--text-dark);
    font-weight: 500;
}

/* Multiple Attachments Styling */
.attachments-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.attachment-item {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.attachment-item .file-upload-display {
    flex: 1;
    margin: 0;
    min-height: 54px;
}

.attachment-item.has-file .file-upload-display {
    border-color: var(--primary-blue);
    border-style: solid;
    background-color: #f0f7ff;
    cursor: default;
}

.attachment-item.has-file .file-upload-text {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-remove-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-height: 54px;
    border: 2px solid #ef4444;
    border-radius: 12px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-remove-attachment:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.btn-remove-attachment svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.btn-add-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    margin-top: 16px;
    border: 2px dashed #22c55e;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #16a34a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-attachment:hover {
    border-style: solid;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn-add-attachment svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* Mobile responsiveness for form elements */
@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checkbox-item {
        align-items: flex-start;
        gap: 10px;
    }
    
    .checkbox-item input[type="checkbox"] {
        margin-top: 2px;
    }
    
    .file-upload-display {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.mobile-benefit-item.visible {
    opacity: 1;
}

.mobile-benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.mobile-benefit-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-benefit-text h3 {
    font-size: 24px;
    margin: 0;
    color: var(--secondary-color);
}

.mobile-benefit-text p {
    font-size: 16px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.mobile-benefit-text .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Additional hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}