/* Reset and Base Styles */
@font-face {
    font-family: 'MontserratLocal';
    src: url('../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MontserratLocal';
    src: url('../assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #ff6600;
    --gochap-black: #121212;
    --black: #000000;
    --hero-blue: #1f4f92;
    --surface: #ffffff;
    --muted: #6b7280;
    --border: rgba(17, 24, 39, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);
    --radius-xl: 28px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MontserratLocal', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    min-width: 0;
}

/* Image Optimizations */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* WebP Support */
@supports (background-image: url('image.webp')) {
    .gallery-img {
        background-image: url('image.webp');
    }
}

/* Loading States */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Responsive Images */
.hero-premium-image {
    object-fit: cover;
    object-position: center;
}

.gallery-img {
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.nav-logo {
    object-fit: contain;
}

.footer-logo {
    object-fit: contain;
}

/* Image Performance */
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Prevent layout shift */
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-item {
        aspect-ratio: 1/1;
    }
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    font-size: 15px;
    color: #111827;
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(255, 102, 0, 0.10), transparent 55%),
        radial-gradient(900px 500px at 80% 0%, rgba(18, 18, 18, 0.10), transparent 55%),
        #ffffff;
    overflow-x: hidden;
}

/* Orange Top Bar */
.orange-top-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary), #ff8a3d);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 8px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06), 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2rem;
    gap: 1rem;
    height: 72px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    min-width: 0;
    flex-wrap: nowrap;
    padding: 0 0.75rem;
    max-width: 100%;
}

.nav-menu li {
    white-space: nowrap;
}

@media (max-width: 1300px) {
    .nav-menu {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 1360px) {
    .nav-menu {
        gap: 0.9rem;
    }

    .brand-name {
        font-size: 1.35rem;
    }
}

.nav-link {
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0 0.25rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

/* Prevent desktop navbar overflow */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 1000;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* Avoid overlap right before mobile breakpoint */
@media (max-width: 1280px) {
    .nav-cta {
        padding: 0.6rem 0.85rem;
        font-size: 0.9rem;
    }

    .nav-cta-icon {
        width: 32px;
        height: 32px;
    }
}

.nav-link:hover {
    color: var(--primary);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    height: 72px;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Right-side AppBar CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    box-shadow: 0 14px 30px rgba(255, 102, 0, 0.22);
    border: 1px solid rgba(255, 102, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(255, 102, 0, 0.28);
    filter: saturate(1.05);
}

.nav-cta-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Branding Section */
.branding-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

  
.branding-section .main-logo {
    max-width: 80px;
    height: auto;
    filter: brightness(1.2) contrast(1.1);
}

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

.brand-name-hero {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    display: none;
}

/* Decorative shapes */
.shape {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.9;
}

.shape--blob {
    border-radius: 999px;
    filter: blur(0px);
    mix-blend-mode: multiply;
}

.shape--blob-1 {
    width: 520px;
    height: 520px;
    top: -220px;
    left: -220px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.55), rgba(255, 102, 0, 0.0) 70%);
}

.shape--blob-2 {
    width: 420px;
    height: 420px;
    bottom: -220px;
    right: -220px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), rgba(255, 102, 0, 0.0) 70%);
}

.shape--blob-3 {
    width: 520px;
    height: 520px;
    bottom: -260px;
    left: -260px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.22), rgba(255, 102, 0, 0.0) 70%);
    opacity: 0.8;
}

.shape--ring {
    border-radius: 999px;
    border: 2px solid rgba(255, 102, 0, 0.30);
    box-shadow: 0 0 0 10px rgba(255, 102, 0, 0.06);
    background: transparent;
}

.shape--ring-1 {
    width: 280px;
    height: 280px;
    top: 110px;
    right: 6%;
    opacity: 0.6;
}

.shape--grid {
    width: 520px;
    height: 520px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    border-radius: 24px;
    opacity: 0.12;
    filter: blur(0.2px);
}

.shape--grid-1 {
    top: 60px;
    right: -160px;
}

/* Hero Premium (single image) */
.hero-premium {
    margin-top: 8px;
    min-height: calc(100vh - 8px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 110px 0 70px;
    overflow: hidden;
}

.hero-premium-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-premium-left {
    background: linear-gradient(155deg, rgba(31, 79, 146, 0.98), rgba(23, 55, 110, 0.98));
    border-radius: 28px;
    padding: 4rem 5.6rem;
    box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.hero-premium-left::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
    transform: rotate(12deg);
}

.hero-premium-left > * {
    position: relative;
    z-index: 2;
}

.hero-premium-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1rem;
}

.hero-premium-left h1 {
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.9rem;
    font-weight: 850;
}

.hero-premium-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 560px;
}

.hero-premium-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-primary-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-secondary-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.20);
    border-color: rgba(255, 102, 0, 0.28);
}

.hero-premium-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-premium-imageCard {
    width: min(520px, 100%);
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 90px rgba(17, 24, 39, 0.18);
    border: 1px solid rgba(17, 24, 39, 0.08);
    transform: rotate(-1deg);
    position: relative;
}

.hero-premium-image {
    width: 100%;
    height: clamp(320px, 46vw, 560px);
    object-fit: cover;
    display: block;
}

.hero-premium-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    font-weight: 900;
    color: #0b1220;
}

.hero-premium-badgeDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.16);
}

@media (max-width: 992px) {
    .hero-premium-inner {
        grid-template-columns: 1fr;
    }

    .hero-premium-right {
        display: none;
    }

    .hero-premium-image {
        height: clamp(300px, 62vw, 460px);
    }
}

@media (max-width: 480px) {
    .hero-premium-left {
        padding: 2.2rem 1.6rem;
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 18px 40px rgba(255, 102, 0, 0.24);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* (Swiper removed) */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Section Styles */
section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: calc(var(--nav-h, 72px) + 18px);
}

@media (max-width: 768px) {
    section {
        min-height: auto;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 2.3vw, 2rem);
    font-weight: bold;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff8a3d);
    border-radius: 2px;
}

/* Services Section */
.services-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-top: 3rem;
justify-content: center;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--primary), #ff8a3d);
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #ff8a3d);
}

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

.service-card.animate-in {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Earthy icon palette */
:root {
    --earth-1: #a86a2b;
    --earth-2: #6b8f3a;
    --earth-3: #2f7a7f;
    --earth-4: #7b5ea7;
    --earth-5: #b24d42;
    --earth-6: #9a7d2f;
}

.services-grid .service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--earth-1), #d08a3e); }
.services-grid .service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--earth-2), #9bbf63); }
.services-grid .service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--earth-3), #53a7ac); }
.services-grid .service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, var(--earth-6), #c3a24b); }
.services-grid .service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, var(--earth-5), #d9786f); }
.services-grid .service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, var(--earth-4), #a58ad0); }

.accompagnement-icon {
    background: rgba(255, 102, 0, 0.12);
    border: 1px solid rgba(255, 102, 0, 0.32);
}

/* Pricing Section */
.pricing-section {
    background:
        radial-gradient(900px 520px at 20% 0%, rgba(255, 102, 0, 0.22), transparent 55%),
        radial-gradient(900px 520px at 80% 10%, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(180deg, var(--gochap-black), var(--black));
    position: relative;
    display: block;
}

.pricing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 12% 12%, rgba(255, 102, 0, 0.22), transparent 60%),
        radial-gradient(700px 420px at 88% 0%, rgba(255, 255, 255, 0.08), transparent 62%),
        radial-gradient(700px 420px at 60% 85%, rgba(255, 102, 0, 0.12), transparent 60%);
    pointer-events: none;
}

.pricing-section .section-title {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-section .section-title::after {
    background: linear-gradient(90deg, var(--primary), #ff8a3d);
}

.pricing-section .pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.pricing-section .pricing-card h3 {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-section .currency,
.pricing-section .period {
    color: rgba(255, 255, 255, 0.60);
}

.pricing-section .features li {
    border-bottom-color: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.78);
}

.pricing-section .pricing-card:hover {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

/* Offres spéciales (Engagement) stays white */
.special-offers-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.special-offers-section .section-title {
    color: #0b1220;
}

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

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

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #666;
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #666;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.features i {
    color: var(--primary);
    font-size: 1.1rem;
}

.select-plan {
    width: 100%;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan:hover {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    transform: translateY(-2px);
}

.pricing-card.featured .select-plan {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
}

.pricing-card.featured .select-plan:hover {
    background: white;
    color: var(--primary);
}

/* Contact (premium, like reference) */
.contact-section {
    display: none;
}

.contact-premium {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;
    background: #ffffff;
    display: block;
    min-height: auto;
}

.contact-premium-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 30% 0%, rgba(31, 79, 146, 0.10), transparent 62%),
        radial-gradient(900px 520px at 75% 20%, rgba(255, 102, 0, 0.10), transparent 60%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    pointer-events: none;
}

.contact-premium .container {
    position: relative;
    z-index: 2;
}

.contact-premium-header {
    text-align: center;
    margin-bottom: 2.6rem;
}

.contact-premium-header h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    letter-spacing: -0.02em;
    font-weight: 950;
    color: #0b1220;
}

.contact-premium-header h2 span {
    color: var(--primary);
}

.contact-premium-header p {
    margin-top: 0.7rem;
    color: #6b7280;
    font-weight: 600;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.contact-premium-mapCard,
.contact-premium-formCard {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.10);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-premium-mapHeader {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.70));
}

.contact-premium-mapTitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b1220;
}

.contact-premium-mapTitle i {
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-premium-mapLabel {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 900;
    color: #6b7280;
}

.contact-premium-mapValue {
    font-weight: 800;
    color: #0b1220;
    margin-top: 2px;
    font-size: 0.95rem;
}

.contact-premium-map {
    height: clamp(320px, 42vw, 460px);
    width: 100%;
    background: #f8fafc;
}

.contact-premium-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-premium-form {
    padding: 1.6rem 1.6rem 1.8rem;
}

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

.contact-premium-form input,
.contact-premium-form textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1.5px solid rgba(17, 24, 39, 0.10);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.90);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-premium-form textarea {
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    resize: vertical;
    min-height: 160px;
}

.contact-premium-form input:focus,
.contact-premium-form textarea:focus {
    outline: none;
    border-color: rgba(255, 102, 0, 0.55);
    box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.12);
}

.contact-premium .submit-btn {
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0;
}

.contact-premium-shapes .confetti {
    position: absolute;
    display: block;
    width: 80px;
    height: 22px;
    border-radius: 999px;
    opacity: 0.35;
    filter: blur(0.2px);
    transform: rotate(12deg);
}

.contact-premium-shapes .c1 { top: 14%; left: 8%; background: rgba(255, 102, 0, 0.35); }
.contact-premium-shapes .c2 { top: 24%; right: 12%; background: rgba(31, 79, 146, 0.35); transform: rotate(-18deg); }
.contact-premium-shapes .c3 { bottom: 18%; left: 16%; background: rgba(18, 18, 18, 0.25); transform: rotate(-8deg); }
.contact-premium-shapes .c4 { bottom: 10%; right: 18%; background: rgba(255, 102, 0, 0.25); transform: rotate(22deg); }
.contact-premium-shapes .c5 { top: 52%; right: 4%; background: rgba(31, 79, 146, 0.22); transform: rotate(8deg); }

@media (max-width: 992px) {
    .contact-premium-grid {
        grid-template-columns: 1fr;
    }

    .contact-premium-map {
        height: clamp(300px, 60vw, 420px);
    }
}

@media (max-width: 640px) {
    .contact-premium-row {
        grid-template-columns: 1fr;
    }
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--gochap-black), var(--black));
    color: white;
    padding: 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-brandTop {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
}

.footer-brandName {
    font-weight: 950;
    letter-spacing: -0.02em;
    font-size: 1.1rem;
}

.footer-brandTag {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 102, 0, 0.35);
}

.footer-colTitle {
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.footer-line i {
    color: rgba(255, 102, 0, 0.92);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 0.8rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    box-shadow: 0 16px 44px rgba(255, 102, 0, 0.22);
    border: 1px solid rgba(255, 102, 0, 0.28);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 1.2rem;
    margin-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 600;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-bottomLinks {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottomLinks a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.footer-bottomLinks a:hover {
    color: #fff;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-right-logo {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-right-logo:hover {
    transform: scale(1.05);
}

.footer-image-container {
    display: flex;
    align-items: center;
}

.footer-go-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.footer-go-logo-text {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.go-text {
    color: var(--primary);
    margin-right: 5px;
}

.chap-text {
    color: white;
    position: relative;
}

.chap-text::after {
    content: '⚡';
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 0.8rem;
    color: var(--primary);
}

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

.footer-main {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    opacity: 0.9;
    line-height: 1.2;
}

.footer-content p {
    color: white;
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: right;
}

/* Mini Map Styles */
.mini-map {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
    border: 2px solid var(--primary);
    background: #f8f9fa;
    position: relative;
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 0.9rem;
}

.map-loading i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.mini-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Enhanced Logo Styles */
.main-logo {
    max-width: 400px;
    height: auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

/* Pourquoi Section */
.pourquoi-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
}

/* Accompagnement (premium dark section) */
.accompagnement-section {
    background:
        radial-gradient(900px 520px at 20% 0%, rgba(255, 102, 0, 0.22), transparent 55%),
        radial-gradient(900px 520px at 80% 10%, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(180deg, var(--gochap-black), var(--black));
    color: rgba(255, 255, 255, 0.92);
}

.accompagnement-section .container {
    position: relative;
    z-index: 2;
}

.accompagnement-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 3rem auto;
}

.accompagnement-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 102, 0, 0.16);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
}

.accompagnement-title {
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.accompagnement-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

.accompagnement-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 2.2rem;
}

.accompagnement-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2rem 1.8rem;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.accompagnement-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 102, 0, 0.38);
}

.accompagnement-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.16);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.accompagnement-card h3 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: 0.5rem;
}

.accompagnement-card p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1rem;
}

.accompagnement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.accompagnement-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
}

.accompagnement-card li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(255, 102, 0, 0.14);
}

.accompagnement-cta {
    text-align: center;
    margin-top: 2.4rem;
}

.accompagnement-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    border: 1px solid rgba(255, 102, 0, 0.35);
    box-shadow: 0 18px 50px rgba(255, 102, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accompagnement-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(255, 102, 0, 0.26);
}

.accompagnement-button-arrow {
    font-size: 1.1rem;
}

.accompagnement-footnote {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.pourquoi-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: stretch;
    margin-top: 3rem;
}

.pourquoi-text h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pourquoi-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.key-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.feature-highlight i {
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-highlight span {
    font-weight: 600;
    color: #333;
}

.dashboard-preview {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pourquoi-image {
    display: flex;
    align-items: stretch;
}

@media (max-width: 992px) {
    .pourquoi-content {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .dashboard-preview {
        height: auto;
        max-height: none;
    }
}

/* Fonctionnalités Section */
.fonctionnalites-section {
    background: white;
    padding: 100px 0;
}

.fonctionnalites-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.fonctionnalite-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.fonctionnalite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff8a3d);
}

.fonctionnalite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.fonctionnalite-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.fonctionnalite-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.fonctionnalite-card p {
    text-align: center;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.fonctionnalite-details li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.fonctionnalite-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Animations avancées */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.3);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from { 
        opacity: 0;
        transform: rotate(-180deg) scale(0.3);
    }
    to { 
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Animations pour les éléments */
.floating-element {
    animation: floatAnimation 3s ease-in-out infinite;
}

.pulse-element {
    animation: pulseAnimation 2s ease-in-out infinite;
}

.slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-up {
    animation: slideInUp 0.8s ease-out;
}

.slide-down {
    animation: slideInDown 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Animations spécifiques pour les services */
.service-card {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-card.animate-in {
    opacity: 1;
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

/* Amélioration des sections */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    animation: slideInRight 1s ease-out;
    z-index: -1;
}

/* Galerie d'images indépendante */
.compat-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FF8C42;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: #FFE5DC;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    transition: all 0.4s ease;
    background: white;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
    border-color: var(--primary);
}

/* Compatibilité Section */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.compat-image {
    margin-bottom: 1rem;
    position: relative;
    overflow: visible;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.compat-image:first-child {
    margin-bottom: 1.2rem;
}

.compat-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
    border-radius: 15px;
    background: #f8f9fa;
    padding: 0.5rem;
}

.compat-card:hover .compat-img {
    transform: scale(1.02);
}

.compat-card h3 {
    font-size: 1.45rem;
    margin: 1.5rem 0 1rem;
    color: #333;
    font-weight: 700;
}

.compat-card h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.compat-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.compat-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.compat-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.compat-card li:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.compat-card li i {
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.compat-card li:last-child {
    border-bottom: none;
}

.fab.fa-windows { color: #0078D4; }
.fab.fa-android { color: #3DDC84; }
.fab.fa-apple { color: #000000; }

/* Offres Spéciales Section */
.special-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
    row-gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Vertical divider between the two columns */
@media (min-width: 768px) {
    .special-offers-grid::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: rgba(17, 24, 39, 0.10);
        transform: translateX(-0.5px);
        pointer-events: none;
    }
}

@media (max-width: 767px) {
    .special-offers-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

.special-offer-card {
    background: white;
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(80px) scale(0.9);
}

.special-offer-card.visible {
    animation: slideInScroll 0.8s ease-out forwards;
}

.special-offer-card:nth-child(1).visible {
    animation-delay: 0.1s;
}

.special-offer-card:nth-child(2).visible {
    animation-delay: 0.2s;
}

.special-offer-card:nth-child(3).visible {
    animation-delay: 0.3s;
}

.special-offer-card:nth-child(4).visible {
    animation-delay: 0.4s;
}

@keyframes slideInScroll {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        filter: blur(3px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) scale(0.98);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.special-offer-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: linear-gradient(145deg, #FFFFFF 0%, #FFF9F5 100%);
    border: 3px solid var(--primary) !important;
}

.special-offer-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.special-offer-card:hover::before {
    left: 100%;
}

.special-offer-card:hover .special-badge {
    transform: translateX(-50%);
    box-shadow: none;
}

.special-offer-card:hover .discount-percent {
    transform: scale(1.2);
    color: #FF4500;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
}

.special-offer-card:hover .special-select-plan {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, #FF4500, var(--primary));
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

.special-offer-card.featured {
    transform: scale(1.02);
}

.special-select-plan {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 1.5rem 1.8rem 0.8rem 1.8rem;
    margin: 1rem auto 0;
    border-radius: 35px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 12px rgba(255, 107, 53, 0.25);
    display: block;
}

.special-select-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(255, 107, 53, 0.35);
}

.special-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: none;
}

.special-offer-card h3 {
    font-size: 1.4rem;
    margin: 1rem 0 0.6rem;
    color: #333;
    font-weight: 700;
}

.discount {
    margin: 1.2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px dashed var(--primary);
}

.discount-percent {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.discount-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.offer-description {
    color: #555;
    line-height: 1.4;
    margin: 1rem 0;
    font-style: italic;
    font-size: 0.9rem;
}

.special-select-plan {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 1.5rem 1.8rem 0.8rem 1.8rem;
    margin: 1rem auto 0;
    border-radius: 35px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 12px rgba(255, 107, 53, 0.25);
    display: block;
    width: fit-content;
}

.special-select-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(255, 107, 53, 0.35);
}

.special-offer-card h3 {
    font-size: 1.4rem;
    margin: 1rem 0 0.6rem;
    color: #333;
    font-weight: 700;
}

.discount {
    margin: 1.2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px dashed var(--primary);
}

.discount-percent {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.discount-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.offer-description {
    color: #555;
    line-height: 1.4;
    margin: 1rem 0;
    font-style: italic;
    font-size: 0.9rem;
}

.special-select-plan {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 1.5rem 1.8rem 0.8rem 1.8rem;
    margin: 1rem auto 0;
    border-radius: 35px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 12px rgba(255, 107, 53, 0.25);
    display: block;
    width: fit-content;
}

.special-select-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(255, 107, 53, 0.35);
}

.special-offer-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.8rem;
    color: #333;
    font-weight: 700;
}

.discount {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px dashed var(--primary);
}

.discount-percent {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.discount-text {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.offer-description {
    color: #555;
    line-height: 1.4;
    margin: 1rem 0;
    font-style: italic;
    font-size: 0.9rem;
}

.special-select-plan {
    background: linear-gradient(135deg, var(--primary), #ff8a3d);
    color: white;
    border: none;
    padding: 1.5rem 2rem 0.8rem 2rem;
    margin: 1rem auto 0;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    display: block;
    width: fit-content;
}

.special-select-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Premium Section Responsive */
.hero-premium {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-premium-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: 500px;
    gap: 3rem;
}

.hero-premium-left {
    animation: fadeInLeft 1s ease-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-premium-right {
    animation: fadeInRight 1s ease-out;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-premium-imageCard {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-logo-overlay-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -52%) scale(1.02); }
}

.hero-centered-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
    mix-blend-mode: multiply;
}

.hero-premium-imageCard:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.hero-premium-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block !important;
    border-radius: 20px;
    background: #fff;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Responsive Design Global - Travail Impeccable */
@media (max-width: 1400px) {
    .container {
        padding: 0 2rem;
        max-width: 1320px;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1100px;
    }
    
    .hero-premium-image {
        max-width: 450px;
        height: auto;
        min-height: 450px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
        max-width: 1140px;
    }
    
    .hero-premium {
        padding: 5rem 0 3rem;
        min-height: 85vh;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        max-width: 1000px;
    }
    
    .hero-premium-image {
        max-width: 350px;
        height: auto;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.8rem;
    }
    
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
        max-width: 952px;
    }
    
    .hero-premium {
        padding: 4rem 0 2rem;
        min-height: 80vh;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        max-width: 700px;
    }
    
    .hero-premium-left {
        order: 2;
        text-align: center;
    }
    
    .hero-premium-right {
        order: 1;
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-premium-imageCard {
        transform: none;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-premium-imageCard:hover {
        transform: scale(1.05);
    }
    
    .hero-premium-image {
        max-width: 400px;
        height: auto;
        min-height: 400px;
        display: block;
        margin: 0 auto;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
        padding: 1.2rem;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .special-offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .accompagnement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .fonctionnalites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 748px;
    }
    
    .hero-premium {
        padding: 3rem 0 1.5rem;
        min-height: 75vh;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 600px;
    }
    
    .hero-premium-left {
        order: 2;
        text-align: center;
    }
    
    .hero-premium-right {
        order: 1;
        display: none;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-premium-imageCard {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-premium-image {
        max-width: 280px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .nav-container {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo-section {
        order: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-logo {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
    
    .brand-name {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        order: 2;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-premium-eyebrow {
        font-size: 0.9rem;
    }
    
    .hero-premium-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-premium-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Services section centrage */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .service-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    /* Compatibilité section centrage */
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
        margin: 2rem 0;
        justify-items: center;
    }
    
    .gallery-img {
        height: 160px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    /* Compatibility cards centrage */
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .compat-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    /* Pricing section centrage */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .pricing-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    /* Contact section centrage */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* Footer centrage */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }

    /* Sections spécifiques centrage amélioré */
    .accompagnement-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .accompagnement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .accompagnement-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .accompagnement-cta {
        text-align: center;
        margin-top: 2rem;
    }
    
    /* Pourquoi section centrage */
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .pourquoi-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .pourquoi-image {
        display: flex;
        justify-content: center;
    }
    
    .dashboard-preview {
        max-width: 100%;
        height: auto;
    }
    
    .key-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-highlight {
        text-align: center;
        width: 100%;
    }
    
    /* Special offers centrage */
    .special-offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .special-offer-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    /* Fonctionnalités section centrage */
    .fonctionnalites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .fonctionnalite-card {
        text-align: center;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .fonctionnalite-card h3 {
        text-align: center;
    }
    
    .fonctionnalite-card p {
        text-align: center;
    }
    
    /* Typography mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Buttons mobile */
    .hero-primary-btn, .hero-secondary-btn, .select-plan {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
        max-width: 468px;
    }
    
    .hero-premium {
        padding: 2rem 0 1rem;
        min-height: 70vh;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        max-width: 450px;
    }
    
    .hero-premium-imageCard {
        max-width: 240px;
        margin: 0 auto;
    }
    
    .hero-premium-image {
        max-width: 240px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .nav-logo {
        width: 28px;
        height: 28px;
    }
    
    .hero-premium-inner {
        padding: 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .hero-premium-eyebrow {
        font-size: 0.85rem;
    }
    
    .hero-premium-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-premium-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-primary-btn, .hero-secondary-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .compat-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .gallery-img {
        height: 140px;
    }
    
    .gallery-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .gallery-overlay h4 {
        font-size: 0.95rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .compat-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .accompagnement-card {
        padding: 1.5rem 1rem;
    }
    
    .special-offer-card {
        padding: 1.5rem 1rem;
    }
    
    .fonctionnalite-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    /* Buttons small mobile */
    .select-plan, .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Typography small mobile */
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    /* Spacing small mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
        max-width: 308px;
    }
    
    .hero-premium {
        padding: 1.5rem 0 0.5rem;
        min-height: 65vh;
    }
    
    .hero-premium-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        max-width: 300px;
    }
    
    .hero-premium-imageCard {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hero-premium-image {
        max-width: 200px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    .nav-logo {
        width: 24px;
        height: 24px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .service-card, .compat-card, .pricing-card, .accompagnement-card, .special-offer-card, .fonctionnalite-card {
        padding: 1rem 0.8rem;
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .select-plan, .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
        padding: 1.2rem;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
        margin: 2rem 0;
    }
    
    .gallery-img {
        height: 160px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .compat-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .gallery-img {
        height: 140px;
    }
    
    .gallery-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .gallery-overlay h4 {
        font-size: 0.95rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
}
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
        max-width: 1140px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .main-logo {
        max-width: 350px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .special-offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .special-offer-card {
        padding: 1.3rem 1rem;
    }
    
    .special-offer-card h3 {
        font-size: 1.3rem;
    }
    
    .discount-percent {
        font-size: 2rem;
    }
    
    .special-select-plan {
        padding: 0.7rem 1.5rem;
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }
    
    .branding-section {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .branding-section .main-logo {
        max-width: 60px;
    }
    
    .brand-name {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .brand-tagline {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .special-offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .special-offer-card {
        padding: 0.9rem 0.7rem;
    }
    
    .special-offer-card h3 {
        font-size: 1.1rem;
    }
    
    .discount-percent {
        font-size: 1.8rem;
    }
    
    .special-select-plan {
        padding: 0.5rem 1.2rem;
        margin-top: 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
        max-width: 952px;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.8rem;
    }
    
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .special-offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
    
    .special-offer-card {
        padding: 1.2rem 0.9rem;
    }
    
    .special-offer-card h3 {
        font-size: 1.2rem;
    }
    
    .discount-percent {
        font-size: 1.8rem;
    }
    
    .special-select-plan {
        padding: 0.6rem 1.2rem;
        margin-top: 0.8rem;
        font-size: 0.75rem;
    }
    
    .special-offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }
    
    .special-offer-card {
        padding: 0.8rem 0.6rem;
    }
    
    .special-offer-card h3 {
        font-size: 1rem;
    }
    
    .discount-percent {
        font-size: 1.6rem;
    }
    
    .special-select-plan {
        padding: 0.5rem 1.2rem;
        margin-top: 0.8rem;
        font-size: 0.7rem;
    }
    
    .pourquoi-text {
        order: 2;
    }
    
    .pourquoi-image {
        order: 1;
    }
    
    .key-features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .feature-highlight {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accompagnement-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .fonctionnalites-grid {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .fonctionnalite-card {
        min-width: 250px;
        max-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .main-logo {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 748px;
    }
    
    .nav-container {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo-section {
        order: 1;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-logo {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }
    
    .brand-name {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        order: 2;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }

    /* Hero section centrage */
    .hero-premium-inner {
        text-align: center;
    }
    
    .hero-premium-left {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-premium-right {
        display: none;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    /* Services section centrage */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .service-card {
        text-align: center;
        max-width: 100%;
    }
    
    /* Compatibilité section centrage */
    .compat-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
        margin: 2rem 0;
        justify-items: center;
    }
    
    .gallery-img {
        height: 160px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    /* Compatibility cards centrage */
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .compat-card {
        text-align: center;
        max-width: 100%;
    }
    
    /* Pricing section centrage */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .pricing-card {
        text-align: center;
        max-width: 100%;
    }
    
    /* Contact section centrage */
    .contact-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* Footer centrage */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    /* Sections spécifiques centrage amélioré */
    .accompagnement-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .accompagnement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .accompagnement-card {
        text-align: center;
        max-width: 100%;
    }
    
    .accompagnement-cta {
        text-align: center;
        margin-top: 2rem;
    }
    
    /* Pourquoi section centrage */
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .pourquoi-text {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .pourquoi-image {
        display: flex;
        justify-content: center;
    }
    
    .key-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature-highlight {
        text-align: center;
        width: 100%;
    }
    
    /* Special offers centrage */
    .special-offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .special-offer-card {
        text-align: center;
        max-width: 100%;
    }
    
    /* Fonctionnalités section centrage */
    .fonctionnalites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }
    
    .fonctionnalite-card {
        text-align: center;
        max-width: 100%;
    }
    
    .fonctionnalite-card h3 {
        text-align: center;
    }
    
    .fonctionnalite-card p {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .main-logo {
        max-width: 250px;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .special-offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .special-offer-card {
        padding: 0.7rem 0.5rem;
    }
    
    .special-offer-card.featured {
        transform: scale(1);
    }
    
    .special-offer-card h3 {
        font-size: 0.9rem;
    }
    
    .discount {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    
    .discount-percent {
        font-size: 1.4rem;
    }
    
    .discount-text {
        font-size: 0.75rem;
    }
    
    .offer-description {
        font-size: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .special-select-plan {
        padding: 0.4rem 1rem;
        margin-top: 0.8rem;
        font-size: 0.65rem;
    }
    
    .offer-description {
        font-size: 0.85rem;
        margin: 0.8rem 0;
    }
    
    .special-select-plan {
        padding: 0.6rem 1.2rem;
        margin-top: 0.8rem;
        font-size: 0.75rem;
    }
    
    .pourquoi-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .key-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .feature-highlight {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accompagnement-grid {
        grid-template-columns: 1fr;
    }
    
    .fonctionnalites-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .fonctionnalite-card {
        min-width: 280px;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .fonctionnalite-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-logo-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-text {
        align-items: center;
        text-align: center;
        order: 3;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .main-logo {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .special-offer-card {
        padding: 0.6rem 0.4rem;
    }
    
    .special-offer-card h3 {
        font-size: 0.85rem;
        margin: 0.6rem 0 0.4rem;
    }
    
    .discount {
        padding: 0.5rem;
        margin: 0.6rem 0;
    }
    
    .discount-percent {
        font-size: 1.2rem;
    }
    
    .discount-text {
        font-size: 0.7rem;
    }
    
    .offer-description {
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .special-select-plan {
        padding: 0.3rem 0.8rem;
        margin-top: 0.5rem;
        font-size: 0.6rem;
        border-radius: 20px;
    }
    
    .special-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    .discount-text {
        font-size: 0.75rem;
    }
    
    .offer-description {
        font-size: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .special-select-plan {
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
        font-size: 0.7rem;
        border-radius: 25px;
    }
    
    .special-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .service-card, .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info, .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
