 .sh-adi-page {
        --sh-adi-black: #000000;
        --sh-adi-white: #ffffff;
        --sh-adi-grey: #ebeff1;
        --sh-adi-dark-grey: #767677;
        --sh-adi-red: #ff0000;
        --sh-adi-glass-bg: rgba(0, 0, 0, 0.7);

        font-family: 'Inter', sans-serif;
        margin: 0;
        background-color: var(--sh-adi-white);
        color: var(--sh-adi-black);
        overflow-x: hidden;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
    }

    .sh-adi-page,
    .sh-adi-page * {
        box-sizing: border-box;
    }

    .sh-adi-scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: var(--sh-adi-red);
        z-index: 1000;
    }

    .sh-adi-page .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease-out;
    }

    .sh-adi-page .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .sh-adi-hero {
        position: relative;
        width: 100%;
        height: 95vh;
        min-height: 600px;
        overflow: hidden;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .sh-adi-hero.is-video-ready {
        opacity: 1;
    }

    .sh-adi-hero-logo {
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 80px;
        filter: brightness(0) invert(1);
    }

    .sh-adi-video-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
        overflow: hidden;
    }

    .sh-adi-hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sh-adi-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2));
        z-index: 2;
    }

    .sh-adi-hero-content {
        position: relative;
        z-index: 3;
        color: #fff;
        text-align: left;
        padding: 0 8%;
        width: 100%;
    }

    .sh-adi-hero-content h1 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2.5rem, 8vw, 6rem);
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
        font-weight: 900;
        font-style: italic;
        word-wrap: break-word;
    }

    .sh-adi-hero-content p {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
        margin: 20px 0;
        max-width: 550px;
        text-transform: uppercase;
        line-height: 1.4;
    }

    .sh-adi-hero-btns {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .sh-adi-btn {
        display: inline-flex;
        align-items: center;
        background: transparent;
        color: var(--sh-adi-white);
        padding: 15px 40px;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
        transition: 0.3s;
        border: 2px solid var(--sh-adi-white);
        cursor: pointer;
        min-width: 180px;
        justify-content: center;
    }

    .sh-adi-btn:hover {
        background: var(--sh-adi-red);
        border-color: var(--sh-adi-red);
    }

    .sh-adi-action-btn {
        display: inline-block;
        padding: 20px 60px;
        background: var(--sh-adi-black);
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        font-family: 'Oswald', sans-serif;
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        transition: 0.3s;
        border: 2px solid var(--sh-adi-black);
        cursor: pointer;
    }

    .sh-adi-action-btn:hover {
        background: var(--sh-adi-red) !important;
        border-color: var(--sh-adi-red) !important;
        color: #fff !important;
    }

    .sh-adi-action-btn-outline {
        background: transparent;
        color: #000;
        border-color: #000;
    }

    .sh-adi-wide-btn-container {
        padding: 30px 5%;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sh-adi-stripe {
        height: 120px;
        background: var(--sh-adi-white);
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .sh-adi-big-text-bg {
        font-family: 'Oswald', sans-serif;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.06);
        white-space: nowrap;
        font-style: italic;
        display: flex;
        animation: shAdiMarquee 20s linear infinite;
    }

    @keyframes shAdiMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .sh-adi-section-title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        text-transform: uppercase;
        padding: 80px 5% 30px;
        margin: 0;
        font-style: italic;
        text-align: center;
    }

    .sh-adi-grid-34 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        padding: 20px 5%;
    }

    .sh-adi-card-34 {
        text-decoration: none;
        color: inherit;
        position: relative;
        display: block;
    }

    .sh-adi-img-box-34 {
        width: 100%;
        aspect-ratio: 3 / 4;
        background: var(--sh-adi-grey);
        overflow: hidden;
        position: relative;
    }

    .sh-adi-img-box-34 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sh-adi-series-label {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--sh-adi-glass-bg);
        color: #fff;
        padding: 12px 10px;
        font-family: 'Oswald', sans-serif;
        font-size: 0.9rem;
        text-align: center;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .sh-adi-grid-sq {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 40px 5%;
    }

    .sh-adi-card-sq {
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color: #fff;
        background: #000;
    }

    .sh-adi-card-sq img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
        transition: 0.3s;
    }

    .sh-adi-card-sq:hover img {
        opacity: 1;
    }

    .sh-adi-card-sq-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .sh-adi-card-sq h3 {
        margin: 0;
        font-family: 'Oswald', sans-serif;
        font-size: 1.8rem;
        text-transform: uppercase;
    }

    .sh-adi-video-section {
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #000;
        margin: 60px 0 0 0;
    }

    .sh-adi-inline-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sh-adi-tech-section {
        background: var(--sh-adi-black);
        color: #fff;
        padding: 100px 5%;
    }

    .sh-adi-tech-header h2 {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(3rem, 7vw, 4rem);
        text-transform: uppercase;
        margin: 0 0 60px 0;
        font-style: italic;
        text-align: center;
    }

    .sh-adi-tech-group {
        margin-bottom: 80px;
    }

    .sh-adi-tech-category-title {
        font-family: 'Oswald', sans-serif;
        font-size: 2rem;
        text-transform: uppercase;
        color: var(--sh-adi-red);
        margin-bottom: 30px;
        letter-spacing: 2px;
        text-align: center;
        border-bottom: 1px solid #333;
        padding-bottom: 15px;
    }

    .sh-adi-tech-image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sh-adi-tech-bg-card {
        min-height: 400px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 40px;
        text-decoration: none;
        color: #fff;
    }

    .sh-adi-tech-bg-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.5;
    }

    .sh-adi-tech-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
        z-index: 2;
    }

    .sh-adi-tech-bg-info {
        position: relative;
        z-index: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .sh-adi-tech-bg-info h4 {
        font-family: 'Oswald', sans-serif;
        font-size: 2.5rem;
        margin: 0 0 10px 0;
        text-transform: uppercase;
    }

    .sh-adi-tech-bg-info p {
        color: #ccc;
        font-size: 1.1rem;
        line-height: 1.5;
        margin: 0;
    }

    .sh-adi-tech-discover-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        background: var(--sh-adi-white);
        color: var(--sh-adi-black);
        text-decoration: none;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: 0.3s ease;
        border: 1px solid var(--sh-adi-white);
    }

    .sh-adi-tech-discover-btn:hover {
        background: var(--sh-adi-red);
        border-color: var(--sh-adi-red);
        color: var(--sh-adi-white);
    }

    .sh-adi-blog-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 20px 5% 40px;
    }

    .sh-adi-blog-card {
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        color: #fff;
        text-decoration: none;
    }

    .sh-adi-blog-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .sh-adi-blog-card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .sh-adi-blog-card h4 {
        font-family: 'Oswald', sans-serif;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .sh-adi-blog-btn-wrap {
        margin-bottom: 80px;
    }

   .sh-adi-seo-footer {
    padding: 100px 10%;
    background: var(--sh-adi-grey);
    border-top: 1px solid #ddd;
    text-align: center;
}

.sh-adi-seo-wrapper {
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.8s ease-in-out;
    text-align: center;
}

.sh-adi-seo-wrapper.sh-skp-open {
    max-height: 5000px;
}

.sh-adi-seo-content {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--sh-adi-dark-grey);
}

.sh-adi-seo-btn {
    margin-top: 50px;
    background: transparent;
    border: 2px solid #000;
    padding: 15px 45px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

.sh-adi-seo-btn:hover {
    background: var(--sh-adi-red);
    border-color: var(--sh-adi-red);
    color: #fff;
}

    @media (max-width: 1200px) {
        .sh-adi-grid-34 {
            grid-template-columns: repeat(3, 1fr);
        }

        .sh-adi-tech-image-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .sh-adi-hero {
            height: 85vh;
        }

        .sh-adi-hero-content {
            padding: 0 5%;
            margin-top: 40px;
        }

        .sh-adi-hero-content h1 {
            font-size: 2.8rem;
        }

        .sh-adi-hero-btns {
            flex-direction: column;
            width: 100%;
        }

        .sh-adi-btn {
            width: 100%;
            min-width: unset;
        }

        .sh-adi-grid-34,
        .sh-adi-grid-sq,
        .sh-adi-blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {

        .sh-adi-grid-34,
        .sh-adi-grid-sq,
        .sh-adi-blog-grid {
            grid-template-columns: 1fr;
        }
    }