/* ===== FASTPANEL — SOLUTION D'OPTIMISATION ENTREPRISE ===== */
*, *::before, *::after { box-sizing: border-box; }

/* ===== BASE ===== */
.ep-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== HERO ===== */
.ep-hero {
    position: relative;
    padding: 160px 48px 130px;
    text-align: center;
    overflow: hidden;
    background: #0e0e0e;
}

.ep-hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ep-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 24px;
}

.ep-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin: 0 0 28px;
}

.ep-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

/* ===== BOUTON ===== */
.ep-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 15px 34px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s ease;
}

.ep-btn:hover {
    background: #1d4ed8;
    color: #fff;
    text-decoration: none;
}

.ep-btn-lg {
    padding: 17px 40px;
    font-size: 16px;
}

/* ===== DIVIDER ===== */
.ep-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* ===== SECTIONS ===== */
.ep-section {
    padding: 120px 48px;
    background: #0e0e0e;
}

.ep-alt {
    background: #111111;
}

.ep-section-head {
    margin-bottom: 72px;
}

.ep-section-head h2 {
    font-size: 48px;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.ep-section-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 520px;
    line-height: 1.75;
    margin: 0;
}

/* ===== PILIERS ===== */
.ep-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
}

.ep-pillar {
    background: #111111;
    padding: 56px 52px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease;
}

.ep-pillar:hover {
    background: #141414;
}

.ep-pillar:nth-child(2n) {
    border-right: none;
}

.ep-pillar:nth-child(3),
.ep-pillar:nth-child(4) {
    border-bottom: none;
}

.ep-pillar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.ep-num {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    min-width: 24px;
}

.ep-pillar-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.ep-pillar-icon svg {
    width: 20px;
    height: 20px;
}

.ep-pillar h3 {
    font-size: 20px;
    font-weight: 700;
    color: #efefef;
    margin: 0;
    letter-spacing: -0.4px;
}

.ep-pillar-desc {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.75;
    margin: 0 0 26px;
}

.ep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ep-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}

.ep-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: rgba(59, 130, 246, 0.6);
}

/* ===== POURQUOI NOUS ===== */
.ep-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
}

.ep-why-item {
    padding: 52px 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: #0e0e0e;
}

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

.ep-why-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    line-height: 1;
}

.ep-why-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 0 0 10px;
}

.ep-why-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    margin: 0;
}

/* ===== TÉMOIGNAGES (placeholder) ===== */
.ep-testimonials-section {
    background: #0e0e0e;
}

.ep-testimonials-placeholder {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 72px 48px;
    text-align: center;
    background: #111111;
}

.ep-testimonials-placeholder p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 12px;
}

.ep-placeholder-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

.ep-placeholder-note a {
    color: rgba(59, 130, 246, 0.7);
    text-decoration: none;
}

.ep-placeholder-note a:hover {
    color: #3b82f6;
}

/* ===== CTA ===== */
.ep-cta-section {
    position: relative;
    padding: 140px 48px;
    text-align: center;
    background: #0e0e0e;
    overflow: hidden;
}

.ep-cta-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ep-cta-inner {
    position: relative;
    z-index: 1;
}

.ep-cta-inner h2 {
    font-size: 56px;
    font-weight: 800;
    color: #f5f5f5;
    letter-spacing: -2px;
    margin: 0 0 22px;
    line-height: 1.08;
}

.ep-cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.8;
}

.ep-cta-note {
    margin: 22px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .ep-hero-title { font-size: 58px; }
    .ep-section-head h2 { font-size: 40px; }
    .ep-cta-inner h2 { font-size: 46px; }
    .ep-pillar { padding: 44px 40px; }
    .ep-why-item { padding: 44px 36px; }
}

@media (max-width: 900px) {
    .ep-pillars { grid-template-columns: 1fr; }

    .ep-pillar { border-right: none; }

    .ep-pillar:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

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

    .ep-why-item:nth-child(2) { border-right: none; }

    .ep-why-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ep-why-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ep-wrap { padding: 0 32px; }
    .ep-section, .ep-hero { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 640px) {
    .ep-hero-title { font-size: 38px; letter-spacing: -1px; }
    .ep-hero-sub { font-size: 16px; }
    .ep-section-head h2 { font-size: 30px; }
    .ep-cta-inner h2 { font-size: 32px; }
    .ep-pillar { padding: 36px 28px; }

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

    .ep-why-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

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

    .ep-section, .ep-hero { padding-left: 20px; padding-right: 20px; }
    .ep-wrap { padding: 0 20px; }
}
