/* Styles communs pour toutes les pages de détail */
.page-container {
    /* padding-top: 70px; */
}

.hero-page {
    background: linear-gradient(135deg, #0a192f, #112240);
    padding: 4rem 2rem;
    text-align: center;
    color: #ccd6f6;
}

.hero-page h1 {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    max-width: 1300px;
    padding: 4rem 2rem;
    background: #0a192f;
    margin: auto;
}

.intro-block {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-block h2 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-block p {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    gap: 2rem;
    margin-bottom: 4rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-card {
    background: linear-gradient(135deg, #112240, #1a2f4f);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 570px;
}

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

.feature-icon {
    font-size: 48px;
    color: #64ffda;
    margin-bottom: 0px;
}

.feature-card h3 {
    color: #ccd6f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #8892b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    color: #8892b0;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: #64ffda;
    font-size: 0.9rem;
}

.benefits-section, .use-cases {
    margin: 4rem 0;
    text-align: center;
}

.benefits-section h2, .use-cases h2 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid, .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item, .use-case-item {
    padding: 2rem;
    background: linear-gradient(135deg, #112240, #1a2f4f);
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.benefit-item i, .use-case-item i {
    font-size: 2.5rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.benefit-item h4, .use-case-item h4 {
    color: #ccd6f6;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.benefit-item p, .use-case-item p {
    color: #8892b0;
    line-height: 1.6;
}

.technical-specs {
    margin: 4rem 0;
}

.technical-specs h2 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.spec-item {
    background: linear-gradient(135deg, #112240, #1a2f4f);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.spec-item h4 {
    color: #64ffda;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    color: #8892b0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.spec-item li:before {
    content: "•";
    color: #64ffda;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.cta-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #64ffda15, #112240);
    border-radius: 12px;
    text-align: center;
    border: 2px solid #64ffda;
}

.cta-section h2 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ccd6f6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #64ffda;
    color: #0a192f;
}

.btn-primary:hover {
    background: #52d4b8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
}

.btn-secondary:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-page h1 {
        font-size: 2rem;
    }

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

    .benefits-grid, .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

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