/* CSS intégré directement */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a3a5c;
    --primary-blue: #1a3a5c;
    --light-blue: #0f67c5;
    --accent-green: #00d4aa;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);

}

html {
  scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    position: relative;
}

.star-shape {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star-line {
    position: absolute;
    background: var(--primary-blue);
    left: 50%;
    top: 50%;
    transform-origin: center;
}

.star-line:nth-child(1) {
    width: 3px;
    height: 100%;
    transform: translate(-50%, -50%);
}

.star-line:nth-child(2) {
    width: 100%;
    height: 3px;
    transform: translate(-50%, -50%);
}

.star-line:nth-child(3) {
    width: 3px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.star-line:nth-child(4) {
    width: 100%;
    height: 3px;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 25px 0;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

/* Mega Menu Dropdown */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 900px;
    min-height: 500px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.nav-menu li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-left {
    background: var(--bg-light);
    padding: 40px 35px;
}

.mega-menu-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    margin-bottom: 18px;
}

.mega-menu-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.mega-menu-list a:hover,
.mega-menu-list a.active {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mega-menu-list a:hover::before,
.mega-menu-list a.active::before {
    content: '→';
    position: absolute;
    right: 15px;
    opacity: 0;
    animation: slideInArrow 0.3s ease forwards;
}

@keyframes slideInArrow {
    to {
        opacity: 1;
        right: 20px;
    }
}

.mega-menu-right {
    padding: 0;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mega-menu-image {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    overflow: hidden;
}

.mega-menu-image.active {
    display: block;
    animation: fadeInScale 0.4s ease;
}

.image-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

/* Industry specific backgrounds */
.industry-courtage {
    background-image: url('images/courtage.jpg');
    background-size: cover;
    background-position: center;
}

.industry-finance {
    background-image: url('images/finance.jpg');
    background-size: cover;
    background-position: center;
}

.industry-industrie {
    background-image: url('images/industrie.jpg');
    background-size: cover;
    background-position: center;
}

.industry-industrie.fallback {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.industry-retail {
    background-image: url('images/retail.jpg');
    background-size: cover;
    background-position: center;
}

.industry-sante {
    background-image: url('images/sante.jpg');
    background-size: cover;
    background-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.mega-menu-image-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 10;
}

.mega-menu-image-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mega-menu-image-desc {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.5;
}

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.98);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
    }
}

/* CTA Button */
.cta-button {
    background: var(--accent-green);
    color: var(--text-dark) !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: absolute;
    right: 40px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,212,170,0.3);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://prod.ucwe.capgemini.com/wp-content/uploads/2023/06/AI-Futures-interim-Dot-Com-slider-image.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 2;

}

.hero-content {
    max-width: 600px;
    background: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-heavy);
}

.hero-cta::after {
    content: '→';
    font-size: 20px;
}

/* Info Cards Section */
.info-section {
    padding: 100px 0;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    background-size: cover;
    background-position: center;
}

/* === Images spécifiques pour les cartes d'info === */
.info-card-overlay-productivite {
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%),
        url('images/industrie.jpg');
}

.info-card-overlay-automatisation {
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%),
        url('images/retail.jpg');
}

.info-card-overlay-iaact {
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%),
        url('images/finance.jpg');
}

.info-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.info-card-tag {
    display: inline-block;
    background: var(--accent-green);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

/* === Section Industries Landing === */
.industries-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.industry-landing {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
}

.industry-visual {
    position: relative;
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

.industry-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}

.industry-content {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-content h3 {
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.industry-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.industry-content ul {
    margin-left: 18px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.industry-content li {
    margin-bottom: 8px;
}

.industry-cta {
    align-self: flex-start;
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.industry-cta:hover {
    background: #234b78;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background-color: #0b3554; /* ton fond bleu */
  color: #ffffff;
  padding: 40px 80px;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

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

.stat-value {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #00d38f; /* ton vert */
  line-height: 1;
}

/* Empêche toute coupure de ligne dans 24/7 */
.stat-247 {
  white-space: nowrap;
}

/* texte sous le chiffre */
.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}




.stat-item h3 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--accent-green);
}

.stat-item p {
    font-size: 16px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    nav {
        position: static;
        transform: none;
    }

    .cta-button {
        position: static;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 40px;
    }

    .info-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mega-menu {
        display: none !important;
    }

    .industry-landing {
        grid-template-columns: 1fr;
    }

    .industry-content {
        padding: 30px 20px 35px;
    }
}


/* Caraousel */


.logo-carousel {
    margin-top: 24px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 999px;
    padding: 10px 0 10px 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(12px);
}

.logo-carousel-title {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-right: 16px;
    white-space: nowrap;
}

.logo-carousel-viewport {
    overflow: hidden;
    flex: 1;
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: logo-scroll 28s linear infinite;
}

.logo-logo {
    /*min-width: 130px;*/
    border-radius: 999px;
    /*background: rgba(255, 255, 255, 0.96);*/
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* ici on gère l’affichage des logos */
.logo-logo img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    display: block;
}

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-carousel {
        border-radius: 20px;
        padding: 10px 0 10px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo-carousel-title {
        margin-right: 0;
        font-size: 12px;
    }
}
