/**
 * Global Lindus — Homepage enhanced styling
 */

/* ---- Homepage section rhythm ---- */
.top-selling {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.eng-stack {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.industries-marquee {
    background: var(--color-surface-alt);
    border-bottom: 1px solid var(--color-border);
}

.process-work {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.process-work::before,
.process-work::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.35;
    pointer-events: none;
}

.process-work::before {
    top: 2rem;
    left: 2rem;
    border-width: 0 28px 48px 28px;
    border-color: transparent transparent rgba(232, 93, 4, 0.2) transparent;
}

.process-work::after {
    top: 3rem;
    right: 3rem;
    border-width: 48px 28px 0 28px;
    border-color: rgba(13, 148, 136, 0.2) transparent transparent transparent;
}

.process-work__rainbow {
    width: 120px;
    height: 4px;
    margin: 0 auto 1rem;
    border-radius: 4px;
    background: linear-gradient(90deg, #e85d04, #ca8a04, #1e4976, #0d9488, #4f46e5, #dc2626);
}

.plants-showcase {
    background: var(--color-primary-dark);
}

/* ---- Unified section layout (matches Top Selling / Process Plants) ---- */
.home-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.home-section__header .eyebrow,
.home-section__header [class$='__label'] {
    justify-content: center;
}

.home-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.home-section__title span {
    color: var(--color-primary);
}

.home-section__header--light .home-section__title {
    color: #fff;
}

.home-section__header--light .home-section__title span {
    background: linear-gradient(90deg, #7dd3fc, #bae6fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-section__desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.home-section__header--light .home-section__desc {
    color: #94a3b8;
}

.home-section__footer {
    text-align: center;
    margin-top: 2.5rem;
}

.top-selling,
.eng-stack,
.industries-marquee,
.process-work,
.plants-showcase {
    padding: 5.5rem 0;
}

/* ---- Hero refresh (1600 × 500) ---- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
}

.hero.hero-slider {
    min-height: 0;
    width: 100%;
    aspect-ratio: 1600 / 660;
    height: auto;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to top, var(--color-surface-alt), transparent);
    z-index: 2;
    pointer-events: none;
}

/* ---- Hero slider (2 slides: image + banner) ---- */
.hero-slider {
    background-color: var(--color-primary-dark);
}

.hero-slider__backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider__bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slider__bg.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider__bg--image {
    background-color: var(--color-primary-dark);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider__bg--image .hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(15, 39, 68, 0.94) 0%, rgba(30, 73, 118, 0.82) 42%, rgba(13, 148, 136, 0.45) 100%),
        radial-gradient(ellipse 80% 60% at 85% 20%, rgba(232, 93, 4, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.hero-slider__bg--banner {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider .hero__grid {
    position: relative;
    z-index: 2;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slider--banner-active .hero__grid {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-slider--banner-active::after {
    opacity: 0;
}

.hero-slider--banner-active .hero-slider__arrow {
    border-color: rgba(26, 54, 104, 0.3);
    background: rgba(26, 54, 104, 0.08);
    color: #1A3668;
}

.hero-slider--banner-active .hero-slider__dot {
    background: rgba(26, 54, 104, 0.25);
}

.hero-slider--banner-active .hero-slider__dot:hover {
    background: rgba(26, 54, 104, 0.45);
}

.hero-slider__controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
}

.hero-slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.hero-slider__dot.is-active {
    background: var(--color-accent);
    width: 28px;
    border-radius: var(--radius-pill);
}

.hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.65);
}

.hero-slider__dot.is-active:hover {
    background: var(--color-accent);
}

.hero__grid {
    padding: 6rem 0 5rem;
}

.hero__badge {
    animation: fadeUp 0.8s ease both;
}

.hero__title {
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero__text {
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero__actions {
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero__visual {
    animation: fadeUp 0.8s 0.25s ease both;
}

.hero__card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero__stat-num {
    text-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- About full-screen card ---- */
.about-intro--v2 {
    padding: 0;
    background: var(--color-surface-alt);
}

.about-intro--v2 .container {
    max-width: 100%;
    padding: 0;
}

.about-intro--v2 .about-intro__layout {
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    grid-template-columns: minmax(340px, 46%) 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
        "media panel"
        "features features";
    align-items: stretch;
}

.about-intro--v2 .about-intro__panel {
    grid-area: panel;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    background: #fff;
    min-height: 0;
}

.about-intro--v2 .about-intro__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.about-intro--v2 .about-intro__title em {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- About left (image) panel — fixed layout ---- */
.about-intro--v2 .about-intro__media {
    grid-area: media;
    position: relative;
    min-height: 0;
    height: 100%;
    background: #082f49;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-intro--v2 .about-intro__media-frame {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.about-intro--v2 .about-intro__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.hero__card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero__stat-num {
    text-shadow: 0 2px 12px rgba(245, 158, 11, 0.4);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- About full-screen card ---- */
.about-intro--v2 {
    padding: 0;
    background: var(--color-surface-alt);
}

.about-intro--v2 .container {
    max-width: 100%;
    padding: 0;
}

.about-intro--v2 .about-intro__layout {
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    grid-template-columns: minmax(340px, 46%) 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
        "media panel"
        "features features";
    align-items: stretch;
}

.about-intro--v2 .about-intro__panel {
    grid-area: panel;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    background: #fff;
    min-height: 0;
}

.about-intro--v2 .about-intro__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.about-intro--v2 .about-intro__title em {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- About left (image) panel — fixed layout ---- */
.about-intro--v2 .about-intro__media {
    grid-area: media;
    position: relative;
    min-height: 0;
    height: 100%;
    background: #082f49;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-intro--v2 .about-intro__media-frame {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.about-intro--v2 .about-intro__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-intro--v2 .about-intro__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 47, 73, 0.35) 0%, transparent 35%),
        linear-gradient(0deg, rgba(8, 47, 73, 0.85) 0%, transparent 45%),
        linear-gradient(90deg, rgba(8, 47, 73, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.about-intro--v2 .about-intro__media-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-intro--v2 .about-intro__chip {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 1rem;
    background: rgba(8, 47, 73, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.about-intro--v2 .about-intro__badge {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    top: auto !important;
    z-index: 4;
    margin: 0;
    padding: 1.35rem 1.75rem 1.35rem 1.5rem;
    background: var(--color-primary-dark) !important;
    border: none !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: 5px solid var(--color-accent) !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 180px;
    box-shadow: 4px -8px 30px rgba(0, 0, 0, 0.2);
}

.about-intro--v2 .about-intro__badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent) !important;
    letter-spacing: -0.02em;
}

.about-intro--v2 .about-intro__badge-text {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #bae6fd !important;
    margin-top: 0;
}

.about-intro--v2 .about-intro__features {
    grid-area: features;
    background: linear-gradient(90deg, #082f49, #0c4a6e);
    border-top: none;
}

.about-intro--v2 .about-intro__card {
    background: transparent;
    border-right-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.about-intro--v2 .about-intro__card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.about-intro--v2 .about-intro__card-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-accent);
}

.about-intro--v2 .about-intro__card h3 {
    color: #fff;
}

.about-intro--v2 .about-intro__card p {
    color: #94a3b8;
}

/* ---- Top selling products ---- */
.top-selling {
    overflow: hidden;
}

/* Auto scroll strip */
.top-selling__scroll {
    overflow: hidden;
    padding: 0.5rem 0 1rem;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.top-selling__scroll:hover .top-selling__track {
    animation-play-state: paused;
}

.top-selling__track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0.5rem 1rem;
    animation: scrollProducts 50s linear infinite;
}

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

/* ---- Unified card titles & step numbers ---- */
.product-card__title,
.eng-card__title,
.plant-card__title,
.step-card__title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-primary-dark);
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.plant-card__title {
    font-size: 1.125rem;
    color: #fff;
}

.product-card__title a {
    color: inherit;
    transition: color 0.25s ease;
}

.product-card:hover .product-card__title a,
.eng-card:hover .eng-card__title,
.step-card:hover .step-card__title {
    color: var(--color-primary);
}

.eng-card__num,
.plant-card__num {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    color: var(--color-accent);
    background: rgba(232, 93, 4, 0.1);
    border: 1px solid rgba(232, 93, 4, 0.25);
    padding: 0.35rem 0.65rem;
    border-radius: 6px;
    pointer-events: none;
}

.plant-card__num {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(253, 224, 71, 0.3);
    left: auto;
    right: 1.25rem;
    top: 1rem;
    font-size: 0.75rem;
}

.step-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.25rem;
    height: 2rem;
    padding: 0 0.75rem;
    margin-bottom: 1.15rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--gradient-accent);
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

.industry-tile__title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    max-width: 15rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Product card — full image layout */
.product-card {
    flex: 0 0 320px;
    width: 320px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 73, 118, 0.2);
    box-shadow: var(--shadow-md);
}

.product-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e2e8f0;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.06);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 47, 73, 0.5) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--gradient-accent);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(232, 93, 4, 0.4);
}

.product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.35rem;
}

.product-card__title {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-surface-muted);
    transition: border-color 0.25s ease;
}

.product-card:hover .product-card__title {
    border-bottom-color: var(--color-accent);
}

.product-card__desc {
    flex: 1;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.product-card__link:hover {
    color: var(--color-accent-hover);
    border-bottom-color: var(--color-accent);
    gap: 0.65rem;
}

.top-selling__footer .btn {
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 280px;
        width: 280px;
    }

    .product-card__media {
        aspect-ratio: 16 / 11;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-selling__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .top-selling__scroll {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ---- Engineering technology stack ---- */
.eng-stack__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.eng-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.eng-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 73, 118, 0.2);
    box-shadow: var(--shadow-md);
}

.eng-card__icon {
    margin-top: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.eng-card:hover .eng-card__icon {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
}

.eng-card__icon svg {
    display: block;
}

.eng-card__title {
    margin-bottom: 0.6rem;
}

.eng-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .eng-stack__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .eng-stack__grid {
        grid-template-columns: 1fr;
    }

}

/* ---- Industries we serve (auto scroll) ---- */
.industries-marquee {
    overflow: hidden;
}

.industries-marquee__scroll {
    overflow: hidden;
    padding: 0.25rem 0 1rem;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.industries-marquee__scroll:hover .industries-marquee__track {
    animation-play-state: paused;
}

.industries-marquee__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0.5rem 1rem;
    animation: scrollIndustries 45s linear infinite;
}

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

.industry-tile {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
}

.industry-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-tile:hover .industry-tile__img {
    transform: scale(1.06);
}

.industry-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.25) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.82) 100%
    );
    transition: background 0.35s ease;
}

.industry-tile:hover .industry-tile__overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(15, 23, 42, 0.65) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
}

.industry-tile__content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
}


.industry-tile__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-tile__tags li {
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(125, 211, 252, 0.55);
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.35);
}

@media (max-width: 768px) {
    .industry-tile {
        flex: 0 0 260px;
        width: 260px;
        height: 340px;
    }

    .industries-marquee__track {
        animation-duration: 35s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industries-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .industries-marquee__scroll {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* ---- Process phases (infographic zigzag) ---- */
.process-phases {
    position: relative;
    padding: 1rem 0 0.5rem;
    margin-bottom: 0.5rem;
}

.process-phases__zigzag {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    width: 92%;
    height: 100px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.process-phases__grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 1;
    gap: 0.75rem;
    min-height: 420px;
}

.process-phases__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    max-width: 175px;
}

/* Top row: node sits on upper zigzag peak */
.process-phases__item--top {
    justify-content: flex-start;
    padding-top: 0;
}

.process-phases__item--top .process-phases__node {
    margin-top: 28px;
}

/* Bottom row: node sits on lower zigzag valley */
.process-phases__item--bottom {
    justify-content: flex-end;
    padding-bottom: 0;
}

.process-phases__item--bottom .process-phases__node {
    margin-bottom: 28px;
}

.process-phases__node {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--phase-color);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px #f8fafc,
        0 0 0 8px var(--phase-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 2;
}

.process-phases__node-num {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.process-phases__connector {
    display: block;
    width: 2px;
    flex: 1;
    min-height: 28px;
    max-height: 48px;
    background: var(--phase-color);
    opacity: 0.65;
}

.process-phases__card {
    flex-shrink: 0;
    width: 100%;
    padding: 1.15rem 1rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 39, 68, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-phases__card--edge-tr {
    border-top: 3px solid var(--phase-color);
    border-right: 3px solid var(--phase-color);
}

.process-phases__card--edge-bl {
    border-bottom: 3px solid var(--phase-color);
    border-left: 3px solid var(--phase-color);
}

.process-phases__item:hover .process-phases__node {
    transform: scale(1.1);
    box-shadow:
        0 0 0 5px #f8fafc,
        0 0 0 10px var(--phase-color),
        0 8px 24px rgba(15, 39, 68, 0.15);
}

.process-phases__item:hover .process-phases__card {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 39, 68, 0.12);
}

.process-phases__item--bottom:hover .process-phases__card {
    transform: translateY(4px);
}

.process-phases__card-icon {
    color: var(--phase-color);
    margin-bottom: 0.65rem;
    display: flex;
    justify-content: center;
}

.process-phases__card-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: var(--phase-color);
    margin-bottom: 0.5rem;
}

.process-phases__card-desc {
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin: 0;
}

.process-work .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .process-phases__grid {
        min-height: 400px;
    }

    .process-phases__card-desc {
        font-size: 0.6875rem;
    }
}

@media (max-width: 900px) {
    .process-phases {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
    }

    .process-phases__zigzag {
        min-width: 900px;
        left: 50px;
        right: 50px;
    }

    .process-phases__grid {
        min-width: 900px;
        min-height: 400px;
    }

    .process-phases__item {
        max-width: 145px;
    }
}

@media (max-width: 640px) {
    .process-phases__node {
        width: 48px;
        height: 48px;
    }

    .process-phases__node-num {
        font-size: 1.125rem;
    }

    .process-phases__card {
        padding: 1rem 0.75rem;
    }
}

/* ---- Process plants showcase ---- */
.plants-showcase {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.plants-showcase__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.plants-showcase__glow--1 {
    top: -200px;
    left: -100px;
    background: var(--color-primary-light);
}

.plants-showcase__glow--2 {
    bottom: -200px;
    right: -100px;
    background: var(--color-accent);
}

.plants-showcase__header {
    position: relative;
}

.plants-showcase__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.plant-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plant-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.plant-card__tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.plant-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.plant-card__title {
    margin-bottom: 0.6rem;
}

.plant-card:hover .plant-card__title {
    color: #fff;
}

.plant-card__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.plant-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #38bdf8;
    transition: gap 0.25s ease, color 0.25s ease;
}

.plant-card__link:hover {
    color: #fff;
    gap: 0.6rem;
}

.plants-showcase__industries {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plants-showcase__industries-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #64748b;
}

.plants-showcase__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.plants-showcase__tags li {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #e2e8f0;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.25s ease;
}

.plants-showcase__tags li:hover {
    background: var(--color-accent);
    color: #0a1628;
    border-color: var(--color-accent);
}

/* ---- Process steps ---- */
.process-steps__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 73, 118, 0.2);
    box-shadow: var(--shadow-md);
}

.step-card__title {
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

/* ---- Premium CTA ---- */
.cta-premium {
    padding: 2rem 0 6rem;
    background: var(--color-surface-alt);
}

.cta-premium__box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-brand);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-premium__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-premium__content {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.cta-premium__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.cta-premium__content p {
    color: #bae6fd;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 500px;
}

.cta-premium__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-premium__actions .btn {
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    white-space: nowrap;
}

.btn--glow {
    background: var(--color-accent);
    color: #0a1628;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.45);
}

.btn--glow:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .about-intro--v2 .about-intro__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "media"
            "panel"
            "features";
        min-height: auto;
    }

    .about-intro--v2 .about-intro__media {
        min-height: 55vh;
        height: auto;
    }

    .about-intro--v2 .about-intro__media-frame {
        min-height: 55vh;
    }

    .plants-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: single hero banner — layout matches reference design */
@media (max-width: 767.98px) {
    .hero.hero-slider {
        aspect-ratio: auto;
        min-height: min(100vh, 100dvh);
        align-items: stretch;
        display: flex;
    }

    .hero-slider--single .hero__grid,
    .hero-slider--banner-active .hero__grid {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-slider--single::after,
    .hero-slider--banner-active::after {
        opacity: 1;
        height: 100px;
    }

    .hero-slider__bg--banner {
        display: none !important;
    }

    .hero-slider__controls {
        display: none !important;
    }

    .hero-slider__bg--image .hero-slider__overlay {
        background:
            linear-gradient(112deg, rgba(15, 39, 68, 0.93) 0%, rgba(20, 55, 95, 0.82) 38%, rgba(30, 73, 118, 0.45) 72%, rgba(30, 73, 118, 0.28) 100%),
            radial-gradient(ellipse 70% 55% at 88% 35%, rgba(232, 93, 4, 0.12) 0%, transparent 55%);
    }

    .hero-slider .hero__grid {
        display: block;
        position: relative;
        width: 100%;
        min-height: min(100vh, 100dvh);
        padding: 1.5rem clamp(1rem, 4vw, 1.25rem) 2.25rem;
        align-self: stretch;
    }

    .hero-slider .hero__content {
        position: relative;
        z-index: 2;
        max-width: 62%;
        padding-right: 0.35rem;
    }

    .hero-slider .hero__badge {
        margin-bottom: 0.85rem;
        font-size: 0.5625rem;
        padding: 0.4rem 0.85rem;
    }

    .hero-slider .hero__title {
        font-size: clamp(1.55rem, 7.2vw, 2rem);
        line-height: 1.12;
        margin-bottom: 0.75rem;
    }

    .hero-slider .hero__text {
        font-size: 0.75rem;
        line-height: 1.62;
        margin-bottom: 1.1rem;
        max-width: 100%;
        opacity: 0.95;
    }

    .hero-slider .hero__actions {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-slider .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.03em;
    }

    .hero-slider .hero__visual {
        position: absolute;
        top: 4.25rem;
        right: clamp(0.35rem, 2vw, 0.75rem);
        width: 36%;
        max-width: 138px;
        z-index: 3;
        margin: 0;
        justify-content: flex-end;
        animation: none;
    }

    .hero-slider .hero__card--stats {
        width: 100%;
        max-width: none;
        padding: 0.9rem 0.75rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    }

    .hero-slider .hero__card-title {
        font-size: 0.5625rem;
        margin-bottom: 0.65rem;
        padding-bottom: 0.55rem;
        letter-spacing: 0.09em;
    }

    .hero-slider .hero__stats-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .hero-slider .hero__stat:nth-child(2),
    .hero-slider .hero__stat:nth-child(4) {
        display: none;
    }

    .hero-slider .hero__stat-num {
        font-size: 1.25rem;
    }

    .hero-slider .hero__stat-num--compact {
        font-size: 1.15rem;
    }

    .hero-slider .hero__stat-label {
        font-size: 0.5625rem;
        line-height: 1.35;
    }
}

@media (max-width: 380px) {
    .hero-slider .hero__content {
        max-width: 58%;
    }

    .hero-slider .hero__visual {
        width: 40%;
        max-width: 128px;
        top: 3.75rem;
    }

    .hero-slider .hero__title {
        font-size: 1.45rem;
    }
}

@media (max-width: 768px) {
    .about-intro--v2 .about-intro__media,
    .about-intro--v2 .about-intro__media-frame {
        min-height: 45vh;
    }

    .about-intro--v2 .about-intro__media-top {
        top: 1rem;
        left: 1rem;
    }

    .about-intro--v2 .about-intro__badge {
        padding: 1.15rem 1.35rem;
    }

    .about-intro--v2 .about-intro__badge-num {
        font-size: 1.65rem;
    }

    .hero-slider__title {
        max-width: 12ch;
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-slider__bar {
        width: 2rem;
    }

    .hero-slider__bar.is-active {
        width: 2.75rem;
    }

    .plants-showcase__grid,
    .process-steps__track {
        grid-template-columns: 1fr;
    }

    .cta-premium__box {
        flex-direction: column;
        text-align: center;
    }

    .cta-premium__content p { margin: 0 auto; }
    .cta-premium__actions { width: 100%; }
    .cta-premium__actions .btn { width: 100%; }
}
