﻿/* ===== MI COMPLETE LAB SOLUTIONS SECTION ===== */
.mi-section {
    padding: 80px 0;
    background: #ffffff;
}

.mi-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 460px;
}

.mi-hero-image {
    position: relative;
    overflow: hidden;
}

    .mi-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.mi-hero:hover .mi-hero-image img {
    transform: scale(1.05);
}

.mi-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.mi-hero-content {
    background: #18181b;
    color: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d4d4d8;
    margin-bottom: 24px;
    width: fit-content;
}

    .mi-badge i {
        font-size: 10px;
        color: #a1a1aa;
    }

.mi-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

    .mi-title span {
        color: #d4d4d8;
        font-weight: 300;
    }

.mi-subtitle-line {
    width: 48px;
    height: 2px;
    background: #a1a1aa;
    margin: 20px 0;
}

.mi-description {
    font-size: 15px;
    font-weight: 300;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mi-stats {
    display: flex;
    gap: 40px;
}

.mi-stat-item {
    text-align: left;
}

.mi-stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

    .mi-stat-number span {
        color: #71717a;
        font-weight: 400;
        font-size: 20px;
    }

.mi-stat-label {
    font-size: 12px;
    font-weight: 400;
    color: #71717a;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* MI Product Cards */
.mi-products {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mi-product-card {
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

    .mi-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #18181b;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .mi-product-card:hover {
        border-color: #18181b;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

        .mi-product-card:hover::before {
            transform: scaleX(1);
        }

.mi-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.mi-product-card:hover .mi-card-icon {
    background: #18181b;
}

.mi-card-icon i {
    font-size: 22px;
    color: #52525b;
    transition: color 0.3s;
}

.mi-product-card:hover .mi-card-icon i {
    color: #ffffff;
}

.mi-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.mi-card-text {
    font-size: 14px;
    font-weight: 300;
    color: #71717a;
    line-height: 1.65;
    margin-bottom: 24px;
}

.mi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #18181b;
    transition: gap 0.3s ease;
}

    .mi-card-link i {
        font-size: 11px;
        transition: transform 0.3s;
    }

.mi-product-card:hover .mi-card-link {
    gap: 12px;
}

    .mi-product-card:hover .mi-card-link i {
        transform: translateX(3px);
    }
/* ===== MI COMPLETE LAB SOLUTIONS SECTION ===== */
.mi-section {
    padding: 80px 0;
    background: #ffffff;
}

.mi-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 460px;
}

.mi-hero-image {
    position: relative;
    overflow: hidden;
}

    .mi-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.mi-hero:hover .mi-hero-image img {
    transform: scale(1.05);
}

.mi-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.mi-hero-content {
    background: #18181b;
    color: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mi-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d4d4d8;
    margin-bottom: 24px;
    width: fit-content;
}

    .mi-badge i {
        font-size: 10px;
        color: #a1a1aa;
    }

.mi-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

    .mi-title span {
        color: #d4d4d8;
        font-weight: 300;
    }

.mi-subtitle-line {
    width: 48px;
    height: 2px;
    background: #a1a1aa;
    margin: 20px 0;
}

.mi-description {
    font-size: 15px;
    font-weight: 300;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mi-stats {
    display: flex;
    gap: 40px;
}

.mi-stat-item {
    text-align: left;
}

.mi-stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

    .mi-stat-number span {
        color: #71717a;
        font-weight: 400;
        font-size: 20px;
    }

.mi-stat-label {
    font-size: 12px;
    font-weight: 400;
    color: #71717a;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* MI Product Cards */
.mi-products {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mi-product-card {
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

    .mi-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #18181b;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .mi-product-card:hover {
        border-color: #18181b;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

        .mi-product-card:hover::before {
            transform: scaleX(1);
        }

.mi-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.mi-product-card:hover .mi-card-icon {
    background: #18181b;
}

.mi-card-icon i {
    font-size: 22px;
    color: #52525b;
    transition: color 0.3s;
}

.mi-product-card:hover .mi-card-icon i {
    color: #ffffff;
}

.mi-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.mi-card-text {
    font-size: 14px;
    font-weight: 300;
    color: #71717a;
    line-height: 1.65;
    margin-bottom: 24px;
}

.mi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #18181b;
    transition: gap 0.3s ease;
}

    .mi-card-link i {
        font-size: 11px;
        transition: transform 0.3s;
    }

.mi-product-card:hover .mi-card-link {
    gap: 12px;
}

    .mi-product-card:hover .mi-card-link i {
        transform: translateX(3px);
    }

/* ===== GLOBAL MANUFACTURERS SECTION ===== */
.gm-section {
    padding: 80px 0;
    background: #fafafa;
}

.gm-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 500px;
}

.gm-hero-image {
    position: relative;
    overflow: hidden;
}

    .gm-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.gm-hero:hover .gm-hero-image img {
    transform: scale(1.05);
}

.gm-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.15) 100%);
    pointer-events: none;
}

.gm-hero-content {
    background: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .gm-hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #18181b, #52525b);
    }

.gm-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #52525b;
    margin-bottom: 24px;
    width: fit-content;
}

    .gm-label i {
        font-size: 10px;
        color: #a1a1aa;
    }

.gm-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #18181b;
}

    .gm-title span {
        color: #52525b;
        font-weight: 400;
    }

.gm-subtitle-line {
    width: 48px;
    height: 2px;
    background: #18181b;
    margin: 20px 0;
}

.gm-description {
    font-size: 15px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 28px;
}

.gm-contact-box {
    background: #18181b;
    border-radius: 12px;
    padding: 24px 28px;
    color: #ffffff;
}

.gm-contact-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #71717a;
    margin-bottom: 12px;
}

.gm-contact-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.gm-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .gm-contact-details a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #a1a1aa;
        transition: color 0.15s;
    }

        .gm-contact-details a:hover {
            color: #ffffff;
        }

        .gm-contact-details a i {
            width: 16px;
            text-align: center;
            font-size: 13px;
            color: #52525b;
        }
/* ===== FOR ENTREPRENEURS SECTION ===== */
.entre-section {
    padding: 80px 0;
    background: #fafafa;
}

.entre-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 520px;
}

.entre-hero-image {
    position: relative;
    overflow: hidden;
}

    .entre-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.entre-hero:hover .entre-hero-image img {
    transform: scale(1.05);
}

.entre-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.entre-hero-content {
    background: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .entre-hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #18181b, #52525b);
    }

.entre-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #52525b;
    margin-bottom: 24px;
    width: fit-content;
}

    .entre-label i {
        font-size: 10px;
        color: #a1a1aa;
    }

.entre-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #18181b;
}

    .entre-title span {
        color: #52525b;
        font-weight: 400;
    }

.entre-subtitle-line {
    width: 48px;
    height: 2px;
    background: #18181b;
    margin: 20px 0;
}

.entre-description {
    font-size: 15px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Why Choose Us */
.entre-why {
    margin-top: 28px;
}

.entre-why-title {
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.entre-why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.entre-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #52525b;
    line-height: 1.5;
}

    .entre-why-item i {
        color: #18181b;
        margin-top: 3px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .entre-why-item strong {
        font-weight: 600;
        color: #18181b;
    }

/* Contact Card in Entre */
.entre-contact-box {
    background: #18181b;
    border-radius: 12px;
    padding: 24px 28px;
    color: #ffffff;
}

.entre-contact-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #71717a;
    margin-bottom: 12px;
}

.entre-contact-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.entre-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .entre-contact-details a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #a1a1aa;
        transition: color 0.15s;
    }

        .entre-contact-details a:hover {
            color: #ffffff;
        }

        .entre-contact-details a i {
            width: 16px;
            text-align: center;
            font-size: 13px;
            color: #52525b;
        }

/* Market Opportunity Cards */
.entre-opportunities {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.entre-opp-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .entre-opp-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #18181b;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

    .entre-opp-card:hover {
        border-color: #18181b;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

        .entre-opp-card:hover::after {
            transform: scaleX(1);
        }

.entre-opp-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.entre-opp-card:hover .entre-opp-icon {
    background: #18181b;
}

.entre-opp-icon i {
    font-size: 24px;
    color: #52525b;
    transition: color 0.3s;
}

.entre-opp-card:hover .entre-opp-icon i {
    color: #ffffff;
}

.entre-opp-title {
    font-size: 16px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.entre-opp-text {
    font-size: 13px;
    font-weight: 300;
    color: #71717a;
    line-height: 1.6;
}
/* ===== FOR ENTREPRENEURS SECTION ===== */
.entre-section {
    padding: 80px 0;
    background: #fafafa;
}

.entre-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    min-height: 520px;
}

.entre-hero-image {
    position: relative;
    overflow: hidden;
}

    .entre-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.entre-hero:hover .entre-hero-image img {
    transform: scale(1.05);
}

.entre-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.entre-hero-content {
    background: #ffffff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .entre-hero-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, #18181b, #52525b);
    }

.entre-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #52525b;
    margin-bottom: 24px;
    width: fit-content;
}

    .entre-label i {
        font-size: 10px;
        color: #a1a1aa;
    }

.entre-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 8px;
    color: #18181b;
}

    .entre-title span {
        color: #52525b;
        font-weight: 400;
    }

.entre-subtitle-line {
    width: 48px;
    height: 2px;
    background: #18181b;
    margin: 20px 0;
}

.entre-description {
    font-size: 15px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.entre-why {
    margin-top: 28px;
}

.entre-why-title {
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.entre-why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.entre-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #52525b;
    line-height: 1.5;
}

    .entre-why-item i {
        color: #18181b;
        margin-top: 3px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .entre-why-item strong {
        font-weight: 600;
        color: #18181b;
    }

.entre-contact-box {
    background: #18181b;
    border-radius: 12px;
    padding: 24px 28px;
    color: #ffffff;
}

.entre-contact-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #71717a;
    margin-bottom: 12px;
}

.entre-contact-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.entre-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .entre-contact-details a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #a1a1aa;
        transition: color 0.15s;
    }

        .entre-contact-details a:hover {
            color: #ffffff;
        }

        .entre-contact-details a i {
            width: 16px;
            text-align: center;
            font-size: 13px;
            color: #52525b;
        }

/* Market Opportunity Cards */
.entre-opportunities {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.entre-opp-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .entre-opp-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: #18181b;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.4s ease;
    }

    .entre-opp-card:hover {
        border-color: #18181b;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }

        .entre-opp-card:hover::after {
            transform: scaleX(1);
        }

.entre-opp-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.entre-opp-card:hover .entre-opp-icon {
    background: #18181b;
}

.entre-opp-icon i {
    font-size: 24px;
    color: #52525b;
    transition: color 0.3s;
}

.entre-opp-card:hover .entre-opp-icon i {
    color: #ffffff;
}

.entre-opp-title {
    font-size: 16px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.entre-opp-text {
    font-size: 13px;
    font-weight: 300;
    color: #71717a;
    line-height: 1.6;
}

/* ===== SUSTAINABILITY SECTION ===== */
.sust-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .sust-section::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
        pointer-events: none;
    }

    .sust-section::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
        pointer-events: none;
    }

/* Sustainability Header */
.sust-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.sust-header-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #2563eb;
    margin-bottom: 20px;
}

    .sust-header-label i {
        font-size: 10px;
    }

.sust-header-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #18181b;
    margin-bottom: 16px;
}

    .sust-header-title span {
        color: #2563eb;
    }

.sust-header-line {
    width: 48px;
    height: 2px;
    background: #2563eb;
    margin: 0 auto 20px;
}

.sust-header-text {
    font-size: 16px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
}

/* Sustainability Cards Grid */
.sust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.sust-card {
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 44px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

    .sust-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #3b82f6);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .sust-card::after {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s;
    }

    .sust-card:hover {
        border-color: #bfdbfe;
        box-shadow: 0 16px 48px rgba(37,99,235,0.1);
        transform: translateY(-4px);
    }

        .sust-card:hover::before {
            transform: scaleX(1);
        }

        .sust-card:hover::after {
            opacity: 1;
        }

.sust-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.35s;
}

.sust-card:hover .sust-card-icon {
    background: #2563eb;
    border-color: #2563eb;
    transform: scale(1.05);
}

.sust-card-icon i {
    font-size: 26px;
    color: #2563eb;
    transition: color 0.3s;
}

.sust-card:hover .sust-card-icon i {
    color: #ffffff;
}

.sust-card-number {
    font-size: 11px;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.sust-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #18181b;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.25;
}

.sust-card-text {
    font-size: 15px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sust-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sust-card-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #52525b;
    line-height: 1.5;
}

    .sust-card-list-item i {
        color: #2563eb;
        margin-top: 4px;
        font-size: 10px;
        flex-shrink: 0;
    }

/* Conclusion Card - Full Width */
.sust-conclusion {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 50%, #2563eb 100%);
    border: none;
    border-radius: 20px;
    padding: 56px 56px;
    position: relative;
    overflow: hidden;
}

    .sust-conclusion::before {
        display: none;
    }

    .sust-conclusion::after {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.sust-conclusion-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

    .sust-conclusion-icon i {
        font-size: 26px;
        color: #ffffff;
    }

.sust-conclusion .sust-card-number {
    color: rgba(255,255,255,0.5);
}

.sust-conclusion .sust-card-title {
    color: #ffffff;
    font-size: 24px;
}

.sust-conclusion .sust-card-text {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
}

.sust-conclusion:hover {
    box-shadow: 0 20px 56px rgba(37,99,235,0.25);
    transform: translateY(-4px);
}
/* ===== COA DOWNLOAD SECTION ===== */
.coa-section {
    padding: 80px 0;
    background: #fafafa;
}

.coa-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.coa-header-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 9999px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #52525b;
    margin-bottom: 20px;
}

    .coa-header-label i {
        font-size: 10px;
        color: #a1a1aa;
    }

.coa-header-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #18181b;
    margin-bottom: 16px;
}

    .coa-header-title span {
        color: #52525b;
        font-weight: 400;
    }

.coa-header-line {
    width: 48px;
    height: 2px;
    background: #18181b;
    margin: 0 auto 20px;
}

.coa-header-text {
    font-size: 16px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.7;
}

/* COA Table */
.coa-table-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #e4e4e7;
}

.coa-table-header-row {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    background: #18181b;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.coa-th {
    display: flex;
    align-items: center;
}

.coa-table-row {
    display: grid;
    grid-template-columns: 260px 1fr 240px;
    padding: 28px 32px;
    border-bottom: 1px solid #f4f4f5;
    transition: background 0.2s;
    align-items: center;
}

    .coa-table-row:last-child {
        border-bottom: none;
    }

    .coa-table-row:hover {
        background: #fafafa;
    }

/* Brand Cell */
.coa-td-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.coa-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .coa-brand-icon i {
        font-size: 18px;
        color: #52525b;
    }

.coa-brand-icon-merck {
    background: #eff6ff;
}

    .coa-brand-icon-merck i {
        color: #2563eb;
    }

.coa-brand-icon-fisher {
    background: #fef3c7;
}

    .coa-brand-icon-fisher i {
        color: #d97706;
    }

.coa-brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coa-brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #18181b;
    letter-spacing: -0.01em;
}

.coa-brand-grade {
    font-size: 12px;
    font-weight: 400;
    color: #71717a;
}

/* Description Cell */
.coa-td-desc {
    padding-right: 32px;
}

.coa-desc-tag {
    display: inline-block;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #52525b;
    margin-bottom: 8px;
}

.coa-desc-tag-new {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.coa-desc-text {
    font-size: 13px;
    font-weight: 300;
    color: #71717a;
    line-height: 1.6;
    margin: 0;
}

/* Actions Cell */
.coa-td-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.coa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

    .coa-btn i {
        font-size: 12px;
    }

.coa-btn-pdf {
    background: #18181b;
    color: #ffffff;
}

    .coa-btn-pdf:hover {
        background: #27272a;
        transform: translateX(2px);
    }

.coa-btn-web {
    background: #ffffff;
    color: #18181b;
    border: 1px solid #e4e4e7;
}

    .coa-btn-web:hover {
        border-color: #18181b;
        background: #f4f4f5;
        transform: translateX(2px);
    }

/* COA Note */
.coa-note {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 32px;
    align-items: flex-start;
}

.coa-note-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .coa-note-icon i {
        font-size: 20px;
        color: #2563eb;
    }

.coa-note-content {
    flex: 1;
}

.coa-note-title {
    font-size: 16px;
    font-weight: 600;
    color: #18181b;
    margin-bottom: 8px;
}

.coa-note-text {
    font-size: 14px;
    font-weight: 300;
    color: #52525b;
    line-height: 1.65;
    margin-bottom: 16px;
}

.coa-note-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .coa-note-contact a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #18181b;
        transition: color 0.15s;
    }

        .coa-note-contact a:hover {
            color: #2563eb;
        }

        .coa-note-contact a i {
            font-size: 12px;
            color: #71717a;
        }

/* COA Responsive */
@media (max-width: 1024px) {
    .coa-table-header-row {
        display: none;
    }

    .coa-table-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 24px;
    }

    .coa-td-actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .coa-header-title {
        font-size: 26px;
    }

    .coa-note {
        flex-direction: column;
        gap: 16px;
    }

    .coa-note-contact {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}
/* ===== DESKTOP DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #52525b;
    transition: color 0.15s;
    cursor: pointer;
    padding: 14px 0;
}

    .nav-dropdown-trigger:hover,
    .nav-dropdown:hover > .nav-dropdown-trigger {
        color: #18181b;
    }

    .nav-dropdown-trigger i {
        font-size: 9px;
        transition: transform 0.25s ease;
    }

.nav-dropdown:hover > .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 590px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 14px 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
}

.nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Grid — 4 columns for Products */
.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.nav-dropdown-grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.nav-dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-dropdown-col-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a1a1aa;
    padding-bottom: 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid #f4f4f5;
}

.nav-dropdown-col a {
    font-size: 13px;
    font-weight: 400;
    color: #52525b;
    padding: 7px 0;
    transition: color 0.15s, padding-left 0.15s;
    border-radius: 4px;
}

    .nav-dropdown-col a:hover {
        color: #18181b;
        padding-left: 4px;
    }

/* Dropdown List — for Quality (single column with icons) */
.nav-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 240px;
}

    .nav-dropdown-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 400;
        color: #52525b;
        padding: 10px 14px;
        border-radius: 8px;
        transition: background 0.15s, color 0.15s;
    }

        .nav-dropdown-list a i {
            width: 18px;
            text-align: center;
            font-size: 13px;
            color: #a1a1aa;
            transition: color 0.15s;
        }

        .nav-dropdown-list a:hover {
            background: #f4f4f5;
            color: #18181b;
        }

            .nav-dropdown-list a:hover i {
                color: #18181b;
            }

/* ===== MOBILE ACCORDION ===== */
.mobile-accordion {
    border-bottom: 1px solid #f4f4f5;
}

.mobile-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #18181b;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
    border-radius: 8px;
}

    .mobile-accordion-trigger:hover {
        background: #f4f4f5;
    }

    .mobile-accordion-trigger i {
        font-size: 11px;
        color: #a1a1aa;
        transition: transform 0.25s ease;
    }

.mobile-accordion.open > .mobile-accordion-trigger i {
    transform: rotate(180deg);
}

.mobile-accordion.open > .mobile-accordion-trigger {
    color: #18181b;
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-accordion.open > .mobile-accordion-content {
    max-height: 800px;
}

.mobile-accordion-group {
    padding: 0 16px 12px 16px;
}

    .mobile-accordion-group + .mobile-accordion-group {
        padding-top: 12px;
        border-top: 1px solid #f4f4f5;
        margin-top: 4px;
    }

.mobile-accordion-group-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a1a1aa;
    margin-bottom: 8px;
}

.mobile-accordion-group a,
.mobile-accordion-content > a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #52525b;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

    .mobile-accordion-group a:hover,
    .mobile-accordion-content > a:hover {
        background: #f4f4f5;
        color: #18181b;
    }

    .mobile-accordion-content > a i {
        width: 18px;
        text-align: center;
        font-size: 13px;
        color: #a1a1aa;
    }

/* ===== RESPONSIVE DROPDOWN ===== */
@media (max-width: 224px) {
    .nav-dropdown-menu {
        min-width: 180px;
    }

    .nav-dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .nav-dropdown-grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 168px) {
    .nav-dropdown-menu {
        display: none;
    }
}/* ==========================================
           CRITICAL FIX: Override scroll-anim so content
           is ALWAYS visible. Animations are enhancement only.
           ========================================== */
.scroll-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ==========================================
           ABOUT PAGE — PAGE HERO BANNER
           ========================================== */
.page-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: var(--dark);
}

@media (min-width: 768px) {
    .page-hero {
        height: 440px;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        height: 480px;
    }
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.75) 0%, rgba(0, 172, 193, 0.35) 100%);
    display: flex;
    align-items: center;
}

.page-hero-content {
    width: 100%;
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .page-hero-content {
        padding: 60px 48px;
    }
}

@media (min-width: 1024px) {
    .page-hero-content {
        padding: 0;
        margin-left: 8%;
        max-width: 700px;
    }
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

    .page-hero-breadcrumb a {
        font-size: 12px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.3s;
    }

        .page-hero-breadcrumb a:hover {
            color: #fff;
        }

    .page-hero-breadcrumb .sep {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.35);
    }

    .page-hero-breadcrumb .current {
        font-size: 12px;
        font-weight: 600;
        color: var(--accent);
    }

.page-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 52px;
    }
}

.page-hero-title span {
    color: var(--accent);
}

.page-hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 560px;
}

@media (min-width: 768px) {
    .page-hero-subtitle {
        font-size: 18px;
    }
}

/* ==========================================
           ABOUT — STORY SPLIT
           ========================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.story-image {
    position: relative;
}

    .story-image img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

.story-image-badge {
    position: absolute;
    bottom: -16px;
    left: -8px;
    background: var(--accent);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 172, 193, 0.35);
    text-align: center;
    min-width: 130px;
}

@media (min-width: 768px) {
    .story-image-badge {
        left: -16px;
        bottom: -20px;
    }
}

.story-image-badge .num {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.story-image-badge .label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

.story-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.story-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .story-heading {
        font-size: 34px;
    }
}

.story-heading .accent {
    color: var(--primary);
}

.story-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .story-text {
        font-size: 16px;
    }
}

/* ==========================================
           MISSION & VISION CARDS
           ========================================== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.mv-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

    .mv-card:hover {
        border-color: rgba(13, 71, 161, 0.15);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.mv-card-bg {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}

.mv-card:nth-child(1) .mv-card-bg {
    background: var(--primary);
}

.mv-card:nth-child(2) .mv-card-bg {
    background: var(--accent);
}

.mv-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-card:nth-child(1) .mv-card-icon {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(13, 71, 161, 0.04));
}

.mv-card:nth-child(2) .mv-card-icon {
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.1), rgba(0, 172, 193, 0.04));
}

.mv-card-icon i {
    font-size: 22px;
}

.mv-card:nth-child(1) .mv-card-icon i {
    color: var(--primary);
}

.mv-card:nth-child(2) .mv-card-icon i {
    color: var(--accent);
}

.mv-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.mv-card-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
           TIMELINE
           ========================================== */
.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 40px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary), var(--accent));
        border-radius: 2px;
    }

@media (min-width: 768px) {
    .timeline {
        padding-left: 60px;
    }

        .timeline::before {
            left: 23px;
        }
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: -60px;
        width: 46px;
        height: 46px;
    }
}

.timeline-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-item:nth-child(even) .timeline-dot {
    border-color: var(--accent);
}

.timeline-item:nth-child(even) .timeline-dot-inner {
    background: var(--accent);
}

.timeline-year {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.timeline-item:nth-child(even) .timeline-year {
    color: var(--accent);
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ==========================================
           VALUES GRID
           ========================================== */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
}

    .value-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.value-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.08), rgba(0, 172, 193, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

    .value-card-icon i {
        font-size: 22px;
        color: var(--primary);
    }

.value-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
           TEAM SECTION
           ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .team-card:hover {
        border-color: transparent;
        box-shadow: var(--shadow-xl);
        transform: translateY(-6px);
    }

.team-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid rgba(13, 71, 161, 0.1);
    transition: border-color 0.3s;
}

.team-card:hover .team-card-img {
    border-color: var(--accent);
}

.team-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.team-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
}
/* ==========================================
           GALLERY GRID (Masonry Style)
           ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-warm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

    .gallery-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    /* Featured large image */
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

@media (max-width: 767px) {
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.large img {
    min-height: 400px;
}

@media (min-width: 768px) {
    .gallery-item.large img {
        min-height: 100%;
    }
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Caption Overlay */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-caption span {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

/* Zoom Icon Center */
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ==========================================
           LIGHTBOX
           ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 3000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    backdrop-filter: blur(8px);
}

    .lightbox.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 1000px;
    max-height: 85vh;
    width: 100%;
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

    .lightbox-close:hover {
        color: #fff;
    }

/* Lightbox Nav Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

    .lightbox-nav:hover {
        background: rgba(255,255,255,0.25);
    }

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 1024px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}
/* INTRO SPLIT */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.intro-image {
    position: relative;
}

    .intro-image img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

.intro-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.intro-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .intro-heading {
        font-size: 34px;
    }
}

.intro-heading .accent {
    color: var(--primary);
}

.intro-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .intro-text {
        font-size: 16px;
    }
}

/* CHEMICAL GRADES GRID */
.grades-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .grades-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grades-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grade-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .grade-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.grade-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
}

.grade-card:nth-child(2) .grade-card-badge {
    background: var(--accent);
}

.grade-card:nth-child(3) .grade-card-badge {
    background: #E67E22;
}

.grade-card:nth-child(4) .grade-card-badge {
    background: #8E44AD;
}

.grade-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(13,71,161,0.08), rgba(0,172,193,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .grade-card-icon i {
        font-size: 22px;
        color: var(--primary);
    }

.grade-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.grade-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* PRODUCT LIST TABLE */
.chem-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.chem-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

    .chem-table thead {
        background: var(--primary);
    }

        .chem-table thead th {
            padding: 14px 20px;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-align: left;
            white-space: nowrap;
        }

    .chem-table tbody tr {
        border-bottom: 1px solid var(--border);
        transition: background 0.2s;
    }

        .chem-table tbody tr:last-child {
            border-bottom: none;
        }

        .chem-table tbody tr:hover {
            background: rgba(13,71,161,0.03);
        }

    .chem-table tbody td {
        padding: 14px 20px;
        color: var(--text);
        vertical-align: middle;
    }

    .chem-table .chem-name {
        font-weight: 600;
        color: var(--dark);
    }

    .chem-table .chem-grade {
        display: inline-block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 6px;
    }

.chem-grade-ar {
    background: #EBF5FB;
    color: #2471A3;
}

.chem-grade-gr {
    background: #E8F8F5;
    color: #1ABC9C;
}

.chem-grade-lr {
    background: #FEF9E7;
    color: #D4AC0D;
}

.chem-table .chem-formula {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-warm);
    padding: 2px 8px;
    border-radius: 4px;
}

/* APPLICATIONS GRID */
.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.app-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
}

    .app-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .app-card i {
        font-size: 26px;
        color: var(--primary);
        margin-bottom: 12px;
        display: block;
    }

    .app-card span {
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
    }

/* QUALITY FEATURES */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .quality-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quality-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
}

    .quality-card:hover {
        border-color: rgba(13,71,161,0.15);
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

.quality-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13,71,161,0.08), rgba(0,172,193,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .quality-card-icon i {
        font-size: 18px;
        color: var(--primary);
    }

.quality-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.quality-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* WHY SECTION */
.why-chem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .why-chem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.why-chem-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .why-chem-card:hover {
        border-color: rgba(13,71,161,0.15);
        box-shadow: var(--shadow-md);
    }

.why-chem-card-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.why-chem-card:nth-child(1) .why-chem-card-bg {
    background: var(--primary);
}

.why-chem-card:nth-child(2) .why-chem-card-bg {
    background: var(--accent);
}

.why-chem-card:nth-child(3) .why-chem-card-bg {
    background: #E67E22;
}

.why-chem-card:nth-child(4) .why-chem-card-bg {
    background: #8E44AD;
}

.why-chem-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-chem-card:nth-child(1) .why-chem-icon {
    background: rgba(13,71,161,0.1);
}

.why-chem-card:nth-child(2) .why-chem-icon {
    background: rgba(0,172,193,0.1);
}

.why-chem-card:nth-child(3) .why-chem-icon {
    background: rgba(230,126,34,0.1);
}

.why-chem-card:nth-child(4) .why-chem-icon {
    background: rgba(142,68,173,0.1);
}

.why-chem-icon i {
    font-size: 20px;
}

.why-chem-card:nth-child(1) .why-chem-icon i {
    color: var(--primary);
}

.why-chem-card:nth-child(2) .why-chem-icon i {
    color: var(--accent);
}

.why-chem-card:nth-child(3) .why-chem-icon i {
    color: #E67E22;
}

.why-chem-card:nth-child(4) .why-chem-icon i {
    color: #8E44AD;
}

.why-chem-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-chem-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}
/* ========== MAIN SPLIT: VIDEO + CATEGORIES ========== */
.main-split {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .main-split {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .main-split {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

/* LEFT: VIDEO */
.split-video {
    position: relative;
    background: #0A1628;
    min-height: 420px;
}

@media (min-width: 768px) {
    .split-video {
        min-height: 520px;
    }
}

@media (min-width: 1024px) {
    .split-video {
        min-height: 580px;
    }
}

.split-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}

    .video-overlay:hover {
        background: rgba(0,0,0,0.12);
    }

.video-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.08);
}

.video-play-btn i {
    font-size: 24px;
    color: var(--primary);
    margin-left: 3px;
}

.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.video-time {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    font-variant-numeric: tabular-nums;
}

.video-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.video-bar-fill {
    width: 35%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

.video-ctrl-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s;
}

    .video-ctrl-btn:hover {
        color: #fff;
    }

    .video-ctrl-btn.fullscreen {
        font-size: 15px;
    }

/* RIGHT: CATEGORIES */
.split-cats {
    background: #F0F7FB;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .split-cats {
        padding: 44px 36px;
    }
}

@media (min-width: 1024px) {
    .split-cats {
        padding: 48px 44px;
    }
}

.cats-column-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(13,71,161,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .cats-column-title i {
        font-size: 13px;
        color: var(--primary);
    }

.cat-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

    .cat-link-list:last-child {
        margin-bottom: 0;
    }

    .cat-link-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--white);
        border: 1px solid transparent;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .cat-link-list a:hover {
            border-color: rgba(13,71,161,0.12);
            box-shadow: 0 2px 10px rgba(13,71,161,0.06);
            transform: translateX(4px);
        }

.cat-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.cat-link-list a:hover .cat-dot {
    opacity: 1;
}

.cat-link-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
}

.cat-link-list a:hover .cat-link-name {
    color: var(--primary);
}

.cat-link-arrow {
    font-size: 11px;
    color: #CBD5E1;
    margin-left: auto;
    transition: color 0.3s, transform 0.3s;
}

.cat-link-list a:hover .cat-link-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

/* ========== OVERVIEW PRODUCTS ========== */
.overview-section {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .overview-section {
        padding: 64px 0;
    }
}

.overview-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .overview-inner {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.overview-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.overview-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.overview-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .overview-heading {
        font-size: 30px;
    }
}

.overview-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .overview-text {
        font-size: 15px;
    }
}

/* ========== OUR RESEARCH ========== */
.research-section {
    background: var(--bg-light);
    padding: 56px 0;
}

@media (min-width: 768px) {
    .research-section {
        padding: 72px 0;
    }
}

.research-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

@media (min-width: 768px) {
    .research-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.research-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.research-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.research-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .research-heading {
        font-size: 30px;
    }
}

.research-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .research-text {
        font-size: 15px;
    }
}

.research-list {
    list-style: none;
    margin-top: 18px;
}

    .research-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--text);
        line-height: 1.7;
        margin-bottom: 8px;
    }

        .research-list li i {
            color: var(--accent);
            font-size: 12px;
            margin-top: 5px;
            min-width: 14px;
        }

/* ========== PARTNER LOGOS ========== */
.partners-section {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .partners-section {
        padding: 56px 0;
    }
}

.partners-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 28px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.partner-logo-item {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    filter: grayscale(1);
    opacity: 0.45;
    transition: all 0.3s;
}

    .partner-logo-item:hover {
        filter: grayscale(0);
        opacity: 0.85;
    }

    .partner-logo-item img {
        height: 100%;
        width: auto;
        max-height: 44px;
        object-fit: contain;
    }
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #FFFFFF;
    color: #1F2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: rgba(13, 71, 161, 0.15);
    color: #0D47A1;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #94A3B8;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #64748B;
    }

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --primary: #0D47A1;
    --primary-dark: #082C6B;
    --primary-light: #1565C0;
    --accent: #00ACC1;
    --accent-light: #E0F7FA;
    --dark: #0F172A;
    --text: #334155;
    --text-light: #64748B;
    --border: #E2E8F0;
    --bg-light: #F8FAFC;
    --bg-warm: #F1F5F9;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ==========================================
   CONTAINER
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--dark);
    color: #94A3B8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .top-bar-left a {
        color: #94A3B8;
        transition: color 0.3s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .top-bar-left a:hover {
            color: var(--accent);
        }

        .top-bar-left a i {
            font-size: 11px;
            color: var(--accent);
        }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .top-bar-right a {
        color: #94A3B8;
        transition: color 0.3s;
        font-size: 13px;
    }

        .top-bar-right a:hover {
            color: #fff;
        }

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow 0.3s;
}

    .header.scrolled {
        box-shadow: var(--shadow-md);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.logo img {
    height: 44px;
    width: auto;
}

/* Desktop Nav */
.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }
}

.nav a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.3s, background 0.3s;
}

    .nav a:hover {
        color: #CF2828;
    }
     

/* Header CTA */
.nav-cta {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: flex;
    }
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

    .btn-header:hover {
        background: var(--primary-light);
        box-shadow: 0 4px 16px rgba(13, 71, 161, 0.25);
    }

    .btn-header i {
        font-size: 12px;
    }

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    color: var(--dark);
    font-size: 20px;
    transition: background 0.3s;
}

    .mobile-toggle:hover {
        background: var(--bg-warm);
    }

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
    }

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-warm);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

    .mobile-menu-close:hover {
        background: #E2E8F0;
    }

.mobile-menu-nav {
    padding: 16px 12px;
    flex: 1;
    overflow-y: auto;
}

    .mobile-menu-nav a {
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        border-radius: 10px;
        transition: background 0.3s, color 0.3s;
    }

        .mobile-menu-nav a:hover {
            background: rgba(13, 71, 161, 0.05);
            color: var(--primary);
        }

.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

    .mobile-menu-footer .btn-header {
        width: 100%;
        justify-content: center;
    }

/* ==========================================
   HERO CAROUSEL
   ========================================== */
.hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 520px;
}

@media (min-width: 768px) {
    .carousel-slide {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .carousel-slide {
        height: 640px;
    }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.7) 0%, rgba(0, 172, 193, 0.3) 100%);
    display: flex;
    align-items: center;
}

.carousel-content {
    max-width: 640px;
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .carousel-content {
        padding: 60px 48px;
    }
}

@media (min-width: 1024px) {
    .carousel-content {
        padding: 0;
        margin-left: 8%;
    }
}

.carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 18px;
    margin-bottom: 20px;
}

    .carousel-badge i {
        color: var(--accent);
        font-size: 11px;
    }

.carousel-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .carousel-title {
        font-size: 50px;
    }
}

.carousel-title span {
    color: var(--accent);
}

.carousel-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

@media (min-width: 768px) {
    .carousel-desc {
        font-size: 17px;
    }
}

.carousel-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Carousel Arrows */
.carousel-arrows {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-arrows {
        bottom: 40px;
        right: 48px;
    }
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

    .carousel-arrow:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
    }

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-dots {
        bottom: 40px;
    }
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}

    .carousel-dot.active {
        background: var(--accent);
        width: 32px;
        border-radius: 5px;
    }

/* ==========================================
   BUTTONS (SHARED)
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
    font-family: inherit;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #00838F;
        box-shadow: 0 6px 24px rgba(0, 172, 193, 0.3);
    }

    .btn-primary:active {
        transform: scale(0.97);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    text-decoration: none;
}

    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.trust-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.08), rgba(0, 172, 193, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-icon i {
        font-size: 18px;
        color: var(--primary);
    }

.trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.trust-text span {
    font-size: 12px;
    color: var(--text-light);
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section {
    padding: 72px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 96px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 112px 0;
    }
}

.section-bg {
    background: var(--bg-light);
}

.section-dark {
    background: var(--dark);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(13, 71, 161, 0.06);
    border: 1px solid rgba(13, 71, 161, 0.12);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

    .section-badge i {
        font-size: 10px;
        color: var(--accent);
    }

.section-badge-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 42px;
    }
}

.section-title .accent {
    color: var(--primary);
}

.section-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-desc {
        font-size: 16px;
    }
}

.section-dark .section-title {
    color: #fff;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

.about-image-badge {
    position: absolute;
    bottom: -16px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.3);
    text-align: center;
    min-width: 120px;
}

@media (min-width: 768px) {
    .about-image-badge {
        right: -16px;
        bottom: -20px;
    }
}

.about-image-badge .num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-image-badge .label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}

.about-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .about-heading {
        font-size: 32px;
    }
}

.about-heading-accent {
    color: var(--primary);
}

.about-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 16px;
    }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

    .about-feature i {
        color: var(--accent);
        font-size: 12px;
    }

/* ==========================================
   PRODUCT CATEGORIES
   ========================================== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
        border-color: transparent;
    }

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

    .product-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 71, 161, 0.5) 0%, transparent 60%);
}

.product-card-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.product-card-body {
    padding: 20px 22px 24px;
}

.product-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(13, 71, 161, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

    .product-card-icon i {
        font-size: 16px;
        color: var(--primary);
    }

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.product-card-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s, color 0.3s;
}

    .product-card-link:hover {
        gap: 10px;
        color: var(--accent);
    }

    .product-card-link i {
        font-size: 10px;
        transition: transform 0.3s;
    }

    .product-card-link:hover i {
        transform: translateX(2px);
    }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .stat-num {
        font-size: 46px;
    }
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.stat-divider {
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px auto 0;
    opacity: 0.4;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

    .why-card:hover {
        border-color: rgba(13, 71, 161, 0.15);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.why-card-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.4;
}

.why-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.08), rgba(0, 172, 193, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

    .why-card-icon i {
        font-size: 20px;
        color: var(--primary);
    }

.why-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   INDUSTRIES SERVED
   ========================================== */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.industry-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

    .industry-card:hover {
        border-color: var(--primary);
        background: rgba(13, 71, 161, 0.02);
        transform: translateY(-2px);
    }

    .industry-card i {
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 12px;
        display: block;
    }

    .industry-card span {
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
    }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0A3D91 100%);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 100px 0;
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px), radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px), radial-gradient(circle at 60% 80%, #fff 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 70px 70px;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-inner {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
}

.cta-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 36px;
    }
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 16px;
    }
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #0A0F1A;
    color: #94A3B8;
}

.footer-main {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.4fr;
        gap: 48px;
    }
}

.footer-brand img {
    height: 38px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 18px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748B;
        font-size: 14px;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

.footer-col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E2E8F0;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
        color: #64748B;
        transition: color 0.3s, padding-left 0.3s;
        display: inline-flex;
        align-items: center;
    }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

    .footer-contact-item i {
        color: var(--accent);
        font-size: 13px;
        margin-top: 4px;
        min-width: 14px;
    }

    .footer-contact-item span {
        font-size: 13px;
        color: #64748B;
        line-height: 1.6;
    }

    .footer-contact-item a {
        color: #64748B;
        transition: color 0.3s;
    }

        .footer-contact-item a:hover {
            color: var(--accent);
        }

/* ==========================================
   COPYRIGHT BAR (2 PARTS)
   ========================================== */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}

.copyright-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .copyright-inner {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

.copyright-text {
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .copyright-text {
        text-align: left;
    }
}

.copyright-text a {
    color: #475569;
    transition: color 0.3s;
}

    .copyright-text a:hover {
        color: var(--accent);
    }

.copyright-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .copyright-logos {
        justify-content: flex-end;
    }
}

.copyright-logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s;
}

    .copyright-logo-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .copyright-logo-item img {
        height: 28px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.6;
    }

    .copyright-logo-item i {
        font-size: 18px;
        color: var(--accent);
        opacity: 0.7;
    }

    .copyright-logo-item span {
        font-size: 11px;
        color: #64748B;
        font-weight: 500;
    }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    z-index: 900;
}

    .back-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .back-to-top:hover {
        background: var(--accent);
        transform: translateY(-2px);
    }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-d1 {
    animation-delay: 0.05s;
}

.anim-d2 {
    animation-delay: 0.1s;
}

.anim-d3 {
    animation-delay: 0.15s;
}

.anim-d4 {
    animation-delay: 0.2s;
}

.scroll-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

    .scroll-anim.visible {
        opacity: 1;
        transform: translateY(0);
    }
