/* =========================
   STYLE PREMIUM - EDCPRO V2
   ========================= */

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

body {
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: #1f2937;
    line-height: 1.6;
}

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

.nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 50;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #6d28d9;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: 0.2s;
}

.nav a:hover {
    color: #7c3aed;
}

/* =========================
   HERO MINIMAL (pour Tarifs, À propos, Contact…)
   ========================= */

.hero-minimal {
    padding: 100px 20px 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.hero-minimal h1 {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-minimal p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
}

/* =========================
   HERO PREMIUM
   ========================= */

.hero-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 40px;
    max-width: 1400px;
    margin: auto;
    gap: 50px;
}

.hero-content {
    flex: 1;
    color: #111827;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 35px;
    color: #4b5563;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 520px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Responsive hero */
@media (max-width: 900px) {
    .hero-premium {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        width: 90%;
    }
}

/* =========================
   SECTIONS
   ========================= */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #312e81;
}

/* =========================
   WHY CARDS
   ========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.why-icon {
    width: 42px;
    height: 42px;
    color: #7c3aed;
    margin-bottom: 15px;
}

/* =========================
   FEATURES GRID
   ========================= */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    color: #6d28d9;
    margin-bottom: 15px;
}

/* =========================
   SCREENSHOTS GRID
   ========================= */

.screenshots-grid {
    column-count: 3;
    gap: 25px;
}

.screenshots-grid img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
    .screenshots-grid {
        column-count: 1;
    }
}

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

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
}

.cta-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-section .btn {
    font-size: 18px;
    padding: 12px 30px;
}

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

footer {
    padding: 25px;
    text-align: center;
    background: #0f172a;
    color: #cbd5e1;
    font-size: 14px;
}

/* =========================
   PRICING
   ========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: auto;
}

.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07);
    position: relative;
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.featured {
    border: 2px solid #7c3aed;
}

.badge-best {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #7c3aed;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-price {
    font-size: 40px;
    font-weight: 800;
    color: #4c1d95;
    margin: 20px 0 5px 0;
}

.pricing-price small {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

.pricing-annual {
    margin-bottom: 20px;
    font-size: 15px;
    color: #374151;
}

.pricing-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.pricing-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374151;
}

.pricing-list li i {
    width: 20px;
    margin-right: 10px;
    color: #7c3aed;
}

.pricing-btn {
    margin-top: 25px;
}

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

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.contact-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-info p {
    color: #4b5563;
    margin-bottom: 10px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    margin: 6px 0;
}

.contact-form .form-control {
    background: #f9fafb;
}

@media (max-width: 900px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
}
