/*
 * M/S Babu Enterprise industrial home page
 * Scoped to body.home-industrial so the admin and inner pages remain untouched.
 */

body.home-industrial {
    --home-primary: #0868c8;
    --home-primary-deep: #04509d;
    --home-cyan: #13a8ca;
    --home-navy: #061a2d;
    --home-navy-soft: #0b2c47;
    --home-ink: #10243a;
    --home-copy: #566a7e;
    --home-border: rgba(10, 50, 82, .13);
    --home-white: #ffffff;
    --home-soft: #f2f7fb;
    --home-glow: 0 24px 70px rgba(4, 48, 83, .14);
    --home-transition: .42s cubic-bezier(.22, .78, .24, 1);
    background: #f6f9fc;
    color: var(--home-ink);
    overflow-x: hidden;
}

body.home-industrial main {
    overflow: hidden;
}

body.home-industrial .container {
    max-width: 1320px;
}

.home-scroll-progress {
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #08b8d6, #0d6efd, #ffffff);
    box-shadow: 0 0 18px rgba(23, 179, 214, .9);
    pointer-events: none;
}

body.home-industrial [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.22, .78, .24, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

body.home-industrial [data-reveal][data-reveal-direction="left"] {
    transform: translateX(-38px);
}

body.home-industrial [data-reveal][data-reveal-direction="right"] {
    transform: translateX(38px);
}

body.home-industrial [data-reveal].revealed {
    opacity: 1;
    transform: none;
}

.industrial-section {
    position: relative;
    padding: clamp(82px, 8vw, 126px) 0;
}

.industrial-section-title {
    max-width: 820px;
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.industrial-section-title span {
    color: var(--home-primary);
}

.industrial-section-title--white {
    color: #fff;
}

.industrial-section-title--white span {
    color: #7edff1;
}

.industrial-section-copy {
    max-width: 760px;
    margin-top: 1.25rem;
    color: var(--home-copy);
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.85;
}

.industrial-section-copy--white {
    color: rgba(255, 255, 255, .72);
}

.section-kicker,
.industrial-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    width: fit-content;
    padding: .58rem .95rem;
    border: 1px solid rgba(8, 104, 200, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .83);
    color: var(--home-primary-deep);
    box-shadow: 0 10px 24px rgba(8, 104, 200, .08);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1;
    text-transform: uppercase;
}

.section-kicker--dark,
.industrial-kicker {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(5, 33, 56, .58);
    color: #eafaff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 15px 38px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
}

.section-kicker--light {
    border-color: rgba(8, 104, 200, .13);
    background: rgba(255, 255, 255, .9);
}

.industrial-kicker__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #31d6a4;
    box-shadow: 0 0 0 0 rgba(49, 214, 164, .55);
    animation: homePulse 2.2s infinite;
}

.industrial-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 54px;
    padding: .85rem 1.4rem;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: .94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform var(--home-transition), box-shadow var(--home-transition), background var(--home-transition), border-color var(--home-transition);
}

.industrial-btn::before {
    position: absolute;
    top: -100%;
    left: -35%;
    width: 28%;
    height: 300%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
    content: "";
    transform: rotate(20deg);
    transition: left .7s ease;
}

.industrial-btn:hover::before {
    left: 120%;
}

.industrial-btn:hover {
    transform: translateY(-3px);
}

.industrial-btn--primary {
    background: linear-gradient(135deg, #0a7bd8, #0758af);
    color: #fff;
    box-shadow: 0 18px 36px rgba(3, 87, 169, .27);
}

.industrial-btn--primary:hover {
    color: #fff;
    box-shadow: 0 24px 48px rgba(3, 87, 169, .36);
}

.industrial-btn--glass {
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .11);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 16px 38px rgba(0,0,0,.13);
    backdrop-filter: blur(13px);
}

.industrial-btn--glass:hover {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.industrial-btn--dark {
    background: var(--home-navy);
    color: #fff;
    box-shadow: 0 16px 34px rgba(4, 25, 43, .2);
}

.industrial-btn--dark:hover {
    background: #0b2d48;
    color: #fff;
}

.industrial-outline-link {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--home-primary-deep);
    font-weight: 800;
    text-decoration: none;
    transition: gap var(--home-transition), color var(--home-transition), transform var(--home-transition);
}

.industrial-outline-link:hover {
    gap: 1rem;
    color: var(--home-cyan);
    transform: translateX(3px);
}

.industrial-outline-link--solid {
    padding: .9rem 1.35rem;
    border: 1px solid rgba(8, 104, 200, .18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 46, 76, .09);
}

/* Hero */
.industrial-hero {
    --parallax-y: 0px;
    position: relative;
    min-height: calc(100svh - 110px);
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: linear-gradient(90deg, rgba(2, 15, 29, .97) 0%, rgba(3, 25, 45, .92) 41%, rgba(3, 39, 65, .48) 100%), var(--hero-bg);
    background-position: center calc(50% + var(--parallax-y));
    background-size: cover;
    color: #fff;
}

.industrial-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: radial-gradient(circle at 14% 17%, rgba(18, 164, 205, .18), transparent 32%), radial-gradient(circle at 78% 85%, rgba(13, 110, 217, .2), transparent 34%);
    content: "";
    pointer-events: none;
}

.industrial-hero::after {
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -26%;
    width: 680px;
    aspect-ratio: 1;
    border: 1px solid rgba(125, 226, 245, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(68, 190, 222, .03), 0 0 0 160px rgba(68, 190, 222, .02);
    content: "";
    animation: homeSlowSpin 24s linear infinite;
}

.industrial-hero__row {
    min-height: calc(100svh - 110px);
    padding: 6.2rem 0 7rem;
}

.industrial-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, #000, transparent 88%);
    pointer-events: none;
}

.industrial-hero__thread {
    position: absolute;
    z-index: 0;
    height: 1px;
    width: 52vw;
    background: linear-gradient(90deg, transparent, rgba(75, 213, 240, .78), transparent);
    filter: drop-shadow(0 0 10px rgba(75, 213, 240, .7));
    transform-origin: center;
    pointer-events: none;
}

.industrial-hero__thread--one {
    top: 25%;
    right: -8%;
    transform: rotate(-11deg);
    animation: threadSlide 7s ease-in-out infinite alternate;
}

.industrial-hero__thread--two {
    right: -2%;
    bottom: 24%;
    transform: rotate(9deg);
    animation: threadSlide 9s ease-in-out infinite alternate-reverse;
}

.hero-copy-panel {
    max-width: 780px;
}

.industrial-hero__title {
    max-width: 880px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 5.1vw, 5.7rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.industrial-hero__title span {
    display: inline;
    color: transparent;
    background: linear-gradient(100deg, #fff 2%, #6fe2f1 35%, #42a7ff 76%, #fff 100%);
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: titleShimmer 6s linear infinite;
}

.industrial-hero__lead {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(236, 248, 255, .78);
    font-size: clamp(1.03rem, 1.55vw, 1.22rem);
    line-height: 1.86;
}

.industrial-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.1rem;
}

.hero-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .84);
    font-size: .87rem;
    font-weight: 650;
}

.hero-trust-list i {
    color: #52dab1;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 660px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(4, 29, 49, .52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.hero-stat {
    position: relative;
    padding: 1rem 1.05rem;
}

.hero-stat + .hero-stat::before {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    background: rgba(255,255,255,.14);
    content: "";
}

.hero-stat strong {
    display: block;
    color: #fff;
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.1;
}

.hero-stat small {
    display: block;
    margin-top: .3rem;
    color: rgba(255,255,255,.6);
    font-size: .72rem;
    line-height: 1.4;
}

.hero-machine-stage {
    position: relative;
    max-width: 520px;
    min-height: 610px;
    margin-left: auto;
    perspective: 1200px;
}

.hero-machine-card {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: min(100%, 440px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 28px;
    background: rgba(242, 250, 255, .93);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255,255,255,.72);
    color: var(--home-ink);
    text-decoration: none;
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .45s ease;
    backdrop-filter: blur(15px);
}

.hero-machine-card:hover {
    color: var(--home-ink);
    box-shadow: 0 44px 110px rgba(0,0,0,.43), 0 0 0 1px rgba(88, 219, 241, .26);
}

.hero-machine-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem .75rem;
    color: #37526c;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-machine-card__top i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--home-primary);
    color: #fff;
}

.hero-machine-card__image-wrap {
    position: relative;
    height: 300px;
    margin: 0 .9rem;
    overflow: hidden;
    border-radius: 19px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(8, 57, 94, .09);
}

.hero-machine-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .7s cubic-bezier(.22,.78,.24,1);
}

.hero-machine-card:hover .hero-machine-card__image {
    transform: scale(1.055);
}

.hero-machine-card__scan {
    position: absolute;
    top: -20%;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #28d1ef, transparent);
    box-shadow: 0 0 16px rgba(40, 209, 239, .9);
    animation: machineScan 4.5s ease-in-out infinite;
}

.hero-machine-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.hero-machine-card__body small {
    color: var(--home-primary);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-machine-card__body h2 {
    margin: .5rem 0 .85rem;
    color: var(--home-ink);
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.27;
}

.hero-machine-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.hero-machine-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .42rem .6rem;
    border: 1px solid rgba(8, 104, 200, .1);
    border-radius: 9px;
    background: #edf6fd;
    color: #3b5b75;
    font-size: .72rem;
    font-weight: 700;
}

.hero-machine-stage__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(113, 221, 242, .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: homeSlowSpin 18s linear infinite;
}

.hero-machine-stage__orbit::after {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #54d8ef;
    box-shadow: 0 0 16px rgba(84, 216, 239, .9);
    content: "";
}

.hero-machine-stage__orbit--outer {
    width: 540px;
    height: 540px;
}

.hero-machine-stage__orbit--inner {
    width: 410px;
    height: 410px;
    animation-direction: reverse;
    animation-duration: 13s;
}

.hero-machine-stage__gear {
    position: absolute;
    right: -20px;
    bottom: 42px;
    color: rgba(139, 226, 242, .18);
    font-size: 8.5rem;
    line-height: 1;
    animation: homeSlowSpin 16s linear infinite;
}

.hero-floating-note {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 190px;
    padding: .8rem .95rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    background: rgba(5, 31, 51, .78);
    color: #fff;
    box-shadow: 0 20px 44px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    animation: floatNote 4.8s ease-in-out infinite;
}

.hero-floating-note > i {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #10a9ce, #0868c8);
    font-size: 1.05rem;
}

.hero-floating-note span {
    display: grid;
}

.hero-floating-note small {
    color: rgba(255,255,255,.58);
    font-size: .67rem;
}

.hero-floating-note strong {
    font-size: .79rem;
    line-height: 1.35;
}

.hero-floating-note--support {
    right: -36px;
    bottom: 105px;
}

.hero-floating-note--quality {
    top: 72px;
    left: -38px;
    animation-delay: -2.2s;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll-cue:hover {
    color: #fff;
}

.hero-scroll-cue i {
    animation: scrollCue 1.8s ease-in-out infinite;
}

/* Marquee */
.technology-marquee {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(8, 54, 90, .14);
    background: #fff;
    box-shadow: 0 14px 36px rgba(5, 34, 57, .08);
}

.technology-marquee__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: marqueeMove 34s linear infinite;
}

.technology-marquee:hover .technology-marquee__track {
    animation-play-state: paused;
}

.technology-marquee__track span {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.55rem;
    color: #29455f;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    white-space: nowrap;
}

.technology-marquee__track i {
    color: var(--home-primary);
    font-size: .62rem;
}

/* Featured products */
.featured-machines-section {
    isolation: isolate;
    background: #edf5fb;
}

.featured-machines-section .section-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(239, 247, 253, .97) 0%, rgba(241, 248, 253, .94) 52%, rgba(234, 245, 252, .83) 100%), var(--section-bg);
    background-position: center;
    background-size: cover;
}

.featured-machines-section::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.34), transparent 24%, rgba(255,255,255,.38));
    content: "";
    pointer-events: none;
}

.industrial-gear {
    position: absolute;
    z-index: -1;
    color: rgba(8, 104, 200, .05);
    line-height: 1;
    pointer-events: none;
}

.industrial-gear--one {
    top: 70px;
    right: 4vw;
    font-size: 12rem;
    animation: homeSlowSpin 24s linear infinite;
}

.industrial-gear--two {
    bottom: 30px;
    left: -35px;
    font-size: 8rem;
    animation: homeSlowSpin 18s linear infinite reverse;
}

.industrial-product-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(8, 61, 98, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(5, 43, 73, .09);
    transition: transform var(--home-transition), box-shadow var(--home-transition), border-color var(--home-transition);
}

.industrial-product-card:hover {
    border-color: rgba(8, 104, 200, .28);
    box-shadow: 0 30px 70px rgba(5, 49, 82, .16);
    transform: translateY(-10px);
}

.industrial-product-card__media {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(145deg, #f7fbfe, #e8f2f8);
}

.industrial-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform .75s cubic-bezier(.22,.78,.24,1), filter .55s ease;
}

.industrial-product-card:hover .industrial-product-card__media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.07);
}

.industrial-product-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(2, 24, 42, .38));
    opacity: .35;
    transition: opacity var(--home-transition);
}

.industrial-product-card:hover .industrial-product-card__shade {
    opacity: .65;
}

.industrial-product-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 82px);
    padding: .45rem .68rem;
    border: 1px solid rgba(255,255,255,.66);
    border-radius: 999px;
    background: rgba(6, 31, 51, .76);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.industrial-product-card__open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--home-primary);
    box-shadow: 0 14px 30px rgba(4, 31, 53, .18);
    transition: transform var(--home-transition), background var(--home-transition), color var(--home-transition);
}

.industrial-product-card:hover .industrial-product-card__open {
    background: var(--home-primary);
    color: #fff;
    transform: rotate(45deg) scale(1.08);
}

.industrial-product-card__body {
    display: flex;
    min-height: 275px;
    flex-direction: column;
    padding: 1.3rem 1.35rem 1.4rem;
}

.industrial-product-card__model {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .4rem;
    margin-bottom: .75rem;
    color: #668096;
    font-size: .69rem;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.industrial-product-card h3 {
    margin: 0;
    font-size: 1.27rem;
    font-weight: 800;
    line-height: 1.38;
}

.industrial-product-card h3 a {
    color: var(--home-ink);
    text-decoration: none;
    transition: color var(--home-transition);
}

.industrial-product-card:hover h3 a {
    color: var(--home-primary);
}

.industrial-product-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: .85rem 0 1rem;
    color: var(--home-copy);
    font-size: .89rem;
    line-height: 1.73;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.industrial-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-top: auto;
    padding-top: .9rem;
    border-top: 1px solid rgba(7, 65, 104, .1);
}

.industrial-product-card__footer > span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #71869a;
    font-size: .75rem;
    font-weight: 700;
}

.industrial-product-card__footer a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--home-primary);
    font-size: .79rem;
    font-weight: 800;
    text-decoration: none;
}

/* Process */
.production-process-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--process-bg);
    background-position: center;
    background-size: cover;
}

.production-process-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(100deg, rgba(3, 19, 34, .96) 0%, rgba(4, 35, 58, .9) 50%, rgba(4, 48, 73, .76) 100%);
}

.production-process-section::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(94, 220, 240, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(80, 211, 235, .025), 0 0 0 120px rgba(80, 211, 235, .018);
    content: "";
    animation: homeSlowSpin 22s linear infinite;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 20px 45px rgba(0,0,0,.12);
    color: #fff;
    backdrop-filter: blur(13px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.process-card:hover {
    border-color: rgba(96, 224, 245, .38);
    background: linear-gradient(145deg, rgba(24,167,202,.2), rgba(255,255,255,.07));
    transform: translateY(-8px);
}

.process-card::after {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
    transition: transform .7s ease;
}

.process-card:hover::after {
    transform: scale(1.3);
}

.process-card__number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255,255,255,.14);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.process-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(31,188,217,.3), rgba(8,104,200,.34));
    color: #91ecf7;
    font-size: 1.3rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin: 1.1rem 0 .6rem;
    color: #fff;
    font-size: 1.13rem;
    font-weight: 800;
}

.process-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: .85rem;
    line-height: 1.72;
}

/* Gallery mosaic */
.machine-showcase-section {
    background: #fff;
}

.machine-showcase-section::before {
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image: radial-gradient(circle at 1px 1px, rgba(8, 104, 200, .12) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000, transparent 84%);
    content: "";
    pointer-events: none;
}

.section-heading-centered {
    max-width: 930px;
    margin-inline: auto;
    text-align: center;
}

.section-heading-centered .section-kicker {
    margin-inline: auto;
}

.section-heading-centered .industrial-section-title,
.section-heading-centered .industrial-section-copy {
    margin-inline: auto;
}

.machine-showcase-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr .9fr .9fr;
    grid-template-rows: 260px 260px;
    gap: 1rem;
}

.machine-showcase-tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #dceaf3;
    box-shadow: 0 20px 50px rgba(5, 45, 76, .11);
    color: #fff;
    text-decoration: none;
}

.machine-showcase-tile--1 {
    grid-row: 1 / 3;
}

.machine-showcase-tile--4 {
    grid-column: 2 / 4;
}

.machine-showcase-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.22,.78,.24,1), filter .55s ease;
}

.machine-showcase-tile:hover img {
    filter: saturate(1.12) contrast(1.03);
    transform: scale(1.075);
}

.machine-showcase-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,19,32,.08) 24%, rgba(3,22,38,.88) 100%);
    transition: background .5s ease;
}

.machine-showcase-tile:hover .machine-showcase-tile__overlay {
    background: linear-gradient(180deg, rgba(4,55,91,.1) 18%, rgba(3,30,49,.93) 100%);
}

.machine-showcase-tile__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: .32rem;
    padding: 1.4rem;
    transform: translateY(20px);
    transition: transform var(--home-transition);
}

.machine-showcase-tile:hover .machine-showcase-tile__content {
    transform: none;
}

.machine-showcase-tile__content small {
    color: #75e0f0;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.machine-showcase-tile__content strong {
    max-width: 520px;
    color: #fff;
    font-size: clamp(1.02rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.3;
}

.machine-showcase-tile__content > span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .25rem;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.machine-showcase-tile:hover .machine-showcase-tile__content > span {
    opacity: 1;
    transform: none;
}

/* Spare parts */
.spare-parts-industrial-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--spare-bg);
    background-position: center;
    background-size: cover;
}

.spare-parts-industrial-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(95deg, rgba(3, 17, 30, .96), rgba(4, 40, 63, .88) 56%, rgba(4, 49, 70, .78));
}

.spare-parts-industrial-section::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,226,245,.52), transparent);
    content: "";
}

.spare-glass-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 330px;
    flex-direction: column;
    overflow: hidden;
    padding: .75rem .75rem 1.1rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 50px rgba(0,0,0,.17);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(14px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.spare-glass-card:hover {
    border-color: rgba(104, 225, 244, .44);
    background: linear-gradient(145deg, rgba(18, 156, 193, .23), rgba(255,255,255,.075));
    color: #fff;
    transform: translateY(-9px);
}

.spare-glass-card__image {
    display: block;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.93);
}

.spare-glass-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .55rem;
    transition: transform .7s ease;
}

.spare-glass-card:hover .spare-glass-card__image img {
    transform: scale(1.08);
}

.spare-glass-card > small {
    margin: .95rem 0 .38rem;
    color: #78dfef;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.spare-glass-card > strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.42;
}

.spare-glass-card__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: auto;
    padding-top: .8rem;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    font-weight: 800;
}

/* About */
.company-story-section {
    background: linear-gradient(180deg, #f8fbfd, #eef5fa);
}

.company-story-section__pattern {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient(30deg, rgba(8,104,200,.035) 12%, transparent 12.5%, transparent 87%, rgba(8,104,200,.035) 87.5%, rgba(8,104,200,.035)), linear-gradient(150deg, rgba(8,104,200,.035) 12%, transparent 12.5%, transparent 87%, rgba(8,104,200,.035) 87.5%, rgba(8,104,200,.035));
    background-position: 0 0, 42px 74px;
    background-size: 84px 148px;
    pointer-events: none;
}

.company-story-visual {
    position: relative;
    max-width: 600px;
    min-height: 510px;
}

.company-story-visual__frame {
    position: absolute;
    top: 45px;
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(8, 104, 200, .14);
    border-radius: 30px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 35px 80px rgba(4, 45, 76, .14);
    transform: rotate(-2deg);
}

.company-story-visual__frame::before {
    position: absolute;
    z-index: 2;
    top: -70%;
    left: -25%;
    width: 28%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
    content: "";
    transform: rotate(22deg);
    animation: cardShine 6s ease-in-out infinite;
}

.company-story-visual__frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    border-radius: 20px;
}

.company-story-visual__badge {
    position: absolute;
    z-index: 4;
    right: -8px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 310px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 17px;
    background: linear-gradient(135deg, #0868c8, #07529f);
    color: #fff;
    box-shadow: 0 22px 45px rgba(5, 75, 135, .27);
    animation: floatNote 5.2s ease-in-out infinite;
}

.company-story-visual__badge > i {
    font-size: 1.65rem;
}

.company-story-visual__badge span {
    display: grid;
}

.company-story-visual__badge small {
    color: rgba(255,255,255,.7);
    font-size: .67rem;
}

.company-story-visual__badge strong {
    font-size: .88rem;
}

.company-story-visual__line {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 20px;
    width: 230px;
    height: 230px;
    border: 1px dashed rgba(8,104,200,.25);
    border-radius: 50%;
    animation: homeSlowSpin 18s linear infinite;
}

.company-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.company-feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid rgba(6, 78, 127, .1);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 30px rgba(5, 50, 83, .06);
    transition: transform var(--home-transition), border-color var(--home-transition), box-shadow var(--home-transition);
}

.company-feature-list > div:hover {
    border-color: rgba(8,104,200,.23);
    box-shadow: 0 18px 38px rgba(5, 50, 83, .1);
    transform: translateY(-5px);
}

.company-feature-list i {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #e6f3fc;
    color: var(--home-primary);
    font-size: 1.05rem;
}

.company-feature-list span {
    display: grid;
}

.company-feature-list strong {
    color: var(--home-ink);
    font-size: .86rem;
}

.company-feature-list small {
    margin-top: .22rem;
    color: var(--home-copy);
    font-size: .74rem;
    line-height: 1.55;
}

/* Partners */
.partner-industrial-section {
    position: relative;
    isolation: isolate;
    padding: clamp(88px, 8vw, 126px) 0;
    overflow: hidden;
    background-color: var(--home-navy);
    background-image: var(--partner-bg);
    background-position: center;
    background-size: cover;
}

.partner-industrial-section__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(95deg, rgba(3, 17, 31, .97) 0%, rgba(4, 33, 54, .91) 54%, rgba(5, 48, 72, .78) 100%);
}

.partner-industrial-grid {
    display: grid;
    gap: 1rem;
}

.partner-industrial-card {
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 50px rgba(0,0,0,.14);
    backdrop-filter: blur(13px);
    transition: transform var(--home-transition), border-color var(--home-transition), background var(--home-transition);
}

.partner-industrial-card:hover {
    border-color: rgba(107, 223, 241, .38);
    background: linear-gradient(145deg, rgba(16, 149, 187, .22), rgba(255,255,255,.065));
    transform: translateX(-7px);
}

.partner-industrial-card__logo {
    display: grid;
    min-height: 115px;
    overflow: hidden;
    place-items: center;
    padding: .8rem;
    border-radius: 15px;
    background: #fff;
}

.partner-industrial-card__logo img {
    width: 100%;
    max-height: 95px;
    object-fit: contain;
}

.partner-industrial-card small {
    color: #77deef;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.partner-industrial-card h3 {
    margin: .3rem 0 .45rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.partner-industrial-card p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: .82rem;
    line-height: 1.66;
}

/* Final CTA */
.final-industrial-cta {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #eef5fa, #fff);
}

.final-industrial-cta::before,
.final-industrial-cta::after {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(95px);
    content: "";
    pointer-events: none;
}

.final-industrial-cta::before {
    top: -180px;
    left: -100px;
    background: rgba(8, 104, 200, .16);
}

.final-industrial-cta::after {
    right: -80px;
    bottom: -210px;
    background: rgba(24, 180, 208, .16);
}

.final-industrial-cta__thread {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(8,104,200,.25), transparent);
    transform: rotate(-4deg);
}

.final-industrial-cta__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    padding: clamp(1.8rem, 4vw, 3.2rem);
    border: 1px solid rgba(8, 84, 137, .13);
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 28px 70px rgba(4, 44, 74, .12);
    backdrop-filter: blur(15px);
}

.final-industrial-cta__box::after {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(8,104,200,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(8,104,200,.035), 0 0 0 90px rgba(8,104,200,.02);
    content: "";
}

.final-industrial-cta h2 {
    max-width: 760px;
    margin: 1rem 0 .7rem;
    color: var(--home-ink);
    font-size: clamp(1.85rem, 3.3vw, 3.2rem);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -.035em;
}

.final-industrial-cta p {
    max-width: 780px;
    margin: 0;
    color: var(--home-copy);
    line-height: 1.75;
}

.final-industrial-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: .75rem;
}

/* Animations */
@keyframes homePulse {
    70% { box-shadow: 0 0 0 9px rgba(49, 214, 164, 0); }
    100% { box-shadow: 0 0 0 0 rgba(49, 214, 164, 0); }
}

@keyframes homeSlowSpin {
    to { rotate: 360deg; }
}

@keyframes titleShimmer {
    to { background-position: 220% center; }
}

@keyframes threadSlide {
    from { opacity: .25; translate: -60px 0; }
    to { opacity: .85; translate: 70px 0; }
}

@keyframes machineScan {
    0%, 15% { top: -10%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    85%, 100% { top: 110%; opacity: 0; }
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollCue {
    0%, 100% { transform: translateY(0); opacity: .55; }
    50% { transform: translateY(7px); opacity: 1; }
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}

@keyframes cardShine {
    0%, 55% { left: -30%; }
    90%, 100% { left: 125%; }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .industrial-hero__title {
        font-size: clamp(2.8rem, 5.8vw, 4.8rem);
    }

    .hero-machine-stage {
        min-height: 560px;
    }

    .hero-machine-stage__orbit--outer {
        width: 480px;
        height: 480px;
    }

    .hero-machine-stage__orbit--inner {
        width: 360px;
        height: 360px;
    }

    .hero-floating-note--support {
        right: -10px;
    }

    .hero-floating-note--quality {
        left: -10px;
    }

    .machine-showcase-grid {
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: repeat(3, 250px);
    }

    .machine-showcase-tile--1 {
        grid-row: 1 / 3;
    }

    .machine-showcase-tile--4 {
        grid-column: 1 / 2;
    }

    .machine-showcase-tile--5 {
        grid-column: 2 / 3;
    }
}

@media (max-width: 991.98px) {
    .industrial-hero {
        min-height: auto;
        background-position: 64% center;
    }

    .industrial-hero__row {
        min-height: auto;
        padding: 6.3rem 0 5.5rem;
    }

    .hero-copy-panel {
        max-width: 850px;
    }

    .hero-machine-stage {
        max-width: 580px;
        min-height: 610px;
        margin: 0 auto;
    }

    .hero-scroll-cue {
        display: none;
    }

    .process-grid {
        margin-top: 1rem;
    }

    .company-story-visual {
        margin: 0 auto;
    }

    .final-industrial-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-industrial-cta__actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .industrial-section,
    .production-process-section,
    .spare-parts-industrial-section,
    .partner-industrial-section {
        padding: 76px 0;
    }

    .industrial-hero {
        background-image: linear-gradient(180deg, rgba(2,15,29,.98) 0%, rgba(3,25,45,.95) 55%, rgba(3,35,58,.76) 100%), var(--hero-bg);
        background-position: 63% center;
    }

    .industrial-hero__row {
        padding: 5rem 0 4.3rem;
    }

    .industrial-hero__title {
        font-size: clamp(2.45rem, 11vw, 3.7rem);
        line-height: 1.02;
    }

    .industrial-hero__lead {
        font-size: 1rem;
        line-height: 1.75;
    }

    .industrial-hero__actions,
    .industrial-hero__actions .industrial-btn {
        width: 100%;
    }

    .hero-trust-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .hero-stat + .hero-stat::before {
        top: 0;
        right: 1rem;
        bottom: auto;
        left: 1rem;
        width: auto;
        height: 1px;
    }

    .hero-stat small {
        margin: 0;
        text-align: right;
    }

    .hero-machine-stage {
        min-height: 530px;
    }

    .hero-machine-card {
        width: min(92%, 430px);
        transform: translate(-50%, -50%);
    }

    .hero-machine-card__image-wrap {
        height: 255px;
    }

    .hero-machine-stage__orbit--outer {
        width: 420px;
        height: 420px;
    }

    .hero-machine-stage__orbit--inner {
        width: 320px;
        height: 320px;
    }

    .hero-floating-note {
        min-width: 165px;
        padding: .7rem .78rem;
    }

    .hero-floating-note--quality {
        top: 35px;
        left: 0;
    }

    .hero-floating-note--support {
        right: 0;
        bottom: 62px;
    }

    .process-grid,
    .company-feature-list {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .machine-showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .machine-showcase-tile,
    .machine-showcase-tile--1,
    .machine-showcase-tile--4,
    .machine-showcase-tile--5 {
        grid-column: auto;
        grid-row: auto;
        min-height: 280px;
    }

    .company-story-visual {
        min-height: 410px;
    }

    .company-story-visual__frame {
        top: 20px;
    }

    .partner-industrial-card {
        grid-template-columns: 1fr;
    }

    .partner-industrial-card__logo {
        min-height: 130px;
    }

    .final-industrial-cta__actions {
        flex-direction: column;
    }

    .final-industrial-cta__actions .industrial-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .industrial-kicker,
    .section-kicker {
        font-size: .65rem;
        line-height: 1.35;
    }

    .industrial-section-title {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .hero-machine-stage {
        min-height: 490px;
    }

    .hero-machine-card__top {
        font-size: .62rem;
    }

    .hero-machine-card__image-wrap {
        height: 225px;
    }

    .hero-machine-card__body {
        padding: 1rem;
    }

    .hero-machine-stage__orbit--outer {
        width: 355px;
        height: 355px;
    }

    .hero-machine-stage__orbit--inner {
        width: 270px;
        height: 270px;
    }

    .hero-floating-note {
        display: none;
    }

    .industrial-product-card__media {
        height: 235px;
    }

    .company-story-visual {
        min-height: 340px;
    }

    .company-story-visual__badge {
        right: 0;
        bottom: 0;
        left: 16px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home-industrial *,
    body.home-industrial *::before,
    body.home-industrial *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    body.home-industrial [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
