*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #f4f5f7;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    background: #0b1120;
    color: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 10;
	border-bottom:1px solid #2e4069;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-main {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.logo-main span {
    color: #38bdf8;
}

.logo-sub {
    font-size: 0.75rem;
    opacity: 0.8;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.main-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: #38bdf8;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #4b5563;
    color: #f9fafb;
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
    border-radius: 0.25rem;
}

/* Lien PRO dans le menu */
.nav-pro-login a {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.nav-pro-login a:hover {
    background: #38bdf8;
    color: #0b1120;
}

.hero {
    background: radial-gradient(circle at top, #1e293b 0%, #162b41 55%, #020617 100%);
    color: #f9fafb;
    padding: 3rem 0 3.5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem;
}

.hero-domain {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-side {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.section {
    padding: 3rem 0;
    background: #f4f5f7;
}

.section-alt {
    background: #ffffff;
}

.section h2,
.section h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-intro {
    margin-bottom: 1.75rem;
    max-width: 44rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card,
.info-box,
.pricing-card,
.brand-group,
.contact-form,
.contact-info,
.auth-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
    border: 1px solid #e5e7eb;
}

.list-check {
    list-style: none;
}

.list-check li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-size: 0.85rem;
    transform: translateY(0.15rem);
}

.list-steps {
    margin-left: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s;
}

.btn-primary {
    background: #0ea5e9;
    color: #0b1120;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border-color: #38bdf8;
}

.btn-outline:hover {
    background: rgba(56, 189, 248, 0.1);
}

.btn-full {
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.pricing-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.pricing-card-featured {
    border-color: #0ea5e9;
    transform: translateY(-4px);
}

.contact-form .form-group,
.auth-form .form-group {
    margin-bottom: 0.9rem;
}

.contact-form label,
.auth-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.auth-form input,
.auth-form select {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.45rem 0.6rem;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25);
}

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.25rem 0;
    font-size: 0.85rem;

    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #2e4069;
    z-index: 9;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #38bdf8;
}

/* Section Auth */
.auth-section {
    background: #f4f5f7;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 1.75rem;
    align-items: flex-start;
}

.auth-card h1 {
    margin-bottom: 0.75rem;
}

.auth-intro {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.auth-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.auth-side .info-box + .info-box {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .hero-inner,
    .grid-2,
    .grid-3,
    .pricing-grid,
    .brands-grid,
    .footer-inner,
    .auth-wrapper {
        grid-template-columns: 1fr !important;
        display: grid;
    }

    .hero-side {
        justify-content: flex-start;
    }

    .pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #020617;
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0.5rem 1.5rem 1rem;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-block;
    }
}

/* --- Centrage de la page de connexion PRO --- */
.auth-section-centered {
    background: #f4f5f7;
}

.auth-center-wrapper {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    max-width: 420px;
    width: 100%;
}

@media (max-width: 768px) {
    .auth-center-wrapper {
        min-height: auto;
        padding: 2rem 0;
    }
}
/* --- Style spécifique page Connexion PRO --- */

.auth-section-centered {
    /* Fond type bleu nuit / halo comme sur ta capture */
    background: radial-gradient(circle at top, #1e293b 0%, #020617 55%, #020617 100%);
}

.auth-center-wrapper {
    min-height: calc(100vh - 140px); /* hauteur visible moins le header */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carte de connexion */
.auth-card {
    max-width: 430px;
    width: 100%;
    background: #020617; /* fond très foncé */
    border-radius: 18px;
    padding: 24px 24px 18px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.auth-card h1 {
    font-size: 1.3rem;
    color: #f9fafb;
    margin-bottom: 4px;
}

.auth-intro {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 18px;
}

/* Formulaire */
.auth-form .form-group {
    margin-bottom: 12px;
}

.auth-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.auth-form input {
    width: 100%;
    border-radius: 999px;           /* bords très arrondis */
    border: none;
    padding: 9px 14px;
    font-size: 0.95rem;
    background: #e5f0ff;            /* fond bleu très clair comme sur la capture */
    color: #020617;
}

.auth-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4f46e5;
}

/* Bouton Se connecter : barre bleue en bas de la carte */
.auth-form .btn.btn-primary {
    margin-top: 10px;
    background: linear-gradient(90deg, #4f46e5, #2563eb);
    color: #f9fafb;
    border: none;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.6);
}

.auth-form .btn.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #4338ca, #1d4ed8);
}

.auth-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-center-wrapper {
        min-height: auto;
        padding: 2.5rem 0;
    }
}
/* === PAGE CONNEXION PRO === */

.login-section {
    background: radial-gradient(circle at top, #1e293b 0%, #162b41 55%, #020617 100%);
    padding: 60px 0 80px;
}

.login-container {
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: flex-start;  /* au lieu de center */
    padding-top: 1px;        /* espace sous le header */

}

.login-card {
    width: 420px;
    max-width: 100%;
    background: #020617;
    border-radius: 18px;
    padding: 24px 24px 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.login-title {
    font-size: 1.3rem;
    color: #f9fafb;
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 18px;
}

/* Formulaire */
.login-form .form-group {
    margin-bottom: 12px;
}

.login-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: #e5e7eb;
}

.login-form input {
    width: 100%;
    border-radius: 999px;
    border: none;
    padding: 9px 14px;
    font-size: 0.95rem;
    background: #e5f0ff;  /* comme champs clairs de ta maquette */
    color: #020617;
}

.login-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #4f46e5;
}

/* Bouton "Se connecter" en barre bleue */
.login-form .btn.btn-primary {
    margin-top: 10px;
    background: linear-gradient(90deg, #4f46e5, #2563eb);
    color: #f9fafb;
    border: none;
    box-shadow: 0 13px 20px rgba(37, 99, 235, 0.6);
}

.login-form .btn.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #4338ca, #1d4ed8);
}

.login-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Responsive : sur mobile on centre la carte */
@media (max-width: 900px) {
    .login-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .login-container {
        min-height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

/* Bouton orange pour connexion PRO */
.btn-orange {
    background: #f97316;               /* orange */
    color: #0b1120;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.btn-orange:hover {
    background: #ea580c;               /* orange un peu plus foncé */
    transform: translateY(-1px);
}
/* --- Cartes interactives (offres, blocs, etc.) --- */

.pricing-card,
.info-box,
.brand-group,
.hero-card {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.pricing-card:hover,
.info-box:hover,
.brand-group:hover,
.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    border-color: #38bdf8;
    background-color: #ffffff;
}

/* On renforce un peu l’offre mise en avant au survol */
.pricing-card-featured:hover {
    box-shadow: 0 18px 36px rgba(56, 189, 248, 0.25);
}

/* --- Icônes dans les cartes d'offres --- */

.pricing-card h3 {
    position: relative;
    padding-left: 30px;
}

/* Icône par défaut */
.pricing-card h3::before {
    content: "🚗";
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-size: 1.1rem;
}

/* 1ère carte : Mode Gratuit */
.pricing-grid .pricing-card:nth-child(1) h3::before {
    content: "🟢";
}

/* 2ème carte : Mode Abonné */
.pricing-grid .pricing-card:nth-child(2) h3::before {
    content: "⭐";
}

/* 3ème carte : Compte Professionnel */
.pricing-grid .pricing-card:nth-child(3) h3::before {
    content: "🛠️";
}

/* Bouton orange pour connexion PRO (si pas déjà ajouté) */
.btn-orange {
    background: #f97316;
    color: #0b1120;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.btn-orange:hover {
    background: #ea580c;
    transform: translateY(-1px);
}
/* Champ SIRET masqué par défaut */
.form-group-siret {
    display: none;
}

/* Quand visible (si PRO) */
.form-group-siret.visible {
    display: block;
}

/* Puces uniquement dans les listes des cartes d'offres */
.pricing-card ul {
    list-style: none;        /* on enlève les puces par défaut */
    margin: 0 0 1rem 0;
    padding: 0;
}

.pricing-card ul li {
    position: relative;
    padding-left: 0.9rem;    /* place pour la petite puce */
    margin-bottom: 0.25rem;
}

/* petit point noir comme puce */
.pricing-card ul li::before {
    content: "•";            /* change en "-" si tu préfères un tiret */
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 0.9rem;
}
/* === MISE EN AVANT FORTE DU HEADER PRO === */

.section-pro .pro-header {
    margin-bottom: 2rem;
    padding: 1.4rem 1.8rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at left, rgba(56, 189, 248, 0.18), transparent 55%),
        #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.45);
    position: relative;
    overflow: hidden;
}

/* petit halo discret dans le coin droit */
.section-pro .pro-header::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 65%);
    pointer-events: none;
}

.section-pro .pro-header h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

/* petit picto à côté du titre */
.section-pro .pro-header h2::before {
    content: "🛠️";
    font-size: 1.4rem;
}

/* sous-titre plus lisible */
.section-pro .pro-header .section-intro {
    margin-bottom: 0.4rem;
    max-width: 52rem;
    font-size: 0.98rem;
    color: #374151;
}

/* ligne PRO juste en dessous (si tu as .pro-badge-line) */
.section-pro .pro-badge-line {
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: #4b5563;
}

/* le petit badge PRO si tu l'utilises */
.section-pro .pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.12rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.4);
}

/* responsive : on garde le look, mais plus compact */
@media (max-width: 768px) {
    .section-pro .pro-header {
        padding: 1.1rem 1.3rem;
        margin-bottom: 1.5rem;
    }

    .section-pro .pro-header h2 {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }
}
.hero-card {
    display: block; /* on s'assure que ce n'est plus en flex pour cette carte */
}

.hero-obd-wrap {
    margin-top: 0.75rem;
    text-align: right;           /* image alignée à droite, discret */
}

.hero-obd-img {
    max-width: 110px;            /* taille réduite */
    width: 100%;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
    background: #0b1120;
}

.hero-obd-caption {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Sur mobile : au centre pour rester propre */
@media (max-width: 768px) {
    .hero-obd-wrap {
        text-align: center;
    }
}

/* --- Image boîtier OBD-BS dans le hero --- */

.hero-obd-wrap {
    margin-top: 0.9rem;
    text-align: center;
}

.hero-obd-img {
    max-width: 120px;
    width: 100%;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
    background: #0b1120;
    cursor: zoom-in;
}

.hero-obd-caption {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* --- Modal de zoom boîtier OBD-BS --- */

.obd-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none; /* masqué par défaut */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.obd-modal.open {
    display: flex;
}

.obd-modal-inner {
    position: relative;
    max-width: 480px;
    width: 90%;
    background: #020617;
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.obd-modal-inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.obd-modal-close {
    position: absolute;
    top: 6px;
    right: 10px;
    border: none;
    background: transparent;
    color: #e5e7eb;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

/* éviter que le contenu soit collé au footer fixe sur mobile */
@media (max-width: 768px) {
    .obd-modal-inner {
        max-width: 360px;
    }
}
/* --- Cartes interactives (offres, blocs, etc.) --- */

.pricing-card,
.info-box,
.brand-group {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.pricing-card:hover,
.info-box:hover,
.brand-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    border-color: #38bdf8;
    background-color: #ffffff;
}

/* On renforce un peu l’offre mise en avant au survol */
.pricing-card-featured:hover {
    box-shadow: 0 18px 36px rgba(56, 189, 248, 0.25);
}

/* --- Hero card : reste sombre, léger effet au survol --- */

.hero-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.4);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.hero-card:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
    border-color: rgba(148, 163, 184, 0.7);
}

/* === PACK PRO (tablette + boîtier) === */

.section-packpro {
    padding-top: 1.5rem;       /* un peu plus proche de la section PRO */
}

.packpro-card {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.packpro-media {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packpro-media img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Colonne texte */
.packpro-content {
    flex: 1;
    min-width: 0;
}

/* Badge PACK PRO plus premium */
.packpro-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background: #0f172a;                 /* fond bleu nuit */
    color: #e5e7eb;
    border: 1px solid #1f2937;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
    margin-bottom: 0.55rem;
}

.packpro-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;                 /* petit point vert “ON / actif” */
    margin-right: 0.45rem;
}

.packpro-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.packpro-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

/* Liste déjà stylée par .list-check, on ajuste juste un peu */
.packpro-list {
    margin-bottom: 0.9rem;
}

/* Prix + bouton */
.packpro-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.5rem;
    margin-top: 0.25rem;
}

.packpro-price-main {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.packpro-price-sub {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.1rem;
}

.packpro-btn {
    padding-inline: 1.6rem;
    white-space: nowrap;
}

/* Responsive : pile l’image au-dessus du texte */
@media (max-width: 900px) {
    .packpro-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .packpro-media {
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
    }

    .packpro-media img {
        max-width: 260px;
    }

    .packpro-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .packpro-btn {
        width: 100%;
        justify-content: center;
    }
}

.section-packpro {
    padding-top: 2.2rem;
}

.packpro-card {
    display: flex;
    align-items: stretch;
    gap: 1.9rem;
    background: linear-gradient(135deg, #ffffff, #f9fafb);
    border-radius: 24px;
    padding: 1.75rem 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.packpro-media {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #020617;
    padding: 0.75rem 0.75rem 0.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.packpro-media img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

/* Colonne texte */
.packpro-content {
    flex: 1;
    min-width: 0;
}

.packpro-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.3rem;
}

.packpro-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.packpro-list {
    margin-bottom: 0.9rem;
}

/* Prix + bouton */
.packpro-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem 1.7rem;
    margin-top: 0.4rem;
}

.packpro-price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.packpro-price-sub {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.12rem;
}

.packpro-btn {
    padding-inline: 1.8rem;
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(249, 115, 22, 0.45);
    white-space: nowrap;
}

/* Responsive : image au-dessus du texte */
@media (max-width: 900px) {
    .packpro-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .packpro-media {
        width: 100%;
        justify-content: center;
    }

    .packpro-media img {
        max-width: 260px;
    }

    .packpro-price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .packpro-btn {
        width: 100%;
        justify-content: center;
    }
}
.packpro-img {
    cursor: zoom-in;
}

 .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding-top: 6px;
    }
	
	/* --- Menu catégories DTC (gratuit) --- */

.dtc-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.dtc-cat-link {
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    background: #f9fafb;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}

.dtc-cat-link:hover {
    background: #0ea5e9;
    color: #0b1120;
    border-color: #0ea5e9;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(56, 189, 248, 0.3);
}

.dtc-cat-link.active {
    background: #0b1120;
    color: #f9fafb;
    border-color: #0b1120;
}
	.dtc-cat-link2 { padding: 0.35rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    color: #374151;
    text-decoration: none;
    background: #006d9d;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06);
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}
.contact-switch {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-switch-btn {
    flex: 1 1 0;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #374151;
    font-size: 0.9rem;
    cursor: pointer;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}

.contact-switch-btn:hover {
    background: #e0f2fe;
    border-color: #0ea5e9;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.25);
    transform: translateY(-1px);
}

.contact-switch-btn.active {
    background: #0b1120;
    color: #f9fafb;
    border-color: #0b1120;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.4);
}

/* Onglets type de contact */
.contact-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.contact-tab {
    flex: 1;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 0.9rem;
    cursor: pointer;
    color: #374151;
    box-shadow: 0 2px 4px rgba(15,23,42,0.06);
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}

.contact-tab:hover {
    background: #0ea5e9;
    color: #0b1120;
    border-color: #0ea5e9;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(56,189,248,0.3);
}

.contact-tab.is-active {
    background: #0b1120;
    color: #f9fafb;
    border-color: #0b1120;
}

.contact-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.9rem;
}
