/* ==========================================
   PIMAN GROUP - Professional Design
   Colors: #FF0100 (Red) & #1E1E1E (Black)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF0100;
    --dark-bg: #1E1E1E;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --text-dark: #1E1E1E;
    --text-gray: #666666;
    --blue-dark: #0F2B5C;
    --blue-gradient: linear-gradient(135deg, #0F2B5C 0%, #1A4280 50%, #0F2B5C 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: auto;
    margin-left: 3rem;
}

.nav-menu-item {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu-item:hover {
    color: var(--primary-red);
}

.nav-menu-item:hover::after {
    width: 100%;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    margin-top: -2px;
}

.nav-contact-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.2);
}

.nav-contact-btn:hover {
    background: #D50100;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.3);
}

.burger-menu {
    display: none;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==========================================
   MENU OVERLAY
   ========================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    text-align: center;
}

.menu-close {
    position: absolute;
    top: -3rem;
    right: -3rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-left: 5px solid transparent;
}

.menu-item:hover {
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    transform: translateX(10px);
}

/* ==========================================
   HERO SECTION - Blue Gradient
   ========================================== */

.hero-blue {
    margin-top: 70px;
    height: 45vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.hero-blue-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    overflow: hidden;
}

.hero-blue-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    right: -10%;
    bottom: -50%;
    background:
        repeating-linear-gradient(120deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.6) 40px,
            rgba(0, 0, 0, 0.6) 50px,
            rgba(0, 0, 0, 0.8) 50px,
            rgba(0, 0, 0, 0.8) 55px,
            rgba(0, 0, 0, 0.6) 55px,
            rgba(0, 0, 0, 0.6) 65px,
            transparent 65px,
            transparent 105px);
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

/* ==========================================
   WHITE SECTION
   ========================================== */

.white-section {
    background: #F0F0F0;
    padding: 6rem 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

/* ==========================================
   3 CARDS GRID
   ========================================== */

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.feature-card:hover .card-image {
    transform: scale(1.08);
}

/* Image placeholders with realistic gradients */
.blue-tech {
    background: linear-gradient(135deg, #0F2B5C 0%, #1A4280 50%, #2558A0 100%),
        radial-gradient(circle at 30% 40%, rgba(37, 88, 160, 0.5) 0%, transparent 60%);
    background-blend-mode: screen;
}

.red-flow {
    background: linear-gradient(135deg, #1E1E1E 0%, #3A0000 30%, #FF0100 70%, #FF4545 100%),
        radial-gradient(circle at 70% 50%, rgba(255, 1, 0, 0.4) 0%, transparent 60%);
    background-blend-mode: screen;
}

.data-viz {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #3A3A3A 100%),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255, 255, 255, 0.03) 30px, rgba(255, 255, 255, 0.03) 60px),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 60px);
}

.card-content {
    padding: 2.5rem;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--dark-bg);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 3px;
    text-transform: uppercase;
}

.card-btn:hover {
    background: var(--primary-red);
    transform: translateX(5px);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.card-btn:hover .arrow {
    transform: translateX(5px);
}

/* ==========================================
   SOLUTIONS SHOWCASE SECTION
   ========================================== */

.solutions-showcase {
    background: var(black);
    padding: 6rem 0;
}

.section-heading-center {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.solutions-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-box {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.solution-logo-area {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.solution-dark {
    background: var(--dark-bg);
}

.solution-light {
    background: var(--light-gray);
}

.solution-red {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.solution-logo-img {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.logo-text-white {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-text-dark {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.shield-icon {
    font-size: 3.5rem;
}

.g-icon-dark {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.pi-icon {
    font-size: 4rem;
    font-weight: 300;
}

.solution-name {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.solution-name-dark {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.solution-name-large {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
}

.solution-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: -3px;
}

.solution-subtitle-dark {
    font-size: 0.65rem;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-top: -3px;
    color: var(--text-dark);
}

.solution-desc {
    padding: 2.5rem;
}

.solution-desc h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.solution-desc p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.solution-link:hover {
    gap: 0.8rem;
    color: hsl(0, 100%, 50%);
}

/* ==========================================
   CLIENTS SECTION
   ========================================== */

.clients-section {
    background: var(--white);
    padding: 6rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 120px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-placeholder {
    font-size: 0.75rem;
    font-weight: 700;
    color: #CCCCCC;
    letter-spacing: 1px;
}

/* ==========================================
   DARK TECH SECTION
   ========================================== */

.dark-tech-section {
    background: var(black);
    min-height: 70vh;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.dark-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    background: var(black);
}

.dark-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(black);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.dark-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    align-self: flex-start;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    text-transform: uppercase;
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateX(5px);
}

.dark-visual {
    background:
        linear-gradient(135deg, #0F2B5C 0%, #1A4280 40%, #2558A0 60%, #1A4280 100%),
        radial-gradient(circle at 30% 40%, rgba(37, 88, 160, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(15, 43, 92, 0.4) 0%, transparent 60%);
    background-blend-mode: screen;
    position: relative;
    overflow: hidden;
}

.dark-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.02) 3px,
            rgba(255, 255, 255, 0.02) 6px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.02) 3px,
            rgba(255, 255, 255, 0.02) 6px);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-col ul li:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==========================================
   SOLUTIONS SECTION
   ========================================== */

.solutions-section {
    background: #E8E8E8;
    padding: 6rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.solution-header {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    text-align: center;
}

.teal-bg {
    background: #5CB5B5;
}

.dark-bg {
    background: #1E1E1E;
}

.purple-bg {
    background: #000000;
}

.solution-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.solution-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    font-weight: 400;
}

.solution-body {
    padding: 2.5rem;
    background: var(--white);
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.solution-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.solution-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.solution-learn-more:hover {
    gap: 0.8rem;
    transform: translateX(5px);
}

/* ==========================================
   LA TECH PAGE
   ========================================== */

.tech-section-white {
    background: var(--white);
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.tech-image {
    width: 100%;
}

.business-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #D0D0D0 0%, #E8E8E8 100%);
    border-radius: 4px;
}

.tech-content {
    padding: 2rem 0;
}

.tech-heading {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.tech-subheading {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.tech-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.tech-section-dark {
    background: var(--dark-bg);
    min-height: 80vh;
}

.tech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.tech-left {
    padding: 6rem 5rem;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-dark-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.tech-dark-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.tech-right {
    position: relative;
}

.tech-visual-blue {
    background:
        linear-gradient(135deg, #0F2B5C 0%, #1A4280 40%, #2558A0 60%, #1A4280 100%),
        radial-gradient(circle at 30% 40%, rgba(37, 88, 160, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(15, 43, 92, 0.4) 0%, transparent 60%);
    background-blend-mode: screen;
}

.tech-visual-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
}

.tech-section-white-alt {
    background: #F8F8F8;
    padding: 6rem 0;
}

.tech-number-red {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-two-columns {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.tech-heading-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.tech-text-bold {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.tech-subtitle-large {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.tech-subtitle-small {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.tech-list {
    list-style: none;
    margin: 1.5rem 0;
}

.tech-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.tech-list-small {
    list-style: none;
    margin: 1rem 0;
}

.tech-list-small li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list-small li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 3rem;
    }

    .container {
        padding: 0 3rem;
    }

    .footer-container {
        padding: 0 3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .split-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

    .section-heading {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tech-split {
        grid-template-columns: 1fr;
    }

    .tech-two-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .section-heading-center {
        font-size: 1.8rem;
    }

    .dark-content {
        padding: 4rem 2rem;
    }

    .dark-title {
        font-size: 1.8rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

/* Tech page - Visual red (lignes rouges) */
.tech-visual-red {
    background:
        linear-gradient(135deg, #1a0000 0%, #330000 40%, #000000 60%, #330000 100%),
        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    background-blend-mode: screen;
    position: relative;
}

.tech-visual-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.4) 20px,
            rgba(0, 0, 0, 0.4) 22px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
}

/* Tech page - Visual woman (image de femme) */
.tech-visual-woman {
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%),
        url('woman-tech.jpg') center/cover;
    background-color: #2a2a2a;
    position: relative;
}

/* Tech split reverse (image à gauche, texte à droite) */
.tech-split-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.tech-split-reverse .tech-left {
    order: 1;
}

.tech-split-reverse .tech-right {
    order: 2;
    padding: 6rem 5rem;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tech intro text (petit texte au-dessus du titre) */
.tech-intro-text {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* Tech dark title large (grand titre pour section 04) */
.tech-dark-title-large {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* ===============================================
   NOTRE OFFRE PAGE STYLES
   =============================================== */

/* Hero Split Section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    margin-top: 70px;
}

.hero-split-left {
    position: relative;
    overflow: hidden;
}

.hero-image-people {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('people-consulting.jpg') center/cover;
    background-color: #2a2a2a;
    filter: grayscale(100%);
}

.hero-split-right {
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF0100 100%);
    overflow: hidden;
}

.hero-red-lines {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.hero-red-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.1) 30px,
            rgba(255, 255, 255, 0.1) 32px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
}

.hero-logo-circle {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-letter {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Montserrat', sans-serif;
}

.logo-text {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
    line-height: 1;
    margin-top: 0.2rem;
}

.hero-split-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
}

/* Needs Section White */
.needs-section-white {
    background: var(--white);
    padding: 6rem 5%;
}

.needs-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.needs-intro {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 4rem;
}

.needs-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.needs-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.needs-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.needs-card-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.expertise-image {
    background: url('expertise-img.jpg') center/cover;
    background-color: #f0f0f0;
}

.tech-image {
    background:
        linear-gradient(135deg, #0F2B5C 0%, #2558A0 100%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
}

.join-image {
    background: url('join-img.jpg') center/cover;
    background-color: #1a1a1a;
}

.needs-card-content {
    padding: 2.5rem 2rem;
}

.needs-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

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

.needs-list li {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.needs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

/* Transform Red Section */
.transform-red-section {
    background: var(--primary-red);
}

.transform-red-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.transform-red-image {
    background:
        linear-gradient(90deg, rgba(255, 1, 0, 0.3) 0%, transparent 100%),
        url('transform-person.jpg') center/cover;
    background-color: #ccc;
    filter: grayscale(100%);
}

.transform-red-content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.transform-red-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.transform-red-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.transform-red-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.transform-red-btn:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateX(5px);
}

/* Tech Blue Section */
.tech-blue-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    background: var(--dark-bg);
}

.tech-blue-content {
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.tech-blue-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-blue-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.tech-blue-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tech-blue-btn:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.tech-blue-visual {
    background:
        linear-gradient(135deg, #0F2B5C 0%, #1A4280 40%, #2558A0 60%, #1A4280 100%),
        radial-gradient(circle at 30% 40%, rgba(37, 88, 160, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(15, 43, 92, 0.4) 0%, transparent 60%);
    background-blend-mode: screen;
    position: relative;
}

.tech-blue-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
}

/* ===============================================
   PILIERS TECHNOLOGIQUES SECTION
   =============================================== */

.pillars-section {
    padding: 6rem 5%;
    background: var(--white);
}

.pillars-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    color: #1E1E1E;
    letter-spacing: 1px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--white);
    border: 2px solid #1E1E1E;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 1, 0, 0.15);
    border-color: var(--primary-red);
}

.pillar-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    min-height: 60px;
}

.pillar-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A4A4A;
}

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

    .hero-split,
    .transform-red-grid,
    .tech-blue-section {
        grid-template-columns: 1fr;
    }

    .needs-cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo-circle {
        top: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
    }

    .hero-split-title {
        font-size: 2.5rem;
    }
}

/* ===============================================
   SOLUTION DETAIL PAGE STYLES (Private Discuss, etc.)
   =============================================== */

/* Solution Header */
.solution-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 5% 3rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.solution-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 1, 0, 0.03) 2px,
            rgba(255, 1, 0, 0.03) 4px);
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--primary-red);
}

.geddai-logo-header {
    position: relative;
    z-index: 1;
    text-align: center;
}

.solution-page-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.solution-page-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Solution Content Section */
.solution-content-section {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    padding: 4rem 5% 6rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-single-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-left-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-right-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Solution Card */
.solution-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.solution-single-column .solution-card {
    padding: 3.5rem;
    border-radius: 20px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 1, 0, 0.1) 0%, rgba(255, 1, 0, 0.05) 100%);
    border-radius: 12px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-single-column .card-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Description Blocks */
.description-block {
    margin-bottom: 1.8rem;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid transparent;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-block:hover {
    border-left-color: var(--primary-red);
    background: linear-gradient(90deg, rgba(255, 1, 0, 0.03) 0%, rgba(255, 1, 0, 0.01) 100%);
    transform: translateX(4px);
}

.description-block.highlight-block {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(255, 1, 0, 0.12) 100%);
    border-left: 5px solid var(--primary-red);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.description-block.highlight-block::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 1, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.description-block.highlight-block .card-text {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

/* Card Variants */
.solution-card.card-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #3a3a3a;
}

.solution-card.card-dark .card-title {
    color: var(--white);
}

.solution-card.card-dark .card-text {
    color: rgba(255, 255, 255, 0.85);
}

.solution-card.card-dark .card-icon {
    background: linear-gradient(135deg, rgba(255, 1, 0, 0.2) 0%, rgba(255, 1, 0, 0.1) 100%);
}

.solution-card.card-dark .solution-list li {
    color: rgba(255, 255, 255, 0.9);
}


.card-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #1e40af;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    transform: translateY(-2px);
}

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

.solution-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Demo Access */
.demo-access {
    margin: 1.5rem 0;
}

.demo-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 0.8rem;
}

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

.copy-btn {
    background: #3B82F6;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #2563EB;
}

.demo-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin: 1rem 0;
}

.test-platform-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3B82F6;
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.test-platform-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Solution Logo Card */
.solution-logo-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.solution-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

.client-card {
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid #3B82F6;
}

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

/* ===============================================
   SOLUTIONS PAGE - CARDS STYLES
   =============================================== */

.solutions-section {
    background: var(--white);
    padding: 5rem 5%;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--dark-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-red);
}

.solution-header {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--dark-bg);
}

.solution-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.solution-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-body {
    padding: 2rem;
    background: var(--dark-bg);
}

.solution-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.solution-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.solution-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.solution-learn-more:hover {
    transform: translateX(5px);
    color: var(--white);
}

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

/* ===============================================
   UPDATED SOLUTIONS CARDS (Like Notre Offre but Dark)
   =============================================== */

.solution-card {
    background: var(--dark-bg);
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-header {
    height: 200px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
    /* Fallback */
}

/* Visual styles for headers to mimic images */
.solution-card:nth-child(1) .solution-header {
    /* Private Discuss */
    background: linear-gradient(135deg, #0F2B5C 0%, #2558A0 100%);
}

.solution-card:nth-child(2) .solution-header {
    /* Geddai */
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.solution-card:nth-child(3) .solution-header {
    /* Private Translate */
    background: linear-gradient(135deg, #330000 0%, #660000 100%);
}

.solution-card:nth-child(4) .solution-header {
    /* Pi Suite */
    background: radial-gradient(circle at center, #444 0%, #1a1a1a 100%);
}

.solution-card:nth-child(5) .solution-header {
    /* PunchList */
    background: linear-gradient(to right, #2c3e50, #4ca1af);
}

.solution-card:nth-child(6) .solution-header {
    /* Maintenance 360 */
    background: linear-gradient(to right, #141E30, #243B55);
}

.solution-card:nth-child(7) .solution-header {
    /* FlowSuite */
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

.solution-card:nth-child(8) .solution-header {
    /* HSE */
    background: linear-gradient(to right, #200122, #6f0000);
}

.solution-name {
    font-size: 1.8rem;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.solution-subtitle {
    display: none;
    /* Hide subtitle to match clean look */
}

.solution-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--dark-bg);
}

.solution-title {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.solution-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.solution-learn-more {
    align-self: flex-start;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.solution-learn-more:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

/* ===============================================
   REVERTED SOLUTIONS CARDS (Dark Header / White Body)
   =============================================== */

.solutions-section {
    background-color: #E5E5E5;
    /* Light gray background like the image */
    padding: 5rem 5%;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-header {
    background-color: #1E1E1E;
    /* Dark header */
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.solution-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: none;
}

.solution-subtitle {
    display: block;
    /* Show subtitle again */
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-body {
    padding: 2.5rem;
    background: var(--white);
    /* White body */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    /* Align text left as in image */
}

.solution-title {
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    /* Black title */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.solution-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    /* Dark gray text */
    margin-bottom: 2rem;
}

.solution-learn-more {
    display: inline-block;
    color: #FF0000;
    /* Red link */
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    align-self: flex-start;
    border-bottom: none;
    padding-bottom: 0;
}

.solution-learn-more:hover {
    color: #CC0000;
    transform: none;
}

/* ===============================================
   REMONTER UN BESOIN - FORM PAGE STYLES
   =============================================== */

.needs-form-section {
    padding: 3rem 5% 6rem;
    background: var(--white);
}

.needs-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.needs-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.digital-needs-form {
    background: #eef2f6;
    /* Light blue/gray background */
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 4rem;
    border: 1px solid #dce4ec;
}

/* ... (keeping other styles) ... */

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 1, 0, 0.4);
    }

    70% {
        transform: scale(1.02);
        /* Reduced scale */
        box-shadow: 0 0 0 10px rgba(255, 1, 0, 0);
        /* Reduced shadow spread */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 1, 0, 0);
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.form-textarea {
    width: 100%;
    height: 120px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    resize: vertical;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.test-btn {
    background: #00AEEF;
    /* Cyan blue from image */
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: background 0.3s;
}

.test-btn:hover {
    background: #0095CC;
}

.arrow-down {
    font-size: 2rem;
    color: #00AEEF;
    font-weight: bold;
}

.submit-btn-large {
    background: #00AEEF;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: background 0.3s;
}

.submit-btn-large:hover {
    background: #0095CC;
}

/* Process Timeline */
.process-section {
    margin-top: 4rem;
}

.process-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 2rem;
}

/* Timeline line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    /* Adjust based on icon size */
    left: 0;
    width: 100%;
    height: 4px;
    background: #eee;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 16%;
    /* 6 steps */
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: white;
    padding: 0 10px;
}

.process-dot {
    width: 16px;
    height: 16px;
    background: #00AEEF;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-text {
    font-size: 0.8rem;
    line-height: 1.4;
}

.process-role {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .process-timeline::before {
        width: 4px;
        height: 100%;
        left: 20px;
        top: 0;
    }

    .process-step {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }

    .process-dot {
        margin-top: 10px;
    }
}

/* ===============================================
   HOME PAGE - ANIMATED BUTTON
   =============================================== */

.home-action-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.home-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(0, 112, 243, 0.08) 35px,
            rgba(0, 112, 243, 0.08) 70px);
    pointer-events: none;
}

.home-action-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 1, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.home-action-section .container {
    position: relative;
    z-index: 1;
}

.remonter-besoin-btn-home {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #FF0100 0%, #CC0000 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.8rem 5rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(255, 1, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.remonter-besoin-btn-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.remonter-besoin-btn-home:hover::before {
    left: 100%;
}

.remonter-besoin-btn-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 1, 0, 0.6);
}

.remonter-besoin-btn-home:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 1, 0, 0.5);
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 1, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(255, 1, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 1, 0, 0);
    }
}

/* ===============================================
   FORMULAIRE REMONTER UN BESOIN
   =============================================== */

/* Header Section */
.besoin-header {
    background: linear-gradient(135deg, #1E1E1E 0%, #2D2D2D 100%);
    padding: 4rem 5% 5rem;
    margin-top: 70px;
    text-align: center;
}

.besoin-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.besoin-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    background: var(--white);
    padding: 5rem 5%;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.besoin-form {
    background: #3a3a3a;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.besoin-form .form-group {
    margin-bottom: 2.5rem;
}

.besoin-form label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.besoin-form textarea,
.besoin-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #555;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.besoin-form textarea:focus,
.besoin-form select:focus {
    outline: none;
    border-color: #FF0100;
    box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.1);
}

.besoin-form textarea {
    resize: vertical;
    min-height: 100px;
}

.besoin-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-actions {
    margin-top: 3rem;
    text-align: center;
}

.btn-submit {
    position: relative;
    background: linear-gradient(135deg, #FF0100 0%, #CC0000 100%);
    color: white;
    border: none;
    padding: 1.3rem 4.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    box-shadow: 0 6px 25px rgba(255, 1, 0, 0.5);
    transform: translateY(-2px);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 1, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .besoin-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .besoin-header-subtitle {
        font-size: 1rem;
    }

    .besoin-header {
        padding: 3rem 5%;
    }

    .besoin-form {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===============================================
   NOS SOLUTIONS V2 - STYLE SCREENSHOT
   =============================================== */

.solutions-section-v2 {
    background: #F5F5F5;
    padding: 5rem 5%;
    min-height: 100vh;
}

.solutions-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.solution-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.solution-card-v2 {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card-link:hover .solution-card-v2 {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.solution-header-v2 {
    background: #2D2D2D;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.solution-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.solution-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.solution-logo-subtitle {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: 400;
}

.solution-body-v2 {
    padding: 2rem;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.solution-title-v2 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.solution-desc-v2 {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666666;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.solution-link-v2 {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FF0100;
    text-decoration: none;
    text-transform: lowercase;
    transition: all 0.3s ease;
    position: relative;
}

.solution-link-v2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF0100;
    transition: width 0.3s ease;
}

.solution-card-link:hover .solution-link-v2 {
    color: #CC0000;
}

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

/* Responsive pour les cartes v2 */
@media (max-width: 1024px) {
    .solutions-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .solution-header-v2 {
        height: 150px;
    }

    .solution-logo-text {
        font-size: 1.5rem;
    }

    .solution-body-v2 {
        padding: 1.5rem;
    }
}

/* ===============================================
   CONTACT PAGE
   =============================================== */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 70px;
}

.contact-image {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('contact-team.jpg') center/cover;
    background-color: #2a2a2a;
    filter: grayscale(100%);
}

.contact-content {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 500px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.contact-info {
    margin-bottom: 2.5rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-field {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    background: #F5F5F5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--primary-red);
    background: #FAFAFA;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-submit-btn {
    background: var(--text-dark);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    background: var(--primary-red);
    transform: translateX(5px);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    background: #1E1E1E;
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 3rem;
}

.footer-logo-main {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: 'Montserrat', sans-serif;
}

.footer-logo-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column {
    font-size: 0.8rem;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.footer-sublist ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.footer-sublist li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.footer-location {
    margin-bottom: 1.5rem;
}

.footer-location h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-location p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal:hover {
    color: var(--primary-red);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 300px;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }

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

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

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillar-number {
        font-size: 4rem;
    }
}

/* ==========================================
   ASSETS SECTION (NEW)
   ========================================== */
.assets-section {
    background: #F8F8F8;
    padding: 6rem 0;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.asset-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #FF6B00;
    /* Orange from image */
    transition: transform 0.3s ease;
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.asset-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.asset-icon {
    font-size: 2rem;
}

.asset-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0F2B5C;
    /* Dark Blue */
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.asset-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.asset-list {
    list-style: none;
}

.asset-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.check-icon {
    color: #00C853;
    /* Green check */
}

@media (max-width: 1024px) {
    .assets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   PRIVATE DISCUSS PAGE STYLES (NEW)
   ========================================== */

.solution-header-dark {
    background: var(--dark-bg);
    padding: 8rem 0 4rem;
    position: relative;
}

.solution-page-title-white {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
}

.back-link-white {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.back-link-white:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.info-block {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.block-header {
    background: #F8F8F8;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.block-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.block-content {
    padding: 2rem;
}

.client-block {
    border-top: 4px solid var(--primary-red);
}

/* ==========================================
   GEDDAI PAGE STYLES (NEW)
   ========================================== */

.solution-header-purple {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 8rem 0 4rem;
    position: relative;
}

.solution-page-subtitle-white {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 1rem auto 0;
    text-align: center;
}

.card-title-blue {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0F2B5C;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid #7B42BC;
    padding-left: 1rem;
}

.target-audience {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.yellow-bg-card {
    background: #FFF9E1;
    border: none;
}

.yellow-bg-card .card-title-blue {
    border-left-color: #FFC107;
}

.problem-list {
    list-style: none;
    padding-left: 1rem;
}

.problem-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

.benefits-section {
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #FF6B00;
}

.benefit-card:nth-child(2) {
    border-left-color: #2196F3;
}

.benefit-card:nth-child(3) {
    border-left-color: #FFC107;
}

.benefit-card:nth-child(4) {
    border-left-color: #4CAF50;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0F2B5C;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.resources-card {
    border: 2px solid #0F2B5C;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0F2B5C;
    text-decoration: underline;
    font-weight: 600;
}

/* Fonctionnalités phares */

body {
    margin: 0;
    padding: 0;
    background: #e0e0e0;
    /* Fond gris */
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    margin-top: 40px;
    color: #333;
}

.gallery {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox (grande image) */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

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

.video-btn {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.video-btn:hover {
    background: #CC0000;
}

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-purple {
    display: inline-block;
    background: #7B42BC;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 66, 188, 0.3);
}

.cta-button-purple:hover {
    background: #6A39A0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 66, 188, 0.4);
}

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

/* ==========================================
   NOUVELLE PAGE NOTRE OFFRE - HERO MODERNE
   ========================================== */

.hero-offre-modern {
    margin-top: 70px;
    height: 75vh;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.hero-offre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-offre-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-offre-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 1, 0, 0.15);
    border: 1px solid var(--primary-red);
    border-radius: 30px;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-offre-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-offre-highlight {
    color: #FFFFFF;
    display: block;
}

.hero-offre-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-offre-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-offre-scroll:hover {
    opacity: 1;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes bounce {

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

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

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

/* ==========================================
   SECTION INTRO - NOTRE APPROCHE
   ========================================== */

.offre-intro-section {
    padding: 6rem 0;
    background: var(--white);
}

.offre-intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.offre-intro-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.offre-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.offre-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.offre-intro-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ==========================================
   SECTION BESOINS MODERNE
   ========================================== */

.needs-modern-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.needs-modern-header {
    text-align: center;
    margin-bottom: 4rem;
}

.needs-modern-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.needs-modern-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.needs-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.need-modern-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.need-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.need-modern-featured {
    background: linear-gradient(135deg, #2A2A2A 0%, #1E1E1E 100%);
    color: var(--white);
    transform: scale(1.05);
}

.need-modern-featured .need-modern-title,
.need-modern-featured .need-modern-desc,
.need-modern-featured .need-modern-list li {
    color: var(--white);
}

.need-modern-featured .list-bullet {
    color: var(--primary-red);
}

.need-modern-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.need-modern-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.need-modern-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.need-modern-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.need-modern-list {
    list-style: none;
    margin: 2rem 0;
}

.need-modern-list li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.list-bullet {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
}

.need-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.need-modern-link:hover {
    gap: 1rem;
}

.need-modern-featured .need-modern-link {
    color: var(--white);
    background: var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

/* ==========================================
   SECTION CONSEIL
   ========================================== */

.conseil-section {
    padding: 7rem 0;
    position: relative;
    background: var(--white);
}

.conseil-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

.conseil-pattern {
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--text-dark) 35px, var(--text-dark) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--text-dark) 35px, var(--text-dark) 36px);
}

.conseil-content {
    position: relative;
    z-index: 2;
}

.conseil-header {
    text-align: center;
    margin-bottom: 4rem;
}

.conseil-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.conseil-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.conseil-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
}

.conseil-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.conseil-feature {
    padding: 2.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.conseil-feature:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.conseil-feature-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.conseil-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.conseil-feature-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.conseil-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
}

.conseil-btn:hover {
    background: #D50100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.4);
}

/* ==========================================
   SECTION TECH
   ========================================== */

.tech-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.tech-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-main-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.tech-stat {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tech-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.tech-stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-stat-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ==========================================
   SECTION DIFFÉRENCIATEURS
   ========================================== */

.differentiators-section {
    padding: 7rem 0;
    background: var(--white);
}

.differentiators-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.diff-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.diff-card:hover {
    background: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.diff-icon-wrapper {
    margin-bottom: 1.5rem;
}

.diff-icon {
    font-size: 3rem;
    display: inline-block;
}

.diff-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.diff-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.diff-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.diff-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--white);
    border: 1px solid rgba(255, 1, 0, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diff-card:hover .diff-tag {
    background: rgba(255, 1, 0, 0.1);
    border-color: var(--primary-red);
}

/* ==========================================
   SECTION PILIERS MODERNE
   ========================================== */

.pillars-modern-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
}

.pillars-modern-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-modern-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pillars-modern-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.pillars-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.pillar-modern-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.pillar-modern-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.pillar-modern-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    opacity: 0.6;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    min-width: 70px;
}

.pillar-modern-content {
    flex: 1;
}

.pillar-modern-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pillar-modern-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ==========================================
   SECTION CTA FINALE
   ========================================== */

.final-cta-section {
    padding: 7rem 0;
    background: var(--light-gray);
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.final-cta-text {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-btn {
    display: inline-block;
    padding: 1.3rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.final-cta-btn.primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
}

.final-cta-btn.primary:hover {
    background: #D50100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.4);
}

.final-cta-btn.secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.final-cta-btn.secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE DESIGN - NOTRE OFFRE
   ========================================== */

@media (max-width: 1200px) {
    .hero-offre-title {
        font-size: 3.5rem;
    }

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

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

@media (max-width: 768px) {
    .hero-offre-modern {
        height: 60vh;
        min-height: 500px;
    }

    .hero-offre-title {
        font-size: 2.5rem;
    }

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

    .offre-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offre-intro-title {
        font-size: 2rem;
    }

    .needs-modern-grid,
    .differentiators-grid,
    .tech-stats-grid,
    .pillars-modern-grid,
    .conseil-features-grid {
        grid-template-columns: 1fr;
    }

    .need-modern-featured {
        transform: scale(1);
    }

    .needs-modern-title,
    .differentiators-title {
        font-size: 2rem;
    }

    .conseil-title,
    .tech-main-title {
        font-size: 2.5rem;
    }

    .pillars-modern-title,
    .final-cta-title {
        font-size: 2.2rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-btn {
        width: 100%;
    }
}

/* ==========================================
   PAGE REMONTER UN BESOIN
   ========================================== */

.besoin-hero {
    margin-top: 70px;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
    text-align: center;
}

.besoin-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.besoin-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.besoin-form-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.besoin-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.besoin-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-number {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 1.2rem;
}

.form-required {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.form-radio-group {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.radio-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.contact-fields {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit-besoin {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.3rem 4rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.btn-submit-besoin:hover {
    background: #D50100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.4);
}

.btn-submit-besoin:active {
    transform: translateY(0);
}

/* ==========================================
   MODALS
   ========================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    font-weight: 900;
}

.modal-icon.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.modal-icon.warning {
    background: rgba(251, 146, 60, 0.15);
    color: #FB923C;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.modal-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

.modal-btn.secondary {
    background: var(--text-dark);
}

.modal-btn.secondary:hover {
    background: #000;
}

/* ==========================================
   RESPONSIVE - PAGE BESOIN
   ========================================== */

@media (max-width: 768px) {
    .besoin-hero {
        padding: 4rem 0 3rem;
    }

    .besoin-hero-title {
        font-size: 2.5rem;
    }

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

    .besoin-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-submit-besoin {
        width: 100%;
        padding: 1.2rem 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 1rem;
    }
}

/* ==========================================
   PAGE D'ACCUEIL AMÉLIORÉE
   ========================================== */

/* Hero Section Moderne */
.home-hero-modern {
    margin-top: 70px;
    height: 80vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.home-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.home-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.home-hero-highlight {
    background: linear-gradient(90deg, #FF0100 0%, #FF4545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-red);
    display: block;
}

.home-hero-subtitle {
    font-size: 1.4rem;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.home-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.home-hero-btn.primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
}

.home-hero-btn.primary:hover {
    background: #D50100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.4);
}

.home-hero-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.home-hero-btn.secondary:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.home-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.home-hero-scroll:hover {
    opacity: 1;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Section Chiffres Clés */
.home-stats-section {
    padding: 4rem 0;
    background: var(--white);
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.home-stat {
    text-align: center;
    padding: 2rem;
}

.home-stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.home-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Pourquoi PIMAN */
.home-why-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.home-why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-why-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.home-why-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.home-why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.home-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.home-why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.home-why-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.home-why-card-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Section Solutions Phares */
.home-solutions-section {
    padding: 6rem 0;
    background: var(--white);
}

.home-solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-solutions-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.home-solutions-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.home-solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.home-solution-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-solution-card:hover {
    background: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.home-solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home-solution-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.home-solution-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.home-solution-link {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.home-solutions-cta {
    text-align: center;
}

.home-solutions-btn {
    display: inline-block;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.home-solutions-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Section CTA Finale */
.home-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 1, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.home-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.home-cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.home-cta-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 1.3rem 4rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 1, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.home-cta-btn:hover {
    background: #D50100;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 1, 0, 0.4);
}

/* ==========================================
   RESPONSIVE - PAGE D'ACCUEIL
   ========================================== */

@media (max-width: 1200px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .home-hero-modern {
        height: 70vh;
        min-height: 600px;
    }

    .home-hero-title {
        font-size: 2.5rem;
    }

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

    .home-hero-cta {
        flex-direction: column;
    }

    .home-hero-btn {
        width: 100%;
    }

    .home-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-stat-number {
        font-size: 3rem;
    }

    .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-solutions-grid {
        grid-template-columns: 1fr;
    }

    .home-solutions-title {
        font-size: 2rem;
    }

    .home-cta-title {
        font-size: 2.5rem;
    }

    .home-cta-text {
        font-size: 1.1rem;
    }
}

/* ========================================
   MAINTENANCE 360 PAGE STYLES
   ======================================== */

/* Hero Section */
.maintenance-hero {
    background: #000000 !important;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Removed red gradient overlay to match homepage full black style */
/* .maintenance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
} */

.maintenance-back-link {
    display: inline-block;
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.maintenance-back-link:hover {
    color: #ff0000;
    transform: translateX(-5px);
}

.maintenance-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.maintenance-logo-header {
    margin-bottom: 2rem;
}

.maintenance-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
}

.maintenance-subtitle {
    font-size: 1.5rem;
    color: #999;
    font-weight: 300;
    margin: 0;
}

.maintenance-tagline {
    font-size: 1.25rem;
    color: #CCC;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.maintenance-hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.maintenance-tag {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #cc2929;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Overview Section */
.maintenance-overview {
    padding: 80px 0;
    background: #FFFFFF;
}

.maintenance-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.maintenance-overview-card {
    text-align: center;
    padding: 2.5rem;
    background: #F9F9F9;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.maintenance-overview-card:hover {
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.maintenance-overview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.maintenance-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0 0 1rem 0;
}

.maintenance-overview-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Problematique Section */
.maintenance-problematique {
    padding: 80px 0;
    background: #F9F9F9;
}

.maintenance-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.maintenance-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1E1E1E;
    margin: 0 0 1rem 0;
}

.maintenance-section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin: 0;
}

.maintenance-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.maintenance-problem-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #DC2626;
    transition: all 0.3s ease;
}

.maintenance-problem-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-left-width: 6px;
}

.maintenance-problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.maintenance-problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0 0 0.75rem 0;
}

.maintenance-problem-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Solution Section */
.maintenance-solution {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
}

.maintenance-section-title-white {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    text-align: center;
}

.maintenance-section-subtitle-white {
    font-size: 1.25rem;
    color: #CCC;
    margin: 0;
    text-align: center;
}

.maintenance-solution-content {
    margin-top: 4rem;
}

.maintenance-solution-main {
    text-align: center;
    margin-bottom: 3rem;
}

.maintenance-solution-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.maintenance-solution-intro {
    font-size: 1.15rem;
    color: #CCC;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.maintenance-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.maintenance-feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.maintenance-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

.maintenance-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.maintenance-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
}

.maintenance-feature-text {
    font-size: 1rem;
    color: #CCC;
    line-height: 1.6;
    margin: 0;
}

/* Client Section */
.maintenance-client {
    padding: 80px 0;
    background: #FFFFFF;
}

.maintenance-client-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.maintenance-client-logo {
    text-align: center;
    padding: 2rem;
    background: #F9F9F9;
    border-radius: 15px;
}

.maintenance-client-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

.maintenance-client-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0 0 2rem 0;
}

.maintenance-client-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.maintenance-client-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.maintenance-client-detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.maintenance-client-detail-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0 0 0.5rem 0;
}

.maintenance-client-detail-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Demo Section */
.maintenance-demo {
    padding: 80px 0;
    background: #F9F9F9;
}

.maintenance-demo-card {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.maintenance-demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.maintenance-demo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.maintenance-demo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1E1E1E;
    margin: 0 0 0.5rem 0;
}

.maintenance-demo-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.maintenance-demo-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.maintenance-demo-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.maintenance-demo-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E1E1E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-demo-input-group {
    display: flex;
    gap: 1rem;
}

.maintenance-demo-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 1rem;
    color: #1E1E1E;
    background: #F9F9F9;
}

.maintenance-copy-btn {
    padding: 0.75rem 1.5rem;
    background: #DC2626;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.maintenance-copy-btn:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.copy-icon {
    font-size: 1.1rem;
}

.maintenance-demo-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.maintenance-demo-cta:hover {
    background: linear-gradient(135deg, #2A2A2A 0%, #1E1E1E 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.maintenance-demo-cta .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.maintenance-demo-cta:hover .arrow {
    transform: translateX(5px);
}

/* CTA Section */
.maintenance-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
}

.maintenance-cta-content {
    text-align: center;
}

.maintenance-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.maintenance-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
}

.maintenance-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #FFFFFF;
    color: #DC2626;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.maintenance-cta-btn:hover {
    background: #1E1E1E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .maintenance-title {
        font-size: 3rem;
    }

    .maintenance-client-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .maintenance-section-title,
    .maintenance-section-title-white {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .maintenance-hero {
        padding: 100px 0 60px;
    }

    .maintenance-title {
        font-size: 2.5rem;
    }

    .maintenance-subtitle {
        font-size: 1.25rem;
    }

    .maintenance-tagline {
        font-size: 1.1rem;
    }

    .maintenance-overview,
    .maintenance-problematique,
    .maintenance-solution,
    .maintenance-client,
    .maintenance-demo,
    .maintenance-cta {
        padding: 60px 0;
    }

    .maintenance-section-title,
    .maintenance-section-title-white {
        font-size: 2rem;
    }

    .maintenance-section-subtitle,
    .maintenance-section-subtitle-white {
        font-size: 1.1rem;
    }

    .maintenance-problems-grid,
    .maintenance-features-grid,
    .maintenance-overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .maintenance-demo-card {
        padding: 2rem;
    }

    .maintenance-demo-input-group {
        flex-direction: column;
    }

    .maintenance-cta-title {
        font-size: 2rem;
    }

    .maintenance-cta-text {
        font-size: 1.1rem;
    }
}

/* ========================================
   NOS SOLUTIONS PAGE - HERO SECTION
   ======================================== */

.hero-solutions-modern {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.hero-solutions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-solutions-content {
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-solutions-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #DC2626;
    border-radius: 30px;
    color: #DC2626;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-solutions-title {
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-solutions-highlight {
    color: #FFFFFF;
    display: block;
}

.hero-solutions-subtitle {
    font-size: 1.5rem;
    color: #CCC;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

.hero-solutions-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

.hero-solutions-scroll span {
    display: block;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    color: #DC2626;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-solutions-title {
        font-size: 4rem;
    }

    .hero-solutions-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-solutions-modern {
        min-height: 500px;
        height: auto;
        padding: 150px 0 100px;
    }

    .hero-solutions-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

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

    .hero-solutions-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .hero-solutions-scroll {
        bottom: 2rem;
    }
}

/* Solutions Section Adjustment */
.solutions-section-v2 {
    padding: 80px 0;
}

/* ========================================
   REMONTER UN BESOIN PAGE - HERO SECTION
   ======================================== */

.hero-besoin-modern {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.hero-besoin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-besoin-content {
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-besoin-title {
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-besoin-subtitle {
    font-size: 1.5rem;
    color: #CCC;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

.hero-besoin-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: fadeIn 2s ease-out;
}

.hero-besoin-scroll span {
    display: block;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-besoin-title {
        font-size: 4rem;
    }

    .hero-besoin-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-besoin-modern {
        min-height: 500px;
        height: auto;
        padding: 150px 0 100px;
    }

    .hero-besoin-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

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

    .hero-besoin-scroll {
        bottom: 2rem;
    }
}

/* ===============================================
   FONCTIONNALITÉS PHARES – GALERIE + LIGHTBOX
   =============================================== */

/* Titre de section */
.features-title {
    margin-top: 60px;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E1E1E;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Galerie */
.gallery {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}