:root {
    --red:   #9E001F;
    --dark:  #0f1117;
    --light: #f8f9fa;
    --white: #ffffff;
    --muted: #6c757d;
    --font-heading: 'JetBrains Mono', monospace;
    --font-btn:     'Oswald', sans-serif;
}

* { box-sizing: border-box; }

/* ── Typography base ── */
body { font-family: 'JetBrains Mono', monospace; }
/* ════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 4px; /* matches your .btn border-radius */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.slider-btn svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.slider-btn--prev { left: 14px; }
.slider-btn--next { right: 14px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.slider-dot.active {
    background: var(--red); /* uses your --red variable */
    width: 22px;             /* pill shape for active dot */
    border-radius: 4px;
}
.slide-tagline,
.slide-desc,
.slide-title-main {
    transition: opacity 0.3s ease;
}
/* ════════════════════════════════════════
   SERVICES STACKED V2
════════════════════════════════════════ */
.services-section-v2 {
    background: #fff;
    padding: 5rem 0 0;
}

.svc-header {
    margin-bottom: 4rem;
}

/* Stack container — full width, no container */
.svc-stack {
    display: flex;
    flex-direction: column;
}

/* Each row */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    text-decoration: none;
    color: inherit;
    border-top: 1px solid #e8e8e8;
    transition: background 0.25s ease;
    overflow: hidden;
}

.svc-row:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.svc-row:hover {
    background: #fafafa;
}

/* Reverse layout — image on right */
.svc-row--reverse {
    direction: rtl;
}
.svc-row--reverse > * {
    direction: ltr;
}

/* Image side */
.svc-row__img-wrap {
    position: relative;
    overflow: hidden;
}

.svc-row__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
    filter: brightness(0.92);
}

.svc-row:hover .svc-row__img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

/* Category tag on image */
.svc-row__tag {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    font-family: var(--font-heading);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: .28rem .75rem;
    border-radius: 3px;
}

/* Text side */
.svc-row__content {
    padding: 3.5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

/* Number */
.svc-row__num {
    font-family: var(--font-heading);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .2em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

/* Title */
.svc-row__title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 1rem;
    transition: color 0.2s;
}

.svc-row:hover .svc-row__title {
    color: var(--red);
}

/* Description */
.svc-row__desc {
    font-family: var(--font-heading);
    font-size: .82rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 2rem;
    max-width: 38ch;
}

/* CTA link */
.svc-row__cta {
    font-family: var(--font-btn);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-transform: uppercase;
    transition: color 0.2s, gap 0.2s;
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1.5px solid var(--dark);
}

.svc-row__cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s;
}

.svc-row:hover .svc-row__cta {
    color: var(--red);
    border-bottom-color: var(--red);
    gap: .85rem;
}

.svc-row:hover .svc-row__cta svg {
    transform: translateX(4px);
}

/* Divider line between rows */
.svc-row + .svc-row {
    border-top: 1px solid #e8e8e8;
}

/* Responsive */
@media (max-width: 991px) {
    .svc-row,
    .svc-row--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: unset;
    }

    .svc-row__img-wrap {
        height: 260px;
    }

    .svc-row__content {
        padding: 2.5rem 2rem;
    }

    .svc-row--reverse .svc-row__img-wrap {
        order: -1;
    }
}

@media (max-width: 600px) {
    .svc-row__content {
        padding: 2rem 1.5rem;
    }

    .svc-row__img-wrap {
        height: 220px;
    }
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 0 5rem;
}

/* Last 2 cards centered on row 2 */
.svc-card:nth-child(4) { grid-column: 1 / 2; margin-left: auto; width: 100%; }
.svc-card:nth-child(5) { grid-column: 2 / 3; }

.svc-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.svc-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

/* Image */
.svc-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.svc-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
    transition: transform 0.65s ease, filter 0.65s ease;
}
.svc-card:hover .svc-card__img {
    transform: scale(1.05);
    filter: brightness(0.82);
}
.svc-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: .28rem .75rem;
    border-radius: 3px;
}

/* Content */
.svc-card__content {
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.svc-card__num {
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .2em;
    color: var(--red);
    text-transform: uppercase;
    display: block;
    margin-bottom: .75rem;
}
.svc-card__title {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 .75rem;
    transition: color 0.2s;
}
.svc-card:hover .svc-card__title {
    color: var(--red);
}
.svc-card__desc {
    font-size: .82rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem;
    flex: 1;
}
.svc-card__cta {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--dark);
    padding-bottom: 2px;
    width: fit-content;
    transition: color 0.2s, gap 0.2s, border-color 0.2s;
}
.svc-card__cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.svc-card:hover .svc-card__cta {
    color: var(--red);
    border-bottom-color: var(--red);
    gap: .85rem;
}
.svc-card:hover .svc-card__cta svg { transform: translateX(4px); }

/* Responsive */
@media (max-width: 991px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-card:nth-child(4),
    .svc-card:nth-child(5) { grid-column: auto; margin-left: 0; width: auto; }
}
@media (max-width: 600px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-card__img-wrap { height: 180px; }
}

/* Progress bar at bottom of slider */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--red);
    width: 0%;
    z-index: 10;
    transition: width 0.1s linear;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .6rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-text {
    font-family: var(--font-heading);
    color: #555;
    line-height: 1.8;
    font-size: .9rem;
}
.section-pad { padding: 5rem 0; }

/* ── Buttons ── */
.btn {
    font-family: var(--font-btn) !important;
    letter-spacing: .05em;
    font-weight: 600;
    border-radius: 4px;
    font-size: .9rem;
}
.btn-red {
    background: var(--red);
    color: #fff;
    border: 2px solid var(--red);
    padding: .65rem 1.75rem;
    transition: background .2s, color .2s;
    border-radius: 20px !important;
}
.btn-red:hover { background: #7a0018; border-color: #7a0018; color: #fff; }
.btn-outline-red {
    background: transparent;
    color: black;
    border: 2px solid black;
    border-radius: 20px !important;
    padding: .65rem 1.75rem;
    transition: background .2s, border-color .2s;
}
.btn-outline-red:hover { border-color: var(--red); background: rgba(255,255,255,.08); color: var(--red); }
.btn-outline-danger-dark {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    padding: .55rem 1.5rem;
    transition: background .2s, color .2s;
}
.btn-outline-danger-dark:hover { background: var(--red); color: #fff; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-section {
    border-top: 1px solid var(--red);
    position: relative;
    height: 68vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    background: #fff;

}

/* Left dark panel */
.hero-left {
    background: #ededef;
    padding: 7rem 3rem 10rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}


/* Right image panel */
.hero-right {
    position: relative;  /* add this */
    overflow: hidden;
}
.hero-right img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* Tagline */
.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.25rem;
    display: block;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 900;
    color: black;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--red); }
.hero-desc {
    font-family: var(--font-heading);
    font-size: .85rem;
    color: black;
    line-height: 1.8;
    width: 800px;
    margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats strip */
.hero-stats {

    position: absolute;
    bottom: 0; left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--red);
    z-index: 3;
    background: #ededef; /* replace the rgba + backdrop-filter with this */
    backdrop-filter: blur(10px);
}
.hero-stat {
    
    padding: 1.4rem 1.5rem;
    text-align: center;
}
.hero-stat + .hero-stat {
    border-left: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #4D4443;
    line-height: 1;
    display: block;
    margin-bottom: .3rem;
}
.hero-stat-num sup { font-size: .9rem; }
.hero-stat-label {
    font-family: var(--font-heading);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4D4443;
    display: block;
}

@media (max-width: 768px) {
    .hero-section { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 5rem 1.5rem 9rem; }
    .hero-left::after { display: none; }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-section { background: #fff; }
.about-img-wrap {
    position: relative;
    display: block;
}
.about-img-wrap img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 6px;
}
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.mini-feature {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.1rem 1rem;
    border-left: 3px solid var(--red);
    transition: transform .2s, box-shadow .2s;
}
.mini-feature:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.mini-feature h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .1rem;
}
.mini-feature small {
    font-family: var(--font-heading);
    font-size: .75rem;
    color: var(--muted);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section { 
    min-height: 80vh;
 }
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 3.5rem 2.5rem !important;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    height: 100% !important;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,.1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: rgba(158,0,31,.06);
    position: absolute;
    top: 1.9rem; left: 2.5rem;
    line-height: 1;
    pointer-events: none;
}
.service-card-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: rgba(158,0,31,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    margin-bottom: 1.1rem;
    transition: background .2s, color .2s;
}
.service-card:hover .service-card-icon { background: var(--red); color: #fff; }
.service-card-title {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: .6rem;
}
.service-card-desc {
    font-family: var(--font-heading);
    font-size: .8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.service-card-link {
    font-family: var(--font-btn);
    font-size: .82rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: .4rem;
    letter-spacing: .04em;
    transition: gap .2s;
}
.service-card-link:hover { gap: .7rem; color: var(--red); }

/* ════════════════════════════════════════
   BAND (Intervention Rapide)
════════════════════════════════════════ */
.band-section {
    background-color:#4a5f80;
    padding: 5rem 0;
}
.band-section .section-title { color: #fff !important; }
.check-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: .85rem;
    margin-top: 1.5rem;
}
.check-list li {
    font-family: var(--font-heading);
    display: flex; align-items: center; gap: .75rem;
    color: rgba(255,255,255,.8);
    font-size: .85rem;
}
.check-list li i { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   PRODUCTS / CATALOGUE
════════════════════════════════════════ */
/* Section Base styling */
.products-section {
    background-color: #f9fbfb; /* Light clean off-white background matching the image */
    padding: 60px 0;
    border-bottom: 1px solid var(--red);
}

.section-title {

    text-transform: none;
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #4a4a4a !important;
}

/* Tabs Container */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between each tab item */
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Individual Tab Button styling */
.product-tab {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0;
    width: 170px; /* Controlled widths to mimic the picture structure */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* The light grey square container */
.product-tab .tab-icon-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    background-color: #e9ecef; /* Light gray box background */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: background-color 0.2s ease;
}

/* Red Icons style */
.product-tab .tab-icon-box i {
    font-size: 2.5rem;
    color: #a30021; /* Rich dark red color from image */
}

/* Text labels under the square */
.product-tab .tab-label {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    text-align: center;
}

/* Interaction States (Hover & Active state management) */
.product-tab:hover .tab-icon-box {
    background-color: #dee2e6; /* Subtly darkens box on hover */
}

.product-tab.active .tab-icon-box {
    background-color: #e2e5e9;
    box-shadow: inset 0px 0px 0px 2px #a30021; /* Optional: adds a thin dark red border accent to the active tab box */
}

.product-tab:focus {
    outline: none;
}

/* ════════════════════════════════════════
   PARTNERS
════════════════════════════════════════ */
.partners-section { background: #fff; padding: 5rem 0; border-bottom: 1px solid var(--red); }
.partner-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    height: 90px;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem 1.5rem;
    transition: transform .2s, box-shadow .2s;
}
.partner-box:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.partner-box img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter .2s;
}
.partner-box:hover img { filter: grayscale(0); }

/* ════════════════════════════════════════
   SECTORS + CERTIFICATIONS
════════════════════════════════════════ */
/* Base Section Setup */
.sectors-certs-section {
    background-color: #f9fbfb;
    padding: 60px 0;
}

.sectors-certs-section .section-title {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 0;
}

/* ==========================================================================
   Left Side: Sectors Styling (Rounded Outline Cards)
   ========================================================================== */
.sector-card {
    border: 1.5px solid #a30021; /* Red thin borders matching the prompt image */
    border-radius: 16px;
    background-color: #ffffff;
    width: 100%;
    aspect-ratio: 1.15 / 1; /* Slightly horizontal rectangular box setup */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    text-align: center;
}

.sector-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sector-card-content i {
    font-size: 1.6rem;
    color: #a30021;
}

.sector-card-content span {
    font-family: 'Courier New', Courier, monospace; /* Monospace sub-label text style */
    font-size: 0.85rem;
    font-weight: bold;
    color: #2b2b2b;
    line-height: 1.2;
}

/* ==========================================================================
   Right Side: Certifications Styling (Gradients & Solid Left Bars)
   ========================================================================== */
.cert-row {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #eceef1, #f4f6f8); /* Subtle grayscale container background */
    border-radius: 4px 16px 16px 4px;
    padding: 18px 24px;
    gap: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Left Indicator Bar Colors */
.cert-row.border-red {
    border-left: 5px solid #a30021;
}

.cert-row.border-black {
    border-left: 5px solid #000000;
}

/* Icon Configurations */
.cert-icon i {
    font-size: 2rem;
    display: block;
}

.cert-row.border-red .cert-icon i {
    color: #a30021;
}

.cert-row.border-black .cert-icon i {
    color: #000000;
}

/* Text Element Layouts */
.cert-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cert-title {
    font-size: 1.2rem;
    color: #000000;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.cert-subtitle {
    font-family: Arial, sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
/* Import des polices si non incluses globalement */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Oswald:wght@500;700&family=Inter:ital,wght@0,400;0,700;1,400&display=swap');

.testimonials-section {
    background-color: #F4F6F7; /* Fond gris clair de l'image */
}

/* Titre principal (Rubrique -> JetBrains Mono) */
.testimonials-section .section-title {
    font-family: 'JetBrains+Mono', 'Oswald', sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

/* Cartes de témoignage */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #9E001F; /* Bordure fine de la couleur demandée */
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Les guillemets géants décoratifs en haut à gauche */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    font-size: 5rem;
    color: rgba(158, 0, 31, 0.15); /* #9E001F avec de l'opacité */
    line-height: 1;
}

/* Étoiles de notation (#9E001F) */
.testimonial-stars {
    color: #9E001F;
    font-size: 1.15rem;
    letter-spacing: 2px;
}

/* Corps du texte (en italique comme sur l'image) */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Nom de l'auteur (Police Oswald) */
.testimonial-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

/* Rôle / Entreprise */
.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #8A8A8A;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band {
    background: var(--red);
    padding: 8rem 0;
    text-align: center;
}
.cta-band h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.btn-cta-white {
    font-family: var(--font-btn);
    font-weight: 600;
    letter-spacing: .06em;
    font-size: .9rem;
    background: #fff;
    color: var(--red);
    border: 2px solid #fff;
    border-radius: 20px;
    padding: .7rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, color .2s;
}
.btn-cta-white:hover { background: transparent; color: #fff; }
.btn-cta-outline-white {
    font-family: var(--font-btn);
    font-weight: 600;
    letter-spacing: .06em;
    font-size: .9rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 20px;
    padding: .7rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s, background .2s;
}
.btn-cta-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

