/* ════════════════════════════════════════
   GLOBAL VARIABLES & RESET
════════════════════════════════════════ */
:root {
    --red:          #9E001F;
    --dark:         #0f1117;
    --white:        #ffffff;
    --light-bg:     #f8f9fa;
    --font-heading: 'JetBrains Mono', monospace;
    --font-btn:     'Oswald', sans-serif;
}

/* ════════════════════════════════════════
   HERO & BREADCRUMB
════════════════════════════════════════ */
.product-hero-section {
    background: #fff;
    padding: 1.5rem 0 3.5rem;
}
.product-breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}
.product-breadcrumb a {
    color: #444;
    text-decoration: none;
}
.product-breadcrumb span {
    margin: 0 0.4rem;
}
.product-breadcrumb .active {
    color: var(--red);
}

.product-hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.product-hero-content {
    flex: 1.1;
}
.product-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}
.product-hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--red);
    font-weight: 600;
    margin: 0 0 2rem;
}
.product-hero-actions {
    display: flex;
    gap: 1rem;
}
.btn-demande-devis {
    font-family: var(--font-btn);
    background: var(--red);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.btn-demande-devis:hover {
    background: #7a0016;
}
.btn-documentation {
    font-family: var(--font-btn);
    background: #fff;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}
.btn-documentation:hover {
    background: var(--red);
    color: #fff;
}
.product-hero-image {
    flex: 0.9;
}
.product-hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* ════════════════════════════════════════
   SECTION HEADER UTILITY
════════════════════════════════════════ */
.section-header-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    text-transform: uppercase;
}
.header-decor-line {
    flex: 1;
    height: 1.5px;
    background: var(--red);
}

/* ════════════════════════════════════════
   DESCRIPTION TECHNIQUE
════════════════════════════════════════ */
.tech-desc-section {
    padding: 2.5rem 0;
    background: #fff;
}
.tech-desc-text p {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.brand-highlight {
    color: var(--red);
    font-weight: 700;
}
.highlight-badge {
    border: 2px solid var(--red);
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}
.highlight-badge i {
    color: var(--red);
    font-size: 1.2rem;
}

/* ════════════════════════════════════════
   APPLICATIONS & UTILISATIONS SECTION
════════════════════════════════════════ */
.apps-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

/* Section Title Alignment */
.section-header-line {
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f1117;
    letter-spacing: -0.01em;
}

/* Two-column structural grid layout */
.apps-row {
    display: flex;
    gap: 2.5rem;
    align-items: stretch; /* Forces both columns to stay equal height */
}

.apps-list-col {
    flex: 1.1;
    display: flex;
}

/* 1. Unified List Container Block */
.apps-unified-list {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f2dbde; /* Light reddish-gray precise border tint */
    border-radius: 12px;       /* Rounded outer wrapper corners */
    overflow: hidden;          /* Clean cropping for children background tints */
    display: flex;
    flex-direction: column;
}

/* 2. List Item Rows */
.app-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #f2dbde;
    background-color: #ffffff;
}

/* Remove bottom border on the final item */
.app-list-row:last-child {
    border-bottom: none;
}

/* Alternating background rows using zebra matching tint */
.app-list-row:nth-child(even) {
    background-color: #f8f9fa; /* Soft gray tint line */
}

/* Text presentation styles */
.app-item-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: #11141a;
    line-height: 1.4;
    padding-right: 1rem;
}

/* 3. Red Circular Icons Details */
.app-item-icon {
    width: 26px;
    height: 26px;
    border: 1.5px solid #9E001F; /* Master brand red accent outline */
    border-radius: 50%;          /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E001F;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;             /* Keeps icon circular on smaller viewports */
}

/* 4. Right Image Column Box */
.apps-image-col {
    flex: 0.9;
    display: flex;
}

.apps-image-col img {
    width: 78%;
    object-fit: cover;
    border-radius: 20px; /* Smooth rounded image corner layout */
}

/* ════════════════════════════════════════
   RESPONSIVE LAYOUT BREAKPOINTS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .apps-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .apps-image-col img {
        height: 320px; /* Constrains height once stacked vertically */
    }
}

@media (max-width: 576px) {
    .app-list-row {
        padding: 1rem;
    }
    
    .app-item-text {
        font-size: 0.75rem;
    }
}

/* ════════════════════════════════════════
   ENGAGEMENT & SOLUTIONS GRID
════════════════════════════════════════ */
.commitment-section {
    padding: 3rem 0;
    background: #fff;
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.commitment-box-left {
    border-top: 0.5px solid var(--red);
    border-right: 0.5px solid var(--red);
    border-bottom: 0.5px solid var(--red);
    border-left: 4px solid var(--red);

    padding: 2rem 2.5rem;
    border-radius: 0 10px 10px 0;
}
.box-title-red {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: black;
    margin: 0 0 1rem;
}
.commitment-box-left p {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.commitment-box-right {
    border: 1px solid var(--red);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}
.box-right-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}
.box-right-header i {
    color: var(--red);
    font-size: 1.1rem;
}
.box-title-dark {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.solutions-list {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.solutions-list li {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: #555;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--red);
}
.solutions-list li::marker {
    color: var(--red);
    font-weight: 800;
}


/* ════════════════════════════════════════
   MARQUES PROPOSÉES
════════════════════════════════════════ */
.brands-section {
    padding: 2rem 0 4rem;
    background: #fff;
    text-align: center;
}
.brands-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.brands-logo-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.brand-logo-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    background: #fff;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 240px;
}
.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ════════════════════════════════════════
   CALL TO ACTION BANNER (MATCHING SPEC)
════════════════════════════════════════ */
.products-cta-section {
    padding-bottom: 4rem;
    background-color: #fff;
}
.products-cta-card {
    background-color: #9E001F;
    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.products-cta-content {
    flex: 1;
}
.products-cta-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 1rem;
}
.products-cta-desc {
    font-family: 'Arial', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}
.products-cta-action {
    flex-shrink: 0;
}
.products-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #9E001F;
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}
.products-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN HANDLERS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .product-hero-row { flex-direction: column; text-align: center; }
    .product-hero-actions { justify-content: center; }
    .apps-row { flex-direction: column; }
    .apps-image-col { width: 100%; }
    .commitment-grid { grid-template-columns: 1fr; }
    .products-cta-card { flex-direction: column; text-align: center; padding: 2.5rem; }
}

@media (max-width: 576px) {
    .brands-logo-row { flex-direction: column; align-items: center; }
    .brand-logo-card { width: 100%; max-width: 100%; }
}