/* ==========================================================================
   SBC Momentum — Feuille de style CSS Premium
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Palette HSL harmonieuse et premium */
    --primary-color: #0F2A43;        /* Navy profond (palette.md canonique) */
    --primary-light: #2C4A63;       /* Bleu acier */
    --primary-hover: #2C4A63;
    --accent-color: #C8973F;         /* Or chaud (palette.md canonique) */
    --accent-light: #d4a84b;         /* Or chaud clair */
    --accent-bg: rgba(200, 151, 63, 0.10);
    --accent-on-light: #8F6717;     /* Or fonce AA (5,1:1 sur blanc) - texte/CTA sur fond clair */
    --text-color: #15181C;           /* Encre */
    --text-light: #6B7077;           /* Gris moyen */
    --text-white: #ffffff;
    --bg-color: #F6F4EF;             /* Off-white */
    --card-bg: #ffffff;
    --border-color: #E4E0D8;         /* Beige bordure */
    
    /* Typographies */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Ombrages & Rayons */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   Reset & Styles Globaux
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   Typographie & Éléments Communs
   ========================================================================== */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.75rem;
}

h2.with-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

h2.with-line.center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
}

p.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.section-padding {
    padding: 6.5rem 0;
}

.bg-white-section {
    background-color: #ffffff;
}

.bg-dark-section {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
}

.bg-dark-section h1, 
.bg-dark-section h2, 
.bg-dark-section h3 {
    color: var(--text-white);
}

/* ==========================================================================
   Boutons & Éléments d'Action
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-on-light);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(200, 151, 63, 0.25);
}

.btn-primary:hover {
    background-color: #7A5713;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 151, 63, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: var(--bg-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   Navigation (Header)
   ========================================================================== */

.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--accent-color);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 1) 0%, rgba(226, 232, 240, 0.4) 90%);
    overflow: hidden;
    padding: 8rem 0 6rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.tagline-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background-color: var(--accent-bg);
    color: var(--accent-on-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
}

.hero-visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 1;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02) 0%, rgba(200, 151, 63, 0.06) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-dashboard-card {
    max-width: 92%;
    margin: 2rem auto;
    backdrop-filter: blur(4px);
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
}

.hero-kpi-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 260px;
    animation: float 6s ease-in-out infinite;
}

.hero-kpi-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.hero-kpi-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
}

.hero-kpi-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   Section Situations (Problème)
   ========================================================================== */

.section-intro {
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    text-align: center;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.situation-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.situation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 151, 63, 0.2);
}

.situation-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--accent-bg);
    border-radius: var(--radius-sm);
}

.situation-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.situation-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==========================================================================
   Section Notre Approche (Services Globaux)
   ========================================================================== */

.approach-intro {
    margin-bottom: 5rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.approach-pills {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-pill {
    display: flex;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.approach-pill:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.approach-pill-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.8;
}

.approach-pill-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.approach-pill-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   Section Cascade Copilots
   ========================================================================== */

.copilot-section {
    position: relative;
    background-color: var(--primary-color); /* Navy profond canonique */
}

.copilot-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
}

.copilot-timeline {
    position: relative;
    padding-left: 2rem;
}

.copilot-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.25rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #334155;
    border: 3px solid var(--primary-color);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-dot.active {
    background-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(200, 151, 63, 0.3);
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 151, 63, 0.3);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-header h3 {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.timeline-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.timeline-badge.priority {
    background-color: var(--accent-color);
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ==========================================================================
   Page Diagnostic Detail
   ========================================================================== */

.page-intro {
    padding: 6rem 0 4rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.diagnostic-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.diagnostic-hero-content {
    max-width: 620px;
}

.diagnostic-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pills-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
}

.pill-detail-card {
    background-color: #ffffff;
    padding: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.pill-detail-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pill-detail-card h3 i {
    color: var(--accent-color);
}

.pill-detail-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Ce que vous recevez */
.deliverables-box {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 3rem;
}

.deliverable-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.deliverable-item h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.deliverable-item h3 i {
    color: var(--accent-color);
}

.deliverable-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Page À Propos Detail
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4.5rem;
    align-items: flex-start;
}

.about-sidebar-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 110px;
}

.about-sidebar-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.about-sidebar-name {
    text-align: center;
    margin-bottom: 0.25rem;
}

.about-sidebar-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-sidebar-stats {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.about-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
}

.about-stat-row:last-child {
    margin-bottom: 0;
}

.about-stat-label {
    font-weight: 600;
    color: var(--primary-color);
}

.about-stat-val {
    color: var(--text-light);
    text-align: right;
}

.about-body h2 {
    margin-bottom: 1.5rem;
}

.about-body p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-body blockquote {
    background-color: var(--bg-color);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: rgba(15, 23, 42, 0.85);
}

.about-boards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.board-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.board-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.board-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Section CTA Finale / Contact Detail
   ========================================================================== */

.contact-section-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info-list {
    margin: 2.5rem 0;
    list-style: none;
    padding-left: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.contact-info-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 3px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.contact-form-container {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-color);
    background-color: var(--bg-color);
    transition: var(--transition-fast);
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(200, 151, 63, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

/* Simulation Widget Calendly */
.calendar-widget-sim {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.calendar-widget-header {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-widget-header h3 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.calendar-widget-header p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.calendar-grid-sim {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 1.5rem;
    gap: 0.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.calendar-day-header {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.calendar-day-cell {
    font-size: 0.85rem;
    padding: 0.75rem 0;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-day-cell.inactive {
    color: #cbd5e1;
    cursor: not-allowed;
}

.calendar-day-cell.active {
    background-color: var(--accent-bg);
    color: var(--accent-color);
    font-weight: 600;
}

.calendar-day-cell.active:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.calendar-slots-sim {
    padding: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.calendar-slot-btn {
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    background-color: transparent;
    transition: var(--transition-fast);
}

.calendar-slot-btn:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
    font-size: 0.9rem;
}

.footer h3, 
.footer h4 {
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-cta h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-cta p {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--text-white);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes float {
    0% { transform: translateY(0px) translateX(-30px); }
    50% { transform: translateY(-10px) translateX(-30px); }
    100% { transform: translateY(0px) translateX(-30px); }
}

/* Accessibilité : désactiver animations si l'utilisateur le préfère */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in-up,
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-kpi-card {
        animation: none !important;
    }
}

/* ==========================================================================
   Media Queries (Responsive)
   ========================================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .hero-grid,
    .situations-grid,
    .approach-grid,
    .copilot-grid,
    .diagnostic-hero-grid,
    .insights-hero-grid,
    .about-grid,
    .contact-section-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-kpi-card {
        left: 20px;
        bottom: 20px;
        animation: none;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-sidebar-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Cache les liens sur mobile (géré en JS) */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .pills-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .deliverables-box {
        padding: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* ==========================================================================
   Page Insights & Cartes d'Articles (Nouveau)
   ========================================================================== */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.insight-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 151, 63, 0.2);
}

.insights-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.insights-hero-image,
.insight-card > img {
    width: 100%;
    object-fit: cover;
}

.insights-hero-image {
    height: 360px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
}

.insight-card > img {
    height: 220px;
}

.insight-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-card-body h2 {
    font-size: 1.25rem;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.insight-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    flex: 1;
}

.insight-img-link {
    display: block;
    overflow: hidden;
    height: 200px;
    background-color: var(--primary-color);
}

.insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insight-card:hover .insight-img {
    transform: scale(1.05);
}

.insight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.insight-category {
    text-transform: uppercase;
    color: var(--accent-on-light);
    letter-spacing: 0.05em;
}

.insight-date {
    font-weight: 400;
}

.insight-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.insight-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insight-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-on-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: var(--transition-fast);
}

.insight-link:hover {
    color: #7A5713;
    gap: 0.5rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fade-in-up.is-visible,
.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animations d'apparition au défilement (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive pour la grille Insights */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insight-img-link {
        height: 220px;
    }
}


/* P1-6 (2026-06-18) - Focus clavier visible global (WCAG 2.4.7) */
:focus-visible {
    outline: 3px solid var(--accent-on-light);
    outline-offset: 2px;
}
.header :focus-visible,
.hero :focus-visible,
.footer :focus-visible,
footer :focus-visible {
    outline-color: var(--text-white);
}

/* ==========================================================================
   ACCUEIL — Refonte "Claude Design" (2026-06-20)
   ========================================================================== */
.eyebrow { display: inline-flex; align-items: center; gap: 0.9rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-on-light); margin-bottom: 1rem; }
.eyebrow::before { content: ''; width: 42px; height: 2px; background-color: var(--accent-color); display: block; }
.eyebrow-gold { color: var(--accent-color); }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 1rem; }

.home-hero { background: linear-gradient(180deg, #F6F4EF 0%, #F1EEE6 100%); position: relative; }
.home-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; padding: clamp(3rem, 7vw, 5.75rem) 1.5rem clamp(2.5rem, 6vw, 4.5rem); }
.home-hero-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.15rem, 5.2vw, 3.75rem); line-height: 1.04; letter-spacing: -0.02em; color: var(--primary-color); margin: 0.4rem 0 0; }
.home-hero-title span { color: var(--accent-color); }
.home-hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.65; color: #3a4047; margin: 1.4rem 0 0; max-width: 540px; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin: 1.6rem 0 0; padding: 0; font-size: 0.88rem; color: var(--text-light); }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust i { color: #1F8A5B; }
.hero-trust .fa-shield-halved { color: var(--primary-color); }

.home-hero-visual { position: relative; }
.cockpit { background: #ffffff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); box-shadow: 0 30px 70px -28px rgba(15,42,67,0.4), 0 6px 18px rgba(15,42,67,0.06); padding: 1.5rem; }
.cockpit-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cockpit-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--primary-color); }
.cockpit-tag { font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: #9aa0a6; background: var(--bg-color); border: 1px solid var(--border-color); padding: 0.25rem 0.6rem; border-radius: 50px; }
.cockpit-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cockpit-kpi { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 0.95rem 1rem; }
.cockpit-kpi-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; display: block; }
.cockpit-kpi-val { font-family: var(--font-heading); font-weight: 800; font-size: 1.55rem; color: var(--primary-color); display: block; margin-top: 0.2rem; letter-spacing: -0.02em; }
.cockpit-kpi-trend { font-size: 0.72rem; font-weight: 600; display: block; margin-top: 0.15rem; }
.cockpit-kpi-trend.up { color: #1F8A5B; }
.cockpit-chart { background: var(--primary-color); border-radius: var(--radius-md); padding: 1.1rem 1.1rem 0.9rem; margin-top: 0.75rem; }
.cockpit-chart-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 0.75rem; }
.cockpit-chart-head span { font-size: 0.72rem; color: #b9c4cf; font-weight: 500; }
.cockpit-chart-trend { font-family: var(--font-heading); font-weight: 700; color: var(--accent-color) !important; font-size: 0.85rem !important; }
.cockpit-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 64px; }
.cockpit-bars span { flex: 1; background: #345066; border-radius: 4px; }
.cockpit-bars span.hi { background: var(--accent-color); }
.cockpit-bars span.hi2 { background: var(--accent-light); }
.cockpit-badge { position: absolute; bottom: -18px; right: -10px; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: 0 14px 30px -12px rgba(15,42,67,0.3); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.7rem; }
.cockpit-badge-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(31,138,91,0.12); color: #1F8A5B; display: flex; align-items: center; justify-content: center; }
.cockpit-badge strong { font-family: var(--font-heading); font-size: 0.88rem; color: var(--primary-color); display: block; }
.cockpit-badge span { font-size: 0.72rem; color: var(--text-light); }

.proof-strip { border-top: 1px solid var(--border-color); background: rgba(255,255,255,0.5); }
.proof-strip-inner { display: flex; flex-wrap: wrap; gap: 0.75rem 2.25rem; align-items: center; justify-content: center; padding: 1.15rem 1.5rem; font-family: var(--font-heading); }
.proof-strip-inner span { font-size: 0.875rem; font-weight: 600; color: var(--primary-color); display: inline-flex; align-items: center; gap: 0.55rem; }
.proof-strip-inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-color); }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.15rem; }
.pain-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.65rem; transition: var(--transition-smooth); }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(15,42,67,0.3); border-color: #d8d0c2; }
.pain-quote { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--accent-color); }
.pain-card p { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; line-height: 1.4; color: var(--primary-color); margin: 0.35rem 0 0; }

.cred { background: var(--primary-color); color: #fff; }
.cred-grid, .home-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(2.25rem, 5vw, 4.5rem); align-items: center; }
.home-contact-grid { align-items: start; }
.cred .eyebrow { color: var(--accent-color); }
.cred .eyebrow::before { background: var(--accent-color); }
.cred-title { font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.55rem); line-height: 1.12; letter-spacing: -0.02em; color: #fff; margin: 0; padding: 0; }
.cred-lead { font-size: 1.1rem; line-height: 1.7; color: #c4cdd6; margin: 1.4rem 0 0; }
.cred-quote { border-left: 3px solid var(--accent-color); padding: 0.25rem 0 0.25rem 1.4rem; margin: 1.9rem 0 0; }
.cred-quote p { font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem; line-height: 1.4; color: #fff; margin: 0; }
.cred-quote footer { font-size: 0.875rem; color: #9fb0bf; margin-top: 0.85rem; }
.cred-side { display: grid; gap: 1rem; }
.cred-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cred-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 1.4rem; }
.cred-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2rem, 5vw, 2.6rem); color: var(--accent-color); letter-spacing: -0.03em; line-height: 1; display: block; }
.cred-stat-label { font-size: 0.8rem; color: #b9c4cf; margin-top: 0.6rem; line-height: 1.4; display: block; }
.cred-pmo { background: rgba(200,151,63,0.1); border: 1px solid rgba(200,151,63,0.3); border-radius: var(--radius-md); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; }
.cred-pmo-icon { width: 44px; height: 44px; flex: none; border-radius: 50%; background: rgba(200,151,63,0.2); color: var(--accent-color); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cred-pmo strong { font-family: var(--font-heading); font-size: 1.05rem; color: #fff; display: block; }
.cred-pmo p { font-size: 0.9rem; line-height: 1.55; color: #c4cdd6; margin: 0.4rem 0 0; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem; }
.svc-card { position: relative; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.9rem; display: flex; flex-direction: column; transition: var(--transition-smooth); box-shadow: var(--shadow-sm); }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -24px rgba(15,42,67,0.34); border-color: #d8d0c2; }
.svc-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--accent-bg); color: var(--accent-on-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.svc-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--primary-color); margin: 1.25rem 0 0.4rem; }
.svc-card > p { font-size: 0.95rem; line-height: 1.6; color: var(--text-light); margin: 0 0 1.25rem; }
.svc-badge { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-on-light); background: var(--accent-bg); border: 1px solid rgba(200,151,63,0.32); padding: 0.25rem 0.65rem; border-radius: 50px; font-family: var(--font-heading); }
.ba { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 0.9rem 1rem; margin-top: auto; }
.ba-before, .ba-after { display: flex; align-items: center; gap: 0.65rem; font-size: 0.875rem; }
.ba-before { color: #8a8378; text-decoration: line-through; text-decoration-color: #c9b18a; }
.ba-before span, .ba-after span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; flex: none; }
.ba-before span { color: #a99a7d; }
.ba-after { color: var(--primary-color); font-weight: 600; margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px solid var(--border-color); }
.ba-after span { color: #1F8A5B; }
.svc-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.15rem; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--primary-color); }
.svc-link:hover { color: var(--accent-on-light); gap: 0.75rem; }

.proof-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.proof-list { list-style: none; padding: 0; margin: 1.75rem 0; display: grid; gap: 1rem; }
.proof-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 1rem; line-height: 1.55; color: var(--text-color); }
.proof-list i { color: var(--accent-on-light); margin-top: 0.2rem; }
.proof-figure { margin: 0; }
.proof-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-premium); border: 1px solid var(--border-color); }
.proof-figure figcaption { font-size: 0.85rem; color: var(--text-light); margin-top: 0.85rem; text-align: center; }

.home-contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.8rem; }
.home-contact-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 1rem; color: #e7ecf1; }
.home-contact-list i { color: var(--accent-color); }
.home-form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }
.hp-field { position: absolute; left: -9999px; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin: 0.6rem 0 0; line-height: 1.5; }

.situation-card, .insight-card, .pill-detail-card, .about-sidebar-card, .contact-form-container, .board-card { border-radius: var(--radius-lg); }

@media (max-width: 900px) {
    .home-hero-grid { grid-template-columns: 1fr; }
    .home-hero-visual { max-width: 460px; }
    .proof-layout { grid-template-columns: 1fr; }
    .cred-grid, .home-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .cred-stats { grid-template-columns: 1fr; }
    .cockpit-badge { right: 0; }
}

/* ==========================================================================
   PREUVE SOCIALE v2 (2026-06-21) — polish a11y + bandeau crédibilité
   Source : 03-design/polish-premium.css + module-preuve-sociale.html
   ADAPTÉ au repo réel (voir notes). Ce qui est volontairement NON repris du
   drop-in générique, parce qu'il écraserait/régresserait l'existant :
     - [class*="-card"]:hover  → écraserait les hovers bespoke (.svc-card -5px,
       .situation-card/.insight-card -8px). La base les gère déjà mieux.
     - a:focus-visible{outline:var(--accent-color)} → régression a11y : la base
       a déjà :focus-visible en var(--accent-on-light) (#8F6717, AA sur clair).
     - .btn-secondary::after (souligné doré) → le secondaire ici est bordé +
       remplit au survol ; le souligné clasherait.
     - .reveal{...}  → l'animation d'apparition est déjà gérée par la base + app.js.
     - html{scroll-behavior}, @media reduced-motion → déjà présents dans la base.
   ========================================================================== */

/* Tokens requis par le module preuve sociale (absents de :root au-dessus) */
:root {
  --shadow-soft: 0 1px 2px rgba(15,42,67,.04), 0 8px 24px rgba(15,42,67,.06);
  --shadow-hover: 0 4px 8px rgba(15,42,67,.06), 0 16px 40px rgba(15,42,67,.10);
  --ease: .3s cubic-bezier(.22,.61,.36,1);
}

/* Polish — cartes services : liseré doré révélé au survol (drop-in ciblait
   .service-card ; classe réelle = .svc-card, déjà position:relative). */
.svc-card { overflow: hidden; }
.svc-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }

/* Polish — chiffres-clés : alignement tabular (sans toucher la couleur, déjà AA). */
.cred-stat-num, .cockpit-kpi-val { font-variant-numeric: tabular-nums; }

/* Polish — cible tactile ≥ 44px (plancher mobile, n'affecte pas le layout). */
.btn { min-height: 44px; }

/* ---------- Conteneur partagé preuve sociale ---------- */
.sbc-proof__wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- BANDEAU DE CRÉDIBILITÉ (fond navy) ---------- */
.sbc-cred { padding: clamp(40px,6vw,64px) 0; background: var(--primary-color); color: #fff; }
.sbc-cred__lead { font-family: var(--font-heading); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-light);
  text-align: center; margin: 0 0 28px; }
.sbc-cred__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.sbc-cred__item { flex: 1 1 180px; max-width: 260px; border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding: 18px 20px; background: rgba(255,255,255,.03);
  transition: border-color var(--ease), transform var(--ease); }
.sbc-cred__item:hover { border-color: rgba(200,151,63,.55); transform: translateY(-2px); }
.sbc-cred__role { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; margin: 0 0 4px; color: #fff; }
.sbc-cred__detail { margin: 0; font-size: .86rem; color: rgba(255,255,255,.72); }
.sbc-cred__foot { text-align: center; margin: 26px 0 0; font-size: .84rem; color: rgba(255,255,255,.6); }
@media (prefers-reduced-motion: reduce) {
  .sbc-cred__item { transition: none; }
  .sbc-cred__item:hover { transform: none; }
}
