/* ══════════════════════════════════════════════════════════════════════
   GLOBAL STYLES & VARIABLE COMPATIBILITY
   ══════════════════════════════════════════════════════════════════════ */
:root {
    --gi-red: #9E001F;
    --gi-red-hover: #7d0018;
    --gi-dark: #111111;
    --gi-gray-text: #444444;
    --gi-light-bg: #f9f9f9;
    --gi-card-bg: #fdfdfd;
    --gi-border-color: #eaeaea;
        --red:          #9E001F;


}

body {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gi-dark);
    background-color: #ffffff;
}
.highlight-badge { border: 2px solid var(--red); padding: 1.2rem 1.5rem; 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; }


/* Common Section Heading with Left Red Accent Accent Indicator Bar */
.section-title-line {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gi-dark);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
}

.section-title-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 4px;
}

/* Button Standard Base overrides */
.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-primary-red {
    background-color: var(--gi-red);
    color: #ffffff;
    border: 2px solid var(--gi-red);
}

.btn-primary-red:hover {
    background-color: var(--gi-red-hover);
    border-color: var(--gi-red-hover);
    color: #ffffff;
}

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

.btn-secondary-outline:hover {
    border-color: var(--gi-dark);
    background-color: rgba(0,0,0,0.02);
    color: var(--gi-dark);
}

/* ══════════════════════════════════════════════════════════════════════
   HERO / BREADCRUMB
   ══════════════════════════════════════════════════════════════════════ */
.product-hero-section {
    padding: 2.5rem 0 3.5rem 0;
    background-color: #ffffff;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.product-breadcrumb a {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-breadcrumb a:hover {
    color: var(--gi-red);
}

.product-breadcrumb .separator {
    color: #cccccc;
    font-size: 0.65rem;
}

.product-breadcrumb .current {
    color: var(--gi-red);
    font-weight: 700;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--gi-dark);
    letter-spacing: -0.5px;
}

.product-subtitle {
    font-size: 0.95rem;
    color: var(--gi-red);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

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

.product-hero-image-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gi-border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75% !important;
}

.product-main-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════════════════
   TECHNICAL DESCRIPTION
   ══════════════════════════════════════════════════════════════════════ */
.product-description-section {
    padding: 4rem 0;
    background-color: var(--gi-light-bg);
    border-top: 1px solid var(--gi-border-color);
    border-bottom: 1px solid var(--gi-border-color);
}

.description-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gi-gray-text);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.feature-highlight-box {
    margin-top: 2.5rem;
    background-color: #ffffff;
    border: 1px solid var(--gi-red);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 4px;
}

.feature-highlight-box .icon-check {
    color: var(--gi-red);
    font-size: 1.4rem;
    display: flex;
}

.feature-highlight-box .highlight-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gi-dark);
}

/* ══════════════════════════════════════════════════════════════════════
   SOLUTIONS MODULE & GRID
   ══════════════════════════════════════════════════════════════════════ */
.product-solutions-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.solution-card {
    background-color: var(--gi-card-bg);
    border: 1px solid var(--gi-border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-column: span 2; /* Default: 3 columns layout */
}

.solution-card.card-large {
    grid-column: span 3; /* Row 1 Layout override: 2 columns split */
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border-color: #d1d1d1;
}

.solution-card-icon {
    color: var(--gi-red);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.solution-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gi-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.solution-card-desc {
    font-size: 0.8rem;
    color: var(--gi-gray-text);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   ADVANTAGES MODULE GRID
   ══════════════════════════════════════════════════════════════════════ */
.product-advantages-section {
    padding: 4.5rem 0;
    background-color: var(--gi-light-bg);
    border-top: 1px solid var(--gi-border-color);
}

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

.advantage-item {
    display: flex;
    flex-direction: column;
}

.adv-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.6rem;
}

.adv-header i {
    color: var(--gi-red);
    font-size: 1.25rem;
    display: flex;
}

.adv-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--gi-dark);
    margin: 0;
}

.advantage-item p {
    font-size: 0.8rem;
    color: var(--gi-gray-text);
    line-height: 1.5;
    margin: 0;
    padding-left: 2.1rem; /* Aligns paragraph neatly right below text */
}

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL INDUSTRIE BLOCK EXPERTISE
   ══════════════════════════════════════════════════════════════════════ */
.brand-expertise-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.brand-expertise-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.brand-expertise-text-content {
    display: flex;
    flex-direction: column;
}

.expertise-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gi-red);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.expertise-lead {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gi-dark);
    margin-bottom: 1.5rem;
}

.expertise-list-bullets {
    list-style: none !important;
    padding: 0;
    margin: 0 0 2rem 0;
}

.expertise-list-bullets li {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--red);
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    letter-spacing: 0.2px;
}


.expertise-footer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gi-gray-text);
    margin: 0;
}

.brand-expertise-image-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gi-border-color);
}

.expertise-side-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* ══════════════════════════════════════════════════════════════════════
   BRANDS PARTNERS FOOTER ROW
   ══════════════════════════════════════════════════════════════════════ */
.product-brands-section {
    padding: 3.5rem 0;
    background-color: var(--gi-light-bg);
    border-top: 1px solid var(--gi-border-color);
}

.brands-title-label {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--gi-dark);
    margin-bottom: 2rem;
}

.brands-logos-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.brand-logo-card {
    background-color: #ffffff;
    border: 1px solid var(--gi-border-color);
    padding: 1.25rem 3.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.brand-logo-card img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════════════
   CTA FOOTER CARD BANNER
   ══════════════════════════════════════════════════════════════════════ */
.product-cta-banner-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

.cta-banner-card-box {
    background-color: var(--gi-red);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.314fr 0.686fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 15px 40px rgba(161, 0, 31, 0.15);
}

.cta-banner-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.85rem;
}

.cta-banner-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-banner-action {
    display: flex;
    justify-content: flex-end;
}

.btn-white-filled {
    background-color: #ffffff;
    color: var(--gi-red);
    border: 2px solid #ffffff;
    font-size: 0.9rem;
    padding: 0.85rem 2.25rem;
}

.btn-white-filled:hover {
    background-color: transparent;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE DISPATCH & MEDIA QUERIES
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .product-hero-grid, 
    .brand-expertise-grid, 
    .cta-banner-card-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-banner-action {
        justify-content: flex-start;
    }

    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .solution-card {
        grid-column: span 2 !important;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-title {
        font-size: 2.4rem;
    }
    
    .solutions-grid, 
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        grid-column: span 1 !important;
    }
    
    .brands-logos-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-banner-card-box {
        padding: 2rem;
    }
}