/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6; color: #333; background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ===== Header ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid #fce4ec; z-index: 1000;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}
.logo-img { height: 85px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; font-size: 1.2rem; color: #444; transition: color 0.2s; }
.nav a:hover { color: #8A06BA; }
.nav-toggle {
    display: none; background: none; border: none;
    font-size: 1.5rem; cursor: pointer; color: #333;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, #fbc02d 0%, #fdd835 100%);
    color: #4a148c; text-align: center;
}
.hero h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 8px; }
.hero h1 .plus { color: #8A06BA; }
.hero-subtitle {
    font-size: 1.5rem; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 24px; opacity: 0.9;
}
.hero-text { font-size: 1.1rem; max-width: 650px; margin: 0 auto 32px; opacity: 0.95; }
.btn {
    display: inline-block; padding: 12px 32px; border-radius: 6px;
    font-weight: 600; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: #8A06BA; color: #fff; font-size: 1rem; }
.btn-primary:hover { background: #880e4f; transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: #8A06BA;
    border: 2px solid #8A06BA;
}
.btn-outline:hover { background: #8A06BA; color: #fff; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-dark { background: #8A06BA; color: #fff; }
.section-dark p { color: rgba(255,255,255,0.9); }
.section-highlight { background: #fffde7; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #fff; }

/* ===== Grid ===== */
.grid-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.text h2 { font-size: 1.8rem; color: #8A06BA; margin-bottom: 20px; }
.text p { margin-bottom: 16px; color: #555; }
.features { list-style: none; margin-top: 20px; }
.features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; color: #444;
}
.check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; background: #fbc02d;
    color: #4a148c; border-radius: 50%; font-size: 0.8rem; font-weight: 700;
}
.card {
    background: #fffde7; padding: 32px; border-radius: 12px;
}
.card h3 { color: #8A06BA; margin-bottom: 12px; font-size: 1.2rem; }
.card p { color: #555; margin-bottom: 12px; }

/* ===== Cards produits ===== */
.cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px; padding: 28px;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #fff; }
.product-card p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ===== Revendeur ===== */
.inline-logo { height: 50px; margin: 16px auto 24px; }
.big { font-size: 1.2rem; color: #555; margin-bottom: 24px; }
.dealer-card {
    background: #fff; border-radius: 16px;
    padding: 40px; max-width: 420px; margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.dealer-card h3 { font-size: 1.5rem; color: #8A06BA; margin-bottom: 12px; }
.dealer-card p { color: #555; margin-bottom: 8px; }
.dealer-card a { color: #8A06BA; font-weight: 600; }
.dealer-card a:hover { text-decoration: underline; }
.small { color: #777; font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* ===== Contact ===== */
.contact-big { font-size: 1.3rem; margin-top: 16px; }
.contact-big a { color: #8A06BA; font-weight: 600; }
.contact-big a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.footer {
    background: ; color: rgba(255,255,255,0.7);
    padding: 24px 0; text-align: center; font-size: 0.9rem;
}
.footer a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.footer a:hover { color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 800px) {
    .grid-2, .cards { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .nav { display: none; }
    .nav-toggle { display: block; }
    .nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 80px; left: 0; right: 0;
        background: #fff; padding: 20px; gap: 14px;
        border-bottom: 1px solid #fce4ec;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
}
