/* Industries Page v4 - The Industrial Matrix */

.ind-v4-container {
    background-color: #ffffff;
}

/* Hero Briefing */
.ind-briefing {
    margin-top: -80px;
    padding: calc(6rem + 80px) 0 6rem;
    border-bottom: 1px solid #f0f0f0;
}

.ind-briefing .ind-row-desc {
    margin-bottom: 0;
}

.ind-briefing-label {
    font-family: 'Tomorrow', sans-serif;
    color: #6C3BFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    display: block;
}

.ind-briefing-title {
    font-size: 4.5rem;
    font-weight: 300; /* DNA style light weight */
    color: #131617;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

/* Horizontal Strip Matrix */
.ind-matrix-row {
    padding: 6rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ind-matrix-row:hover {
    background-color: #fafbfc;
}

.ind-matrix-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6C3BFF, transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.ind-matrix-row:hover::before {
    left: 0;
    opacity: 0.5;
    animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.ind-row-flex {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

@media (max-width: 992px) {
    .ind-row-flex {
        flex-direction: column;
        gap: 2rem;
    }
}

.ind-row-meta {
    flex: 0 0 120px;
    font-family: 'Tomorrow', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #a0aec0;
    padding-top: 1rem;
}

.ind-row-content {
    flex: 1;
}

.ind-row-content h3 {
    font-size: 2.8rem;
    font-weight: 300; /* DNA style light weight */
    margin-bottom: 0.75rem;
    color: #131617;
    transition: all 0.3s ease;
}

.ind-matrix-row:hover .ind-row-content h3 {
    color: #6C3BFF;
    transform: translateX(10px);
}

.ind-row-desc {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.ind-row-assets {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.ind-asset-item {
    display: flex;
    flex-direction: column;
}

.ind-asset-val {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.ind-asset-name {
    font-size: 1rem;
    font-weight: 700;
    color: #131617;
}

/* Asymmetrical Reverse Variant */
.ind-matrix-row.reversed .ind-row-flex {
    flex-direction: row-reverse;
    text-align: right;
}

.ind-matrix-row.reversed .ind-row-meta {
    text-align: right;
}

.ind-matrix-row.reversed .ind-row-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ind-matrix-row.reversed .ind-row-content h3 {
    transform: none;
}

.ind-matrix-row.reversed:hover .ind-row-content h3 {
    transform: translateX(-10px);
}

.ind-matrix-row.reversed .ind-row-assets {
    flex-direction: row-reverse;
}

.ind-matrix-row.reversed .ind-asset-item {
    align-items: flex-end;
}

.ind-matrix-row.reversed::before {
    background: linear-gradient(90deg, transparent, #DA35F5, transparent);
}

@media (max-width: 992px) {
    .ind-matrix-row.reversed .ind-row-flex {
        flex-direction: column;
        text-align: left;
    }
    .ind-matrix-row.reversed .ind-row-content {
        align-items: flex-start;
    }
    .ind-matrix-row.reversed .ind-row-assets {
        flex-direction: row;
    }
    .ind-matrix-row.reversed .ind-asset-item {
        align-items: flex-start;
    }
}

/* Dark Zebra Variant */
.ind-matrix-row.dark {
    background-color: #131617;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ind-matrix-row.dark .ind-row-meta {
    color: rgba(255, 255, 255, 0.3);
}

.ind-matrix-row.dark .ind-row-content h3 {
    color: #ffffff;
}

.ind-matrix-row.dark .ind-row-desc {
    color: rgba(255, 255, 255, 0.6);
}

.ind-matrix-row.dark .ind-row-assets {
    border-top-color: rgba(255, 255, 255, 0.05);
}

.ind-matrix-row.dark .ind-asset-val {
    color: rgba(255, 255, 255, 0.3);
}

.ind-matrix-row.dark .ind-asset-name {
    color: #ffffff;
}

.ind-matrix-row.dark::before {
    background: linear-gradient(90deg, transparent, #DA35F5, transparent);
}

/* Dark Matrix Section - Footer area tweak */
.ind-dark-matrix {
    background-color: #0d0f10; /* Slightly darker than zebra for separation */
    padding: 6rem 0 calc(6rem + 139px);
    position: relative;
    text-align: center;
}

.ind-dark-matrix .ind-main-title {
    margin-bottom: 0.5rem;
}

.ind-dark-matrix p {
    margin-bottom: 3rem;
}

.ind-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media (max-width: 768px) {
    .ind-dark-grid { grid-template-columns: 1fr; }
}

.ind-dark-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.ind-dark-card:hover {
    border-color: rgba(108, 59, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.ind-dark-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300; /* Consistent light style */
    margin-bottom: 0.75rem;
}

.ind-dark-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.9rem;
}
