/* ==========================================================================
   PROXIWEB - Direction Artistique Officielle
   Design "Carte de Visite & Cabinet d'Exception" (Papier Coton, Ivoire Doux, Bleu Nuit Oxford)
   Inspiré des plus prestigieuses papeteries de France (Raffinement, Confiance Absolue, Lisibilité)
   ========================================================================== */

:root {
    --bg-main: #FAF8F5;         /* Ivoire doux / Papier vélin coton 350g, soyeux et chaleureux */
    --bg-secondary: #F2EFE9;    /* Lin chaud & pierre naturelle pour les alternances */
    --bg-tertiary: #EAE4DA;     /* Teinte parchemin minéral */
    --bg-card: #FFFFFF;         /* Blanc pur des cartons découpés sur fond ivoire */
    --text-main: #181716;       /* Encre minérale noire chaude, profonde et feutrée (hot-stamping) */
    --text-muted: #57534E;      /* Gris chaud texturé haute lisibilité */
    --text-dim: #78716C;        /* Teinte taupe subtile pour détails secondaires */
    --primary: #1B365D;         /* Bleu nuit oxford / Cabinet prestigieux */
    --primary-hover: #0F2340;   /* Nuit d'encre profonde au survol */
    --primary-light: #F0F4F8;   /* Fond bleuté poudré très doux pour badges */
    --accent-gold: #967442;     /* Laiton / or chaud pour détails d'exception */
    --accent-emerald: #1B6344;  /* Vert forêt noble pour les garanties & validations */
    --border: #E6E0D5;          /* Liseré fin de reliure / papier vergé */
    --border-hover: #D5CEBE;    /* Liseré marqué au survol */
    --border-primary: #CAD6E2;
    --radius-sm: 5px;           /* Coins nets et impeccables façon carton d'affaires */
    --radius-md: 9px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(24, 23, 22, 0.04);
    --shadow-md: 0 4px 16px rgba(24, 23, 22, 0.06);
    --shadow-lg: 0 12px 32px rgba(24, 23, 22, 0.08);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.2s ease-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.text-primary {
    color: var(--primary);
}

/* ==========================================================================
   NAVIGATION BLANCHE & ÉPURÉE
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    box-shadow: 0 2px 6px rgba(27, 54, 93, 0.22);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text-main);
}

.logo-text span {
    color: var(--primary);
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--bg-card);
    color: var(--text-muted);
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-emerald);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.90rem;
    transition: var(--transition);
    padding: 6px 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(24, 23, 22, 0.08);
    list-style: none;
    z-index: 1000;
    margin-top: 4px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

/* Nav CTA Pill Button */
.nav-links .btn-nav-cta,
.nav-links a.btn-nav-cta {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    padding: 8px 18px !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 8px rgba(27, 54, 93, 0.22) !important;
    border: 1px solid var(--primary) !important;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.nav-links .btn-nav-cta:hover,
.nav-links a.btn-nav-cta:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 54, 93, 0.32) !important;
    color: #FFFFFF !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary,
.nav-links a.btn-primary,
a.btn-primary {
    background: var(--primary) !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 8px rgba(27, 54, 93, 0.25);
    border: 1px solid var(--primary) !important;
}

.btn-primary:hover,
.nav-links a.btn-primary:hover,
a.btn-primary:hover {
    background: var(--primary-hover) !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(27, 54, 93, 0.35);
    border-color: var(--primary-hover) !important;
}

.btn-secondary,
.nav-links a.btn-secondary,
a.btn-secondary {
    background: #FFFFFF !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 1px 3px rgba(24, 23, 22, 0.04);
}

.btn-secondary:hover,
.nav-links a.btn-secondary:hover,
a.btn-secondary:hover {
    background: var(--bg-secondary) !important;
    color: var(--primary) !important;
    border-color: var(--border-hover) !important;
}

.burger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION BLANCHE
   ========================================================================== */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #FAF8F5 0%, #F2EFE9 100%);
    border-bottom: 1px solid var(--border);
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--primary-light);
    border: 1px solid var(--border-primary);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.9rem;
    margin-bottom: 18px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stat-item h3 {
    font-size: 1.55rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   SECTIONS GÉNÉRALES
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 45px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.15rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ==========================================================================
   TARIFS : LES DEUX OPTIONS (DESIGN LUXE & CARTES D'EXCEPTION)
   ========================================================================== */
.pricing-choice-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-box {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 34px 34px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(24, 23, 22, 0.04);
    transition: var(--transition);
}

.pricing-box:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 32px rgba(24, 23, 22, 0.08);
    transform: translateY(-3px);
}

.pricing-box.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(27, 54, 93, 0.12);
}

.popular-badge {
    position: absolute;
    top: -13px;
    right: 28px;
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(27, 54, 93, 0.3);
}

.pricing-head h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--text-main);
    letter-spacing: -0.015em;
    font-weight: 700;
}

.pricing-head p {
    font-size: 0.88rem;
    color: var(--text-muted);
    min-height: 42px;
    line-height: 1.5;
}

.price-display {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    margin: 20px 0 26px;
}

.price-prefix {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.price-main {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-main-period {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: normal;
}

.price-sub {
    font-size: 0.88rem;
    color: var(--primary);
    margin-top: 10px;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px dashed rgba(230, 224, 213, 0.9);
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(230, 224, 213, 0.55);
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-main);
}

.price-features li:last-child {
    border-bottom: none;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #EFF6F3;
    color: #1B6344;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 1px 2px rgba(27, 99, 68, 0.08);
}

.check svg {
    width: 12px;
    height: 12px;
    stroke: #1B6344;
}

.feature-text {
    flex-grow: 1;
}

.pricing-box .btn {
    width: 100%;
    padding: 14px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

.pricing-box.popular .btn-primary {
    box-shadow: 0 4px 14px rgba(27, 54, 93, 0.25);
}

/* Encadré Clarté & Transparence Forfait */
.pricing-clarity-box {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    max-width: 960px;
    margin: 36px auto 0;
    box-shadow: 0 4px 20px rgba(24, 23, 22, 0.04);
}

.pricing-clarity-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-clarity-header h3 {
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}

.pricing-clarity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-clarity-col {
    background: var(--bg-secondary);
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.pricing-clarity-col.col-included {
    border-top: 3px solid #1B6344;
}

.pricing-clarity-col.col-extra {
    border-top: 3px solid var(--primary);
}

.pricing-clarity-col strong {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pricing-clarity-col.col-included strong {
    color: #1B6344;
}

.pricing-clarity-col.col-extra strong {
    color: var(--primary);
}

.pricing-clarity-col ul {
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.pricing-clarity-col li {
    margin-bottom: 8px;
}

.pricing-clarity-col li:last-child {
    margin-bottom: 0;
}

.pricing-clarity-note {
    margin-top: 18px;
    font-size: 0.84rem;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================================================
   GRILLE DES 5 MÉTIERS (ACCUEIL)
   ========================================================================== */
.metiers-grid-5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metier-card-white {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.metier-card-white:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.metier-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.metier-card-white h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.metier-card-white p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 16px;
    line-height: 1.5;
}

.metier-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   SECTION RÉALISATIONS & ILS ME FONT CONFIANCE
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(24, 23, 22, 0.04);
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 32px rgba(24, 23, 22, 0.08);
    transform: translateY(-3px);
}

.portfolio-card.card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(27, 54, 93, 0.10);
}

.portfolio-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.portfolio-category {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.portfolio-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1B6344;
    background: #EFF6F3;
    padding: 3px 10px;
    border-radius: 20px;
}

.portfolio-badge-live .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1B6344;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(27, 99, 68, 0.2);
}

.portfolio-badge-future {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dim);
    background: var(--bg-secondary);
    padding: 3px 10px;
    border-radius: 20px;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

.portfolio-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.portfolio-tags span {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-secondary);
    padding: 4px 9px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.portfolio-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================================================
   PAGES MÉTIERS & SIMULATION DE SITE CLIENT
   ========================================================================== */
.trade-hero {
    padding: 130px 0 50px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Fenêtre de Simulation Navigateur */
.mockup-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.mockup-browser-bar {
    background: var(--bg-secondary);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.mockup-url {
    background: white;
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.mockup-inner {
    padding: 36px 30px;
    background: #FFFFFF;
}

/* Grille d'Options Réalistes */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.option-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.option-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.option-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   FORMULAIRE DE CONTACT PROFESSIONNEL
   ========================================================================== */
.contact-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.contact-details {
    list-style: none;
    margin-bottom: 24px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.92rem;
    color: var(--text-main);
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

input, select, textarea {
    width: 100%;
    padding: 11px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.12);
}

textarea {
    resize: vertical;
    min-height: 95px;
}

.form-feedback {
    display: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.form-feedback.success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.form-feedback.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ==========================================================================
   FOOTER SOBRE
   ========================================================================== */
.footer {
    padding: 60px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 36px;
}

.footer-col h4 {
    font-size: 0.92rem;
    margin-bottom: 14px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================================
   ADMIN
   ========================================================================== */
.admin-body {
    background: var(--bg-secondary);
    min-height: 100vh;
}

.admin-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.admin-container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 24px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.admin-stat-card h4 {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.admin-stat-card .val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.admin-table-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.88rem;
}

.admin-table th {
    background: var(--bg-secondary);
    padding: 12px 16px;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: var(--bg-secondary);
}

.status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-nouveau { background: #EEF4FA; color: var(--primary); }
.status-contacte { background: #FEF3C7; color: #D97706; }
.status-devis_envoye { background: #F3E8FF; color: #7E22CE; }
.status-signe { background: #ECFDF5; color: #047857; }
.status-archive { background: #F1F5F9; color: #64748B; }

.admin-login-card {
    max-width: 380px;
    margin: 80px auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 22px 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
        box-shadow: 0 12px 30px rgba(24, 23, 22, 0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 12px;
        background: var(--bg-secondary);
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .burger-btn {
        display: block;
    }

    .pricing-choice-container, .metiers-grid-5, .options-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 110px 0 45px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}
