.com-design-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: #2a2a2a;
    overflow: hidden;
}

.com-design-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.com-design-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 60px 40px 140px;
}

.com-design-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hexagon-layout {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    gap: 40px;
}

.center-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 10;
    text-align: center;
}

.center-logo img {
    max-width: var(--center-logo-width, 250px);
    height: auto;
    min-height: 166px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.center-logo p {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hexagons-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hexagon-item {
    position: relative;
    flex-shrink: 0;
    width: var(--hexagon-width, 280px);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hexagon-shape {
    position: relative;
    width: var(--hexagon-width, 280px);
    height: var(--hexagon-height, 320px);
    flex-shrink: 0;
    clip-path: polygon(
        /* Sommet haut-gauche (5 points) */
        26% 1.6%,
        27% 0.6%,
        28% 0.2%,
        29% 0%,
        30% 0%,
        /* Bord haut */
        70% 0%,
        /* Sommet haut-droite (5 points) */
        71% 0%,
        72% 0.2%,
        73% 0.6%,
        74% 1.6%,
        /* Sommet droite (5 points) */
        99% 46%,
        99.4% 48%,
        99.7% 49.4%,
        99.8% 50%,
        99.7% 50.6%,
        99.4% 52%,
        99% 54%,
        /* Sommet bas-droite (5 points) */
        74% 98.4%,
        73% 99.4%,
        72% 99.8%,
        71% 100%,
        70% 100%,
        /* Bord bas */
        30% 100%,
        /* Sommet bas-gauche (5 points) */
        29% 100%,
        28% 99.8%,
        27% 99.4%,
        26% 98.4%,
        /* Sommet gauche (5 points) */
        1% 54%,
        0.6% 52%,
        0.3% 50.6%,
        0.2% 50%,
        0.3% 49.4%,
        0.6% 48%,
        1% 46%
    );
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hexagon-item:hover .hexagon-shape {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(234, 88, 12, 0.35);
}

.hexagon-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(149, 149, 149, 0.5);
}

.hexagon-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hexagon-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hexagon-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hexagon-content {
    position: relative;
    width: 100%;
    padding: 16px 10px 0;
    text-align: center;
    background: none;
    z-index: 2;
}

.hexagon-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hexagon-content p {
    color: #e0e0e0;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}


/* Empty state */
.empty-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
}

.empty-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* CTA Layout */
.cta-layout {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cta-title {
    margin: 0 0 24px 0;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.cta-title-1 {
    display: block;
    color: #fff;
}

.cta-title-2 {
    display: block;
    color: #ea580c;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.cta-keywords {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-btn-contact {
    display: inline-block;
    padding: 14px 32px;
    background: #ea580c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn-contact:hover {
    background: #c2410c;
}

.cta-btn-more {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.cta-btn-more:hover {
    background: transparent;
    color: #fff;
}

.custom-layout {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.custom-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.custom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.custom-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.custom-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #8a2be2 0%, #9d4edd 100%);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.5);
    background: linear-gradient(135deg, #9d4edd 0%, #8a2be2 100%);
}

.com-design-navigation {
    --nav-progress: 0%;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    z-index: 20;
}

.nav-track {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 700px;
    height: var(--nav-track-height, 2px);
    background: var(--nav-track-bg, #333);
}

.nav-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--nav-progress, 0%);
    height: 100%;
    background: var(--nav-track-progress, #bbb);
    transition: width 0.4s ease;
}

.nav-dots {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.nav-dot {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    min-width: 0;
    transition: all 0.3s ease;
}

.nav-dot:hover .nav-title {
    color: #fff;
}

.nav-dot .dot {
    width: var(--nav-dot-size, 10px);
    height: var(--nav-dot-size, 10px);
    border-radius: 50%;
    background: var(--nav-dot-color, #333);
    transition: all 0.3s ease;
}

/* Step actif - cercle blanc avec anneau */
.nav-dot.active .dot {
    background: var(--nav-dot-active-color, #fff);
    border: 2px solid var(--nav-dot-active-color, #fff);
    box-shadow: 0 0 0 2px var(--nav-dot-ring-color, #2a2a2a);
}

/* Étapes complétées - gris clair */
.nav-dot:has(~ .nav-dot.active) .dot {
    background: var(--nav-dot-completed-color, #bbb);
}

.nav-dot .nav-title {
    color: #555;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1.2;
    max-width: 70px;
}

/* Étapes complétées - label gris clair */
.nav-dot:has(~ .nav-dot.active) .nav-title {
    color: #bbb;
}

/* Step actif - label blanc */
.nav-dot.active .nav-title {
    color: #fff;
}

@media (max-width: 1024px) {
    .hexagons-container {
        flex-direction: row;
        gap: 30px;
        padding: 20px 0;
    }

    .hexagon-layout {
        gap: 30px;
    }

    .cta-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .com-design-slide {
        padding: 40px 20px 120px;
    }

    .center-logo img {
        max-width: var(--center-logo-width, 180px);
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-keywords {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .cta-btn-contact,
    .cta-btn-more {
        width: 100%;
        text-align: center;
    }

    .custom-content h2 {
        font-size: 32px;
    }

    .nav-track {
        width: calc(100% - 40px);
    }

    .nav-dot .nav-title {
        display: none;
    }

    .nav-dots {
        gap: 4px;
    }
}

@media (max-width: 480px) {

    .hexagon-content h3 {
        font-size: 14px;
    }

    .hexagon-content p {
        font-size: 11px;
    }

    .cta-title {
        font-size: 20px;
    }

    .custom-content h2 {
        font-size: 24px;
    }

    .cta-btn-contact,
    .cta-btn-more {
        padding: 12px 24px;
        font-size: 14px;
    }

    .custom-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
