
/*  VARIABLES */
:root {
    --alu-color-primary: #d25501;
    --alu-color-secondary: #005288;
    --alu-color-danger: #a40704;
    --alu-color-bg-light: #ffffff;
    --alu-color-bg-dark: #141824;
    --alu-color-bg-gray: #fbfbfc;
    --alu-color-text-light: #e7e9ee;
    --alu-color-text-muted: #96a0b5;
    --alu-color-text-dark: #b3aeae;
    --alu-color-text-darker: #787878;
    --alu-max-width: 1200px;
    --alu-border-radius: 18px;
    --alu-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --alu-hero-bg-url: url('/images/home-bg-new.webp');
    --alu-cta-bg: url('/images/homepages/hero2.webp');

}

/* CONTAINER */
.alu-container {
    margin: 0 auto;
    padding: 5px 20px;
    max-width: var(--alu-max-width);
}


.alu-hero {
    padding: 54px 0 24px;
}

/* BUTTONS */
.alu-btn {
    display: inline-block;
    padding: 0.8em 1.6em;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    background-color: #ee780e;
    z-index: 2;
}

.alu-btn:hover {
    background-color: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.alu-mehr-content {
    display: none;
    margin-top: .1rem;
    color: #9c9c9c;
}

.alu-mehr-content.is-open {
    display: block;
}

.alu-mehr-toggle {
    background: none;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 0;
}

/* Primary button - orange color */
.alu-btn--primary {
    background: #ee780e;
}

.alu-btn--primary:hover {
    background: #5d6d77;
    background-color: #5d6d77;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Secondary button - blue color */
.alu-btn--secondary {
    background-color: #1e90ff;
}

.alu-btn--secondary:hover {
    background-color: #5d6d77;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.alu-button-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.alu-button-group .alu-btn {
    margin: 0;
}

/* TYPOGRAPHY */
.alu-heading-1 {
    font-size: clamp(24px, 2vw, 35px) !important;
    line-height: 1.1;
    margin: 12px 0 24px;
    color: var(--alu-color-bg-dark);
}

.alu-heading-1.alu-heading--light {
    color: var(--alu-color-text-light);
}

.alu-heading-2 {
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.2;
    margin: 0 0 12px;
    color: var(--alu-color-bg-dark);
}

.alu-heading-2.alu-heading--light {
    color: var(--alu-color-text-light);
}

.alu-heading-3 {
    font-size: 20px !important;
    margin: 0 0 8px 0;
    color: #fff;
}

.alu-heading-jobs {
    font-size: 20px;
    margin: 0 0 8px 0;
    color: var(--alu-color-text-dark);
}

.alu-lead {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--alu-color-text-darker);
}

.alu-text--muted {
    color: var(--alu-color-text-muted);
}

.alu-text--light {
    color: var(--alu-color-bg-light);
}

.alu-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    z-index: 5;
}

/* KICKER */
.alu-kicker {
    margin-bottom: 3em;
    display: inline-block;
    border: 1px solid rgba(253, 103, 3, 0.4);
    border-radius: 10px;
    color: var(--alu-color-primary);
    padding: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    background-color: rgba(245, 101, 6, 0.12);
}

/* GRID LAYOUTS */
.alu-grid-2col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.alu-grid-2col--equal {
    grid-template-columns: 1fr 1fr;

}

.alu-grid-gap {
    gap: 50px;
}

.space-wrap {
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .alu-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* CONTENT BOXES */
.alu-content-box {
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.alu-content-box--dark {
    background-color: rgba(0, 0, 0, 0.9);
}

.alu-content-box--light {
    background-color: #fff;
}

/* MEDIA CONTAINERS */
.alu-media-container {
    align-self: center;
    border-radius: var(--alu-border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.alu-media-container--image {
    transform: translateX(-10%);
    height: 75%;
    width: auto;
}

.alu-media-container--video {
    align-self: center;
    height: 75%;
    width: auto;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5);
}

.alu-media-container img {
    height: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
}

.alu-video-embed {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.alu-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.alu-video-bot {
    height: 70%;
}

/* FEATURE ITEMS  */
.alu-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 18px 0;
}

.alu-feature-item {
    display: flex;
    gap: 12px;
    color: #fff;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(250, 155, 52, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.alu-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: rgba(223, 117, 11, 0.694);
}

.alu-feature-item--light {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    color: var(--alu-color-bg-dark);
}

.alu-feature-item--light:hover {
    background-color: rgba(210, 85, 1, 0.15);
}

/* Hero fade-in animation  */
.alu-hero-full .alu-feature-item {
    opacity: 0;
    transition: opacity 600ms ease;
}

.alu-hero-full .alu-feature-item:nth-child(1) { transition-delay: 0s; }
.alu-hero-full .alu-feature-item:nth-child(2) { transition-delay: 0.5s; }
.alu-hero-full .alu-feature-item:nth-child(3) { transition-delay: 1s; }
.alu-hero-full .alu-feature-item:nth-child(4) { transition-delay: 1.5s; }
.alu-hero-full .alu-feature-item:nth-child(5) { transition-delay: 2s; }
.alu-hero-full .alu-feature-item:nth-child(6) { transition-delay: 2.5s; }
.alu-hero-full .alu-feature-item:nth-child(7) { transition-delay: 3s; }
.alu-hero-full .alu-feature-item:nth-child(8) { transition-delay: 3.5s; }
.alu-hero-full .alu-feature-item:nth-child(9) { transition-delay: 4s; }
.alu-hero-full .alu-feature-item:nth-child(10) { transition-delay: 4.5s; }

.alu-hero-full.alu-is-in-view .alu-feature-item { opacity: 1; }

/* INFO LIST */
.alu-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.alu-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    color: var(--alu-color-bg-dark);
    margin: 12px 0;
    transition: all 0.3s ease;
}

.alu-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: rgba(210, 85, 1, 0.15);
}

/* SECTIONS */
.alu-section {
    padding: 50px 0;
}

.alu-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.alu-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.alu-section-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* HERO SECTION */
.alu-above-fold {
    display: block;
}

.alu-hero-full {
    position: relative;
    height: calc(100vh - 80px - 40px - 68px);
    min-height: 400px;
    display: flex;
    align-items: center;
    background: var(--alu-hero-bg-url);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 0;
}

/* Dark gradient overlay — stronger left, fades right */
.alu-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 15, 26, 0.92) 0%, rgba(8, 15, 26, 0.75) 45%, rgba(8, 15, 26, 0.35) 100%);
    z-index: 0;
}

.alu-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1480px;
    padding: 30px 40px;
}

/* 2-column layout */
.alu-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: stretch;
}

/* LEFT COPY */
.alu-hero-copy {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.alu-hero-pretitle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    align-self: flex-start;
}

.alu-hero-pretitle-line {
    display: block;
    width: 36px;
    height: 2px;
    background: #EE780E;
    flex-shrink: 0;
}

.alu-hero-title {
    font-size: clamp(28px, 3.5vw, 50px) !important;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.alu-hero-title-accent {
    color: #EE780E;
}

.alu-hero-lead {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 480px;
}

/* 3 key stats */
.alu-hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.alu-hero-stat {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.alu-hero-stat:last-child {
    border-right: none;
}

.alu-hero-stat:hover {
    background: rgba(238, 120, 14, 0.1);
}

.alu-hero-stat-value {
    display: block;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    color: #EE780E;
    line-height: 1;
    margin-bottom: 4px;
}

.alu-hero-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* CTA buttons */
.alu-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.alu-hero-btn-ghost {
    display: inline-block;
    padding: 0.8em 1.6em;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alu-hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* RIGHT VIDEO */
.alu-hero-media {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.alu-hero-media-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alu-hero-media-inner .alu-video-embed {
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
}

.alu-hero-media-inner .alu-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.alu-hero-media-badge {
    display: none; /* hidden — placeholder for future */
}

/* Scroll indicator */
.alu-hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
    50%       { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}

/* badges animation */
.alu-hero-full .alu-feature-item:nth-child(1) { transition-delay: 0s; }
.alu-hero-full .alu-feature-item:nth-child(2) { transition-delay: 0.5s; }
.alu-hero-full .alu-feature-item:nth-child(3) { transition-delay: 1s; }
.alu-hero-full .alu-feature-item:nth-child(4) { transition-delay: 1.5s; }
.alu-hero-full .alu-feature-item:nth-child(5) { transition-delay: 2s; }
.alu-hero-full .alu-feature-item:nth-child(6) { transition-delay: 2.5s; }

.alu-hero-full.alu-is-in-view .alu-feature-item { opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
    .alu-above-fold {
        height: auto;
    }
    .alu-hero-ticker {
        display: none;
    }
    .alu-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .alu-hero-full {
        height: auto;
        min-height: auto;
        padding: 60px 0 40px;
        background-attachment: scroll;
    }
    .alu-hero-overlay {
        background: rgba(8, 15, 26, 0.82);
    }
    .alu-hero-lead {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .alu-hero-stats {
        flex-wrap: wrap;
    }
    .alu-hero-stat {
        flex: 1 1 45%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .alu-hero-actions {
        flex-direction: column;
    }
}

.alu-hero-mehr-content {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.alu-hero-mehr-content a {
    color: #EE780E;
    text-decoration: underline;
}

/* HERO TICKER STRIP */
.alu-hero-ticker {
    background: #fff;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    z-index: 5;
    height: 68px;
    display: flex;
    align-items: center;
}

/* Fade edges */
.alu-hero-ticker::before,
.alu-hero-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.alu-hero-ticker::before {
    left: 0;
    background: linear-gradient(to right, #fff 30%, transparent);
}
.alu-hero-ticker::after {
    right: 0;
    background: linear-gradient(to left, #fff 30%, transparent);
}

.alu-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: alu-ticker-scroll 40s linear infinite;
    gap: 0;
}

@keyframes alu-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.alu-ticker-item {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
    padding: 0 28px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.alu-ticker-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(238, 120, 14, 0.13);
    color: #EE780E;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.alu-ticker-sep {
    color: #EE780E;
    font-size: 9px;
    opacity: 0.4;
    flex-shrink: 0;
    padding: 0 4px;
}

/* SPACE SECTION */
.alu-space-section {
    background: linear-gradient(160deg, #0d1b2a 0%, #0f2233 100%);
    overflow: hidden;
    margin: 0 auto;
    padding: 54px 20px 24px;
    position: relative;
}

.alu-space-section::before {
    content: 'S.P.A.C.E.';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 8px;
    z-index: 0;
}

.alu-space .alu-content-box {
    opacity: 0;
    transform: translate3d(-160vw, 0, 0);
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), opacity 900ms ease;
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
}

.alu-space .alu-content-box .alu-kicker {
    border-color: rgba(238, 120, 14, 0.5);
}

.alu-space .alu-content-box .alu-heading-2 {
    color: #fff;
}

.alu-space .alu-content-box .alu-lead {
    color: rgba(255, 255, 255, 0.65);
}

.alu-space .alu-media-container {
    opacity: 0;
    transform: translate3d(160vw, 30px, 0);
    transition: transform 950ms cubic-bezier(0.22, 1, 0.36, 1), opacity 950ms ease;
    transition-delay: 700ms;
    will-change: transform, opacity;
    position: relative;
    z-index: 1;
}

.alu-space.alu-is-in-view .alu-content-box {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.alu-space.alu-is-in-view .alu-media-container {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
}

.alu-space .alu-feature-item--light {
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.alu-space .alu-feature-item--light strong {
    color: #EE780E;
}

.alu-space .alu-feature-item--light:hover {
    transform: translateX(6px);
    background: rgba(238, 120, 14, 0.12);
    border-color: rgba(238, 120, 14, 0.35);
    color: #fff;
}

.alu-space .alu-media-container img {
    will-change: transform, opacity;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    transition: box-shadow 0.4s ease;
}

.alu-space .alu-media-container img:hover {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(238, 120, 14, 0.3);
}

.alu-space h2[data-image] {
    cursor: pointer;
    transition: color 0.3s ease;
}

.alu-space h2[data-image]:hover {
    color: var(--alu-color-primary);
}

.alu-space .alu-btn--secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.alu-space .alu-btn--secondary:hover {
    background: rgba(255,255,255,0.16);
}


/* PROBLEM SECTION */
.alu-problem-section {
    background: #f8f9fb;
    overflow: hidden;
}

.alu-problem-section::before {
    content: 'PROBLEM';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.025);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -4px;
    z-index: 0;
}

.alu-problem-grid {
    padding: 30px 0 80px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.alu-problem-card {
    position: relative;
}

.alu-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    height: 420px;
    transform: scale(0.96);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    will-change: transform;
}

.alu-image-container:hover {
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.alu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.alu-image-container:hover img {
    transform: scale(1.04);
}

.alu-image-caption {
    position: absolute;
    bottom: 20px;
    max-width: 75%;
    padding: 16px 20px;
    color: #fff;
    border-radius: 14px;
    line-height: 1.5;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.alu-image-caption::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.alu-image-caption--left {
    left: 16px;
}

.alu-image-caption--right {
    right: 16px;
}

.alu-image-caption--danger {
    background: rgba(164, 7, 4, 0.72);
    border-left: 3px solid #ff4444;
}

.alu-image-caption--primary {
    background: rgba(0, 60, 110, 0.75);
    border-left: 3px solid #EE780E;
}

.alu-caption-list {
    margin: 0;
    padding-left: 18px;
}

.alu-caption-list li {
    margin: 6px 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .alu-problem-grid {
        grid-template-columns: 1fr;
    }

    .alu-image-container {
        height: 360px;
        transform: scale(0.97);
    }

    .alu-image-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* SOLUTION SECTION */
.alu-solution-section {
    background: linear-gradient(160deg, #ffffff 0%, #f3f5f8 100%);
}

.alu-solution-section .alu-content-box--light {
    border-left: 4px solid #EE780E;
    padding-left: 32px;
}

.alu-solution-section .alu-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alu-solution-section .alu-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(238, 120, 14, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(238, 120, 14, 0.15);
    font-size: 15px;
    color: var(--alu-color-bg-dark);
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.alu-solution-section .alu-info-item:hover {
    background: rgba(238, 120, 14, 0.1);
    transform: translateX(4px);
}

/* GALLERY SECTION */

.alu-gallery-section {
    padding: 0;
}

.alu-gallery-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.alu-gallery-item {
    width: 33.333%;
    height: 400px;
    overflow: hidden;
    display: flex;
}

.alu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.alu-gallery-item img:hover {
    transform: scale(1.2);
}

/* PLAN SECTION */
.alu-plan {
    position: relative;
    background: linear-gradient(160deg, #0d1b2a 0%, #1a2d42 100%);
    overflow: hidden;
}

.alu-plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(238, 120, 14, 0.12), transparent),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0, 82, 136, 0.15), transparent);
    pointer-events: none;
}

.alu-plan .alu-section-header {
    position: relative;
    z-index: 1;
}

.alu-plan .alu-section-header .alu-heading-2 {
    color: #fff;
}

.alu-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

/* Horizontal connector line between steps */
.alu-plan-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: linear-gradient(90deg, #EE780E, rgba(238, 120, 14, 0.3) 50%, #EE780E);
    z-index: 0;
}

@keyframes planLineDraw {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

.alu-plan.alu-is-in-view .alu-plan-grid::before {
    animation: planLineDraw 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.alu-plan-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 28px 32px;
    margin: 0 12px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
}

.alu-plan-step::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EE780E, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alu-plan-step:hover::after {
    opacity: 1;
}

.alu-step-1 { transition-delay: 0.1s; }
.alu-step-2 { transition-delay: 0.35s; }
.alu-step-3 { transition-delay: 0.6s; }

.alu-plan.alu-is-in-view .alu-plan-step {
    opacity: 1;
    transform: translateY(0);
}

.alu-plan-step:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(238, 120, 14, 0.3);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

.alu-plan-job:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.alu-plan-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #EE780E 0%, #d25501 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 0 8px rgba(238, 120, 14, 0.12), 0 8px 24px rgba(238, 120, 14, 0.3);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.alu-plan-step:hover .alu-plan-icon {
    box-shadow: 0 0 0 12px rgba(238, 120, 14, 0.15), 0 12px 32px rgba(238, 120, 14, 0.4);
    transform: scale(1.08);
}

.alu-plan-icon svg {
    width: 32px;
    height: 32px;
}

.alu-plan-number {
    position: absolute;
    bottom: -20px;
    right: 8px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
}

.alu-plan-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.alu-plan-description {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin: 0;
    font-size: 15px;
}

.alu-plan .alu-section-cta .alu-btn--secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.alu-plan .alu-section-cta .alu-btn--secondary:hover {
    background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
    .alu-plan-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .alu-plan-grid::before {
        display: none;
    }
    .alu-plan-step {
        margin: 0;
    }
}

/* CONSEQUENCES SECTION */
.alu-consequences-section {
    background: linear-gradient(160deg, #1a0a0a 0%, #2d1010 100%);
    overflow: hidden;
    position: relative;
}

.alu-consequences-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 0% 0%, rgba(200, 20, 10, 0.2), transparent),
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(164, 7, 4, 0.15), transparent);
    pointer-events: none;
}

.alu-consequences-section .alu-text-center {
    position: relative;
    z-index: 1;
}

.alu-consequences-section .alu-text-center .alu-heading-2 {
    color: #fff;
}

.alu-consequences-section .alu-text-center .alu-lead {
    color: rgba(255, 255, 255, 0.65);
}

.alu-consequences-section .alu-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.alu-consequences-section .alu-info-item {
    color: rgba(255, 200, 180, 0.85);
    padding: 6px 0;
    font-size: 15px;
}

.alu-consequences-section .alu-lead.last {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.alu-consequences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.alu-consequence-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 100, 80, 0.15);
    border-left: 4px solid #c0392b;
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.alu-consequence-card::before {
    content: '⚠';
    position: absolute;
    bottom: -10px;
    right: 12px;
    font-size: 96px;
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.alu-consequence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 80, 60, 0.3);
    border-left-color: #EE780E;
    background: rgba(255, 255, 255, 0.06);
}

.alu-consequence-title {
    margin: 0 0 10px;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
}

.alu-consequence-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    font-size: 14px;
}

.alu-consequences-section .alu-section-cta .alu-btn--primary {
    background: linear-gradient(135deg, #EE780E, #d25501);
}

.alu-consequences-section .alu-section-cta .alu-btn--primary:hover {
    background: #5d6d77;
    background-color: #5d6d77;
}

.alu-consequences-section .alu-section-cta .alu-btn--secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.alu-consequences-section .alu-section-cta .alu-btn--secondary:hover {
    background: rgba(255,255,255,0.15);
}

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

/* BENEFITS SECTION */
.alu-benefits-section {
    background-color: var(--alu-color-bg-gray);
}

.alu-benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
            120% 80% at 0% 0%,
            rgba(210, 85, 1, 0.06),
            transparent 60%
    ),
    radial-gradient(
            120% 80% at 100% 100%,
            rgba(0, 82, 136, 0.06),
            transparent 60%
    );
}

.alu-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.alu-metric-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 20px;
    text-align: center;
}

.alu-metric-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--alu-color-bg-dark);
    line-height: 1;
}

.alu-metric-label {
    margin-top: 8px;
    color: var(--alu-color-text-dark);
    font-size: 15px;
}

.alu-benefit-grid {
    padding-top: 4em;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.alu-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alu-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #EE780E, #d25501);
    border-radius: 16px 16px 0 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alu-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(238, 120, 14, 0.2);
}

.alu-benefit-card:hover::before {
    opacity: 1;
}

.alu-benefit-card__number {
    display: none;
}

.alu-benefit-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    border: none;
    margin-bottom: 0;
    display: block;
    pointer-events: none;
}

.alu-benefit-icon img {
    width: 140px;
    height: 140px;
    opacity: 0.07;
    object-fit: contain;
    filter: none;
    transition: opacity 0.3s ease;
}

.alu-benefit-card:hover .alu-benefit-icon img {
    opacity: 0.13;
}

.alu-benefit-icon svg {
    display: none;
}

.alu-benefit-title {
    margin: 0 0 8px;
    color: var(--alu-color-bg-dark);
    font-size: 18px;
    font-weight: 700;
}

.alu-benefit-text {
    margin: 0;
    color: var(--alu-color-text-dark);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .alu-metric-value {
        font-size: 34px;
    }
}


@media (max-width: 992px){
    .alu-benefit-grid{
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}


@media (max-width: 576px){
    .alu-benefit-grid{
        grid-template-columns: 1fr;
    }
}

/* PARTNERS SECTION */
.alu-partners-section {
    background-color: #fff;
}

.partners-container {
    padding: 0 20px;
}

.partners-content .carousel .logos-slide {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-content .carousel .logos-slide:hover {
    filter: grayscale(0%);
}

.alu-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    opacity: 0.8;
    margin-top: 24px;
}

.alu-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-content {
    border: none;
    box-shadow: none;
}

.partners-text-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CONTACT SECTION */
.alu-contact-section {
    background-color: var(--alu-color-bg-gray);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.alu-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    var( --alu-cta-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.alu-contact-section .alu-container,
.alu-contact-section .alu-content-box {
    position: relative;
    z-index: 1;
}

.alu-contact-section .alu-content-box {
    background: transparent;
    border: none;
    box-shadow: none;
}


/* JOB LISTINGS STYLES */
.alu-job-listing {
    margin-bottom: 2rem;
}

.alu-job-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(210, 85, 1, 0.2);
}

.alu-job-header .alu-heading-2 {
    margin-bottom: 1rem;
    color: var(--alu-color-primary);
}

.alu-job-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.alu-job-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(
            135deg,
            rgba(210, 85, 1, 0.1),
            rgba(238, 120, 14, 0.1)
    );
    color: var(--alu-color-primary);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(210, 85, 1, 0.3);
    transition: all 0.3s ease;
}

.alu-job-tag:hover {
    background: linear-gradient(
            135deg,
            rgba(210, 85, 1, 0.15),
            rgba(238, 120, 14, 0.15)
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(210, 85, 1, 0.2);
}

.alu-job-content {
    padding-top: 1rem;
}

.alu-job-section {
    margin-bottom: 2rem;
}

.alu-job-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--alu-color-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


/* CAREERS PAGE CUSTOM STYLES */
.alu-benefits-section--gradient {
    background: linear-gradient(
            135deg,
            rgba(238, 120, 14, 0.03) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(30, 144, 255, 0.03) 100%
    ) !important;
}

.alu-benefit-grid--three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alu-button-group--centered {
    justify-content: center;
}

.alu-consequences-grid--spaced {
    margin-top: 3rem;
}

.alu-plan-grid--spaced {
    margin-top: 3rem;
}

.alu-plan-step--visible {
    opacity: 1 !important;
}

.alu-button-group--spaced {
    margin-top: 1.5rem;
}


@media (max-width: 768px) {
    .alu-job-header .alu-heading-2 {
        font-size: 1.5rem;
    }

    .alu-job-meta {
        gap: 0.5rem;
    }

    .alu-job-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .alu-job-subtitle {
        font-size: 1.1rem;
    }

    .alu-job-list li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
}


@media (max-width: 900px) {
    .alu-hero-full {
        padding-top: 100px;
    }
    .alu-space.alu-is-in-view .alu-media-container {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    .alu-metrics-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
    .alu-grid-gap {
        gap: 20px;
    }
    
    /* Fix container padding on mobile */
    .alu-container {
        padding: 5px 15px;
    }
    
    /* Fix content box centering and spacing */
    .alu-content-box {
        width: 100%;
        margin: 0 auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .alu-button-group {
        flex-direction: column;
    }
    .alu-video-embed {
        aspect-ratio: 4/3;
    }

    .alu-gallery-item {
        width: 50%;
    }
    
    /* Smaller padding on mobile phones */
    .alu-container {
        padding: 5px 20px;
    }
    
    .alu-content-box {
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .alu-gallery-item {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 560px) {
    .alu-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.alu-is-in-view {
    visibility: visible;
}

/* ============================================
   MOBILE-FIRST: Hide sections on mobile
   ============================================ */

@media (max-width: 767px) {
    /* Hide these sections on mobile phones */
    section.alu-problem-section,
    section.alu-gallery-section,
    section.alu-plan-section,
    section.alu-consequences-section,
    section.alu-partners-section,
    .alu-problem,
    .alu-plan,
    .alu-partners {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Keep these on mobile */
    /* - Hero section */
    /* - Shop categories mobile (new) */
    /* - Solution section */
    /* - Benefits section */
    /* - CTA section */
}

/* Show hidden sections on tablets and up */
@media (min-width: 768px) {
    section.alu-problem-section,
    section.alu-gallery-section,
    section.alu-plan-section,
    section.alu-consequences-section,
    section.alu-partners-section {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
    }
}

