:root { 
    --primary: #2d3436; 
    --accent: #d63031; 
    --bg: #f8f9fa; 
    --basque-red: #8f0e0d; 
    --basque-green: #2d4530; 
    --basque-blue: #2a4b7c; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg); 
    color: var(--primary); 
}

.navbar { 
    background: rgba(255, 255, 255, 0.92); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

.brand-logo { 
    font-weight: 800; 
    font-size: 1.5rem; 
    letter-spacing: -0.5px; 
    text-decoration: none; 
    color: var(--primary); 
}

/* Hero section */
.hero { padding: 120px 0 60px; }
.hero h1 { 
    font-size: clamp(2.2rem, 5vw, 3.6rem); 
    font-weight: 800; 
    letter-spacing: -1px; 
    line-height: 1.15; 
}

.badge-exp { 
    background: rgba(143, 14, 13, 0.08); 
    color: var(--basque-red); 
    font-weight: 600; 
    padding: 6px 16px; 
    border-radius: 50px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 0.875rem; 
}

/* Focus Référence */
.story-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--basque-red), var(--basque-blue));
}

/* Cartes & Graphismes subtils */
.card-hub { 
    background: white; 
    border: 1px solid #eef0f2; 
    border-radius: 20px; 
    padding: 2.25rem; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-hub:hover { 
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); 
    transform: translateY(-4px); 
}

/* Icônes subtiles */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.card-depannage .icon-box { background: rgba(143, 14, 13, 0.1); color: var(--basque-red); }
.card-depannage { border-top: 4px solid var(--basque-red); }

.card-web .icon-box { background: rgba(42, 75, 124, 0.1); color: var(--basque-blue); }
.card-web { border-top: 4px solid var(--basque-blue); }

.card-dev .icon-box { background: rgba(45, 69, 48, 0.1); color: var(--basque-green); }
.card-dev { border-top: 4px solid var(--basque-green); }

.card-formation .icon-box { background: rgba(230, 126, 34, 0.1); color: #e67e22; }
.card-formation { border-top: 4px solid #e67e22; }

/* Badges cibles */
.target-pill { 
    background: white; 
    border: 1px solid #e2e8f0; 
    border-radius: 30px; 
    padding: 6px 16px; 
    font-weight: 500; 
    font-size: 0.9rem;
    color: #4a5568;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Bannière conseil gratuit */
.free-advice-banner { 
    background: var(--primary); 
    color: white; 
    border-radius: 24px; 
    padding: 3rem; 
    margin: 40px 0; 
    position: relative;
    overflow: hidden;
}

.free-advice-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 6px; height: 100%;
    background: var(--basque-red);
}

/* Boutons */
.btn-custom-main { 
    background: var(--basque-red); 
    color: white; 
    font-weight: 600; 
    border-radius: 50px; 
    padding: 12px 28px; 
    border: none; 
    transition: 0.2s; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-custom-main:hover { 
    background: #6b0a09; 
    color: white; 
}

.btn-outline-custom { 
    border: 1px solid #e2e8f0; 
    padding: 0.75rem 1rem; 
    border-radius: 12px; 
    display: block; 
    text-align: center; 
    font-weight: 600; 
    color: var(--primary); 
    text-decoration: none; 
    margin-top: 1.5rem; 
    transition: 0.2s;
    cursor: pointer;
}

.btn-outline-custom:hover { 
    background: var(--primary); 
    color: white; 
    border-color: var(--primary);
}