/*
Theme Name: BCM Astra Child
Template: astra
Description: Theme enfant BCM Consulting Engineering - design moderne expert d'assure
Author: BCM
Version: 1.0.0
Text Domain: bcm-astra-child
*/

/* =============================================================
   1. DESIGN TOKENS - palette, typo, espacements
   ============================================================= */
:root {
    --bcm-forest: #1B4332;
    --bcm-forest-dark: #102E24;
    --bcm-sage: #52B788;
    --bcm-sage-light: #95D5B2;
    --bcm-mint: #D8F3DC;
    --bcm-charcoal: #1A1D24;
    --bcm-slate: #2D3142;
    --bcm-gray-700: #495057;
    --bcm-gray-500: #6C757D;
    --bcm-gray-300: #CED4DA;
    --bcm-gray-100: #F1F3F5;
    --bcm-cream: #F8F9FA;
    --bcm-white: #FFFFFF;
    --bcm-gold: #C9A961;

    --bcm-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --bcm-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --bcm-radius-sm: 4px;
    --bcm-radius-md: 8px;
    --bcm-radius-lg: 16px;

    --bcm-shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.06);
    --bcm-shadow-md: 0 8px 24px rgba(27, 67, 50, 0.10);
    --bcm-shadow-lg: 0 24px 48px rgba(27, 67, 50, 0.14);

    --bcm-transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);

    --bcm-container: 1200px;
}

/* =============================================================
   2. TYPOGRAPHY GLOBALE
   ============================================================= */
body,
.ast-container,
.entry-content {
    font-family: var(--bcm-font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--bcm-slate);
    font-feature-settings: 'kern', 'liga', 'calt';
}

h1, h2, h3, h4, .site-title {
    font-family: var(--bcm-font-serif);
    font-weight: 800;
    color: var(--bcm-charcoal);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1.25rem; }

a { color: var(--bcm-forest); text-decoration: none; transition: color var(--bcm-transition); }
a:hover { color: var(--bcm-sage); }

/* =============================================================
   3. LAYOUT - container & sections
   ============================================================= */
.bcm-section {
    padding: clamp(4rem, 8vw, 7rem) 1.5rem;
    position: relative;
}
.bcm-section--tight { padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; }

.bcm-container {
    max-width: var(--bcm-container);
    margin: 0 auto;
    width: 100%;
}

.bcm-bg-cream { background: var(--bcm-cream); }
.bcm-bg-mint { background: var(--bcm-mint); }
.bcm-bg-forest { background: var(--bcm-forest); color: var(--bcm-cream); }
.bcm-bg-forest h1, .bcm-bg-forest h2, .bcm-bg-forest h3 { color: var(--bcm-white); }
.bcm-bg-forest a { color: var(--bcm-sage-light); }

/* =============================================================
   4. HERO
   ============================================================= */
.bcm-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 4rem;
    background:
        radial-gradient(ellipse at top right, rgba(82, 183, 136, 0.12), transparent 60%),
        linear-gradient(160deg, var(--bcm-cream) 0%, var(--bcm-mint) 100%);
    overflow: hidden;
}
.bcm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(27, 67, 50, 0.07) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}
.bcm-hero__inner {
    position: relative;
    max-width: var(--bcm-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
@media (max-width: 900px) {
    .bcm-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.bcm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(27, 67, 50, 0.08);
    color: var(--bcm-forest);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}
.bcm-hero__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bcm-sage);
    border-radius: 50%;
    animation: bcm-pulse 2s ease-in-out infinite;
}
@keyframes bcm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.bcm-hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    margin: 0 0 1.5rem;
}
.bcm-hero h1 em {
    font-style: italic;
    color: var(--bcm-forest);
    font-weight: 700;
}
.bcm-hero__lead {
    font-size: 1.2rem;
    color: var(--bcm-gray-700);
    margin-bottom: 2rem;
    max-width: 38rem;
}
.bcm-hero__visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--bcm-radius-lg);
    background:
        linear-gradient(135deg, var(--bcm-forest) 0%, var(--bcm-sage) 100%);
    box-shadow: var(--bcm-shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bcm-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%);
}
.bcm-hero__visual-content {
    position: relative;
    color: var(--bcm-white);
    text-align: center;
    padding: 2rem;
    z-index: 1;
}
.bcm-hero__visual-content .number {
    font-family: var(--bcm-font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--bcm-white);
    line-height: 1;
    display: block;
}
.bcm-hero__visual-content .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* =============================================================
   5. BUTTONS
   ============================================================= */
.bcm-btn,
.entry-content .bcm-btn,
.wp-block-button .bcm-btn,
a.bcm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    border-radius: var(--bcm-radius-md);
    font-family: var(--bcm-font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: all var(--bcm-transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}
.bcm-btn--primary {
    background: var(--bcm-forest);
    color: var(--bcm-white) !important;
}
.bcm-btn--primary:hover {
    background: var(--bcm-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--bcm-shadow-md);
    color: var(--bcm-white) !important;
}
.bcm-btn--secondary {
    background: transparent;
    color: var(--bcm-forest) !important;
    border-color: var(--bcm-forest);
}
.bcm-btn--secondary:hover {
    background: var(--bcm-forest);
    color: var(--bcm-white) !important;
}
.bcm-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bcm-white) !important;
    backdrop-filter: blur(8px);
}
.bcm-btn--ghost:hover {
    background: var(--bcm-white);
    color: var(--bcm-forest) !important;
}
.bcm-btn::after {
    content: '→';
    transition: transform var(--bcm-transition);
}
.bcm-btn:hover::after { transform: translateX(4px); }
.bcm-btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* =============================================================
   6. SECTION HEADINGS
   ============================================================= */
.bcm-eyebrow {
    color: var(--bcm-sage);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}
.bcm-section-title {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}
.bcm-section-title h2 {
    margin: 0 0 1rem;
}
.bcm-section-title p {
    font-size: 1.15rem;
    color: var(--bcm-gray-700);
}

/* =============================================================
   7. GRID & CARDS
   ============================================================= */
.bcm-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.bcm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bcm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bcm-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .bcm-grid--3, .bcm-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bcm-grid--2, .bcm-grid--3, .bcm-grid--4 { grid-template-columns: 1fr; }
}

.bcm-card {
    background: var(--bcm-white);
    border-radius: var(--bcm-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--bcm-gray-100);
    transition: all var(--bcm-transition);
    position: relative;
    overflow: hidden;
}
.bcm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bcm-shadow-md);
    border-color: var(--bcm-sage-light);
}
.bcm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bcm-forest), var(--bcm-sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--bcm-transition);
}
.bcm-card:hover::before { transform: scaleX(1); }
.bcm-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--bcm-radius-md);
    background: var(--bcm-mint);
    color: var(--bcm-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}
.bcm-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.4rem;
}
.bcm-card p { color: var(--bcm-gray-700); margin: 0; }

/* =============================================================
   8. STATS BAND
   ============================================================= */
.bcm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    background: var(--bcm-white);
    border-radius: var(--bcm-radius-lg);
    box-shadow: var(--bcm-shadow-md);
    margin-top: -4rem;
    position: relative;
    z-index: 2;
}
@media (max-width: 700px) {
    .bcm-stats { grid-template-columns: repeat(2, 1fr); }
}
.bcm-stat { text-align: center; }
.bcm-stat__number {
    font-family: var(--bcm-font-serif);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--bcm-forest);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}
.bcm-stat__label {
    font-size: 0.9rem;
    color: var(--bcm-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* =============================================================
   9. PROCESS / STEPS
   ============================================================= */
.bcm-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: bcm-step;
}
@media (max-width: 900px) {
    .bcm-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bcm-process { grid-template-columns: 1fr; }
}
.bcm-step {
    position: relative;
    padding: 2.5rem 1.5rem 2rem;
    background: var(--bcm-white);
    border-radius: var(--bcm-radius-lg);
    counter-increment: bcm-step;
}
.bcm-step::before {
    content: counter(bcm-step, decimal-leading-zero);
    position: absolute;
    top: -0.6rem;
    left: 1.5rem;
    font-family: var(--bcm-font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bcm-sage);
    line-height: 1;
    background: var(--bcm-white);
    padding: 0 0.5rem;
}
.bcm-step h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
}
.bcm-step p {
    font-size: 0.95rem;
    color: var(--bcm-gray-700);
}

/* =============================================================
   10. SPLIT CONTENT (image/text)
   ============================================================= */
.bcm-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .bcm-split { grid-template-columns: 1fr; gap: 2.5rem; }
}
.bcm-split--reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
    .bcm-split--reverse > div:first-child { order: 0; }
}
.bcm-split__visual {
    aspect-ratio: 4/3;
    border-radius: var(--bcm-radius-lg);
    background: linear-gradient(135deg, var(--bcm-forest), var(--bcm-sage));
    box-shadow: var(--bcm-shadow-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bcm-white);
    padding: 3rem;
    text-align: center;
}

/* =============================================================
   11. CTA BAND
   ============================================================= */
.bcm-cta {
    background:
        radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.4), transparent 50%),
        linear-gradient(135deg, var(--bcm-forest-dark) 0%, var(--bcm-forest) 100%);
    color: var(--bcm-white);
    text-align: center;
    padding: clamp(4rem, 7vw, 6rem) 1.5rem;
    position: relative;
    overflow: hidden;
}
.bcm-cta h2 { color: var(--bcm-white); margin: 0 0 1rem; }
.bcm-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 40rem;
    margin: 0 auto 2rem;
}
.bcm-cta .bcm-btn-group { justify-content: center; }

/* =============================================================
   12. CONTACT INFO BLOCK
   ============================================================= */
.bcm-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
@media (max-width: 800px) {
    .bcm-contact-info { grid-template-columns: 1fr; }
}
.bcm-contact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--bcm-radius-lg);
    background: var(--bcm-white);
    border: 1px solid var(--bcm-gray-100);
    transition: all var(--bcm-transition);
}
.bcm-contact-card:hover {
    border-color: var(--bcm-sage);
    transform: translateY(-4px);
}
.bcm-contact-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--bcm-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--bcm-forest);
}
.bcm-contact-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bcm-gray-500);
}
.bcm-contact-card a, .bcm-contact-card p {
    font-size: 1.05rem;
    color: var(--bcm-charcoal);
    font-weight: 600;
}

/* =============================================================
   13. CONTACT FORM 7
   ============================================================= */
.wpcf7 {
    background: var(--bcm-white);
    padding: 3rem;
    border-radius: var(--bcm-radius-lg);
    box-shadow: var(--bcm-shadow-md);
    margin-top: 2rem;
}
@media (max-width: 600px) { .wpcf7 { padding: 2rem 1.5rem; } }

.wpcf7-form-control-wrap { display: block; margin-bottom: 1.5rem; }
.wpcf7 label {
    display: block;
    font-weight: 600;
    color: var(--bcm-charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--bcm-font-sans);
    font-size: 1rem;
    background: var(--bcm-cream);
    border: 2px solid transparent;
    border-radius: var(--bcm-radius-md);
    color: var(--bcm-charcoal);
    transition: all var(--bcm-transition);
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    background: var(--bcm-white);
    border-color: var(--bcm-sage);
    outline: none;
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 .wpcf7-submit {
    background: var(--bcm-forest);
    color: var(--bcm-white);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--bcm-font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--bcm-radius-md);
    cursor: pointer;
    transition: all var(--bcm-transition);
    width: 100%;
}
.wpcf7 .wpcf7-submit:hover {
    background: var(--bcm-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--bcm-shadow-md);
}
.wpcf7-not-valid-tip { color: #C03221; font-size: 0.85rem; margin-top: 0.25rem; }
.wpcf7 .wpcf7-response-output {
    border-radius: var(--bcm-radius-md);
    padding: 1rem;
    margin: 1.5rem 0 0;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--bcm-sage); background: var(--bcm-mint); }

.bcm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) { .bcm-form-row { grid-template-columns: 1fr; } }

/* =============================================================
   14. HEADER / NAV
   ============================================================= */
.ast-primary-header-bar {
    backdrop-filter: blur(12px) saturate(180%);
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid var(--bcm-gray-100);
}

/* Logo SVG dimensions explicites */
.custom-logo,
img.astra-logo-svg {
    width: auto !important;
    max-width: 220px !important;
    height: 52px !important;
    display: block;
}
.site-logo-img { display: inline-block; }
.site-logo-img + .ast-site-title-wrap,
.wp-custom-logo .ast-site-title-wrap { display: none !important; }

.site-title a, .site-title { color: var(--bcm-charcoal) !important; }
.ast-builder-menu-1 .menu-link {
    font-family: var(--bcm-font-sans);
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--bcm-slate) !important;
    transition: color var(--bcm-transition);
    position: relative;
}
.ast-builder-menu-1 .menu-link:hover,
.ast-builder-menu-1 .current-menu-item > .menu-link {
    color: var(--bcm-forest) !important;
}
.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bcm-sage);
    border-radius: 2px;
}

/* =============================================================
   15. FOOTER
   ============================================================= */
.site-footer, footer.site-footer {
    background: var(--bcm-charcoal) !important;
    color: var(--bcm-gray-300);
    padding: 0 !important;
}
.site-footer a { color: var(--bcm-sage-light); }
.site-footer a:hover { color: var(--bcm-white); }
.bcm-footer-top {
    padding: 4rem 1.5rem 3rem;
    max-width: var(--bcm-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 900px) { .bcm-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bcm-footer-top { grid-template-columns: 1fr; } }
.bcm-footer-col h4 {
    color: var(--bcm-white);
    font-family: var(--bcm-font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin: 0 0 1rem;
}
.bcm-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bcm-footer-col li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.bcm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--bcm-gray-500);
}
.bcm-footer-bottom a { color: var(--bcm-gray-300); }

/* =============================================================
   16. PAGE HEADER (sous-pages)
   ============================================================= */
.bcm-page-header {
    background:
        radial-gradient(circle at 80% 50%, rgba(82, 183, 136, 0.15), transparent 50%),
        linear-gradient(135deg, var(--bcm-cream) 0%, var(--bcm-mint) 100%);
    padding: 8rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bcm-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(27, 67, 50, 0.07) 1px, transparent 0);
    background-size: 32px 32px;
}
.bcm-page-header h1 {
    margin: 0;
    position: relative;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.bcm-page-header p {
    position: relative;
    max-width: 42rem;
    margin: 1rem auto 0;
    color: var(--bcm-gray-700);
    font-size: 1.15rem;
}

/* =============================================================
   17. CONTRACT / LEGAL CONTENT
   ============================================================= */
.bcm-legal-article {
    background: var(--bcm-white);
    padding: 2.5rem;
    border-radius: var(--bcm-radius-lg);
    border-left: 4px solid var(--bcm-sage);
    margin-bottom: 1.5rem;
    box-shadow: var(--bcm-shadow-sm);
}
.bcm-legal-article h3 {
    color: var(--bcm-forest);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bcm-legal-article h3 .bcm-art-num {
    display: inline-block;
    background: var(--bcm-mint);
    color: var(--bcm-forest);
    padding: 0.25rem 0.6rem;
    border-radius: var(--bcm-radius-sm);
    font-size: 0.85rem;
    margin-right: 0.6rem;
    font-family: var(--bcm-font-sans);
}
.bcm-legal-article p { margin: 0.5rem 0; color: var(--bcm-gray-700); }

/* =============================================================
   18. PRICING
   ============================================================= */
.bcm-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}
@media (max-width: 700px) { .bcm-pricing { grid-template-columns: 1fr; } }
.bcm-price-card {
    background: var(--bcm-white);
    border: 2px solid var(--bcm-gray-100);
    border-radius: var(--bcm-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--bcm-transition);
    position: relative;
}
.bcm-price-card--featured {
    border-color: var(--bcm-sage);
    background: linear-gradient(180deg, var(--bcm-mint) 0%, var(--bcm-white) 25%);
    transform: scale(1.02);
}
.bcm-price-card__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bcm-sage);
    font-weight: 700;
}
.bcm-price-card__price {
    font-family: var(--bcm-font-serif);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--bcm-charcoal);
    line-height: 1;
    margin: 1rem 0;
}
.bcm-price-card__price small {
    font-size: 1rem;
    color: var(--bcm-gray-500);
    font-weight: 400;
    font-family: var(--bcm-font-sans);
}
.bcm-price-card__desc {
    color: var(--bcm-gray-700);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}

/* =============================================================
   19. UTILS
   ============================================================= */
.bcm-text-center { text-align: center; }
.bcm-mt-0 { margin-top: 0; }
.bcm-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bcm-gray-300), transparent);
    margin: 4rem auto;
    max-width: 200px;
    border: none;
}
.bcm-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.bcm-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--bcm-gray-700);
}
.bcm-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 24px;
    height: 24px;
    background: var(--bcm-mint);
    color: var(--bcm-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Hide page title sur les pages avec hero personnalise */
body.page .entry-header.ast-no-title { display: none; }
.ast-page-builder-template .site-content .ast-container,
.ast-page-builder-template .entry-content,
.ast-page-builder-template .site-content > .ast-container {
    max-width: none !important;
    padding: 0 !important;
}
