body.video-ready .hero__media video {
    opacity: 1
}
/* ---------- HERO ---------- */
.hero {
    /*position: relative;*/
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -80px;
}
.hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden
}
.hero__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
    z-index: 1
}
/* when JS marks video ready */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 12, .5), rgba(6, 9, 18, .55));
    z-index: 2
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: center
}
.hero-content {
    flex: 1
}
.hero-title {
    font-weight: 200;
    font-size: 44px;
    line-height: 1.02;
    margin: 0 0 12px;
    color: #fff
}
.hero-sub {
    color: var(--muted);
    margin: 0 0 20px;
}
.hero-actions {
    display: flex;
    gap: 12px
}
.hero-visual {
    width: 320px;
    min-width: 240px
}
/* ---------- PROCESS SECTION ---------- */
.process-section {
    padding: 60px 20px;
    background: linear-gradient(90deg, #29437f, #070d1d);
    text-align: center;
}
.process-section .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.process-section .grid div img {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
}
.process-section .grid h3 {
    font-size: 16px;
    margin: 8px 0 4px;
    color: #fff;
}
.process-section .grid p {
    font-size: 14px;
    color: var(--muted);
    padding-top: 0;
    margin-top: 0;
}
/* ---------- CASE STUDIES ---------- */
.case-studies {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    background-attachment: fixed;
    padding: 80px 20px;
    color: white;
    position: relative;
    z-index: 1;
}
.case-studies h2,
.case-studies p {
    color: #fff;
}
/* ---------- INDUSTRIES SERVED ---------- */
.industries-section {
    padding: 60px 20px;
    background: linear-gradient(90deg, #070d1d, #29437f);
    text-align: center;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.industries-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
}
.industries-grid div img {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
}
.industries-grid h3 {
    font-size: 15px;
    margin: 0;
    color: #e6eef8;
}