/*
============================================================
 SZP HOME PAGE — COMPLETE REPLACEMENT STYLE.CSS
 Designed specifically for the supplied home.php
 ============================================================
 Classes used here match the PHP exactly:
 .szp-home-page
 .szp-home-hero
 .szp-home-intro
 .szp-home-manufacturing
 .szp-home-industries
 .szp-home-why
 .szp-home-solutions
 .szp-home-ai
 .szp-home-custom
 .szp-home-final-cta

 The design basis follows the supplied SZP master stylesheet:
 dark industrial UI, #11A8FF accent, Poppins, glass surfaces,
 blue glow, responsive layouts and reduced-motion support.
============================================================
*/

/* ============================================================
   01. GLOBAL / RESET
============================================================ */

:root {
    --szp-blue: #11A8FF;
    --szp-blue-bright: #20B8FF;
    --szp-blue-dark: #087BC1;

    --szp-bg: #07111B;
    --szp-bg-2: #091722;
    --szp-bg-3: #0D1B28;

    --szp-surface: rgba(255,255,255,.045);
    --szp-surface-strong: rgba(255,255,255,.075);
    --szp-border: rgba(255,255,255,.10);
    --szp-border-blue: rgba(17,168,255,.25);

    --szp-white: #fff;
    --szp-text: #EAF3F9;
    --szp-muted: #9FB2C1;
    --szp-muted-2: #718594;

    --szp-container: 1380px;
    --szp-transition: .35s cubic-bezier(.22,.61,.36,1);
    --szp-shadow: 0 25px 80px rgba(0,0,0,.28);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--szp-bg);
    color: var(--szp-white);
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--szp-blue);
    outline-offset: 4px;
}

/* WordPress safety */
.szp-home-page,
.szp-home-page * ,
.szp-home-page *::before,
.szp-home-page *::after {
    box-sizing: border-box;
}

.szp-home-page h1,
.szp-home-page h2,
.szp-home-page h3,
.szp-home-page h4,
.szp-home-page p {
    margin-top: 0;
}

.szp-home-page ul,
.szp-home-page ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.szp-home-page a:hover {
    text-decoration: none;
}

/* =========================================================
   SZP CUSTOM HEADER
   MODERN INDUSTRIAL / GLASS NAVIGATION
   COMPLETE HEADER CSS
========================================================= */


/* =========================================================
   01. HEADER VARIABLES
========================================================= */

:root {

    --szp-blue: #11A8FF;
    --szp-blue-light: #29C2FF;
    --szp-blue-dark: #087FD1;

    --szp-white: #ffffff;

    --szp-text: rgba(255, 255, 255, 0.88);
    --szp-muted: rgba(255, 255, 255, 0.60);

    --szp-header-bg: rgba(8, 14, 22, 0.78);
    --szp-header-border: rgba(255, 255, 255, 0.10);

    --szp-glass:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.035)
        );

    --szp-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35);

    --szp-blue-glow:
        0 0 12px rgba(17, 168, 255, 0.55),
        0 0 30px rgba(17, 168, 255, 0.20);

    --szp-header-height: 86px;
}


/* =========================================================
   02. GLOBAL HEADER RESET
========================================================= */

.szp-header,
.szp-header *,
.szp-header *::before,
.szp-header *::after {
    box-sizing: border-box;
}

.szp-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: var(--szp-header-height);

    z-index: 9999;

    font-family: "Poppins", sans-serif;

    background:
        linear-gradient(
            180deg,
            rgba(6, 13, 21, 0.90),
            rgba(6, 13, 21, 0.68)
        );

    border-bottom:
        1px solid var(--szp-header-border);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);

}


/* =========================================================
   03. HEADER INNER
========================================================= */

.szp-header-inner {

    width: min(100% - 70px, 1500px);

    height: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    column-gap: 35px;

}


/* =========================================================
   04. LOGO
========================================================= */

.szp-logo {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    width: 150px;
    height: 64px;

    flex-shrink: 0;

    text-decoration: none;

    z-index: 10;

}

.szp-logo img {

    display: block;

    width: auto;

    max-width: 145px;
    max-height: 58px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;

}

.szp-logo:hover img {

    transform: scale(1.035);

    filter:
        drop-shadow(
            0 0 8px rgba(17, 168, 255, 0.40)
        );

}


/* =========================================================
   05. CENTER NAVIGATION AREA
========================================================= */

.szp-header-navigation {

    min-width: 0;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   06. NAVBAR
========================================================= */

.szp-navbar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

}


/* =========================================================
   07. NAVIGATION LIST
========================================================= */

.szp-nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(22px, 2.2vw, 38px);

    margin: 0;

    padding: 0;

    list-style: none;

    white-space: nowrap;

}


/* =========================================================
   08. NAVIGATION ITEM
========================================================= */

.szp-nav-item {

    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;

}


/* =========================================================
   09. NAVIGATION LINKS
========================================================= */

.szp-nav-item > a {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 46px;

    padding: 0;

    color: var(--szp-text);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color 0.30s ease,
        text-shadow 0.30s ease;

}


/* =========================================================
   10. NAVIGATION UNDERLINE
========================================================= */

.szp-nav-item > a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.75);

    transform: translateX(-50%);

    transition:
        width 0.30s ease;

}


/* =========================================================
   11. NAVIGATION HOVER
========================================================= */

.szp-nav-item > a:hover {

    color: var(--szp-blue-light);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.35);

}

.szp-nav-item > a:hover::after {

    width: 75%;

}


/* =========================================================
   12. ACTIVE NAVIGATION
========================================================= */

.szp-nav-item > a.active {

    color: var(--szp-blue);

    text-shadow:
        0 0 14px rgba(17, 168, 255, 0.38);

}

.szp-nav-item > a.active::after {

    width: 75%;

}


/* =========================================================
   13. RIGHT SIDE
========================================================= */

.szp-nav-right {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;

    height: 100%;

    flex-shrink: 0;

    z-index: 1100;

}


/*
   VISUAL ORDER

   SEARCH
   THEME
   GET STARTED

   PHP ORDER DOES NOT NEED TO CHANGE.
*/

.szp-search-container {
    order: 1;
}

.szp-theme-toggle {
    order: 2;
}

.szp-nav-btn {
    order: 3;
}


/* =========================================================
   14. SEARCH CONTAINER
========================================================= */

.szp-search-container {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    z-index: 1200;

}


/* =========================================================
   15. SEARCH BUTTON
   NO CIRCLE / NO BACKGROUND
========================================================= */

.szp-search-btn {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 46px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 0;

    outline: none;

    color:
        rgba(255, 255, 255, 0.82);

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    transition:
        color 0.30s ease,
        transform 0.30s ease,
        text-shadow 0.30s ease;

}


/* SEARCH HOVER */

.szp-search-btn:hover {

    color: var(--szp-blue-light);

    background: transparent;

    box-shadow: none;

    transform: translateY(-1px);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.55);

}


/* SEARCH ICON */

.szp-search-btn i {

    font-size: 16px;

    line-height: 1;

    pointer-events: none;

}


/* =========================================================
   16. EXPANDED SEARCH BOX
========================================================= */

.szp-search-box {

    position: absolute;

    top: 50%;
    right: 0;

    width: 0;
    height: 46px;

    display: flex;

    align-items: center;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    border:
        1px solid transparent;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(15, 28, 42, 0.94),
            rgba(10, 19, 30, 0.90)
        );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transform:
        translateY(-50%)
        scaleX(0.85);

    transform-origin: right center;

    transition:
        width 0.40s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.40s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.30s ease;

    z-index: 1250;

}


/* =========================================================
   17. SEARCH OPEN
========================================================= */

.szp-search-container.is-open
.szp-search-box {

    width: 230px;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    border-color:
        rgba(17, 168, 255, 0.38);

    transform:
        translateY(-50%)
        scaleX(1);

}


/* =========================================================
   18. HIDE SEARCH ICON WHEN OPEN
========================================================= */

.szp-search-container.is-open
.szp-search-btn {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


/* =========================================================
   19. SEARCH BOX ICON
========================================================= */

.szp-search-box-icon {

    flex-shrink: 0;

    margin-left: 15px;
    margin-right: 10px;

    color: var(--szp-blue);

    font-size: 14px;

    text-shadow:
        0 0 10px rgba(17, 168, 255, 0.45);

}


/* =========================================================
   20. SEARCH INPUT
========================================================= */

.szp-search-input {

    width: 100%;

    min-width: 0;

    height: 100%;

    padding: 0;

    margin: 0;

    border: 0;

    outline: none;

    color: #ffffff;

    background: transparent !important;

    background-color: transparent !important;

    box-shadow: none;

    appearance: none;
    -webkit-appearance: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.02em;

}


/* PLACEHOLDER */

.szp-search-input::placeholder {

    color:
        rgba(255, 255, 255, 0.48);

    opacity: 1;

}


/* =========================================================
   21. SEARCH CLOSE
========================================================= */

.szp-search-close {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 100%;

    padding: 0;
    margin: 0;

    border: 0;

    color:
        rgba(255, 255, 255, 0.60);

    background: transparent;

    cursor: pointer;

    outline: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}

.szp-search-close:hover {

    color: var(--szp-blue-light);

    background: transparent;

    transform: rotate(90deg);

}


/* =========================================================
   22. THEME TOGGLE
   NO CIRCLE / NO BACKGROUND
========================================================= */

.szp-theme-toggle {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 46px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 0;

    outline: none;

    color:
        rgba(255, 255, 255, 0.82);

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        color 0.30s ease,
        transform 0.30s ease,
        text-shadow 0.30s ease;

}


/* THEME ICON */

.szp-theme-toggle i {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.35s ease,
        color 0.30s ease;

}


/* THEME HOVER */

.szp-theme-toggle:hover {

    color: var(--szp-blue-light);

    background: transparent;

    box-shadow: none;

    transform: translateY(-1px);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.50);

}


/* ICON ROTATION */

.szp-theme-toggle:hover i {

    transform: rotate(20deg);

}


/* =========================================================
   23. GET STARTED BUTTON
========================================================= */

.szp-nav-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 150px;

    height: 46px;

    padding: 0 20px;

    border:
        1px solid rgba(17, 168, 255, 0.65);

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.22),
            rgba(17, 168, 255, 0.08)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 0 rgba(17, 168, 255, 0);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-decoration: none;

    white-space: nowrap;

    overflow: hidden;

    transition:
        color 0.30s ease,
        background 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease,
        transform 0.30s ease;

}


/* BUTTON SHINE */

.szp-nav-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.60s ease;

}


/* GET STARTED HOVER */

.szp-nav-btn:hover {

    color: #ffffff;

    border-color:
        var(--szp-blue);

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.34),
            rgba(17, 168, 255, 0.13)
        );

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.28),
        0 0 35px rgba(17, 168, 255, 0.10);

    transform: translateY(-1px);

}

.szp-nav-btn:hover::before {

    left: 140%;

}


/* GET STARTED ICON */

.szp-nav-btn i {

    font-size: 12px;

    transition:
        transform 0.30s ease;

}

.szp-nav-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   24. MOBILE MENU TOGGLE
========================================================= */

.szp-menu-toggle {

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    width: 46px;
    height: 46px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.045);

    cursor: pointer;

}

.szp-menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform 0.30s ease,
        opacity 0.30s ease;

}


/* =========================================================
   25. HEADER GLOW
========================================================= */

.szp-header-glow {

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(17, 168, 255, 0.10) 15%,
            var(--szp-blue) 50%,
            rgba(17, 168, 255, 0.10) 85%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.55),
        0 0 25px rgba(17, 168, 255, 0.20);

}


/* =========================================================
   26. SCROLLED HEADER
========================================================= */

.szp-header.scrolled {

    background:
        linear-gradient(
            180deg,
            rgba(5, 11, 18, 0.96),
            rgba(5, 11, 18, 0.90)
        );

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);

}


/* =========================================================
   27. LIGHT THEME
========================================================= */

body.szp-light-theme .szp-header {

    background:
        linear-gradient(
            180deg,
            rgba(235, 239, 244, 0.94),
            rgba(225, 230, 236, 0.88)
        );

    border-bottom:
        1px solid rgba(20, 30, 42, 0.10);

    box-shadow:
        0 10px 35px rgba(20, 30, 42, 0.12);

}


/* LIGHT NAV TEXT */

body.szp-light-theme .szp-nav-item > a {

    color:
        rgba(25, 35, 46, 0.86);

}

body.szp-light-theme .szp-nav-item > a:hover {

    color: var(--szp-blue);

}

body.szp-light-theme .szp-nav-item > a.active {

    color: var(--szp-blue);

}


/* LIGHT SEARCH */

body.szp-light-theme .szp-search-btn {

    color:
        rgba(25, 35, 46, 0.82);

    background: transparent;

}

body.szp-light-theme .szp-search-btn:hover {

    color: var(--szp-blue);

    background: transparent;

}


/* LIGHT THEME BUTTON */

body.szp-light-theme .szp-theme-toggle {

    color:
        rgba(25, 35, 46, 0.82);

    background: transparent;

}

body.szp-light-theme .szp-theme-toggle:hover {

    color: var(--szp-blue);

    background: transparent;

}


/* LIGHT SEARCH BOX */

body.szp-light-theme .szp-search-box {

    background:
        linear-gradient(
            135deg,
            rgba(239, 243, 247, 0.97),
            rgba(222, 228, 235, 0.96)
        );

    border-color:
        rgba(17, 168, 255, 0.28);

    box-shadow:
        0 15px 40px rgba(20, 30, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);

}

body.szp-light-theme .szp-search-input {

    color:
        #202730;

}

body.szp-light-theme .szp-search-input::placeholder {

    color:
        rgba(32, 39, 48, 0.52);

}

body.szp-light-theme .szp-search-close {

    color:
        rgba(32, 39, 48, 0.58);

}


/* LIGHT SCROLLED */

body.szp-light-theme .szp-header.scrolled {

    background:
        linear-gradient(
            180deg,
            rgba(228, 233, 239, 0.98),
            rgba(220, 226, 233, 0.95)
        );

    box-shadow:
        0 15px 45px rgba(20, 30, 42, 0.16);

}


/* =========================================================
   28. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .szp-header-inner {

        width:
            min(100% - 90px, 1600px);

        column-gap: 45px;

    }

    .szp-nav-links {

        gap: 38px;

    }

    .szp-nav-item > a {

        font-size: 12px;

    }

}


/* =========================================================
   29. STANDARD DESKTOP
========================================================= */

@media (max-width: 1250px) {

    .szp-header-inner {

        width:
            calc(100% - 45px);

        column-gap: 22px;

    }

    .szp-nav-links {

        gap: 20px;

    }

    .szp-nav-item > a {

        font-size: 11px;

    }

    .szp-nav-btn {

        min-width: 135px;

        padding: 0 16px;

    }

}


/* =========================================================
   30. TABLET LANDSCAPE
========================================================= */

@media (max-width: 1100px) {

    .szp-header {

        height: 78px;

    }

    .szp-header-inner {

        width:
            calc(100% - 35px);

        grid-template-columns:
            auto auto;

        justify-content:
            space-between;

    }

    .szp-header-navigation {

        display: none;

    }

    .szp-nav-right {

        gap: 10px;

    }

    .szp-menu-toggle {

        display: flex;

    }

    .szp-search-container {

        display: flex;

    }

}


/* =========================================================
   31. TABLET
========================================================= */

@media (max-width: 768px) {

    .szp-header-inner {

        width:
            calc(100% - 28px);

    }

    .szp-logo {

        width: 130px;

    }

    .szp-logo img {

        max-width: 125px;
        max-height: 52px;

    }

    .szp-nav-btn {

        min-width: auto;

        width: 46px;

        padding: 0;

    }

    .szp-nav-btn span {

        display: none;

    }

    .szp-nav-btn i {

        margin: 0;

        font-size: 14px;

    }

    .szp-search-container {

        width: 40px;

        flex-basis: 40px;

    }

    .szp-theme-toggle {

        width: 38px;

    }

    .szp-search-container.is-open
    .szp-search-box {

        width:
            min(300px, calc(100vw - 90px));

    }

}


/* =========================================================
   32. MOBILE
========================================================= */

@media (max-width: 520px) {

    .szp-header {

        height: 72px;

    }

    .szp-header-inner {

        width:
            calc(100% - 20px);

    }

    .szp-logo {

        width: 115px;

    }

    .szp-logo img {

        max-width: 112px;
        max-height: 48px;

    }

    .szp-nav-right {

        gap: 7px;

    }

    .szp-search-btn,
    .szp-search-container {

        width: 42px;

        height: 42px;

    }

    .szp-theme-toggle {

        width: 36px;

        height: 42px;

    }

    .szp-nav-btn {

        width: 42px;

        height: 42px;

    }

    .szp-search-container.is-open
    .szp-search-box {

        width:
            calc(100vw - 90px);

        height: 42px;

    }

}


/* =========================================================
   33. VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .szp-logo {

        width: 100px;

    }

    .szp-logo img {

        max-width: 98px;

    }

    .szp-nav-right {

        gap: 5px;

    }

    .szp-theme-toggle {

        width: 34px;

    }

}


/* =========================================================
   34. ACCESSIBILITY
========================================================= */

.szp-search-btn:focus-visible,
.szp-theme-toggle:focus-visible,
.szp-search-close:focus-visible,
.szp-nav-btn:focus-visible {

    outline:
        2px solid var(--szp-blue);

    outline-offset: 3px;

}


/* =========================================================
   35. REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .szp-header *,
    .szp-header *::before,
    .szp-header *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}
```




/* ============================================================
   02. HOME CONTAINER / COMMON TYPOGRAPHY
============================================================ */

.szp-home-page {
    position: relative;
    width: 100%;
    background: var(--szp-bg);
    overflow: hidden;
}

.szp-home-container {
    width: min(calc(100% - 80px), var(--szp-container));
    margin: 0 auto;
}

.szp-home-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--szp-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1;
    text-transform: uppercase;
}

.szp-home-section-eyebrow > span {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--szp-blue);
    box-shadow: 0 0 12px rgba(17,168,255,.7);
}

.szp-home-section-title {
    margin: 20px 0 0;
    max-width: 850px;
    color: var(--szp-white);
    font-size: clamp(38px,5vw,72px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.8px;
}

.szp-home-section-title span {
    color: var(--szp-blue);
    text-shadow: 0 0 30px rgba(17,168,255,.18);
}

.szp-home-section-lead {
    max-width: 760px;
    margin: 25px 0 0;
    color: var(--szp-muted);
    font-size: 15px;
    line-height: 1.9;
}

.szp-home-section-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.szp-home-section-header-centered .szp-home-section-title {
    max-width: 900px;
}

.szp-home-section-header-centered .szp-home-section-lead {
    max-width: 720px;
}

/* ============================================================
   03. COMMON BUTTONS
============================================================ */

.szp-home-primary-btn,
.szp-home-secondary-btn {
    position: relative;
    min-height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    overflow: hidden;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--szp-transition),
                box-shadow var(--szp-transition),
                background var(--szp-transition),
                border-color var(--szp-transition),
                color var(--szp-transition);
}

.szp-home-primary-btn {
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    background: linear-gradient(135deg,var(--szp-blue),#087FD0);
    box-shadow: 0 12px 35px rgba(17,168,255,.20);
}

.szp-home-primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
    transform: skewX(-20deg);
    transition: left .65s ease;
}

.szp-home-primary-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(17,168,255,.30);
    filter: brightness(1.05);
}

.szp-home-primary-btn:hover::before {
    left: 140%;
}

.szp-home-primary-btn i {
    transition: transform .3s ease;
}

.szp-home-primary-btn:hover i {
    transform: translateX(4px);
}

.szp-home-secondary-btn {
    border: 1px solid rgba(255,255,255,.17);
    color: #fff;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.szp-home-secondary-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    border-color: rgba(17,168,255,.45);
    background: rgba(17,168,255,.08);
}

/* ============================================================
   SZP HOME HERO
   MODERN SLIDE-BY-SLIDE HERO SYSTEM
============================================================ */

.szp-home-hero {
    position: relative;
    width: 100%;
    min-height: max(760px, 100svh);
    overflow: hidden;
    isolation: isolate;
    background: #050c13;
}


/* ============================================================
   HERO SLIDER
============================================================ */

.szp-home-hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* ============================================================
   INDIVIDUAL SLIDE
============================================================ */

.szp-home-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}

.szp-home-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}


/* ============================================================
   SLIDE BACKGROUND
============================================================ */

.szp-home-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.szp-home-slide-bg img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.05);

    /* Make the original image clearer */
    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);

    transition:
        transform 8s cubic-bezier(.16,.65,.3,1),
        filter 0.8s ease;
}

.szp-home-slide.active .szp-home-slide-bg img {
    transform: scale(1);

    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);
}

/* ============================================================
   HERO IMAGE OVERLAY — BRIGHT / CLEAR CINEMATIC
============================================================ */

.szp-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 15, 0.62) 0%,
            rgba(3, 9, 15, 0.42) 24%,
            rgba(3, 9, 15, 0.16) 50%,
            rgba(3, 9, 15, 0.06) 75%,
            rgba(3, 9, 15, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 9, 15, 0.12) 0%,
            transparent 45%,
            rgba(3, 9, 15, 0.38) 100%
        );
}

/* ============================================================
   GRID
============================================================ */

.szp-home-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(17,168,255,.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17,168,255,.10) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 72%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 72%
        );
}


/* ============================================================
   HERO CONTAINER
============================================================ */

.szp-home-hero-container {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--szp-container)
    );

    min-height: max(760px, 100svh);

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding:
        130px
        0
        110px;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.szp-home-hero-content {
    width: min(650px, 58%);

    padding-top: 20px;
}


/* ============================================================
   EYEBROW
============================================================ */

.szp-home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: rgba(255,255,255,.76);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.6px;
    line-height: 1.4;

    text-transform: uppercase;
}

.szp-home-eyebrow-line {
    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--szp-blue);

    box-shadow:
        0 0 14px rgba(17,168,255,.75);
}


/* ============================================================
   MAIN HERO TITLE
============================================================ */

.szp-home-hero-title {
    margin: 0;

    max-width: 680px;

    color: #fff;

    font-size: clamp(
        46px,
        5.3vw,
        78px
    );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -3px;
}

.szp-home-title-line {
    display: block;
}

.szp-home-title-accent {
    display: block;

    color: var(--szp-blue);

    text-shadow:
        0 0 35px rgba(17,168,255,.25);
}


/* ============================================================
   HERO DESCRIPTION
============================================================ */

.szp-home-hero-description {
    width: 100%;
    max-width: 590px;

    margin:
        24px
        0
        0;

    color: rgba(235,245,250,.78);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.szp-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    margin-top: 27px;
}


/* ============================================================
   TRUST INFORMATION
============================================================ */

.szp-home-hero-trust {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 38px;
}

.szp-home-trust-item {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 58px;
}

.szp-home-trust-number {
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;
}

.szp-home-trust-label {
    color: rgba(255,255,255,.45);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.szp-home-trust-divider {
    width: 1px;
    height: 28px;

    background: rgba(255,255,255,.17);
}


/* ============================================================
   SIDE INFORMATION
============================================================ */

.szp-home-hero-side {
    position: absolute;

    right: -15px;
    bottom: 175px;

    display: flex;
    align-items: center;

    gap: 14px;

    transform:
        rotate(90deg)
        translateX(50%);

    transform-origin: right center;

    opacity: .65;
}

.szp-home-hero-side span {
    color: rgba(255,255,255,.48);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2.5px;

    white-space: nowrap;
}

.szp-home-hero-side i {
    display: block;

    width: 58px;
    height: 1px;

    background: rgba(17,168,255,.75);

    box-shadow:
        0 0 8px rgba(17,168,255,.45);
}





/* ============================================================
   HERO CONTROLS
============================================================ */

.szp-home-slider-controls {
    position: absolute;
    left: max(40px, calc((100% - var(--szp-container)) / 2));
    right: auto;
    bottom: 50px;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 15px;

    pointer-events: auto;
}


/* ============================================================
   SLIDER ARROWS
============================================================ */

.szp-home-slider-arrow {
    width: 42px;
    height: 42px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    color: #fff;
    background: rgba(255,255,255,.045);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.szp-home-slider-arrow:hover {
    transform: translateY(-3px);

    border-color: rgba(17,168,255,.55);

    background: rgba(17,168,255,.10);

    box-shadow:
        0 0 20px rgba(17,168,255,.16);
}

.szp-home-slider-arrow i {
    font-size: 12px;
}


/* ============================================================
   SLIDER DOTS / PROGRESS LINE
============================================================ */

.szp-home-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0 7px;
}

.szp-home-slider-dot {
    width: 22px;
    height: 3px;

    padding: 0;

    border: 0;
    border-radius: 50px;

    background: rgba(255,255,255,.25);

    cursor: pointer;

    transition:
        width .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.szp-home-slider-dot.active {
    width: 48px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,.55);
}


/* ============================================================
   SCROLL INDICATOR
============================================================ */

.szp-home-scroll-indicator {
    position: absolute;

    right: max(40px, calc((100% - var(--szp-container)) / 2));
    bottom: 43px;

    z-index: 20;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    transition: color .3s ease;
}

.szp-home-scroll-indicator:hover {
    color: #fff;
}

.szp-home-scroll-line {
    width: 42px;
    height: 1px;

    background: rgba(255,255,255,.35);
}

.szp-home-scroll-indicator i {
    color: var(--szp-blue);
    font-size: 10px;

    animation:
        szpHomeScrollBounce 1.7s ease-in-out infinite;
}


/* ============================================================
   SCROLL ANIMATION
============================================================ */

@keyframes szpHomeScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}

/* ============================================================
   SCROLL INDICATOR
============================================================ */

.szp-home-scroll-indicator {
    position: absolute;

    right: max(
        40px,
        calc((100% - var(--szp-container)) / 2)
    );

    bottom: 48px;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.48);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition:
        color .3s ease;
}

.szp-home-scroll-indicator:hover {
    color: #fff;
}

.szp-home-scroll-line {
    width: 38px;
    height: 1px;

    background: rgba(255,255,255,.32);
}

.szp-home-scroll-indicator i {
    color: var(--szp-blue);

    font-size: 9px;

    animation:
        szpHomeScrollBounce
        1.7s
        ease-in-out
        infinite;
}


/* ============================================================
   SLIDE CONTENT ENTRANCE ANIMATION
============================================================ */

.szp-home-slide .szp-home-hero-content {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .8s ease .15s,
        transform .9s cubic-bezier(.16,.65,.3,1) .15s;
}

.szp-home-slide.active .szp-home-hero-content {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 900px) {

    .szp-home-hero {
        min-height: 760px;
    }

    .szp-home-hero-container {
        width: calc(100% - 40px);

        min-height: 760px;

        padding:
            120px
            0
            130px;
    }

    .szp-home-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .szp-home-hero-title {
        font-size: clamp(
            43px,
            9vw,
            68px
        );

        letter-spacing: -2.5px;
    }

    .szp-home-hero-description {
        max-width: 540px;
        font-size: 12px;
    }

    .szp-home-hero-side {
        display: none;
    }

    .szp-home-slider-controls {
        left: 20px;
        right: auto;
        bottom: 35px;
    }

    .szp-home-scroll-indicator {
        right: 20px;
        bottom: 35px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 600px) {

    .szp-home-hero {
        min-height: 720px;
    }

    .szp-home-hero-container {
        width: calc(100% - 32px);

        min-height: 720px;

        padding:
            105px
            0
            120px;

        align-items: center;
    }

    .szp-home-hero-eyebrow {
        font-size: 7px;
        letter-spacing: 1.8px;

        margin-bottom: 18px;
    }

    .szp-home-eyebrow-line {
        width: 25px;
    }

    .szp-home-hero-title {
        font-size: clamp(
            38px,
            11vw,
            55px
        );

        line-height: .96;

        letter-spacing: -2px;
    }

    .szp-home-hero-description {
        margin-top: 18px;

        font-size: 11px;

        line-height: 1.7;
    }

    .szp-home-hero-actions {
        margin-top: 22px;
    }

    .szp-home-hero-trust {
        margin-top: 30px;

        gap: 12px;
    }

    .szp-home-trust-number {
        font-size: 13px;
    }

    .szp-home-trust-label {
        font-size: 6px;
    }

    .szp-home-trust-divider {
        height: 24px;
    }

    .szp-home-slider-controls {
        bottom: 28px;
        left: 16px;

        gap: 8px;
    }

    .szp-home-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .szp-home-slider-dot.active {
        width: 35px;
    }

    .szp-home-scroll-indicator {
        right: 16px;
        bottom: 30px;
    }

    .szp-home-scroll-text {
        display: none;
    }

}


/* ============================================================
   SCROLL ANIMATION
============================================================ */

@keyframes szpHomeScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}
/* ============================================================
   05. COMPANY INTRO / OVERVIEW
============================================================ */

.szp-home-intro {
    position: relative;
    padding: 145px 0 0;
    background: linear-gradient(180deg,#07111B 0%,#091722 100%);
    overflow: hidden;
}

.szp-home-intro::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.08),transparent 68%);
    pointer-events: none;
}

.szp-home-timeline {
    display: grid;
    grid-template-columns: 1fr 90px 1fr 90px 1fr;
    align-items: stretch;
    margin-top: 85px;
}

/* =========================================================
    SZP HOME TIMELINE ITEM
    DARK THEME
 ========================================================= */

html[data-theme="dark"] .szp-home-timeline-item {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    background: #0b2030 !important;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


/* DARK THEME — HOVER */

html[data-theme="dark"] .szp-home-timeline-item:hover {
    transform: translateY(-8px)
	border-color: rgba(21, 120, 179, .65);
    background: #102d40 !important;
}


.szp-home-timeline-number {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.szp-home-timeline-year {
    margin-top: 18px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

.szp-home-timeline-item h3 {
    margin: 15px 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

html[data-theme="dark"] .szp-home-timeline-item p {
    margin: 0;
    color: #fff;
    font-size: 11px;
    line-height: 1.8;
}

.szp-home-timeline-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-home-timeline-connector::before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(17,168,255,.18);
}

.szp-home-timeline-connector span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--szp-blue);
    box-shadow: 0 0 18px rgba(17,168,255,.65);
}

/* =========================================================
   SZP HOME — MINIMAL CINEMATIC IMAGE
========================================================= */

.szp-home-intro-image {
    position: relative;
    width: 100%;
    min-height: 650px;

    margin-top: 90px;

    overflow: hidden;
    isolation: isolate;

    background: #071018;
}


/* =========================================================
   IMAGE
========================================================= */

.szp-home-intro-image > img {
    position: absolute;
    inset: 0;
filter: blur(8px) brightness(40%);
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;

    transform: scale(1.02);
}


/* =========================================================
   CINEMATIC DARK OVERLAY
========================================================= */

.szp-home-image-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 16, 0.88) 0%,
            rgba(4, 10, 16, 0.62) 38%,
            rgba(4, 10, 16, 0.20) 75%,
            rgba(4, 10, 16, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 10, 16, 0.10) 0%,
            rgba(4, 10, 16, 0.05) 50%,
            rgba(4, 10, 16, 0.75) 100%
        );
}


/* =========================================================
   SUBTLE TECHNICAL GRID
========================================================= */

.szp-home-image-grid {
    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(17, 168, 255, 0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 168, 255, 0.55) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            90deg,
            black 0%,
            transparent 75%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            black 0%,
            transparent 75%
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.szp-home-image-content {
    position: relative;

    z-index: 3;

    width: min(1200px, calc(100% - 100px));

    min-height: 650px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   EYEBROW
========================================================= */

html[data-theme="dark"]  .szp-home-image-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;

    color: #fff;
	    text-shadow: 0 0 8px rgb(4 43 133), 0 0 22px #11a8ff, 0 0 45px rgba(17, 168, 255, 0.20);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.25em;

    text-transform: uppercase;
}


.szp-home-image-eyebrow-line {
    width: 45px;
    height: 1px;

    background: #11A8FF;

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.9),
        0 0 18px rgba(17, 168, 255, 0.55);
}


/* =========================================================
   BOLD HEADING
========================================================= */

html[data-theme="dark"]  .szp-home-image-title {
    max-width: 850px;

    margin: 0;

    
	color: #11A8FF;
	

    text-shadow:
        0 0 8px rgba(17, 168, 255, 0.65),
        0 0 22px rgba(17, 168, 255, 0.42),
        0 0 45px rgba(17, 168, 255, 0.20);

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;

    text-transform: none;
}


/* BLUE GLOWING WORDS */

.szp-home-image-title span {
    color: #ffffff;

/*     text-shadow:
        0 0 8px rgba(17, 168, 255, 0.65),
        0 0 22px rgba(17, 168, 255, 0.42),
        0 0 45px rgba(17, 168, 255, 0.20); */
}


/* =========================================================
   SMALL TECHNICAL ACCENT
========================================================= */

.szp-home-image-accent {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.22em;
}


.szp-home-image-accent span {
    width: 28px;
    height: 1px;

    background: rgba(17, 168, 255, 0.65);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.7);
}


/* =========================================================
   SIDE LABEL
========================================================= */

.szp-home-image-side-label {
    position: absolute;

    right: 38px;
    top: 50%;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    transform:
        translateY(-50%)
        rotate(-90deg);

    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;

    letter-spacing: 0.22em;
}


.szp-home-image-side-label span {
    color: #11A8FF;

    font-weight: 800;

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.8);
}


.szp-home-image-side-label i {
    width: 42px;
    height: 1px;

    background: #11A8FF;

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.8);
}


.szp-home-image-side-label strong {
    font-weight: 600;
}


/* =========================================================
   BOTTOM CAPTION
========================================================= */

.szp-home-image-caption {
    position: absolute;

    right: 55px;
    bottom: 35px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}


.szp-home-image-caption span {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


.szp-home-image-caption strong {
    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    font-weight: 500;
}


/* =========================================================
   BLUE GLOWING BOTTOM LINE
========================================================= */

.szp-home-intro-image::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #11A8FF 0%,
            rgba(17, 168, 255, 0.45) 45%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.8),
        0 0 25px rgba(17, 168, 255, 0.35);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .szp-home-intro-image {
        min-height: 560px;
    }

    .szp-home-image-content {
        width: calc(100% - 50px);

        min-height: 560px;
    }

    .szp-home-image-title {
        font-size: clamp(42px, 8vw, 65px);
    }

    .szp-home-image-side-label {
        display: none;
    }

}


@media (max-width: 600px) {

    .szp-home-intro-image {
        min-height: 500px;
    }

    .szp-home-intro-image > img {
        object-position: center;
    }

    .szp-home-image-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 10, 16, 0.78) 0%,
                rgba(4, 10, 16, 0.45) 45%,
                rgba(4, 10, 16, 0.88) 100%
            );
    }

    .szp-home-image-content {
        width: calc(100% - 36px);

        min-height: 500px;
    }

    .szp-home-image-title {
        font-size: 42px;

        line-height: 1;
    }

    .szp-home-image-eyebrow {
        font-size: 9px;

        letter-spacing: 0.18em;
    }

    .szp-home-image-accent {
        font-size: 7px;

        letter-spacing: 0.14em;
    }

    .szp-home-image-caption {
        left: 18px;
        right: auto;

        bottom: 22px;

        align-items: flex-start;

        text-align: left;
    }

    .szp-home-image-caption span {
        font-size: 7px;
    }

    .szp-home-image-caption strong {
        font-size: 12px;
    }

}

.szp-home-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,rgba(7,17,27,.55),transparent 60%);
}

.szp-home-image-caption {
    position: absolute;
    left: max(40px,calc((100% - var(--szp-container))/2));
    bottom: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.szp-home-image-caption span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.szp-home-image-caption strong {
    color: #fff;
    font-size: clamp(25px,3vw,42px);
    font-weight: 600;
    letter-spacing: -1px;
}

/* ============================================================
   06. MANUFACTURING
============================================================ */

.szp-home-manufacturing {
    position: relative;
    padding: 150px 0;
    background: #08141F;
    overflow: hidden;
}

.szp-home-manufacturing::before {
    content: "";
    position: absolute;
    top: 0;
    right: -250px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.08),transparent 68%);
    pointer-events: none;
}

.szp-home-manufacturing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
    gap: clamp(55px,7vw,120px);
    align-items: center;
}

.szp-home-manufacturing-media {
    position: relative;
    min-width: 0;
}

.szp-home-media-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.12 / 1;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background: #101B26;
    box-shadow: 0 35px 90px rgba(0,0,0,.35);
}

.szp-home-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(17,168,255,.15),transparent 42%);
    pointer-events: none;
}

.szp-home-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.16,.65,.3,1);
}

.szp-home-media-frame:hover img {
    transform: scale(1.045);
}

.szp-home-media-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 230px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 16px;
    background: rgba(7,17,27,.82);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.szp-home-media-badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.09);
}

.szp-home-media-badge strong,
.szp-home-media-badge small {
    display: block;
}

.szp-home-media-badge strong {
    color: #fff;
    font-size: 12px;
}

.szp-home-media-badge small {
    margin-top: 4px;
    color: var(--szp-muted);
    font-size: 8px;
}

.szp-home-manufacturing-content {
    max-width: 700px;
}

.szp-home-manufacturing-text {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.9;
}

.szp-home-manufacturing-text strong {
    color: #fff;
}

.szp-home-capability-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.szp-home-capability {
    min-height: 60px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    color: #dcebf3;
    background: rgba(255,255,255,.025);
    font-size: 10px;
    transition: border-color .3s ease,background .3s ease,transform .3s ease;
}

.szp-home-capability:hover {
    transform: translateY(-3px);
    border-color: rgba(17,168,255,.30);
    background: rgba(17,168,255,.05);
}

.szp-home-capability-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.07);
}

.szp-home-outline-btn {
    margin-top: 32px;
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(17,168,255,.30);
    border-radius: 11px;
    color: #fff;
    background: rgba(17,168,255,.035);
    font-size: 11px;
    font-weight: 700;
    transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.szp-home-outline-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.09);
}

.szp-home-outline-btn i {
    color: var(--szp-blue);
}

/* ============================================================
   07. INDUSTRIES
============================================================ */

.szp-home-industries {
    position: relative;
    padding: 150px 0;
    background: #07111B;
    overflow: hidden;
}

.szp-home-industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 70px;
}

.szp-home-industry-card {
    position: relative;
    min-height: 275px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 20px;
    background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
    transition: transform .45s cubic-bezier(.22,.61,.36,1),
                border-color .4s ease,
                background .4s ease,
                box-shadow .4s ease;
}

.szp-home-industry-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.13),transparent 68%);
    opacity: .6;
    transition: transform .5s ease,opacity .5s ease;
}

.szp-home-industry-card:hover {
    transform: translateY(-9px);
    border-color: rgba(17,168,255,.30);
    background: linear-gradient(145deg,rgba(17,168,255,.07),rgba(255,255,255,.02));
    box-shadow: 0 25px 60px rgba(0,0,0,.24);
}

.szp-home-industry-card:hover::before {
    transform: scale(1.5);
    opacity: 1;
}

.szp-home-industry-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(255,255,255,.22);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.szp-home-industry-icon {
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.22);
    border-radius: 15px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.06);
    font-size: 20px;
    transition: transform .4s ease,background .4s ease;
}

.szp-home-industry-card:hover .szp-home-industry-icon {
    transform: scale(1.08);
    background: rgba(17,168,255,.12);
}

.szp-home-industry-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.szp-home-industry-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.szp-home-industry-content p {
    margin: 0;
    max-width: 320px;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.7;
}

.szp-home-industry-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.025);
    font-size: 10px;
    transition: color .3s ease,background .3s ease,transform .3s ease;
}

.szp-home-industry-card:hover .szp-home-industry-arrow {
    color: #fff;
    background: var(--szp-blue);
    transform: translate(2px,-2px);
}

.szp-home-industry-card-featured {
    border-color: rgba(17,168,255,.22);
    background: linear-gradient(145deg,rgba(17,168,255,.09),rgba(255,255,255,.02));
}

/* ============================================================
   08. WHY SZP
============================================================ */

.szp-home-why {
    position: relative;
    padding: 150px 0;
    background: #06101A;
    overflow: hidden;
}

.szp-home-why::after {
    content: "";
    position: absolute;
    right: -300px;
    bottom: -300px;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.06),transparent 68%);
    pointer-events: none;
}

.szp-home-why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
    gap: 90px;
    align-items: start;
}

.szp-home-why-heading p {
    max-width: 390px;
    margin: 28px 0 0;
    color: var(--szp-muted);
    font-size: 14px;
    line-height: 1.9;
}

.szp-home-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.szp-home-why-card {
    position: relative;
    min-height: 230px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    transition: transform .4s ease,border-color .4s ease,background .4s ease;
}

.szp-home-why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.30);
    background: rgba(17,168,255,.045);
}

.szp-home-why-card-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(255,255,255,.18);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.szp-home-why-card > i {
    display: block;
    margin-bottom: 35px;
    color: var(--szp-blue);
    font-size: 25px;
    text-shadow: 0 0 20px rgba(17,168,255,.25);
}

.szp-home-why-card h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.szp-home-why-card p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 10px;
    line-height: 1.75;
}

/* ============================================================
   09. PRODUCT SOLUTIONS
============================================================ */

.szp-home-solutions {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(180deg,#08141F,#07111B);
}

.szp-home-solutions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.szp-home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17,168,255,.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .3s ease,border-color .3s ease;
}

.szp-home-text-link:hover {
    color: var(--szp-blue);
    border-color: var(--szp-blue);
}

.szp-home-text-link i {
    color: var(--szp-blue);
    transition: transform .3s ease;
}

.szp-home-text-link:hover i {
    transform: translateX(5px);
}

.szp-home-solution-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 580px;
    margin-top: 60px;
}

.szp-home-solution-card {
    position: relative;
    min-height: 280px;
    padding: 35px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg,#0E202F,#07121D);
    transition: transform .45s ease,border-color .45s ease,box-shadow .45s ease;
}

.szp-home-solution-card:hover {
    color: #fff;
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.34);
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.szp-home-solution-card-large {
    grid-row: span 2;
}

.szp-home-solution-glow {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.16),transparent 68%);
    transition: transform .7s ease;
    pointer-events: none;
}

.szp-home-solution-card:hover .szp-home-solution-glow {
    transform: scale(1.3);
}

.szp-home-solution-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.szp-home-solution-content > span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.szp-home-solution-content h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
}

.szp-home-solution-card:not(.szp-home-solution-card-large) .szp-home-solution-content h3 {
    font-size: 25px;
}

.szp-home-solution-content p {
    max-width: 440px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.8;
}

.szp-home-solution-content strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.szp-home-solution-content strong i {
    color: var(--szp-blue);
    transition: transform .3s ease;
}

.szp-home-solution-card:hover .szp-home-solution-content strong i {
    transform: translateX(5px);
}

/* ============================================================
   10. AI PACKAGING ASSISTANT
============================================================ */

.szp-home-ai {
    position: relative;
    padding: 150px 0;
    background: #06101A;
    overflow: hidden;
}

.szp-home-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%,rgba(17,168,255,.08),transparent 35%);
    pointer-events: none;
}

.szp-home-ai-panel {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.17);
    border-radius: 30px;
    background: linear-gradient(135deg,rgba(17,168,255,.065),rgba(255,255,255,.025));
    box-shadow: 0 40px 100px rgba(0,0,0,.28);
}

.szp-home-ai-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle,rgba(17,168,255,.09),transparent 55%);
}

.szp-home-ai-orbit {
    position: absolute;
    border: 1px solid rgba(17,168,255,.16);
    border-radius: 50%;
}

.szp-home-ai-orbit.orbit-one {
    width: 330px;
    height: 150px;
    animation: szpAiOrbitOne 9s linear infinite;
}

.szp-home-ai-orbit.orbit-two {
    width: 450px;
    height: 200px;
    animation: szpAiOrbitTwo 13s linear infinite;
}

.szp-home-ai-orbit.orbit-three {
    width: 550px;
    height: 250px;
    border-color: rgba(17,168,255,.08);
    animation: szpAiOrbitThree 18s linear infinite;
}

@keyframes szpAiOrbitOne {
    from { transform: rotate(-20deg); }
    to { transform: rotate(340deg); }
}

@keyframes szpAiOrbitTwo {
    from { transform: rotate(70deg); }
    to { transform: rotate(430deg); }
}

@keyframes szpAiOrbitThree {
    from { transform: rotate(160deg); }
    to { transform: rotate(520deg); }
}

.szp-home-ai-core {
    position: relative;
    z-index: 5;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.45);
    border-radius: 50%;
    color: var(--szp-blue);
    background: radial-gradient(circle,rgba(17,168,255,.15),rgba(7,17,27,.95));
    box-shadow: 0 0 50px rgba(17,168,255,.16),inset 0 0 35px rgba(17,168,255,.08);
    animation: szpAiCorePulse 3.5s ease-in-out infinite;
}

.szp-home-ai-core i {
    position: relative;
    z-index: 2;
    font-size: 36px;
    text-shadow: 0 0 25px rgba(17,168,255,.6);
}

.szp-home-ai-core-pulse {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(17,168,255,.28);
    border-radius: 50%;
    animation: szpAiInnerPulse 2.5s ease-in-out infinite;
}

@keyframes szpAiCorePulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes szpAiInnerPulse {
    0%,100% { opacity: .35; transform: scale(.92); }
    50% { opacity: .9; transform: scale(1); }
}

.szp-home-ai-floating {
    position: absolute;
    z-index: 7;
    min-width: 48px;
    height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 10px;
    color: #fff;
    background: rgba(7,17,27,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.ai-float-one {
    top: 30%;
    left: 22%;
    animation: szpAiFloat 4s ease-in-out infinite;
}

.ai-float-two {
    top: 58%;
    right: 19%;
    color: var(--szp-blue);
    animation: szpAiFloat 5s ease-in-out infinite reverse;
}

.ai-float-three {
    bottom: 22%;
    left: 27%;
    animation: szpAiFloat 4.5s ease-in-out infinite .4s;
}

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

.szp-home-ai-content {
    padding: 85px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

html[data-theme="dark"] .szp-home-ai-content h2 {
    max-width: 680px;
    margin: 20px 0;
    color: #fff !important;
    font-size: clamp(38px,4vw,62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.szp-home-ai-content h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 30px rgba(17,168,255,.2);
}

.szp-home-ai-content > p {
    max-width: 620px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
   SZP HOME AI INPUT
   CLEAN MODERN INPUT — NO INNER BLUE RECTANGLE
========================================================= */

.szp-home-ai-input-wrap {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 64px;
    margin-top: 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0 8px 0 20px;

    border: 1px solid rgba(17, 168, 255, 0.24);
    border-radius: 16px;

    background: rgba(0, 0, 0, 0.20);

    box-shadow:
        inset 0 0 30px rgba(17, 168, 255, 0.025);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   OUTER CONTAINER FOCUS
========================================================= */

.szp-home-ai-input-wrap:focus-within {
    border-color: rgba(17, 168, 255, 0.55);

    box-shadow:
        0 0 30px rgba(17, 168, 255, 0.08),
        inset 0 0 30px rgba(17, 168, 255, 0.025);
}


/* =========================================================
   AI ICON
========================================================= */

.szp-home-ai-input-wrap > i {
    flex: 0 0 auto;

    color: var(--szp-blue);
    font-size: 15px;

    pointer-events: none;
}


/* =========================================================
   INPUT — REMOVE ALL INNER RECTANGLE STYLING
========================================================= */

.szp-home-ai-input-wrap .szp-home-ai-input,
.szp-home-ai-input-wrap input.szp-home-ai-input {
    width: 100%;
    height: 100%;
    min-width: 0;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;

    outline: none !important;

    box-shadow: none !important;

    border-radius: 0 !important;

    background: transparent !important;
    background-color: transparent !important;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 400;

    appearance: none;
    -webkit-appearance: none;

    transition: none;
}


/* =========================================================
   INPUT FOCUS — ABSOLUTELY NO INNER BORDER
========================================================= */

.szp-home-ai-input-wrap .szp-home-ai-input:focus,
.szp-home-ai-input-wrap .szp-home-ai-input:active,
.szp-home-ai-input-wrap input.szp-home-ai-input:focus,
.szp-home-ai-input-wrap input.szp-home-ai-input:active {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.szp-home-ai-input::placeholder {
    color: #718594;
    opacity: 1;
}


/* =========================================================
   AUTOFILL FIX
========================================================= */

.szp-home-ai-input:-webkit-autofill,
.szp-home-ai-input:-webkit-autofill:hover,
.szp-home-ai-input:-webkit-autofill:focus,
.szp-home-ai-input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;

    -webkit-box-shadow:
        0 0 0 1000px transparent inset !important;

    box-shadow:
        0 0 0 1000px transparent inset !important;

    background: transparent !important;
}


/* =========================================================
   SEND BUTTON
========================================================= */

.szp-home-ai-send {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    border: 0 !important;
    outline: none !important;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            #087FD0
        );

    box-shadow:
        0 8px 25px rgba(17, 168, 255, 0.18);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.szp-home-ai-send:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 32px rgba(17, 168, 255, 0.28);
}


.szp-home-ai-send:focus,
.szp-home-ai-send:active {
    outline: none !important;
    border: 0 !important;
}


/* =========================================================
   RESPONSE
========================================================= */

.szp-home-ai-response {
    width: 100%;
    max-width: 700px;

    margin-top: 12px;

    min-height: 0;

    color: #dcebf3;

    font-size: 11px;
    line-height: 1.7;
}


.szp-home-ai-response:not(:empty) {
    padding: 15px;

    border: 1px solid rgba(17, 168, 255, 0.14);
    border-radius: 12px;

    background: rgba(17, 168, 255, 0.035);
}


/* =========================================================
   SUGGESTIONS
========================================================= */

.szp-home-ai-suggestions {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.szp-home-ai-suggestion {
    min-height: 42px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 9px;

    color: #cbdbe5;

    background: rgba(255, 255, 255, 0.025);

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.szp-home-ai-suggestion:hover {
    transform: translateY(-2px);

    border-color: rgba(17, 168, 255, 0.35);

    color: #ffffff;

    background: rgba(17, 168, 255, 0.07);
}


.szp-home-ai-suggestion i {
    color: var(--szp-blue);
}


/* =========================================================
   NOTE
========================================================= */

.szp-home-ai-note {
    display: block;

    max-width: 650px;

    margin-top: 14px;

    color: #536977 !important;

    font-size: 8px;
    line-height: 1.7;
}

/* ============================================================
   11. CUSTOM PACKAGING
============================================================ */

.szp-home-custom {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #07131E;
}

.szp-home-custom-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 27, .97) 0%, rgba(7, 17, 27, .82) 45%, rgba(7, 17, 27, .55) 100%) !important; 
}

.szp-home-custom-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(17,168,255,.10),transparent 55%);
}

.szp-home-custom-content {
    position: relative;
    z-index: 2;
    width: min(700px,100%);
}

.szp-home-custom-content h2 {
    max-width: 800px;
    margin: 20px 0;
    color: #fff;
    font-size: clamp(45px,5vw,76px);
    line-height: 1;
    letter-spacing: -3px;
}

.szp-home-custom-content h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 35px rgba(17,168,255,.22);
}

.szp-home-custom-content p {
    max-width: 580px;
    margin: 0;
    color: rgba(235,245,250,.65);
    font-size: 14px;
    line-height: 1.9;
}

.szp-home-custom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

/* ============================================================
   12. FINAL CTA
============================================================ */

.szp-home-final-cta {
    position: relative;
    padding: 120px 0;
    background: #050D15;
    overflow: hidden;
}

.szp-home-final-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 750px;
    height: 400px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse,rgba(17,168,255,.09),transparent 68%);
    pointer-events: none;
}

.szp-home-final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border: 1px solid rgba(17,168,255,.18);
    border-radius: 28px;
    background: linear-gradient(135deg,rgba(17,168,255,.06),rgba(255,255,255,.02));
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.szp-home-final-cta-content {
    max-width: 760px;
}

.szp-home-final-cta-content h2 {
    margin: 20px 0;
    color: #fff;
    font-size: clamp(35px,4vw,60px);
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.szp-home-final-cta-content h2 span {
    color: var(--szp-blue);
}

.szp-home-final-cta-content p {
    max-width: 650px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.szp-home-final-cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 190px;
}

.szp-home-final-cta-actions .szp-home-primary-btn,
.szp-home-final-cta-actions .szp-home-secondary-btn {
    width: 100%;
}

/* ============================================================
   13. FOOTER COMPATIBILITY
   Existing footer classes are intentionally kept compatible.
============================================================ */
/* =========================================================
   SZP FOOTER — DARK THEME
========================================================= */

html[data-theme="dark"] .footer {
    position: relative;
    background-color: #454545 !important;
/*     background-image: url("https://szp.com.pk/wp-content/uploads/2026/08/Footer.png") ; */
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 25px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(55,55,55,.18);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 330px 1fr;
    column-gap: 110px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-flex;
}

.footer-logo {
    width: 105px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-left h2 {
    color: #17A9FF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 40px;
}

.footer-extra {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 70px;
}

.privacy-link {
    color: #17A9FF;
    font-size: 16px;
    font-weight: 500;
}

.footer-divider {
    width: 1px;
    height: 24px;
    margin: 0 24px;
    background: rgba(255,255,255,.25);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    color: #17A9FF;
    font-size: 22px;
    transition: color .3s ease,transform .3s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
}

.footer-line {
    width: 100%;
    max-width: 900px;
    height: 2px;
    margin: 0 auto 30px;
    background: #17A9FF;
    box-shadow: 0 0 6px #17A9FF,0 0 12px #17A9FF,0 0 24px rgba(23,169,255,.6);
    border-radius: 50px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   14. SCROLL TO TOP
============================================================ */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #11A8FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s ease,visibility .3s ease,transform .3s ease,background .3s ease;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #0D98E6;
    transform: translateY(-5px);
}

/* ============================================================
   15. RESPONSIVE — 1200
============================================================ */

@media (max-width:1200px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: min(calc(100% - 60px),1100px);
    }

    .szp-home-hero-title {
        font-size: clamp(50px,7vw,82px);
    }

    .szp-home-manufacturing-grid {
        gap: 55px;
    }

    .szp-home-ai-content {
        padding: 65px 50px;
    }

    .szp-home-final-cta-inner {
        padding: 50px;
    }

    .szp-home-media-badge {
        right: -10px;
    }
}

/* ============================================================
   16. RESPONSIVE — 1100
============================================================ */

@media (max-width:1100px) {
    .szp-home-hero-container {
        min-height: 720px;
        padding: 125px 0 105px;
    }

    .szp-home-hero-content {
        width: 80%;
    }

    .szp-home-hero-title {
        font-size: clamp(42px,8vw,76px);
    }

    .szp-home-hero-side {
        display: none;
    }

    .szp-home-timeline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .szp-home-timeline-connector {
        height: 25px;
    }

    .szp-home-timeline-connector::before {
        width: 1px;
        height: 100%;
    }

    .szp-home-manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .szp-home-manufacturing-content {
        max-width: 800px;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-home-why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .szp-home-why-heading p {
        max-width: 650px;
    }

    .szp-home-solution-grid {
        min-height: 500px;
    }

    .szp-home-ai-panel {
        grid-template-columns: 1fr;
    }

    .szp-home-ai-visual {
        min-height: 450px;
    }

    .szp-home-ai-content {
        padding: 65px 55px 75px;
    }

    .szp-home-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .szp-home-final-cta-actions {
        width: 100%;
        flex-direction: row;
        min-width: 0;
    }

    .szp-home-final-cta-actions .szp-home-primary-btn,
    .szp-home-final-cta-actions .szp-home-secondary-btn {
        width: auto;
    }
}

/* ============================================================
   17. RESPONSIVE — 768
============================================================ */

@media (max-width:768px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: calc(100% - 36px);
    }

    .szp-home-hero {
        min-height: 720px;
    }

    .szp-home-hero-container {
        min-height: 720px;
        padding: 125px 0 105px;
    }

    .szp-home-hero-content {
        width: 100%;
        padding-top: 30px;
    }

    .szp-home-hero-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .szp-home-eyebrow-line {
        width: 25px;
    }

    .szp-home-hero-title {
        font-size: clamp(42px,11vw,64px);
        line-height: .98;
        letter-spacing: -2.8px;
    }

    .szp-home-hero-description {
        max-width: 560px;
        font-size: 13px;
        line-height: 1.8;
    }

    .szp-home-hero-actions {
        margin-top: 28px;
    }

    .szp-home-primary-btn,
    .szp-home-secondary-btn {
        min-height: 52px;
        padding: 0 19px;
        font-size: 12px;
    }

    .szp-home-hero-trust {
        margin-top: 40px;
        gap: 14px;
    }

    .szp-home-trust-number {
        font-size: 16px;
    }

    .szp-home-trust-label {
        font-size: 7px;
    }

    .szp-home-slider-controls {
        left: 18px;
        bottom: 38px;
    }

    .szp-home-scroll-indicator {
        right: 18px;
        bottom: 39px;
    }

    .szp-home-scroll-text {
        display: none;
    }

    .szp-home-intro,
    .szp-home-manufacturing,
    .szp-home-industries,
    .szp-home-why,
    .szp-home-solutions,
    .szp-home-ai {
        padding: 100px 0;
    }

    .szp-home-section-title {
        font-size: clamp(34px,9vw,48px);
        letter-spacing: -1.8px;
    }

    .szp-home-section-lead {
        font-size: 13px;
        line-height: 1.8;
    }

    .szp-home-intro-image {
        height: 430px;
        min-height: 0;
        margin-top: 80px;
    }

    .szp-home-image-caption {
        left: 18px;
        bottom: 30px;
    }

    .szp-home-timeline-item {
        min-height: 0;
        padding: 24px;
    }

    .szp-home-timeline-year {
        font-size: 31px;
    }

    .szp-home-media-frame {
        border-radius: 20px;
    }

    .szp-home-media-badge {
        right: 12px;
        bottom: 18px;
        min-width: 205px;
        padding: 13px;
    }

    .szp-home-capability-list {
        grid-template-columns: 1fr;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .szp-home-industry-card {
        min-height: 240px;
    }

    .szp-home-why-cards {
        grid-template-columns: 1fr;
    }

    .szp-home-solutions-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .szp-home-solution-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
        margin-top: 45px;
    }

    .szp-home-solution-card {
        min-height: 300px;
    }

    .szp-home-solution-card-large {
        grid-row: auto;
    }

    .szp-home-ai-panel {
        border-radius: 22px;
    }

    .szp-home-ai-visual {
        min-height: 350px;
    }

    .szp-home-ai-orbit.orbit-one {
        width: 260px;
        height: 120px;
    }

    .szp-home-ai-orbit.orbit-two {
        width: 350px;
        height: 160px;
    }

    .szp-home-ai-orbit.orbit-three {
        width: 430px;
        height: 195px;
    }

    .szp-home-ai-core {
        width: 95px;
        height: 95px;
    }

    .szp-home-ai-core i {
        font-size: 28px;
    }

    .szp-home-ai-content {
        padding: 50px 25px 55px;
    }

    .szp-home-ai-content h2 {
        font-size: clamp(35px,9vw,48px);
        letter-spacing: -1.8px;
    }

    .szp-home-ai-input-wrap {
        height: 58px;
    }

    .szp-home-ai-send {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .szp-home-custom {
        min-height: 540px;
    }

    .szp-home-custom-content h2 {
        font-size: clamp(42px,10vw,60px);
        letter-spacing: -2px;
    }

    .szp-home-final-cta {
        padding: 80px 0;
    }

    .szp-home-final-cta-inner {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .szp-home-final-cta-content h2 {
        font-size: clamp(33px,9vw,48px);
        letter-spacing: -1.7px;
    }

    .szp-home-final-cta-actions {
        flex-direction: column;
    }

    .szp-home-final-cta-actions .szp-home-primary-btn,
    .szp-home-final-cta-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        min-height: auto;
        padding-top: 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-extra {
        flex-direction: column;
        gap: 18px;
        margin-top: 45px;
    }

    .footer-divider {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 45px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
        font-size: 19px;
    }
}

/* ============================================================
   18. SMALL MOBILE — 480
============================================================ */

@media (max-width:480px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: calc(100% - 28px);
    }

    .szp-home-hero {
        min-height: 680px;
    }

    .szp-home-hero-container {
        min-height: 680px;
        padding-top: 115px;
    }

    .szp-home-hero-title {
        font-size: clamp(38px,12vw,52px);
        letter-spacing: -2px;
    }

    .szp-home-hero-description {
        font-size: 12px;
    }

    .szp-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .szp-home-hero-actions .szp-home-primary-btn,
    .szp-home-hero-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .szp-home-hero-trust {
        gap: 10px;
    }

    .szp-home-trust-divider {
        height: 25px;
    }

    .szp-home-slider-controls {
        bottom: 25px;
    }

    .szp-home-slider-arrow {
        width: 37px;
        height: 37px;
    }

    .szp-home-scroll-indicator {
        bottom: 28px;
    }

    .szp-home-intro,
    .szp-home-manufacturing,
    .szp-home-industries,
    .szp-home-why,
    .szp-home-solutions,
    .szp-home-ai {
        padding: 80px 0;
    }

    .szp-home-section-title {
        font-size: 32px;
        letter-spacing: -1.4px;
    }

    .szp-home-intro-image {
        height: 330px;
        margin-top: 65px;
    }

    .szp-home-image-caption strong {
        font-size: 25px;
    }

    .szp-home-timeline-item {
        padding: 20px;
    }

    .szp-home-timeline-year {
        font-size: 28px;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr;
    }

    .szp-home-industry-card {
        min-height: 220px;
        padding: 22px;
    }

    .szp-home-solution-card {
        min-height: 270px;
        padding: 25px;
    }

    .szp-home-solution-content h3,
    .szp-home-solution-card:not(.szp-home-solution-card-large) .szp-home-solution-content h3 {
        font-size: 23px;
    }

    .szp-home-ai-visual {
        min-height: 290px;
    }

    .szp-home-ai-floating {
        transform: scale(.85);
    }

    .szp-home-ai-content {
        padding: 40px 20px 45px;
    }

    .szp-home-ai-suggestions {
        flex-direction: column;
    }

    .szp-home-ai-suggestion {
        width: 100%;
        justify-content: flex-start;
    }

    .szp-home-ai-input-wrap {
        padding-left: 14px;
    }

    .szp-home-custom {
        min-height: 500px;
    }

    .szp-home-custom-actions {
        flex-direction: column;
    }

    .szp-home-custom-actions .szp-home-primary-btn,
    .szp-home-custom-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .szp-home-final-cta-inner {
        padding: 30px 20px;
    }

    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer .container {
        width: 90%;
    }

    .footer-logo {
        width: 82px;
        height: auto;
    }

    .footer-left h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .footer-btn {
        width: 170px;
    }

    .scroll-top {
        width: 46px;
        height: 46px;
        right: 15px;
        bottom: 15px;
    }
}

/* ============================================================
   19. VERY SMALL DEVICES — 360
============================================================ */

@media (max-width:360px) {
    .szp-home-hero-title {
        font-size: 35px;
    }

    .szp-home-hero-description {
        font-size: 11px;
    }

    .szp-home-trust-number {
        font-size: 14px;
    }

    .szp-home-trust-label {
        font-size: 6px;
        letter-spacing: .8px;
    }

    .szp-home-slider-dots {
        gap: 4px;
    }

    .szp-home-slider-dot {
        width: 15px;
    }

    .szp-home-slider-dot.active {
        width: 32px;
    }

    .szp-home-section-title {
        font-size: 29px;
    }

    .szp-home-media-badge {
        min-width: 0;
        right: 8px;
        left: 8px;
    }
}

/* ============================================================
   20. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .szp-home-slide.active {
        transform: scale(1);
    }
}

/* ============================================================
   END OF SZP HOME STYLE
============================================================ */

/* =========================================================
   SZP WEBSITE FOOTER
   MODERN INDUSTRIAL / GLASS / BLUE GLOW
   MATCHED TO FOOTER.PHP
========================================================= */


/* =========================================================
   01. FOOTER VARIABLES
========================================================= */

:root {

    --szp-footer-bg: #4b4b4b;

    --szp-footer-dark: #151a20;
    --szp-footer-darker: #10151a;

    --szp-footer-blue: #11A8FF;
    --szp-footer-blue-light: #29C2FF;
    --szp-footer-blue-dark: #087FD1;

    --szp-footer-text: rgba(255, 255, 255, 0.82);
    --szp-footer-muted: rgba(255, 255, 255, 0.56);

    --szp-footer-border:
        rgba(255, 255, 255, 0.10);

    --szp-footer-glow:
        0 0 12px rgba(17, 168, 255, 0.50),
        0 0 30px rgba(17, 168, 255, 0.18);

}


/* =========================================================
   02. FOOTER RESET
========================================================= */

.footer,
.footer *,
.footer *::before,
.footer *::after {

    box-sizing: border-box;

}


/* =========================================================
   03. MAIN FOOTER
========================================================= */

.footer {

    position: relative;

    width: 100%;

    margin: 0;

    padding: 90px 0 28px;

    overflow: hidden;

    color: var(--szp-footer-text);

    font-family: "Poppins", sans-serif;

    background-color: var(--szp-footer-bg);

    background-image:
        linear-gradient(
            180deg,
            rgba(10, 16, 22, 0.72),
            rgba(10, 16, 22, 0.92)
        ),
        url("https://szp.com.pk/wp-content/uploads/2026/08/Footer.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    border-top:
        1px solid rgba(17, 168, 255, 0.18);

}


/* =========================================================
   04. FOOTER TOP GLOW
========================================================= */

.footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 75%;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-footer-blue),
            transparent
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.70),
        0 0 30px rgba(17, 168, 255, 0.30);

}


/* =========================================================
   05. FOOTER AMBIENT GLOW
========================================================= */

.footer::after {

    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 600px;
    height: 350px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(17, 168, 255, 0.09),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   06. CONTAINER
========================================================= */

.footer .container {

    position: relative;

    width: min(
        calc(100% - 80px),
        1450px
    );

    margin: 0 auto;

    z-index: 2;

}


/* =========================================================
   07. FOOTER TOP
========================================================= */

.footer-top {

    display: grid;

    grid-template-columns:
        minmax(260px, 0.85fr)
        minmax(600px, 1.65fr);

    gap: 80px;

    align-items: start;

}


/* =========================================================
   08. FOOTER LEFT
========================================================= */

.footer-left {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* =========================================================
   09. FOOTER LOGO
========================================================= */

.footer-logo-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 165px;
    height: 70px;

    margin-bottom: 25px;

    text-decoration: none;

}


.footer-logo {

    display: block;

    width: auto;

    max-width: 160px;

    max-height: 65px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;

}


.footer-logo-link:hover .footer-logo {

    transform: scale(1.04);

    filter:
        drop-shadow(
            0 0 10px
            rgba(17, 168, 255, 0.45)
        );

}


/* =========================================================
   10. FOOTER HEADLINE
========================================================= */

.footer-left h2 {

    margin: 0 0 28px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        30px,
        3vw,
        48px
    );

    font-weight: 600;

    line-height: 1.13;

    letter-spacing: -0.025em;

}


/* =========================================================
   11. TALK TO SALES BUTTON
========================================================= */

.footer-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 145px;

    height: 48px;

    padding: 0 24px;

    border:
        1px solid
        rgba(17, 168, 255, 0.65);

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.25),
            rgba(17, 168, 255, 0.07)
        );

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.30s ease,
        border-color 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease;

}


.footer-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.60s ease;

}


.footer-btn:hover {

    color: #ffffff;

    border-color:
        var(--szp-footer-blue);

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.38),
            rgba(17, 168, 255, 0.12)
        );

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.25),
        0 0 35px rgba(17, 168, 255, 0.10);

    transform:
        translateY(-2px);

}


.footer-btn:hover::before {

    left: 140%;

}


/* =========================================================
   12. FOOTER RIGHT
========================================================= */

.footer-right {

    width: 100%;

}


/* =========================================================
   13. FOOTER LINKS
========================================================= */

.footer-links {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(120px, 1fr));

    gap: 35px;

    width: 100%;

}


/* =========================================================
   14. FOOTER COLUMN
========================================================= */

.footer-column {

    min-width: 0;

}


.footer-column h4 {

    position: relative;

    display: inline-block;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}


.footer-column h4::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 25px;
    height: 2px;

    border-radius: 20px;

    background:
        var(--szp-footer-blue);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.55);

}


/* =========================================================
   15. FOOTER LIST
========================================================= */

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-column li {

    margin: 0 0 12px;

    padding: 0;

}


/* =========================================================
   16. FOOTER LINKS
========================================================= */

.footer-column li a {

    position: relative;

    display: inline-block;

    color:
        var(--szp-footer-muted);

    font-size: 11px;

    font-weight: 400;

    line-height: 1.7;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}


.footer-column li a::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 0;
    height: 1px;

    background:
        var(--szp-footer-blue);

    box-shadow:
        0 0 6px rgba(17, 168, 255, 0.40);

    transition:
        width 0.25s ease;

}


.footer-column li a:hover {

    color:
        var(--szp-footer-blue-light);

    transform:
        translateX(3px);

}


.footer-column li a:hover::before {

    width: 100%;

}


/* =========================================================
   17. FOOTER EXTRA
========================================================= */

.footer-extra {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 20px;

    margin-top: 55px;

}


/* =========================================================
   18. PRIVACY LINK
========================================================= */

html[data-theme="dark"] .privacy-link {

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 10px;

    font-weight: 400;

    text-decoration: none;

    transition:
        color 0.25s ease;

}



html[data-theme="dark"] .privacy-link:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   19. DIVIDER
========================================================= */

.footer-divider {

    display: block;

    width: 1px;

    height: 18px;

    background:
        rgba(255, 255, 255, 0.15);

}


/* =========================================================
   20. SOCIAL CONTAINER
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

}


/* =========================================================
   21. SOCIAL ICON BASE
========================================================= */

.footer-social a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 9px;

    color:
        rgba(255, 255, 255, 0.70);

    background:
        rgba(255, 255, 255, 0.045);

    text-decoration: none;

    overflow: hidden;

    transition:
        color 0.30s ease,
        border-color 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease,
        transform 0.30s ease;

}


.footer-social a::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(17, 168, 255, 0.18),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.30s ease;

}


.footer-social a:hover {

    color:
        var(--szp-footer-blue-light);

    border-color:
        rgba(17, 168, 255, 0.60);

    background:
        rgba(17, 168, 255, 0.08);

    box-shadow:
        0 0 12px rgba(17, 168, 255, 0.30),
        0 0 25px rgba(17, 168, 255, 0.12);

    transform:
        translateY(-3px);

}


.footer-social a:hover::before {

    opacity: 1;

}


.footer-social a i {

    position: relative;

    z-index: 2;

    font-size: 13px;

}


/* =========================================================
   22. EMAIL
========================================================= */

.social-email:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   23. FACEBOOK
========================================================= */

.social-facebook:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   24. LINKEDIN
========================================================= */

.social-linkedin:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   25. COMMUNITY
========================================================= */

.social-community:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   26. FOOTER BOTTOM
========================================================= */

.footer-bottom {

    margin-top: 65px;

}


/* =========================================================
   27. FOOTER LINE
========================================================= */

.footer-line {

    width: 100%;

    height: 1px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.16),
            transparent
        );

}


/* =========================================================
   28. COPYRIGHT
========================================================= */

.footer-bottom p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    font-weight: 400;

    line-height: 1.7;

    letter-spacing: 0.02em;

    text-align: center;

}


/* =========================================================
   29. SCROLL TO TOP
========================================================= */

.scroll-top {

    position: fixed;

    right: 28px;
    bottom: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border:
        1px solid
        rgba(17, 168, 255, 0.55);

    border-radius: 11px;

    color:
        var(--szp-footer-blue-light);

    background:
        rgba(10, 18, 27, 0.82);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.30);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    z-index: 9998;

    transition:
        opacity 0.30s ease,
        visibility 0.30s ease,
        transform 0.30s ease,
        background 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease;

}


/* =========================================================
   30. SCROLL TOP VISIBLE
========================================================= */

.scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   31. SCROLL TOP HOVER
========================================================= */

.scroll-top:hover {

    color: #ffffff;

    border-color:
        var(--szp-footer-blue);

    background:
        rgba(17, 168, 255, 0.16);

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.30),
        0 0 35px rgba(17, 168, 255, 0.12);

    transform:
        translateY(-3px);

}


.scroll-top i {

    font-size: 13px;

    transition:
        transform 0.30s ease;

}


.scroll-top:hover i {

    transform:
        translateY(-2px);

}


/* =========================================================
   32. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .footer {

        padding-top: 105px;

    }

    .footer .container {

        width: min(
            calc(100% - 100px),
            1550px
        );

    }

    .footer-top {

        gap: 110px;

    }

}


/* =========================================================
   33. DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .footer .container {

        width:
            calc(100% - 60px);

    }

    .footer-top {

        grid-template-columns:
            minmax(230px, 0.75fr)
            minmax(500px, 1.5fr);

        gap: 55px;

    }

    .footer-links {

        gap: 25px;

    }

}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 900px) {

    .footer {

        padding:
            75px 0 25px;

    }

    .footer .container {

        width:
            calc(100% - 45px);

    }

    .footer-top {

        grid-template-columns:
            1fr;

        gap: 55px;

    }

    .footer-left {

        align-items: center;

        text-align: center;

    }

    .footer-links {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 35px;

    }

    .footer-extra {

        justify-content: center;

        margin-top: 50px;

    }

}


/* =========================================================
   35. MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer {

        padding:
            65px 0 22px;

    }

    .footer .container {

        width:
            calc(100% - 30px);

    }

    .footer-logo-link {

        margin-bottom: 20px;

    }

    .footer-left h2 {

        font-size: 30px;

        margin-bottom: 24px;

    }

    .footer-links {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 38px 20px;

    }

    .footer-column h4 {

        font-size: 10px;

    }

    .footer-column li a {

        font-size: 10px;

    }

    .footer-extra {

        flex-wrap: wrap;

        gap: 15px;

    }

    .footer-divider {

        display: none;

    }

    .footer-bottom {

        margin-top: 50px;

    }

    .footer-bottom p {

        font-size: 8px;

        line-height: 1.8;

    }

    .scroll-top {

        right: 18px;

        bottom: 18px;

        width: 43px;

        height: 43px;

    }

}


/* =========================================================
   36. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .footer-links {

        grid-template-columns:
            1fr;

        gap: 32px;

    }

    .footer-column {

        text-align: center;

    }

    .footer-column h4::after {

        left: 50%;

        transform:
            translateX(-50%);

    }

    .footer-column li a:hover {

        transform:
            translateY(-1px);

    }

    .footer-extra {

        flex-direction: column;

    }

}


/* =========================================================
   37. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer *,
    .footer *::before,
    .footer *::after,
    .scroll-top {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;

    }

}

/* ============================================================
   SZP IMAGE CLARITY OVERRIDE
   Keeps photography bright, sharp and cinematic
============================================================ */

/* HERO */
.szp-home-hero .szp-home-slide-bg img {
    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);
}

/* HERO overlay */
.szp-home-hero .szp-home-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 15, 0.62) 0%,
            rgba(3, 9, 15, 0.40) 25%,
            rgba(3, 9, 15, 0.14) 52%,
            rgba(3, 9, 15, 0.05) 75%,
            rgba(3, 9, 15, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 9, 15, 0.10) 0%,
            transparent 50%,
            rgba(3, 9, 15, 0.35) 100%
        );
}

/* INTRO / FEATURE IMAGE */
.szp-home-intro-image > img {
    filter:
        brightness(1.12)
        contrast(1.06)
        saturate(1.08);
}

/* INTRO IMAGE OVERLAY */
.szp-home-intro-image .szp-home-image-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 27, 0.40),
            rgba(7, 17, 27, 0.08) 60%,
            rgba(7, 17, 27, 0.16) 100%
        );
}





/* =========================================================
   SZP ABOUT US PAGE
   MODERN INDUSTRIAL / INTELLIGENT DESIGN
   ========================================================= */


/* =========================================================
   01. ABOUT PAGE VARIABLES
========================================================= */

.szp-about-page {

    --szp-blue: #11A8FF;
    --szp-blue-light: #29C2FF;
    --szp-blue-dark: #087FD1;

    --szp-dark: #080D13;
    --szp-dark-2: #0D141C;
    --szp-dark-3: #111A23;

    --szp-white: #FFFFFF;
    --szp-light: #DDE5EB;
    --szp-muted: #9CAAB5;

    --szp-border: rgba(255,255,255,0.09);
    --szp-glass: rgba(255,255,255,0.045);

    width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(17,168,255,0.045),
            transparent 35%
        ),
        var(--szp-dark);

    color: var(--szp-white);
}


/* =========================================================
   02. GLOBAL ABOUT PAGE RESET
========================================================= */

.szp-about-page *,
.szp-about-page *::before,
.szp-about-page *::after {
    box-sizing: border-box;
}

.szp-about-page img {
    max-width: 100%;
}

.szp-about-page a {
    text-decoration: none;
}


/* =========================================================
   03. MAIN CONTAINER
========================================================= */

.szp-about-container {

    width: min(1200px, calc(100% - 80px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. HERO
========================================================= */

.szp-about-hero {

    position: relative;

    width: 100%;
    height: 92vh;
    min-height: 700px;

    overflow: hidden;

    background: #060A0E;
}


.szp-about-slider {

    position: relative;

    width: 100%;
    height: 100%;
}


.szp-about-slide {

    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}


.szp-about-slide.active {

    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.szp-about-slide-bg {

    position: absolute;

    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.055);

    filter:
        brightness(0.82)
        contrast(1.08)
        saturate(1.05);

    transition:
        transform 7s cubic-bezier(0.2,0.6,0.2,1),
        filter 1.2s ease;
}


.szp-about-slide.active .szp-about-slide-bg {

    transform: scale(1);

    filter:
        brightness(0.9)
        contrast(1.08)
        saturate(1.08);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.szp-about-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4,9,14,0.94) 0%,
            rgba(4,9,14,0.82) 30%,
            rgba(4,9,14,0.50) 60%,
            rgba(4,9,14,0.22) 100%
        ),

        linear-gradient(
            180deg,
            rgba(4,9,14,0.15) 0%,
            transparent 55%,
            rgba(4,9,14,0.68) 100%
        );
}


/* =========================================================
   HERO BLUE LIGHT
========================================================= */

.szp-about-hero::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    bottom: -400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 68%
        );

    pointer-events: none;

    z-index: 4;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.szp-about-hero-content {

    position: relative;

    z-index: 6;

    width: min(800px, calc(100% - 80px));

    margin-left:
        max(
            40px,
            calc((100vw - 1200px) / 2)
        );

    padding-top: 18vh;
}


html[data-theme="dark"] .szp-about-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 11%;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1.5;

    text-transform: uppercase;
}


.szp-about-eyebrow::before {

    content: "";

    width: 32px;
    height: 1px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,0.7);
}


html[data-theme="dark"].szp-about-hero h1,
.szp-about-hero h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(50px, 5.1vw, 88px);

    font-weight: 700;

    letter-spacing: -4px;

    line-height: 1.02;
}


.szp-about-hero h1 span,
.szp-about-hero h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 30px rgba(17,168,255,0.22);
}


.szp-about-hero-description {

    max-width: 640px;

    margin: 30px 0 0;

    color: rgba(255,255,255,0.82);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.85;
}


/* =========================================================
   05. HERO CONTROLS
========================================================= */

.szp-about-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;

    background:
        rgba(8,14,20,0.42);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #fff;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.szp-about-arrow:hover {

    background: var(--szp-blue);

    border-color: var(--szp-blue);

    box-shadow:
        0 0 25px rgba(17,168,255,0.35);

    transform:
        translateY(-50%)
        scale(1.08);
}


.szp-about-prev {
    left: 30px;
}


.szp-about-next {
    right: 30px;
}


.szp-about-arrow span {
    font-size: 17px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.szp-about-dots {

    position: absolute;

    left:
        max(
            40px,
            calc((100vw - 1200px) / 2)
        );

    bottom: 42px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;
}


.szp-about-dot {

    width: 28px;
    height: 3px;

    padding: 0;

    border: 0;

    background:
        rgba(255,255,255,0.28);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.szp-about-dot.active {

    width: 58px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,0.55);
}


/* =========================================================
   06. SECTION LABEL
========================================================= */

.szp-section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 0 0 18px;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1.6;

    text-transform: uppercase;
}


.szp-section-label::before {

    content: "";

    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 10px rgba(17,168,255,0.6);
}


/* =========================================================
   07. COMPANY INTRODUCTION
========================================================= */

.szp-about-introduction {

    position: relative;

    padding: 130px 0;

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(17,168,255,0.055),
            transparent 32%
        ),

        var(--szp-dark);
}


.szp-about-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 90px;
}


.szp-about-intro-content h2,
.szp-manufacturing-inner h2,
.szp-team-heading h2 {

    margin: 0 0 35px;

    color: #fff;

    font-size: clamp(42px, 4.7vw, 68px);

    font-weight: 700;

    letter-spacing: -3px;

    line-height: 1.04;
}


.szp-about-intro-content h2 span,
.szp-manufacturing-inner h2 span,
.szp-team-heading h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 25px rgba(17,168,255,0.18);
}


.szp-about-copy p {

    margin: 0 0 22px;

    color: var(--szp-light);

    font-size: 14px;

    line-height: 1.9;
}


.szp-about-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MAP
========================================================= */

.szp-about-map-wrapper {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 420px;
}


.szp-about-map-wrapper::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.10),
            transparent 68%
        );

    filter: blur(10px);

    pointer-events: none;
}


.szp-about-map {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 580px;

    height: auto;

    opacity: 0.88;

    filter:
        brightness(1.08)
        contrast(1.05)
        drop-shadow(0 0 25px rgba(17,168,255,0.08));

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


.szp-about-map:hover {

    opacity: 1;

    transform: scale(1.025);
}


/* =========================================================
   08. CAPABILITIES
========================================================= */

.szp-about-capabilities {

    position: relative;

    padding: 125px 0;

    background: var(--szp-dark-2);
}


.szp-about-capabilities-header {

    max-width: 760px;

    margin-bottom: 65px;
}


.szp-about-capabilities-header h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-capabilities-header h2 span {
    color: var(--szp-blue);
}


.szp-about-capabilities-header > p:last-child {

    max-width: 690px;

    margin: 0;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CAPABILITY GRID
========================================================= */

.szp-about-capabilities-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 18px;
}


.szp-about-capability-card {

    position: relative;

    min-height: 310px;

    padding: 34px 28px;

    overflow: hidden;

    border: 1px solid var(--szp-border);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.szp-about-capability-card::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


.szp-about-capability-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(17,168,255,0.38);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.25),
        0 0 30px rgba(17,168,255,0.06);
}


.szp-about-capability-card:hover::after {
    opacity: 1;
}


.szp-about-capability-number {

    display: block;

    margin-bottom: 65px;

    color: var(--szp-blue);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


.szp-about-capability-card h3 {

    margin: 0 0 15px;

    color: #fff;

    font-size: 21px;
    font-weight: 600;
}


.szp-about-capability-card p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   09. VISION / MISSION
========================================================= */

.szp-about-vision-mission {

    position: relative;

    padding: 125px 0;

    background: var(--szp-dark);
}


.szp-about-vision-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 22px;
}


.szp-about-vision-card {

    position: relative;

    min-height: 370px;

    padding: 50px;

    overflow: hidden;

    border: 1px solid var(--szp-border);

    background:
        linear-gradient(
            145deg,
            rgba(17,168,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.szp-about-vision-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    opacity: 0.7;
}


.szp-about-vision-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(17,168,255,0.28);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.22);
}


.szp-about-vision-card h2 {

    max-width: 550px;

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(35px, 4vw, 55px);

    letter-spacing: -2px;

    line-height: 1.05;
}


.szp-about-vision-card h2 span {
    color: var(--szp-blue);
}


.szp-about-vision-card > p:last-child {

    max-width: 600px;

    margin: 0;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   10. VALUES
========================================================= */

.szp-about-values {

    padding: 120px 0;

    background: var(--szp-dark-2);
}


.szp-about-values-header {

    margin-bottom: 65px;

    text-align: center;
}


.szp-about-values-header .szp-section-label {

    justify-content: center;
}


.szp-about-values-header h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-values-header h2 span {
    color: var(--szp-blue);
}


.szp-about-values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 0;

    border-top: 1px solid var(--szp-border);
}


.szp-about-value {

    position: relative;

    min-height: 250px;

    padding: 38px 28px;

    border-right: 1px solid var(--szp-border);
}


.szp-about-value:last-child {
    border-right: 0;
}


.szp-about-value-line {

    width: 38px;
    height: 2px;

    margin-bottom: 48px;

    background: var(--szp-blue);

    box-shadow:
        0 0 15px rgba(17,168,255,0.5);
}


.szp-about-value h3 {

    margin: 0 0 14px;

    color: #fff;

    font-size: 22px;
    font-weight: 600;
}


.szp-about-value p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   11. MANUFACTURING IMAGE
========================================================= */

.szp-manufacturing-image {

    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    background: #05080B;
}


.szp-manufacturing-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(5,8,11,0.08),
            rgba(5,8,11,0.32)
        ),

        linear-gradient(
            90deg,
            rgba(5,8,11,0.20),
            transparent 60%
        );

    pointer-events: none;
}


.szp-manufacturing-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.88)
        contrast(1.08)
        saturate(1.05);

    transition:
        transform 1.2s ease,
        filter 0.8s ease;
}


.szp-manufacturing-image:hover img {

    transform: scale(1.025);

    filter:
        brightness(0.96)
        contrast(1.08)
        saturate(1.08);
}


/* =========================================================
   12. MANUFACTURING CONTENT
========================================================= */

.szp-manufacturing-content {

    padding: 120px 0 130px;

    background: var(--szp-dark-3);
}


.szp-manufacturing-inner {

    max-width: 920px;

    margin: 0 auto;

    text-align: center;
}


.szp-manufacturing-inner .szp-section-label {

    justify-content: center;
}


.szp-manufacturing-inner h2 {
    margin-bottom: 40px;
}


.szp-manufacturing-text {

    max-width: 860px;

    margin: 0 auto;
}


.szp-manufacturing-text p {

    margin: 0 0 24px;

    color: var(--szp-light);

    font-size: 14px;

    line-height: 1.9;
}


.szp-manufacturing-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   13. INDUSTRIES
========================================================= */

.szp-about-industries {

    position: relative;

    padding: 125px 0;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(17,168,255,0.055),
            transparent 32%
        ),

        var(--szp-dark);
}


.szp-about-industries-header {

    max-width: 780px;

    margin-bottom: 60px;
}


.szp-about-industries-header h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-industries-header h2 span {
    color: var(--szp-blue);
}


html[data-theme="dark"] .szp-about-industries-header > p:last-child {

    max-width: 680px;

    margin: 0;

    color: #fff;

    font-size: 14px;

    line-height: 1.85;
}


.szp-about-industries-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.szp-about-industries-list span {

    position: relative;

    padding: 15px 23px;

    border: 1px solid var(--szp-border);

    border-radius: 2px;

    background:
        rgba(255,255,255,0.025);

    color: var(--szp-light);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.5px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.szp-about-industries-list span:hover {

    color: #fff;

    background:
        rgba(17,168,255,0.08);

    border-color:
        rgba(17,168,255,0.45);

    box-shadow:
        0 0 25px rgba(17,168,255,0.08);

    transform: translateY(-3px);
}


/* =========================================================
   14. WHY SZP
========================================================= */

.szp-about-why {

    padding: 125px 0;

    background: var(--szp-dark-2);
}


.szp-about-why-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: start;
}


.szp-about-why-heading h2 {

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(42px, 4.7vw, 68px);

    letter-spacing: -3px;

    line-height: 1.03;
}


.szp-about-why-heading h2 span {
    color: var(--szp-blue);
}


html[data-theme="dark"] .szp-about-why-heading > p:last-child {

    max-width: 500px;

    margin: 0;

    color: 2E2E2E;

    font-size: 14px;

    line-height: 1.9;
}



html[data-theme="light"] .szp-about-why-points {

    border-bottom: 2px solid rgb(0 0 0 / 9%);
}


html[data-theme="light"] .szp-about-why-point {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid rgb(0 0 0 / 9%);
}


.szp-about-why-point > span {

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}


.szp-about-why-point h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 19px;
    font-weight: 600;
}


.szp-about-why-point p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   15. TEAM SECTION
   IMPORTANT:
   ALIGNMENT PRESERVED
========================================================= */

.szp-team-section {

    position: relative;

    padding: 130px 0 145px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 22%,
            rgba(17,168,255,0.07),
            transparent 38%
        ),

        var(--szp-dark);
}


.szp-team-container {

    position: relative;

    z-index: 5;
}


.szp-team-heading {

    margin-bottom: 90px;

    text-align: center;
}


.szp-team-heading .szp-section-label {

    justify-content: center;
}


.szp-team-heading h2 {

    margin-bottom: 0;

    font-size: clamp(55px, 7vw, 105px);

    letter-spacing: -5px;
}


/* =========================================================
   TEAM DECORATIVE TYPOGRAPHY
========================================================= */

.szp-team-word {

    position: absolute;

    color:
        rgba(255,255,255,0.018);

    font-size:
        clamp(100px,14vw,230px);

    font-weight: 800;

    letter-spacing: -8px;

    line-height: 0.8;

    white-space: nowrap;

    pointer-events: none;

    user-select: none;
}


.szp-team-word-one {
    top: 5%;
    left: -3%;
}


.szp-team-word-two {
    top: 26%;
    right: -8%;
}


.szp-team-word-three {
    top: 48%;
    left: -5%;
}


.szp-team-word-four {
    top: 67%;
    right: -5%;
}


.szp-team-word-five {
    bottom: 8%;
    left: 2%;
}


.szp-team-word-six {
    right: 0;
    bottom: -1%;
}


/* =========================================================
   TEAM LAYOUT
   DO NOT CHANGE ALIGNMENT
========================================================= */


/* Single centered members */

.szp-team-top {

    display: flex;

    justify-content: center;

    width: 100%;

    margin: 0 auto 90px;
}


/* Two-column rows */

.szp-team-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    width: 100%;

    max-width: 1000px;

    margin: 0 auto 90px;

    gap: 90px;
}


/* Final centered member */

.szp-team-final {
    margin-bottom: 0;
}


/* =========================================================
   TEAM CARD
========================================================= */

.szp-team-card {

    position: relative;

    width: 100%;

    text-align: center;
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.szp-team-image {

    position: relative;

    width: 220px;
    height: 220px;

    margin: 0 auto 28px;

    overflow: hidden;

    border: 1px solid
        rgba(255,255,255,0.15);

    border-radius: 50%;

    background: #111820;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.30),
        0 0 0 8px rgba(17,168,255,0.018);

    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.szp-team-image::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    box-shadow:
        inset 0 0 30px rgba(17,168,255,0.08);

    pointer-events: none;
}


.szp-team-card:hover .szp-team-image {

    border-color: var(--szp-blue);

    transform: translateY(-8px);

    box-shadow:
        0 25px 65px rgba(0,0,0,0.34),
        0 0 30px rgba(17,168,255,0.12);
}


.szp-team-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.szp-team-card:hover .szp-team-image img {

    transform: scale(1.04);

    filter:
        brightness(1.05)
        saturate(1.05);
}


/* =========================================================
   TEAM TEXT
========================================================= */

.szp-team-card h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 22px;
    font-weight: 600;

    line-height: 1.3;
}


.szp-team-role {

    margin: 0 0 18px;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.2px;

    line-height: 1.5;

    text-transform: uppercase;
}


.szp-team-description {

    max-width: 430px;

    margin: 0 auto;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FINAL MEMBER
   MUHAMMAD RASHID
========================================================= */

.szp-team-final .szp-team-card {

    max-width: 500px;

    margin: 0 auto;
}


/* =========================================================
   16. FINAL CTA
========================================================= */

.szp-about-final-cta {

    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(17,168,255,0.10),
            transparent 45%
        ),

        var(--szp-dark-2);
}


.szp-about-final-cta::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(17,168,255,0.30),
            transparent
        );

    opacity: 0.4;
}


.szp-about-final-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.szp-about-final-cta-inner .szp-section-label {

    justify-content: center;
}


.szp-about-final-cta-inner h2 {

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(43px, 5vw, 72px);

    letter-spacing: -3px;

    line-height: 1.04;
}


.szp-about-final-cta-inner h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 25px rgba(17,168,255,0.20);
}


.szp-about-final-cta-inner > p:not(.szp-section-label) {

    max-width: 650px;

    margin: 0 auto 35px;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.szp-about-final-cta-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 27px;

    border: 1px solid
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.08);

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.7px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.szp-about-final-cta-button i {

    color: var(--szp-blue);

    transition:
        transform 0.35s ease;
}


.szp-about-final-cta-button:hover {

    background: var(--szp-blue);

    border-color: var(--szp-blue);

    color: #fff;

    box-shadow:
        0 0 30px rgba(17,168,255,0.28);

    transform: translateY(-3px);
}


.szp-about-final-cta-button:hover i {

    color: #fff;

    transform: translateX(4px);
}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 1100px) {

    .szp-about-container {

        width:
            min(
                100% - 60px,
                900px
            );
    }


    /* HERO */

    .szp-about-hero-content {

        margin-left: 30px;

        width:
            calc(100% - 60px);
    }


    /* CAPABILITIES */

    .szp-about-capabilities-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    /* VALUES */

    .szp-about-values-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .szp-about-value {

        border-bottom:
            1px solid var(--szp-border);
    }


    .szp-about-value:nth-child(2) {
        border-right: 0;
    }


    .szp-about-value:nth-child(3),
    .szp-about-value:nth-child(4) {
        border-bottom: 0;
    }


    /* WHY */

    .szp-about-why-grid {

        gap: 60px;
    }

}


/* =========================================================
   18. TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991px) {

    .szp-about-container {

        width:
            min(
                calc(100% - 50px),
                760px
            );
    }


    /* HERO */

    .szp-about-hero {

        min-height: 650px;
    }


    .szp-about-hero-content {

        padding-top: 16vh;
    }


    /* INTRO */

    .szp-about-intro-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .szp-about-map-wrapper {

        order: -1;

        min-height: 350px;
    }


    .szp-about-map {

        max-width: 520px;
    }


    /* VISION */

    .szp-about-vision-grid {

        grid-template-columns: 1fr;
    }


    /* WHY */

    .szp-about-why-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    /* MANUFACTURING */

    .szp-manufacturing-image {

        height: 480px;
    }


    /* TEAM */

    .szp-team-grid {

        gap: 60px;
    }


    .szp-team-image {

        width: 190px;
        height: 190px;
    }

}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 767px) {

    .szp-about-container {

        width:
            calc(100% - 36px);
    }


    /* =====================================================
       HERO
    ===================================================== */

    .szp-about-hero {

        height: 85vh;

        min-height: 600px;
    }


    .szp-about-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(4,9,14,0.94),
                rgba(4,9,14,0.68)
            ),

            linear-gradient(
                180deg,
                transparent 45%,
                rgba(4,9,14,0.72)
            );
    }


    .szp-about-hero-content {

        width:
            calc(100% - 50px);

        margin-left: 25px;

        padding-top: 145px;
    }


    .szp-about-eyebrow {

        margin-bottom: 15px;

        font-size: 8px;

        letter-spacing: 2px;

        gap: 8px;
    }


    .szp-about-eyebrow::before {

        width: 20px;
    }


    .szp-about-hero h1,
    .szp-about-hero h2 {

        font-size:
            clamp(
                39px,
                11vw,
                58px
            );

        letter-spacing: -2px;
    }


    .szp-about-hero-description {

        max-width: 430px;

        margin-top: 22px;

        font-size: 12px;

        line-height: 1.75;
    }


    /* =====================================================
       HERO CONTROLS
    ===================================================== */

    .szp-about-arrow {

        width: 42px;
        height: 42px;
    }


    .szp-about-prev {
        left: 15px;
    }


    .szp-about-next {
        right: 15px;
    }


    .szp-about-dots {

        left: 25px;

        bottom: 28px;
    }


    /* =====================================================
       INTRODUCTION
    ===================================================== */

    .szp-about-introduction {

        padding: 85px 0;
    }


    .szp-about-intro-grid {

        gap: 45px;
    }


    .szp-about-intro-content h2,
    .szp-manufacturing-inner h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-copy p,
    .szp-manufacturing-text p {

        font-size: 13px;

        line-height: 1.8;
    }


    /* =====================================================
       CAPABILITIES
    ===================================================== */

    .szp-about-capabilities {

        padding: 85px 0;
    }


    .szp-about-capabilities-header {

        margin-bottom: 45px;
    }


    .szp-about-capabilities-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-capabilities-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .szp-about-capability-card {

        min-height: 260px;

        padding: 30px 25px;
    }


    .szp-about-capability-number {

        margin-bottom: 50px;
    }


    /* =====================================================
       VISION / MISSION
    ===================================================== */

    .szp-about-vision-mission {

        padding: 85px 0;
    }


    .szp-about-vision-card {

        min-height: auto;

        padding: 35px 28px;
    }


    .szp-about-vision-card h2 {

        font-size: 38px;

        letter-spacing: -2px;
    }


    /* =====================================================
       VALUES
    ===================================================== */

    .szp-about-values {

        padding: 85px 0;
    }


    .szp-about-values-header {

        margin-bottom: 45px;
    }


    .szp-about-values-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-values-grid {

        grid-template-columns: 1fr;
    }


    .szp-about-value {

        min-height: auto;

        padding: 32px 5px;

        border-right: 0;

        border-bottom:
            1px solid var(--szp-border);
    }


    .szp-about-value:last-child {

        border-bottom: 0;
    }


    .szp-about-value-line {

        margin-bottom: 30px;
    }


    /* =====================================================
       MANUFACTURING
    ===================================================== */

    .szp-manufacturing-image {

        height: 330px;
    }


    .szp-manufacturing-content {

        padding: 80px 0;
    }


    /* =====================================================
       INDUSTRIES
    ===================================================== */

    .szp-about-industries {

        padding: 85px 0;
    }


    .szp-about-industries-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-industries-list {

        gap: 9px;
    }


    .szp-about-industries-list span {

        padding: 12px 16px;

        font-size: 10px;
    }


    /* =====================================================
       WHY SZP
    ===================================================== */

    .szp-about-why {

        padding: 85px 0;
    }


    .szp-about-why-grid {

        gap: 55px;
    }


    .szp-about-why-heading h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-why-point {

        grid-template-columns:
            40px 1fr;

        gap: 12px;
    }


    /* =====================================================
       TEAM
    ===================================================== */

    .szp-team-section {

        padding: 90px 0 100px;
    }


    .szp-team-heading {

        margin-bottom: 70px;
    }


    .szp-team-heading h2 {

        font-size: 62px;

        letter-spacing: -3px;
    }


    /*
       Keep two-column rows on desktop,
       stack on mobile.
    */

    .szp-team-grid {

        grid-template-columns: 1fr;

        gap: 70px;

        margin-bottom: 70px;
    }


    .szp-team-top {

        margin-bottom: 70px;
    }


    .szp-team-final {

        margin-bottom: 0;
    }


    .szp-team-image {

        width: 175px;
        height: 175px;
    }


    .szp-team-card h3 {

        font-size: 19px;
    }


    .szp-team-description {

        max-width: 450px;

        font-size: 12px;
    }


    /* =====================================================
       DECORATIVE WORDS
    ===================================================== */

    .szp-team-word {

        font-size: 95px;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .szp-about-final-cta {

        padding: 90px 0;
    }


    .szp-about-final-cta-inner h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-final-cta-inner > p:not(.szp-section-label) {

        font-size: 13px;
    }

}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .szp-about-container {

        width:
            calc(100% - 28px);
    }


    /* HERO */

    .szp-about-hero-content {

        margin-left: 20px;

        width:
            calc(100% - 40px);
    }


    .szp-about-hero h1,
    .szp-about-hero h2 {

        font-size: 39px;
    }


    /* SECTION HEADINGS */

    .szp-about-intro-content h2,
    .szp-about-capabilities-header h2,
    .szp-about-values-header h2,
    .szp-about-industries-header h2,
    .szp-about-why-heading h2 {

        font-size: 39px;
    }


    /* TEAM */

    .szp-team-section {

        padding-top: 70px;

        padding-bottom: 80px;
    }


    .szp-team-heading {

        margin-bottom: 60px;
    }


    .szp-team-heading h2 {

        font-size: 48px;
    }


    .szp-team-grid {

        gap: 55px;

        margin-bottom: 55px;
    }


    .szp-team-top {

        margin-bottom: 55px;
    }


    .szp-team-final {

        margin-bottom: 0;
    }


    .szp-team-image {

        width: 155px;
        height: 155px;

        margin-bottom: 22px;
    }


    .szp-team-card h3 {

        font-size: 18px;
    }


    .szp-team-role {

        font-size: 9px;

        letter-spacing: 0.8px;
    }


    .szp-team-description {

        font-size: 11px;

        line-height: 1.7;
    }


    .szp-team-word {

        font-size: 75px;
    }


    /* CTA */

    .szp-about-final-cta-inner h2 {

        font-size: 38px;
    }


    .szp-about-final-cta-button {

        min-height: 49px;

        padding: 0 22px;
    }

}


/* =========================================================
   21. ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .szp-about-slide,
    .szp-about-slide-bg,
    .szp-about-arrow,
    .szp-about-dot,
    .szp-about-map,
    .szp-about-capability-card,
    .szp-about-vision-card,
    .szp-about-industries-list span,
    .szp-team-image,
    .szp-team-image img,
    .szp-about-final-cta-button,
    .szp-about-final-cta-button i,
    .szp-manufacturing-image img {

        transition: none;
    }

}





/* ============================================================
   SZP CONTACT US PAGE
   COMPLETE CORRECTED / CONSOLIDATED CSS
   MODERN INDUSTRIAL / GLASS / BLUE GLOW
   ============================================================ */


/* ============================================================
   01. CONTACT PAGE VARIABLES
   ============================================================ */

.szp-contact-page {
    --szp-blue: #11a8ff;
    --szp-blue-2: #176bff;
    --szp-cyan: #29d9ff;

    --szp-bg: #070b10;
    --szp-bg-2: #0a1017;
    --szp-surface: #0d141c;
    --szp-surface-2: #111a23;

    --szp-border: rgba(255, 255, 255, 0.09);
    --szp-border-soft: rgba(255, 255, 255, 0.06);
    --szp-border-blue: rgba(17, 168, 255, 0.28);

    --szp-text: #f4f8fc;
    --szp-text-soft: #aab7c5;
    --szp-text-muted: #718091;

    --szp-radius: 18px;
    --szp-radius-small: 12px;

    --szp-container: 1240px;

    position: relative;

    width: 100%;

    color: var(--szp-text);
    background: var(--szp-bg);

    font-family: "Poppins", sans-serif;

    overflow: hidden;

    isolation: isolate;
}


/* ============================================================
   GLOBAL RESET
   ============================================================ */

.szp-contact-page *,
.szp-contact-page *::before,
.szp-contact-page *::after {
    box-sizing: border-box;
}

.szp-contact-page a {
    color: inherit;
    text-decoration: none;
}

.szp-contact-page button,
.szp-contact-page input,
.szp-contact-page textarea,
.szp-contact-page select {
    font: inherit;
}

.szp-contact-page button {
    appearance: none;
    -webkit-appearance: none;
}

.szp-contact-page img {
    display: block;
    max-width: 100%;
}

.szp-contact-page h1,
.szp-contact-page h2,
.szp-contact-page h3,
.szp-contact-page h4,
.szp-contact-page p {
    margin-top: 0;
}

.szp-contact-page h1,
.szp-contact-page h2,
.szp-contact-page h3,
.szp-contact-page h4 {
    color: var(--szp-text);
}

.szp-contact-page h1 span,
.szp-contact-page h2 span {
    color: var(--szp-blue);
}

.szp-contact-page ::selection {
    color: #ffffff;
    background: rgba(17, 168, 255, 0.35);
}


/* ============================================================
   CONTACT CONTAINER
   ============================================================ */

.szp-contact-container {
    width: min(
        calc(100% - 64px),
        var(--szp-container)
    );

    margin: 0 auto;
}


/* ============================================================
   SHARED SECTION EYEBROW
   ============================================================ */

.szp-section-eyebrow,
.szp-form-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.22em;
    line-height: 1;

    text-transform: uppercase;
}

.szp-section-eyebrow::before,
.szp-form-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.55);
}


/* ============================================================
   02. CONTACT HERO
   ============================================================ */

.szp-contact-hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    padding:
        150px
        0
        110px;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(17, 168, 255, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(23, 107, 255, 0.06),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #060a0f 0%,
            #091018 48%,
            #070b10 100%
        );

    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-contact-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.025) 50%,
            transparent 100%
        );

    opacity: 0.55;
}

.szp-contact-hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -170px;
    top: 40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17, 168, 255, 0.13) 0%,
            rgba(17, 168, 255, 0.04) 35%,
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;
}

.szp-contact-hero-inner {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 64px),
        1000px
    );

    margin: 0 auto;

    text-align: center;
}

.szp-contact-hero-inner .szp-section-eyebrow {
    justify-content: center;
}

.szp-contact-hero-inner h1 {
    max-width: 920px;

    margin:
        28px auto
        24px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -0.045em;
}

.szp-contact-hero-inner h1 span {
    display: block;

    text-shadow:
        0 0 35px
        rgba(17, 168, 255, 0.15);
}

.szp-contact-hero-inner p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--szp-text-soft);

    font-size: 16px;

    line-height: 1.85;
}

.szp-contact-hero-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 38px;
}


/* ============================================================
   HERO BUTTONS
   ============================================================ */

.szp-contact-primary-btn,
.szp-contact-secondary-btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        0 23px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.szp-contact-primary-btn {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    box-shadow:
        0 10px 35px
        rgba(17, 168, 255, 0.18);
}

.szp-contact-primary-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(17, 168, 255, 0.30);
}

.szp-contact-secondary-btn {
    color: var(--szp-text);

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        var(--szp-border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.szp-contact-secondary-btn:hover {
    color: var(--szp-blue);

    transform: translateY(-3px);

    border-color:
        var(--szp-border-blue);

    background:
        rgba(17, 168, 255, 0.055);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.25);
}


/* ============================================================
   03. CONTACT CHANNELS
   ============================================================ */

.szp-contact-channels {
    position: relative;

    padding:
        115px
        0;

    background:
        linear-gradient(
            180deg,
            #080d13 0%,
            #0a1017 100%
        );
}

.szp-contact-section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.szp-contact-section-heading h2 {
    margin:
        20px 0
        14px;

    font-size:
        clamp(
            34px,
            4vw,
            54px
        );

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.szp-contact-section-heading p {
    max-width: 620px;

    margin-bottom: 0;

    color: var(--szp-text-soft);

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   CHANNEL GRID
   ============================================================ */

.szp-contact-channel-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.szp-contact-channel-card {
    position: relative;

    display: grid;

    grid-template-columns:
        64px minmax(0, 1fr);

    gap: 22px;

    min-height: 230px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    border:
        1px solid
        var(--szp-border);

    border-radius:
        var(--szp-radius);

    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.szp-contact-channel-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 18px
        rgba(17, 168, 255, 0.65);

    transition:
        height 0.4s ease;
}

.szp-contact-channel-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(17, 168, 255, 0.24);

    background:
        linear-gradient(
            145deg,
            rgba(17, 168, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.25);
}

.szp-contact-channel-card:hover::before {
    height: 100%;
}


/* ============================================================
   CHANNEL ICON
   ============================================================ */

.szp-channel-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: var(--szp-blue);

    background:
        rgba(17, 168, 255, 0.07);

    border:
        1px solid
        rgba(17, 168, 255, 0.18);

    font-size: 21px;

    box-shadow:
        inset 0 0 25px
        rgba(17, 168, 255, 0.025);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.szp-contact-channel-card:hover .szp-channel-icon {
    transform: translateY(-2px);

    background:
        rgba(17, 168, 255, 0.11);

    border-color:
        rgba(17, 168, 255, 0.36);

    box-shadow:
        0 0 25px
        rgba(17, 168, 255, 0.10);
}


/* ============================================================
   CHANNEL CONTENT
   ============================================================ */

.szp-channel-label {
    display: block;

    margin-bottom: 9px;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.szp-channel-content h3 {
    margin-bottom: 10px;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: -0.02em;
}

.szp-channel-content p {
    margin-bottom: 18px;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.szp-channel-content > a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--szp-text);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.szp-channel-content > a i {
    color: var(--szp-blue);

    font-size: 10px;

    transition:
        transform 0.3s ease;
}

.szp-channel-content > a:hover {
    color: var(--szp-blue);

    gap: 12px;
}

.szp-channel-content > a:hover i {
    transform: translateX(3px);
}


/* ============================================================
   04. WHY CONTACT SZP
   ============================================================ */

.szp-contact-benefits {
    position: relative;

    padding:
        125px
        0;

    background: #070b10;

    border-top:
        1px solid
        rgba(255,255,255,0.035);

    border-bottom:
        1px solid
        rgba(255,255,255,0.035);
}

.szp-contact-benefits-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 90px;

    align-items: start;
}

.szp-contact-benefits-content h2 {
    max-width: 560px;

    margin:
        22px 0
        22px;

    font-size:
        clamp(
            38px,
            4.2vw,
            58px
        );

    line-height: 1.06;

    letter-spacing: -0.04em;
}

.szp-contact-benefits-content > p {
    max-width: 570px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}

.szp-contact-benefits-content > p + p {
    margin-top: 16px;
}

.szp-benefit-cta {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 22px;

    padding-bottom: 8px;

    color: var(--szp-text);

    border-bottom:
        1px solid
        rgba(17, 168, 255, 0.45);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease,
        border-color 0.3s ease;
}

.szp-benefit-cta i {
    color: var(--szp-blue);

    font-size: 11px;
}

.szp-benefit-cta:hover {
    color: var(--szp-blue);

    gap: 15px;

    border-color:
        var(--szp-blue);
}


/* ============================================================
   BENEFIT LIST
   ============================================================ */

.szp-contact-benefits-list {
    border-top:
        1px solid
        var(--szp-border);
}

.szp-benefit-item {
    display: grid;

    grid-template-columns:
        52px minmax(0,1fr);

    gap: 24px;

    padding:
        28px
        0;

    border-bottom:
        1px solid
        var(--szp-border);

    transition:
        padding-left 0.35s ease;
}

.szp-benefit-item:hover {
    padding-left: 10px;
}

.szp-benefit-number {
    color: var(--szp-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.szp-benefit-item h3 {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 600;
}

.szp-benefit-item p {
    max-width: 500px;

    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   05. MAIN CONTACT SECTION
   ============================================================ */

.szp-contact-main-section {
    position: relative;

    padding:
        135px
        0;

    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(17,168,255,0.06),
            transparent 30%
        ),
        #080d13;
}

.szp-contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}


/* ============================================================
   LEFT CONTACT INFORMATION
   ============================================================ */

.szp-contact-information h2 {
    max-width: 560px;

    margin:
        22px 0
        20px;

    font-size:
        clamp(
            38px,
            4vw,
            56px
        );

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.szp-contact-information-intro {
    max-width: 530px;

    margin-bottom: 42px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}


/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */

.szp-contact-info-block {
    display: grid;

    grid-template-columns:
        48px minmax(0,1fr);

    gap: 17px;

    padding:
        20px
        0;

    border-top:
        1px solid
        var(--szp-border);
}

.szp-contact-info-block:last-child {
    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-contact-info-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.16);

    border-radius: 11px;

    background:
        rgba(17,168,255,0.045);

    font-size: 15px;
}

.szp-contact-info-block span {
    display: block;

    margin-bottom: 6px;

    color: var(--szp-blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.szp-contact-info-block h3 {
    margin-bottom: 4px;

    font-size: 15px;
    font-weight: 600;
}

.szp-contact-info-block p,
.szp-contact-info-block a {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.6;
}

.szp-contact-info-block a {
    transition:
        color 0.3s ease;
}

.szp-contact-info-block a:hover {
    color: var(--szp-blue);
}


/* ============================================================
   RIGHT FORM COLUMN
   ============================================================ */

.szp-contact-form-heading {
    margin-bottom: 28px;
}

.szp-contact-form-heading h2 {
    margin:
        16px 0
        10px;

    font-size:
        clamp(
            32px,
            3.5vw,
            48px
        );

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.szp-contact-form-heading p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;
}


/* ============================================================
   FORM CARD
   ============================================================ */

.szp-contact-form-card {
    position: relative;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(17,25,34,0.92),
            rgba(8,13,19,0.96)
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.30);

    overflow: hidden;

    isolation: isolate;
}

.szp-contact-form-card::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(17,168,255,0.09),
            transparent 25%,
            transparent 72%,
            rgba(17,168,255,0.035)
        );
}

.szp-form-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    top: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 68%
        );

    filter: blur(8px);

    pointer-events: none;
}

.szp-form-card-inner {
    position: relative;

    z-index: 2;

    padding: 36px;
}


/* ============================================================
   FORM HEADER
   ============================================================ */

.szp-form-card-header {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 30px;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-form-card-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 12px;

    background:
        rgba(17,168,255,0.06);

    font-size: 16px;
}

.szp-form-card-header h3 {
    margin-bottom: 4px;

    font-size: 17px;
    font-weight: 600;
}

.szp-form-card-header p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 11px;
}


/* ============================================================
   FORM
   ============================================================ */

.szp-modern-contact-form {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* ============================================================
   HONEYPOT
   ============================================================ */

.szp-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0,0,0,0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* ============================================================
   MODERN FIELD
   ============================================================ */

.szp-modern-field {
    position: relative;

    min-height: 62px;
}

.szp-modern-field input,
.szp-modern-field textarea {
    width: 100%;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-modern-field input {
    height: 62px;

    padding:
        20px
        18px
        7px
        49px;
}

.szp-modern-field textarea {
    min-height: 150px;

    resize: vertical;

    padding:
        25px
        18px
        10px
        49px;

    line-height: 1.65;
}

.szp-modern-field input::placeholder,
.szp-modern-field textarea::placeholder,
.szp-phone-field input::placeholder {
    color: transparent;
}

.szp-modern-field input:focus,
.szp-modern-field textarea:focus {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.055),
        0 0 25px
        rgba(17,168,255,0.05);
}


/* ============================================================
   FIELD ICON
   ============================================================ */

.szp-field-icon {
    position: absolute;

    left: 18px;
    top: 22px;

    z-index: 3;

    color: var(--szp-text-muted);

    font-size: 14px;

    pointer-events: none;

    transition:
        color 0.3s ease;
}

.szp-modern-field:focus-within .szp-field-icon {
    color: var(--szp-blue);
}


/* ============================================================
   FLOATING LABEL
   ============================================================ */

.szp-modern-field label,
.szp-phone-field label {
    position: absolute;

    left: 49px;
    top: 21px;

    z-index: 2;

    color: var(--szp-text-muted);

    font-size: 12px;
    font-weight: 400;

    pointer-events: none;

    transform-origin: left center;

    transition:
        top 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease,
        font-size 0.25s ease;
}

.szp-modern-field input:focus + label,
.szp-modern-field input:not(:placeholder-shown) + label,
.szp-modern-field textarea:focus + label,
.szp-modern-field textarea:not(:placeholder-shown) + label,
.szp-phone-field input:focus + label,
.szp-phone-field input:not(:placeholder-shown) + label {
    top: 8px;

    color: var(--szp-blue);

    font-size: 9px;

    transform:
        translateY(0);
}


/* ============================================================
   PHONE FIELD
   ============================================================ */

.szp-modern-phone {
    display: grid;

    grid-template-columns:
        130px minmax(0,1fr);

    gap: 10px;
}

.szp-modern-country {
    position: relative;

    height: 62px;

    display: flex;

    align-items: center;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.025);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-modern-country:focus-within {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.045);
}

.szp-modern-country > i {
    position: absolute;

    left: 16px;

    z-index: 2;

    color: var(--szp-text-muted);

    font-size: 13px;

    pointer-events: none;
}

.szp-modern-country select {
    width: 100%;
    height: 100%;

    padding:
        0
        14px
        0
        42px;

    color: var(--szp-text);

    background: transparent;

    border: 0;

    outline: none;

    cursor: pointer;

    appearance: auto;
}

.szp-modern-country select option {
    color: #111820;

    background: #ffffff;
}

.szp-phone-field {
    position: relative;
}

.szp-phone-field input {
    width: 100%;
    height: 62px;

    padding:
        20px
        18px
        7px;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-phone-field input:focus {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.055);
}

.szp-phone-field label {
    left: 18px;
}


/* ============================================================
   MESSAGE FIELD
   ============================================================ */

.szp-message-field {
    min-height: 150px;
}

.szp-message-icon {
    top: 26px;
}

.szp-message-field label {
    top: 25px;
}


/* ============================================================
   FORM STATUS
   ============================================================ */

.szp-form-status {
    min-height: 0;

    margin-top: 2px;

    color: var(--szp-text-soft);

    font-size: 12px;

    line-height: 1.6;
}

.szp-form-status:not(:empty) {
    padding:
        11px
        13px;

    border:
        1px solid
        rgba(17,168,255,0.18);

    border-radius: 8px;

    background:
        rgba(17,168,255,0.035);
}


/* ============================================================
   SUBMIT BUTTON
   ============================================================ */

.szp-modern-submit {
    position: relative;

    width: 100%;
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        0
        8px
        0
        22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    border: 0;

    border-radius: 10px;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 12px 35px
        rgba(17,168,255,0.15);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        opacity 0.3s ease;
}

.szp-modern-submit::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,0.18) 50%,
            transparent 75%
        );

    transform:
        translateX(-100%);

    transition:
        transform 0.7s ease;
}

.szp-modern-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 45px
        rgba(17,168,255,0.28);
}

.szp-modern-submit:hover::before {
    transform:
        translateX(100%);
}

.szp-submit-text {
    position: relative;

    z-index: 2;

    font-size: 13px;
    font-weight: 600;
}

.szp-submit-icon {
    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,0.13);

    transition:
        transform 0.3s ease;
}

.szp-modern-submit:hover .szp-submit-icon {
    transform: translateX(3px);
}


/* ============================================================
   POLICY
   ============================================================ */

.szp-modern-policy {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: -2px;

    color: var(--szp-text-muted);

    font-size: 10px;

    line-height: 1.65;
}

.szp-modern-policy > i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--szp-blue);

    font-size: 11px;
}

.szp-policy-link {
    color: var(--szp-text-soft);

    border-bottom:
        1px solid
        rgba(17,168,255,0.28);

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.szp-policy-link:hover {
    color: var(--szp-blue);

    border-color:
        var(--szp-blue);
}


/* ============================================================
   06. INDUSTRIES
   ============================================================ */

.szp-contact-industries {
    padding:
        120px
        0;

    background:
        #070b10;
}

.szp-contact-industry-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 14px;
}

.szp-industry-card {
    position: relative;

    min-height: 165px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    padding: 22px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        var(--szp-border);

    border-radius:
        var(--szp-radius-small);

    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.szp-industry-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    transform:
        scaleX(0);

    transition:
        transform 0.4s ease;
}

.szp-industry-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(17,168,255,0.25);

    background:
        rgba(17,168,255,0.045);

    box-shadow:
        0 16px 38px
        rgba(0,0,0,0.22);
}

.szp-industry-card:hover::after {
    transform:
        scaleX(1);
}

.szp-industry-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.16);

    border-radius: 10px;

    background:
        rgba(17,168,255,0.045);

    font-size: 17px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.szp-industry-card:hover .szp-industry-icon {
    transform:
        translateY(-2px);

    background:
        rgba(17,168,255,0.09);
}

.szp-industry-card > span {
    margin-top: 20px;

    color: var(--szp-text);

    font-size: 13px;
    font-weight: 600;
}

.szp-industry-card > i {
    position: absolute;

    right: 20px;
    bottom: 21px;

    color: var(--szp-text-muted);

    font-size: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.szp-industry-card:hover > i {
    color: var(--szp-blue);

    transform:
        translate(2px,-2px);
}


/* ============================================================
   07. VISIT SZP
   ============================================================ */

.szp-contact-visit {
    position: relative;

    padding:
        125px
        0;

    background:
        linear-gradient(
            135deg,
            #080d13,
            #0a1118
        );

    overflow: hidden;
}

.szp-contact-visit-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: -220px;
    top: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.10),
            transparent 68%
        );

    pointer-events: none;
}

.szp-contact-visit-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(360px,0.65fr);

    gap: 90px;

    align-items: center;
}

.szp-contact-visit-content h2 {
    margin:
        22px 0
        20px;

    font-size:
        clamp(
            38px,
            4.3vw,
            58px
        );

    line-height: 1.06;

    letter-spacing: -0.04em;
}

.szp-contact-visit-content > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}

.szp-visit-details {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--szp-border);
}

.szp-visit-details span {
    display: block;

    margin-bottom: 9px;

    color: var(--szp-blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.szp-visit-details strong {
    display: block;

    margin-bottom: 5px;

    color: var(--szp-text);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.55;
}

.szp-visit-details p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 12px;
}


/* ============================================================
   LOCATION CARD
   ============================================================ */

.szp-contact-location-card {
    position: relative;

    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(17,168,255,0.055),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        rgba(17,168,255,0.18);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.25);
}

.szp-location-card-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    right: -110px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.13),
            transparent 68%
        );

    pointer-events: none;
}

.szp-location-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--szp-blue);

    background:
        rgba(17,168,255,0.07);

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 14px;

    font-size: 21px;
}

.szp-contact-location-card > span {
    position: relative;

    z-index: 2;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.szp-contact-location-card h3 {
    position: relative;

    z-index: 2;

    margin:
        12px 0
        10px;

    font-size: 30px;

    letter-spacing: -0.03em;
}

.szp-contact-location-card p {
    position: relative;

    z-index: 2;

    max-width: 400px;

    margin-bottom: 25px;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.75;
}

.szp-location-btn {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--szp-text);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.szp-location-btn i {
    color: var(--szp-blue);
}

.szp-location-btn:hover {
    color: var(--szp-blue);

    gap: 14px;
}


/* ============================================================
   08. FINAL CTA
   ============================================================ */

.szp-contact-final-cta {
    position: relative;

    padding:
        135px
        0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(17,168,255,0.10),
            transparent 38%
        ),
        #060a0f;

    border-top:
        1px solid
        var(--szp-border);

    overflow: hidden;
}

.szp-contact-final-glow {
    position: absolute;

    width: 650px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(17,168,255,0.08),
            transparent 68%
        );

    pointer-events: none;
}

.szp-contact-final-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.szp-contact-final-content .szp-section-eyebrow {
    justify-content: center;
}

.szp-contact-final-content h2 {
    margin:
        24px 0
        18px;

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height: 1.05;

    letter-spacing: -0.045em;
}

.szp-contact-final-content p {
    max-width: 610px;

    margin:
        0 auto
        30px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.8;
}

.szp-contact-final-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding:
        0 25px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 12px 35px
        rgba(17,168,255,0.16);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease;
}

.szp-contact-final-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(17,168,255,0.28);
}


/* ============================================================
   09. THANK YOU SCREEN
   SINGLE CONSOLIDATED VERSION
   ============================================================ */

.szp-thank-you-screen {
    position: fixed;

    inset: 0;

    z-index: 99999;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(17,168,255,0.10),
            transparent 38%
        ),
        rgba(4,7,11,0.985);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    text-align: center;

    overflow-y: auto;

    overscroll-behavior: contain;
}

.szp-thank-you-screen[hidden] {
    display: none !important;
}


/* ============================================================
   THANK YOU BACKGROUND GLOW
   ============================================================ */

.szp-thank-you-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.13),
            rgba(23,107,255,0.05),
            transparent 68%
        );

    filter: blur(12px);

    pointer-events: none;
}


/* ============================================================
   THANK YOU BOX
   ============================================================ */

.szp-thank-you-box {
    position: relative;

    z-index: 3;

    width: min(520px, 100%);

    min-height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    background:
        linear-gradient(
            145deg,
            rgba(17,25,34,0.95),
            rgba(8,13,19,0.97)
        );

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 20px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.45);

    overflow: hidden;

    isolation: isolate;

    animation:
        szp-thank-you-box-in
        0.7s
        cubic-bezier(.2,.8,.2,1)
        both;
}

.szp-thank-you-box::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(17,168,255,0.08),
            transparent 35%,
            transparent 65%,
            rgba(17,168,255,0.035)
        );
}


/* ============================================================
   THANK YOU BOX IMAGE
   ============================================================ */

.szp-thank-you-box img {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    margin: 0;

    object-fit: contain;

    pointer-events: none;
}


/* ============================================================
   THANK YOU TITLE
   ============================================================ */

.szp-thank-you-title {
    position: relative;

    z-index: 4;

    margin: 0;

    padding: 0 20px;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            6vw,
            64px
        );

    line-height: 1;

    font-weight: 400;

    letter-spacing: -0.045em;

    text-shadow:
        0 0 30px
        rgba(17,168,255,0.16);
}


/* ============================================================
   THANK YOU MESSAGE
   ============================================================ */

.szp-thank-you-message {
    position: relative;

    z-index: 4;

    width: min(520px, 100%);

    margin:
        25px
        auto
        0;

    padding:
        0
        15px;
}

.szp-thank-you-message p {
    margin: 0;

    color:
        rgba(255,255,255,0.72);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   THANK YOU CLOSE BUTTON
   ============================================================ */

.szp-thank-you-close {
    position: relative;

    z-index: 4;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 24px;

    padding:
        12px
        20px;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 30px;

    cursor: pointer;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 600;

    line-height: 1;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.szp-thank-you-close i {
    color: var(--szp-blue);

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.szp-thank-you-close:hover {
    transform: translateY(-2px);

    border-color:
        rgba(17,168,255,0.45);

    background:
        rgba(17,168,255,0.10);

    color: var(--szp-blue);
}

.szp-thank-you-close:hover i {
    color: #ffffff;

    transform:
        translateX(-2px);
}


/* ============================================================
   THANK YOU ANIMATION
   ============================================================ */

@keyframes szp-thank-you-box-in {

    from {
        opacity: 0;

        transform:
            scale(0.82)
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            translateY(0);
    }
}


/* ============================================================
   FORM VALIDATION / ERROR STATES
   ============================================================ */

.szp-modern-field.szp-field-error input,
.szp-modern-field.szp-field-error textarea,
.szp-phone-field.szp-field-error input,
.szp-modern-country.szp-field-error {
    border-color:
        rgba(255,90,90,0.75);

    box-shadow:
        0 0 0 3px
        rgba(255,90,90,0.045);
}

.szp-modern-field.szp-field-error .szp-field-icon,
.szp-phone-field.szp-field-error label {
    color: #ff7474;
}


/* ============================================================
   LOADING STATE
   ============================================================ */

.szp-modern-submit.is-loading,
.szp-modern-submit:disabled {
    cursor: wait;

    opacity: 0.75;

    transform: none;

    box-shadow: none;
}

.szp-modern-submit.is-loading .szp-submit-icon i {
    animation:
        szp-contact-spin
        0.8s linear infinite;
}

@keyframes szp-contact-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   FOCUS ACCESSIBILITY
   ============================================================ */

.szp-contact-page a:focus-visible,
.szp-contact-page button:focus-visible,
.szp-contact-page input:focus-visible,
.szp-contact-page textarea:focus-visible,
.szp-contact-page select:focus-visible {
    outline:
        2px solid
        var(--szp-blue);

    outline-offset: 3px;
}


/* ============================================================
   RESPONSIVE — LARGE TABLETS
   ============================================================ */

@media (max-width: 1100px) {

    .szp-contact-main-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .szp-contact-information-intro {
        max-width: 700px;
    }

    .szp-contact-benefits-grid {
        gap: 55px;
    }

    .szp-contact-visit-grid {
        gap: 55px;
    }

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(4, minmax(0,1fr));
    }
}


/* ============================================================
   RESPONSIVE — TABLETS
   ============================================================ */

@media (max-width: 850px) {

    .szp-contact-container {
        width:
            min(
                calc(100% - 40px),
                var(--szp-container)
            );
    }

    .szp-contact-hero {
        min-height: 650px;

        padding:
            135px
            0
            90px;
    }

    .szp-contact-hero-inner {
        width:
            min(
                calc(100% - 40px),
                850px
            );
    }

    .szp-contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .szp-contact-benefits-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .szp-contact-visit-grid {
        grid-template-columns: 1fr;
    }

    .szp-contact-location-card {
        min-height: 340px;
    }

    .szp-thank-you-screen {
        padding: 25px;
    }

    .szp-thank-you-box {
        width:
            min(500px, 92%);

        min-height: 210px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .szp-contact-container {
        width:
            calc(100% - 32px);
    }

    .szp-contact-hero {
        min-height: auto;

        padding:
            120px
            0
            75px;
    }

    .szp-contact-hero-inner {
        width:
            calc(100% - 32px);
    }

    .szp-contact-hero-inner h1 {
        margin:
            22px auto
            18px;

        font-size:
            clamp(
                38px,
                11vw,
                54px
            );

        line-height: 1.05;
    }

    .szp-contact-hero-inner p {
        font-size: 13px;

        line-height: 1.75;
    }

    .szp-contact-hero-actions {
        flex-direction: column;

        width: 100%;

        margin-top: 30px;
    }

    .szp-contact-primary-btn,
    .szp-contact-secondary-btn {
        width: 100%;
    }


    /* ========================================================
       SECTIONS
       ======================================================== */

    .szp-contact-channels,
    .szp-contact-benefits,
    .szp-contact-main-section,
    .szp-contact-industries,
    .szp-contact-visit,
    .szp-contact-final-cta {
        padding:
            80px
            0;
    }

    .szp-contact-section-heading {
        margin-bottom: 38px;
    }

    .szp-contact-section-heading h2,
    .szp-contact-benefits-content h2,
    .szp-contact-information h2,
    .szp-contact-visit-content h2 {
        font-size:
            clamp(
                32px,
                9vw,
                43px
            );
    }


    /* ========================================================
       CHANNEL CARDS
       ======================================================== */

    .szp-contact-channel-card {
        grid-template-columns: 1fr;

        gap: 18px;

        min-height: auto;

        padding: 25px;
    }

    .szp-channel-icon {
        width: 52px;
        height: 52px;
    }


    /* ========================================================
       BENEFITS
       ======================================================== */

    .szp-benefit-item {
        grid-template-columns:
            40px minmax(0,1fr);

        gap: 14px;

        padding:
            23px
            0;
    }

    .szp-benefit-item:hover {
        padding-left: 5px;
    }


    /* ========================================================
       FORM
       ======================================================== */

    .szp-contact-main-grid {
        gap: 50px;
    }

    .szp-contact-information-intro {
        margin-bottom: 28px;
    }

    .szp-form-card-inner {
        padding: 23px;
    }

    .szp-form-card-header {
        margin-bottom: 24px;

        padding-bottom: 20px;
    }

    .szp-modern-phone {
        grid-template-columns:
            105px minmax(0,1fr);

        gap: 7px;
    }

    .szp-modern-country select {
        padding-left: 37px;

        font-size: 12px;
    }

    .szp-modern-country > i {
        left: 13px;
    }

    .szp-modern-field input {
        padding-left: 45px;
    }

    .szp-modern-field textarea {
        padding-left: 45px;
    }

    .szp-field-icon {
        left: 16px;
    }

    .szp-modern-field label {
        left: 45px;
    }


    /* ========================================================
       INDUSTRIES
       ======================================================== */

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 10px;
    }

    .szp-industry-card {
        min-height: 145px;

        padding: 18px;
    }

    .szp-industry-card > i {
        right: 16px;
        bottom: 18px;
    }


    /* ========================================================
       VISIT
       ======================================================== */

    .szp-visit-details {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .szp-contact-location-card {
        min-height: 330px;

        padding: 30px;
    }


    /* ========================================================
       FINAL CTA
       ======================================================== */

    .szp-contact-final-content h2 {
        font-size:
            clamp(
                36px,
                10vw,
                50px
            );
    }


    /* ========================================================
       THANK YOU
       ======================================================== */

    .szp-thank-you-screen {
        padding:
            20px 16px;
    }

    .szp-thank-you-box {
        width:
            min(390px, 94%);

        min-height: 170px;

        border-radius: 17px;
    }

    .szp-thank-you-title {
        font-size: 43px;
    }

    .szp-thank-you-message {
        margin-top: 20px;

        padding:
            0 8px;
    }

    .szp-thank-you-message p {
        font-size: 12px;
    }

    .szp-thank-you-close {
        margin-top: 20px;

        padding:
            11px 19px;

        font-size: 10px;
    }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .szp-contact-container,
    .szp-contact-hero-inner {
        width:
            calc(100% - 24px);
    }

    .szp-contact-channel-card {
        padding: 21px;
    }

    .szp-form-card-inner {
        padding: 18px;
    }

    .szp-modern-phone {
        grid-template-columns:
            95px minmax(0,1fr);
    }

    .szp-modern-country select {
        padding-left: 34px;
    }

    .szp-modern-country > i {
        left: 11px;
    }

    .szp-modern-policy {
        font-size: 9px;
    }

    .szp-thank-you-screen {
        padding:
            18px 14px;
    }

    .szp-thank-you-box {
        width: 320px;

        min-height: 145px;
    }

    .szp-thank-you-title {
        font-size: 37px;

        letter-spacing: -1.5px;
    }

    .szp-thank-you-message {
        margin-top: 18px;

        padding:
            0 10px;
    }

    .szp-thank-you-message p {
        font-size: 10px;
    }

    .szp-thank-you-close {
        margin-top: 18px;

        padding:
            10px 18px;

        font-size: 9px;
    }
}


/* ============================================================
   RESPONSIVE — VERY SMALL PHONES
   ============================================================ */

@media (max-width: 360px) {

    .szp-contact-container,
    .szp-contact-hero-inner {
        width:
            calc(100% - 20px);
    }

    .szp-modern-phone {
        grid-template-columns:
            88px minmax(0,1fr);
    }

    .szp-modern-country select {
        padding-left: 31px;

        font-size: 11px;
    }

    .szp-modern-country > i {
        left: 9px;
    }

    .szp-thank-you-screen {
        padding:
            15px 10px;
    }

    .szp-thank-you-box {
        width: 290px;

        min-height: 130px;
    }

    .szp-thank-you-title {
        font-size: 33px;
    }

    .szp-thank-you-message {
        margin-top: 15px;
    }

    .szp-thank-you-message p {
        font-size: 9px;
    }

    .szp-thank-you-close {
        padding:
            9px 16px;

        font-size: 8px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .szp-contact-page *,
    .szp-contact-page *::before,
    .szp-contact-page *::after,
    .szp-thank-you-screen *,
    .szp-thank-you-screen *::before,
    .szp-thank-you-screen *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }
}


/* ============================================================
   END — SZP CONTACT US CSS
   ============================================================ */













/* =========================================================
   SZP PRODUCTS PAGE
   MODERN / GLOW / PRODUCT CATALOG
========================================================= */

.szp-products-page,
.szp-products-page * {
    box-sizing: border-box;
}

.szp-products-page {
    --szp-blue: #11a8ff;
    --szp-blue-2: #176bff;
    --szp-cyan: #29d9ff;
    --szp-bg: #050b13;
    --szp-bg-2: #08111d;
    --szp-card: rgba(13, 25, 39, .78);
    --szp-border: rgba(17, 168, 255, .18);
    --szp-text: #f4f9ff;
    --szp-muted: #91a4b8;

    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(17, 168, 255, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #040910 0%,
            #07111c 50%,
            #040910 100%
        );
    color: var(--szp-text);
    font-family: "Poppins", sans-serif;
}

.szp-products-page button,
.szp-products-page input,
.szp-products-page textarea {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.szp-products-hero {
    position: relative;
    min-height: 780px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
    padding: 130px 7% 100px;
    overflow: hidden;
    isolation: isolate;
}

.szp-products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 16, .97) 0%,
            rgba(4, 9, 16, .78) 48%,
            rgba(4, 9, 16, .35) 100%
        );
    z-index: -1;
}

.szp-products-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    animation: szpHeroContent .9s ease both;
}

.szp-products-eyebrow,
.szp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--szp-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.szp-products-eyebrow::before,
.szp-section-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--szp-blue);
    box-shadow: 0 0 12px var(--szp-blue);
}

.szp-products-hero h1 {
    margin: 22px 0;
    max-width: 760px;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 700;
}

.szp-products-hero h1 span,
.szp-section-heading h2 span,
.szp-quality-content h2 span,
.szp-custom-header h2 span,
.szp-printing-copy h3 span,
.szp-products-final-cta h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 28px rgba(17, 168, 255, .25);
}

.szp-products-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 16px;
    line-height: 1.9;
}

.szp-products-hero-actions,
.szp-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.szp-product-primary-btn,
.szp-product-secondary-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.szp-product-primary-btn {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    box-shadow:
        0 0 25px rgba(17, 168, 255, .18);
}

.szp-product-secondary-btn {
    color: #fff;
    border: 1px solid rgba(17, 168, 255, .35);
    background: rgba(255, 255, 255, .025);
    backdrop-filter: blur(15px);
}

.szp-product-primary-btn:hover,
.szp-product-secondary-btn:hover {
    transform: translateY(-4px);
}

.szp-product-primary-btn:hover {
    box-shadow:
        0 12px 35px rgba(17, 168, 255, .25);
}

.szp-product-secondary-btn:hover {
    border-color: var(--szp-blue);
    box-shadow:
        0 0 25px rgba(17, 168, 255, .12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.szp-products-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-hero-product-ring {
    position: absolute;
    width: min(520px, 75vw);
    aspect-ratio: 1;
    border: 1px solid rgba(17, 168, 255, .22);
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(17, 168, 255, .08),
        inset 0 0 60px rgba(17, 168, 255, .04);
    animation: szpRingRotate 18s linear infinite;
}

.szp-hero-product-ring::before,
.szp-hero-product-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(41, 217, 255, .14);
}

.szp-hero-product-ring::before {
    inset: 35px;
}

.szp-hero-product-ring::after {
    inset: 75px;
}

.szp-hero-product-bag {
    position: relative;
    width: 220px;
    height: 330px;
    transform: perspective(700px) rotateY(-12deg);
    filter:
        drop-shadow(0 30px 35px rgba(0, 0, 0, .45))
        drop-shadow(0 0 35px rgba(17, 168, 255, .12));
    animation: szpBagFloat 5s ease-in-out infinite;
}

.szp-bag-top {
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 22px;
    border-radius: 5px 5px 2px 2px;
    background: repeating-linear-gradient(
        90deg,
        #d9e1e7 0 3px,
        #f8fbfd 3px 6px
    );
}

.szp-bag-body {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1c2933;
    border-radius: 3px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, .035) 0 2px,
            transparent 2px 5px
        ),
        linear-gradient(
            135deg,
            #f5f7f8,
            #d9e0e5
        );
    box-shadow:
        inset 0 0 35px rgba(0, 0, 0, .10);
}

.szp-bag-body span {
    color: #1374b8;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 5px;
}

.szp-bag-body small {
    margin-top: 8px;
    color: #5f6d77;
    font-size: 9px;
    letter-spacing: 3px;
}

.szp-floating-spec {
    position: absolute;
    padding: 15px 20px;
    border: 1px solid rgba(17, 168, 255, .22);
    border-radius: 12px;
    background: rgba(7, 18, 30, .65);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
    animation: szpSpecFloat 5s ease-in-out infinite;
}

.szp-floating-spec strong {
    display: block;
    color: var(--szp-blue);
    font-size: 25px;
}

.szp-floating-spec span {
    display: block;
    margin-top: 2px;
    color: #91a4b8;
    font-size: 10px;
    letter-spacing: 1px;
}

.szp-floating-spec-1 {
    top: 14%;
    right: 3%;
}

.szp-floating-spec-2 {
    bottom: 15%;
    left: 0;
    animation-delay: -2s;
}

.szp-products-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .16;
    pointer-events: none;
}

.szp-products-orb-1 {
    top: -120px;
    right: 10%;
    background: var(--szp-blue);
}

.szp-products-orb-2 {
    bottom: -160px;
    left: 20%;
    background: #315cff;
}

.szp-products-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(
            rgba(17, 168, 255, .35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 168, 255, .35) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
    z-index: -1;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.szp-products-intro,
.szp-featured-products,
.szp-product-catalog,
.szp-product-quality,
.szp-custom-products,
.szp-products-final-cta {
    position: relative;
    padding: 110px 7%;
}

.szp-section-heading {
    max-width: 850px;
    margin-bottom: 55px;
}

.szp-section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.szp-section-heading.centered .szp-section-label {
    justify-content: center;
}

.szp-section-heading h2 {
    margin: 17px 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.szp-section-heading p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   INTRO STATS
========================================================= */

.szp-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--szp-border);
    border-radius: 18px;
    background: var(--szp-border);
}

.szp-intro-stat {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(7, 16, 26, .85);
    transition: background .3s ease;
}

.szp-intro-stat:hover {
    background: rgba(12, 28, 44, .95);
}

.szp-intro-stat strong {
    color: var(--szp-blue);
    font-size: 35px;
    line-height: 1;
}

.szp-intro-stat span {
    margin-top: 12px;
    color: var(--szp-muted);
    font-size: 12px;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.szp-featured-products {
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(17, 168, 255, .055),
            transparent 30%
        ),
        #050b13;
}

.szp-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.szp-featured-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--szp-border);
    border-radius: 20px;
    background:
        linear-gradient(
            180deg,
            rgba(16, 30, 46, .9),
            rgba(7, 15, 25, .96)
        );
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.szp-featured-card:hover {
    transform: translateY(-10px);
    border-color: rgba(17, 168, 255, .5);
    box-shadow:
        0 25px 65px rgba(0, 0, 0, .28),
        0 0 35px rgba(17, 168, 255, .08);
}

.szp-featured-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(17, 168, 255, .12),
            transparent 65%
        ),
        #0b1622;
}

.szp-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(3, 8, 14, .6)
    );
    pointer-events: none;
}

.szp-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 28px;
    transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.szp-featured-card:hover .szp-featured-image img {
    transform: scale(1.07);
}

.szp-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(17, 168, 255, .35);
    border-radius: 999px;
    color: #fff;
    background: rgba(5, 13, 22, .65);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.szp-featured-content {
    padding: 25px;
}

.szp-featured-content > span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.szp-featured-content h3 {
    margin: 9px 0;
    font-size: 24px;
}

.szp-featured-content p {
    min-height: 75px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.75;
}

.szp-featured-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}

.szp-detail-btn,
.szp-cart-btn,
.szp-modal-cart,
.szp-modal-custom {
    min-height: 48px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.szp-detail-btn {
    border: 1px solid rgba(17, 168, 255, .25);
    color: #fff;
    background: rgba(255,255,255,.035);
}

.szp-cart-btn,
.szp-modal-cart {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
}

.szp-detail-btn:hover,
.szp-cart-btn:hover,
.szp-modal-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17,168,255,.16);
}


/* =========================================================
   CATALOG
========================================================= */

.szp-product-catalog {
    background: #040a11;
}

.szp-product-controls {
    position: sticky;
    top: 15px;
    z-index: 20;
    margin-bottom: 45px;
    padding: 15px;
    border: 1px solid var(--szp-border);
    border-radius: 16px;
    background: rgba(5, 13, 22, .78);
    backdrop-filter: blur(20px);
}

.szp-product-search {
    position: relative;
    margin-bottom: 14px;
}

.szp-product-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: var(--szp-blue);
    transform: translateY(-50%);
}

.szp-product-search input {
    width: 100%;
    height: 52px;
    padding: 0 20px 0 48px;
    outline: none;
    border: 1px solid rgba(17, 168, 255, .13);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.035);
}

.szp-product-search input:focus {
    border-color: rgba(17,168,255,.55);
    box-shadow: 0 0 25px rgba(17,168,255,.07);
}

.szp-product-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.szp-product-filter button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 999px;
    color: #9eb0c2;
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.szp-product-filter button:hover,
.szp-product-filter button.active {
    color: #fff;
    border-color: rgba(17,168,255,.5);
    background: rgba(17,168,255,.1);
    box-shadow: 0 0 18px rgba(17,168,255,.07);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.szp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.szp-product-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(13,27,42,.88),
            rgba(6,14,23,.96)
        );
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
    animation: szpProductReveal .6s ease both;
}

.szp-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.42);
    box-shadow:
        0 20px 50px rgba(0,0,0,.24),
        0 0 30px rgba(17,168,255,.07);
}

.szp-product-card-image {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(17,168,255,.11),
            transparent 62%
        ),
        #0a1520;
}

.szp-product-card-bag {
    width: 115px;
    height: 165px;
    position: relative;
    transform: rotate(-3deg);
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.35));
    transition: transform .5s ease;
}

.szp-product-card:hover .szp-product-card-bag {
    transform:
        rotate(2deg)
        scale(1.07)
        translateY(-4px);
}

.szp-product-card-bag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    height: 13px;
    border-radius: 3px 3px 1px 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.55) 0 2px,
        rgba(0,0,0,.08) 2px 4px
    );
}

.szp-product-card-bag::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        var(--bag-color, #e9edf0);
    box-shadow: inset 0 0 25px rgba(0,0,0,.12);
}

.szp-product-card-bag span {
    position: absolute;
    z-index: 2;
    top: 67px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(17, 91, 140, .85);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 2px;
}

.szp-product-card-info {
    padding: 18px;
}

.szp-product-card-category {
    display: block;
    margin-bottom: 6px;
    color: var(--szp-blue);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.szp-product-card-info h3 {
    min-height: 46px;
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.szp-product-card-info .szp-product-urdu {
    margin-top: 4px;
    color: #6f8295;
    font-size: 11px;
}

.szp-product-spec-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 14px;
}

.szp-product-spec {
    padding: 8px;
    border: 1px solid rgba(17,168,255,.09);
    border-radius: 7px;
    background: rgba(255,255,255,.02);
}

.szp-product-spec span {
    display: block;
    color: #64778a;
    font-size: 8px;
    text-transform: uppercase;
}

.szp-product-spec strong {
    display: block;
    margin-top: 3px;
    color: #dce8f2;
    font-size: 11px;
}

.szp-product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 13px;
}

.szp-product-card-actions button {
    min-height: 42px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.szp-card-learn {
    border: 1px solid rgba(17,168,255,.18);
    color: #fff;
    background: transparent;
}

.szp-card-add {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
}

.szp-card-learn:hover,
.szp-card-add:hover {
    transform: translateY(-2px);
}

.szp-product-empty {
    display: none;
    padding: 80px 20px;
    text-align: center;
}

.szp-product-empty.show {
    display: block;
}

.szp-product-empty i {
    color: var(--szp-blue);
    font-size: 40px;
}

.szp-product-empty h3 {
    margin: 18px 0 8px;
}

.szp-product-empty p {
    color: var(--szp-muted);
}

.szp-show-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.szp-show-more-btn {
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(17,168,255,.28);
    border-radius: 10px;
    color: #fff;
    background: rgba(17,168,255,.06);
    cursor: pointer;
    transition: .3s ease;
}

.szp-show-more-btn:hover {
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.12);
    box-shadow: 0 0 25px rgba(17,168,255,.09);
    transform: translateY(-3px);
}

.szp-show-more-btn.hidden {
    display: none;
}


/* =========================================================
   QUALITY
========================================================= */

.szp-product-quality {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 80px;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(17,168,255,.09),
            transparent 30%
        ),
        #07101a;
}

.szp-quality-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-quality-ring {
    position: absolute;
    width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(17,168,255,.18);
    box-shadow: 0 0 80px rgba(17,168,255,.06);
    animation: szpRingRotate 20s linear infinite;
}

.szp-quality-bag {
    position: relative;
    width: 190px;
    height: 285px;
    border-radius: 3px;
    transform: rotate(-6deg);
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        #e5eaed;
    box-shadow:
        0 30px 45px rgba(0,0,0,.35),
        inset 0 0 30px rgba(0,0,0,.08);
    animation: szpBagFloat 5.5s ease-in-out infinite;
}

.szp-quality-bag::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 8px;
    right: 8px;
    height: 15px;
    background: #d2d9de;
}

.szp-quality-bag-print {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #1777b5;
    font-size: 38px;
    font-weight: 800;
}

.szp-quality-bag-print small {
    display: block;
    margin-top: 5px;
    color: #647783;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-quality-content h2 {
    margin: 18px 0;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.08;
}

.szp-quality-content > p {
    max-width: 700px;
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.szp-quality-features > div {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 13px;
    background: rgba(255,255,255,.02);
    transition: .35s ease;
}

.szp-quality-features > div:hover {
    border-color: rgba(17,168,255,.3);
    transform: translateY(-4px);
}

.szp-quality-features i {
    flex: 0 0 34px;
    color: var(--szp-blue);
    font-size: 20px;
}

.szp-quality-features h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

.szp-quality-features p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   CUSTOMIZED PRODUCTS
========================================================= */

.szp-custom-products {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(17,168,255,.11),
            transparent 38%
        ),
        #040b13;
}

.szp-custom-header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.szp-custom-header .szp-section-label {
    justify-content: center;
}

.szp-custom-header h2 {
    margin: 18px 0;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
}

.szp-custom-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-custom-process {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: center;
    max-width: 1250px;
    margin: auto;
}

.szp-custom-step {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 18px;
    background: rgba(11,23,37,.78);
    backdrop-filter: blur(14px);
    transition: .4s ease;
}

.szp-custom-step:hover {
    transform: translateY(-8px);
    border-color: rgba(17,168,255,.45);
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.szp-custom-step > span {
    display: block;
    margin-bottom: 20px;
    color: rgba(17,168,255,.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.szp-custom-step > i {
    color: var(--szp-blue);
    font-size: 27px;
    text-shadow: 0 0 18px rgba(17,168,255,.3);
}

.szp-custom-step h3 {
    margin: 18px 0 10px;
    font-size: 19px;
}

.szp-custom-step p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 12px;
    line-height: 1.8;
}

.szp-custom-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--szp-blue),
        transparent
    );
    box-shadow: 0 0 15px rgba(17,168,255,.35);
}

.szp-printing-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 70px;
    margin-top: 100px;
    padding: 45px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(13,29,45,.9),
            rgba(5,13,22,.85)
        );
}

.szp-printing-copy h3 {
    margin: 18px 0;
    font-size: clamp(30px, 3.5vw, 50px);
    line-height: 1.05;
}

.szp-printing-copy p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-printing-copy ul {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.szp-printing-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 11px 0;
    color: #c8d5e1;
    font-size: 12px;
}

.szp-printing-copy li i {
    color: var(--szp-blue);
}

.szp-printing-visual {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-printing-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.szp-printing-bag {
    position: relative;
    width: 180px;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 30px 40px rgba(0,0,0,.3);
    transform: rotate(-4deg);
    transition: .5s ease;
}

.szp-printing-bag.plain {
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.035) 0 2px,
            transparent 2px 4px
        ),
        #e7ecef;
}

.szp-printing-bag.printed {
    color: #fff;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.04) 0 2px,
            transparent 2px 4px
        ),
        linear-gradient(
            135deg,
            #0c4770,
            #123a5e
        );
    transform: rotate(5deg);
    box-shadow:
        0 30px 45px rgba(0,0,0,.35),
        0 0 40px rgba(17,168,255,.11);
}

.szp-printing-bag span {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 4px;
}

.szp-printing-bag small {
    position: absolute;
    top: 56%;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-printing-arrow {
    color: var(--szp-blue);
    font-size: 28px;
    animation: szpArrowPulse 1.6s ease-in-out infinite;
}


/* =========================================================
   CUSTOM FORM
========================================================= */

.szp-custom-request {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    margin-top: 100px;
    padding: 45px;
    border: 1px solid rgba(17,168,255,.16);
    border-radius: 25px;
    background: rgba(9,19,31,.82);
    backdrop-filter: blur(15px);
}

.szp-custom-request-copy h3 {
    margin: 18px 0;
    font-size: clamp(30px, 3.5vw, 47px);
    line-height: 1.08;
}

.szp-custom-request-copy h3 span {
    color: var(--szp-blue);
}

.szp-custom-request-copy p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-custom-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.szp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.szp-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #b6c6d5;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .6px;
}

.szp-form-field input,
.szp-form-field textarea {
    width: 100%;
    outline: none;
    border: 1px solid rgba(17,168,255,.13);
    border-radius: 9px;
    color: #fff;
    background: rgba(255,255,255,.035);
    transition: .3s ease;
}

.szp-form-field input {
    height: 50px;
    padding: 0 15px;
}

.szp-form-field textarea {
    min-height: 100px;
    padding: 14px 15px;
    resize: vertical;
}

.szp-form-field input:focus,
.szp-form-field textarea:focus {
    border-color: rgba(17,168,255,.5);
    box-shadow: 0 0 20px rgba(17,168,255,.06);
}

.szp-custom-submit {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    font-weight: 700;
    cursor: pointer;
    transition: .35s ease;
}

.szp-custom-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17,168,255,.2);
}


/* =========================================================
   FINAL CTA
========================================================= */

.szp-products-final-cta {
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(17,168,255,.11),
            transparent 42%
        ),
        #050b12;
}

.szp-products-final-cta > div {
    max-width: 850px;
    margin: auto;
}

.szp-products-final-cta .szp-section-label {
    justify-content: center;
}

.szp-products-final-cta h2 {
    margin: 20px 0;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
}

.szp-products-final-cta p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-final-cta-buttons {
    justify-content: center;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.szp-product-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: none;
}

.szp-product-modal.open {
    display: block;
}

.szp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(15px);
}

.szp-product-modal-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1180px, 92vw);
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.2);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #0a1725,
            #050c14
        );
    box-shadow:
        0 40px 120px rgba(0,0,0,.6),
        0 0 50px rgba(17,168,255,.07);
    transform: translate(-50%, -47%) scale(.97);
    opacity: 0;
    transition: .35s ease;
}

.szp-product-modal.open .szp-product-modal-panel {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.szp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.3);
    cursor: pointer;
    transition: .3s ease;
}

.szp-modal-close:hover {
    border-color: var(--szp-blue);
    color: var(--szp-blue);
    transform: rotate(90deg);
}

.szp-modal-media {
    position: relative;
    min-height: 650px;
    padding: 35px;
    background:
        radial-gradient(
            circle,
            rgba(17,168,255,.1),
            transparent 65%
        ),
        #07111c;
}

.szp-modal-main-image {
    position: relative;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.02);
}

.szp-modal-main-image img {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
    padding: 30px;
    transition: opacity .3s ease;
}

.szp-modal-main-image img.show {
    display: block;
}

.szp-modal-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 270px;
    color: #176bff;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        #e8edf0;
    box-shadow: 0 25px 40px rgba(0,0,0,.35);
}

.szp-modal-image-placeholder span {
    font-size: 40px;
    font-weight: 800;
}

.szp-modal-image-placeholder small {
    margin-top: 8px;
    color: #61717d;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-modal-slider-btn {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 50%;
    color: #fff;
    background: rgba(4,12,20,.7);
    cursor: pointer;
    transform: translateY(-50%);
    transition: .3s ease;
}

.szp-modal-slider-btn:hover {
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.12);
}

.szp-modal-slider-btn.prev {
    left: 15px;
}

.szp-modal-slider-btn.next {
    right: 15px;
}

.szp-modal-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.szp-modal-thumb {
    flex: 0 0 66px;
    height: 66px;
    padding: 3px;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    cursor: pointer;
}

.szp-modal-thumb.active {
    border-color: var(--szp-blue);
    box-shadow: 0 0 15px rgba(17,168,255,.1);
}

.szp-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.szp-modal-slide-counter {
    margin-top: 8px;
    color: #65788a;
    font-size: 9px;
    text-align: right;
}

.szp-modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 55px 45px 40px;
}

.szp-modal-category {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.szp-modal-content h2 {
    margin: 10px 0 15px;
    font-size: 38px;
    line-height: 1.1;
}

.szp-modal-overview {
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.85;
}

.szp-modal-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 25px 0;
}

.szp-modal-specs > div {
    padding: 12px;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.02);
}

.szp-modal-specs span {
    display: block;
    color: #65788a;
    font-size: 8px;
    text-transform: uppercase;
}

.szp-modal-specs strong {
    display: block;
    margin-top: 4px;
    color: #e6eef5;
    font-size: 11px;
}

.szp-modal-detail-section {
    margin-top: 22px;
}

.szp-modal-detail-section h3 {
    margin-bottom: 7px;
    color: #eaf4fb;
    font-size: 14px;
}

.szp-modal-detail-section p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.8;
}

.szp-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.szp-modal-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 999px;
    color: #aebfd0;
    background: rgba(17,168,255,.04);
    font-size: 8px;
}

.szp-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.szp-modal-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(17,168,255,.25);
    background: rgba(255,255,255,.025);
    text-decoration: none;
}


/* =========================================================
   CART DRAWER
========================================================= */

.szp-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 99994;
    display: none;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(5px);
}

.szp-cart-overlay.open {
    display: block;
}

.szp-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99995;
    width: min(420px, 92vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(17,168,255,.18);
    background: #07111c;
    box-shadow: -30px 0 80px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform .4s ease;
}

.szp-cart-drawer.open {
    transform: translateX(0);
}

.szp-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid rgba(17,168,255,.1);
}

.szp-cart-header span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.szp-cart-header h3 {
    margin: 4px 0 0;
}

.szp-cart-header button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.szp-cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.szp-cart-empty {
    padding: 70px 20px;
    color: #718396;
    text-align: center;
}

.szp-cart-item {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.szp-cart-item-visual {
    width: 65px;
    height: 75px;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            #e9edf0,
            #bcc6cd
        );
}

.szp-cart-item h4 {
    margin: 0;
    font-size: 12px;
}

.szp-cart-item p {
    margin: 4px 0 0;
    color: #708396;
    font-size: 9px;
}

.szp-cart-remove {
    border: 0;
    color: #718396;
    background: transparent;
    cursor: pointer;
}

.szp-cart-remove:hover {
    color: #ff5c69;
}

.szp-cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(17,168,255,.1);
}

.szp-cart-total {
    display: flex;
    justify-content: space-between;
    color: #9fb0c0;
    font-size: 12px;
}

.szp-cart-total strong {
    color: #fff;
}

.szp-cart-checkout {
    width: 100%;
    height: 52px;
    margin-top: 15px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    font-weight: 700;
    cursor: pointer;
}


/* =========================================================
   TOAST
========================================================= */

.szp-product-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 10px;
    color: #fff;
    background: rgba(6,17,28,.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transform: translateY(25px);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
}

.szp-product-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.szp-product-toast i {
    color: var(--szp-blue);
}


/* =========================================================
   CUSTOM GLOWS
========================================================= */

.szp-custom-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    pointer-events: none;
}

.szp-custom-glow-1 {
    top: 10%;
    left: -150px;
    background: var(--szp-blue);
}

.szp-custom-glow-2 {
    right: -150px;
    bottom: 10%;
    background: #305bff;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes szpHeroContent {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

@keyframes szpBagFloat {
    0%,
    100% {
        transform:
            perspective(700px)
            rotateY(-12deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(700px)
            rotateY(-5deg)
            translateY(-14px);
    }
}

@keyframes szpRingRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes szpSpecFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes szpArrowPulse {
    0%,
    100% {
        transform: translateX(0);
        opacity: .6;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

@keyframes szpProductReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .szp-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .szp-custom-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .szp-custom-line {
        display: none;
    }

}


@media (max-width: 1000px) {

    .szp-products-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .szp-products-hero-content {
        margin: auto;
    }

    .szp-products-hero-actions {
        justify-content: center;
    }

    .szp-products-hero-visual {
        min-height: 450px;
    }

    .szp-featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-product-quality,
    .szp-printing-showcase,
    .szp-custom-request {
        grid-template-columns: 1fr;
    }

    .szp-quality-content {
        text-align: center;
    }

    .szp-quality-features {
        text-align: left;
    }

    .szp-product-modal-panel {
        grid-template-columns: 1fr;
        max-height: 94vh;
        overflow-y: auto;
    }

    .szp-modal-media {
        min-height: auto;
    }

    .szp-modal-main-image {
        height: 420px;
    }

    .szp-modal-content {
        max-height: none;
    }

}


@media (max-width: 700px) {

    .szp-products-intro,
    .szp-featured-products,
    .szp-product-catalog,
    .szp-product-quality,
    .szp-custom-products,
    .szp-products-final-cta {
        padding: 75px 5%;
    }

    .szp-products-hero {
        min-height: 720px;
        padding: 120px 5% 70px;
    }

    .szp-products-hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .szp-products-hero p {
        font-size: 14px;
    }

    .szp-products-hero-visual {
        min-height: 350px;
    }

    .szp-hero-product-ring {
        width: 340px;
    }

    .szp-hero-product-bag {
        width: 155px;
        height: 235px;
    }

    .szp-bag-body {
        height: 220px;
    }

    .szp-floating-spec {
        transform: scale(.8);
    }

    .szp-intro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .szp-featured-grid {
        grid-template-columns: 1fr;
    }

    .szp-product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-quality-features {
        grid-template-columns: 1fr;
    }

    .szp-printing-showcase,
    .szp-custom-request {
        padding: 25px;
    }

    .szp-printing-stage {
        gap: 15px;
        transform: scale(.8);
    }

    .szp-form-row {
        grid-template-columns: 1fr;
    }

    .szp-product-modal-panel {
        width: 96vw;
    }

    .szp-modal-media {
        padding: 20px;
    }

    .szp-modal-main-image {
        height: 330px;
    }

    .szp-modal-content {
        padding: 35px 22px;
    }

    .szp-modal-content h2 {
        font-size: 30px;
    }

    .szp-modal-specs {
        grid-template-columns: 1fr 1fr;
    }

    .szp-modal-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .szp-product-grid {
        grid-template-columns: 1fr;
    }

    .szp-intro-stats {
        grid-template-columns: 1fr;
    }

    .szp-custom-process {
        grid-template-columns: 1fr;
    }

    .szp-products-hero-actions,
    .szp-final-cta-buttons {
        flex-direction: column;
    }

    .szp-product-primary-btn,
    .szp-product-secondary-btn {
        width: 100%;
    }

}



/* =========================================================
   SZP CART DRAWER — FINAL THEME OVERRIDE
   FIXES WORDPRESS / TWENTY TWENTY STYLE CONFLICTS
========================================================= */


/* =========================================================
   CART DRAWER BASE
========================================================= */

.szp-cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: min(430px, 94vw) !important;
    height: 100vh !important;

    display: flex !important;
    flex-direction: column !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    border-left: 1px solid rgba(17,168,255,.22) !important;

    background:
        linear-gradient(
            180deg,
            #07111c 0%,
            #06101a 55%,
            #050c14 100%
        ) !important;

    color: #f4f9ff !important;

    box-shadow:
        -30px 0 90px rgba(0,0,0,.45),
        -1px 0 25px rgba(17,168,255,.05) !important;

    z-index: 99995 !important;

    transform: translateX(100%) !important;
    transition: transform .4s ease !important;
}

.szp-cart-drawer.open {
    transform: translateX(0) !important;
}


/* =========================================================
   CART OVERLAY
========================================================= */

.szp-cart-overlay {
    position: fixed !important;
    inset: 0 !important;

    display: none !important;

    background: rgba(0,0,0,.68) !important;

    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;

    z-index: 99994 !important;
}

.szp-cart-overlay.open {
    display: block !important;
}


/* =========================================================
   CART HEADER
========================================================= */

.szp-cart-header {
    position: relative !important;

    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 24px 22px !important;

    border-bottom: 1px solid rgba(17,168,255,.12) !important;

    background:
        linear-gradient(
            180deg,
            rgba(7,17,28,.98),
            rgba(7,17,28,.92)
        ) !important;
}

.szp-cart-header span {
    display: block !important;

    margin: 0 !important;

    color: var(--szp-blue) !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
    line-height: 1.3 !important;
}

.szp-cart-header h3 {
    margin: 6px 0 0 !important;

    color: #f4f9ff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;
}


/* =========================================================
   CART CLOSE BUTTON
========================================================= */

.szp-cart-header button {
    flex: 0 0 40px !important;

    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;

    height: 40px !important;
    min-height: 40px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 50% !important;

    outline: none !important;

    color: #fff !important;

    background: rgba(255,255,255,.025) !important;

    font-size: 16px !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease,
        transform .3s ease !important;
}

.szp-cart-header button:hover {
    border-color: var(--szp-blue) !important;

    color: var(--szp-blue) !important;

    background: rgba(17,168,255,.07) !important;

    transform: rotate(90deg) !important;
}


/* =========================================================
   CART INTRO / DESCRIPTION
========================================================= */

.szp-cart-drawer > p,
.szp-cart-description {
    flex: 0 0 auto !important;

    margin: 0 !important;

    padding: 22px 18px 18px !important;

    color: #aebfd0 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 400 !important;

    line-height: 1.7 !important;

    text-align: left !important;

    overflow: visible !important;
}


/* =========================================================
   CART ITEMS AREA
========================================================= */

.szp-cart-items {
    flex: 1 1 auto !important;

    width: 100% !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 8px 18px 20px !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    scrollbar-width: thin !important;
    scrollbar-color:
        rgba(17,168,255,.45)
        rgba(255,255,255,.03) !important;
}

.szp-cart-items::-webkit-scrollbar {
    width: 6px !important;
}

.szp-cart-items::-webkit-scrollbar-track {
    background: rgba(255,255,255,.025) !important;
}

.szp-cart-items::-webkit-scrollbar-thumb {
    border-radius: 20px !important;

    background:
        rgba(17,168,255,.45) !important;
}

.szp-cart-items::-webkit-scrollbar-thumb:hover {
    background:
        rgba(17,168,255,.7) !important;
}


/* =========================================================
   CART EMPTY STATE
========================================================= */

.szp-cart-empty {
    width: 100% !important;

    margin: 0 !important;
    padding: 70px 20px !important;

    color: #718396 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 13px !important;

    line-height: 1.7 !important;

    text-align: center !important;
}


/* =========================================================
   CART ITEM
========================================================= */

.szp-cart-item {
    position: relative !important;

    display: grid !important;

    grid-template-columns: 65px minmax(0,1fr) auto !important;

    gap: 12px !important;

    align-items: center !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 14px 0 !important;

    border-bottom: 1px solid rgba(255,255,255,.07) !important;

    background: transparent !important;
}


/* =========================================================
   CART PRODUCT IMAGE
========================================================= */

.szp-cart-item-visual {
    width: 65px !important;
    height: 75px !important;

    min-width: 65px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    border: 1px solid rgba(17,168,255,.10) !important;
    border-radius: 7px !important;

    background:
        linear-gradient(
            135deg,
            #e9edf0,
            #bcc6cd
        ) !important;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18) !important;
}


/* If an image is inside the visual */

.szp-cart-item-visual img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: contain !important;

    padding: 4px !important;
}


/* =========================================================
   CART ITEM CONTENT
========================================================= */

.szp-cart-item > div {
    min-width: 0 !important;
}

.szp-cart-item h4 {
    width: 100% !important;

    margin: 0 !important;

    color: #f4f9ff !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.4 !important;

    white-space: normal !important;
    overflow-wrap: break-word !important;
}

.szp-cart-item p {
    margin: 4px 0 0 !important;

    color: #708396 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 9px !important;

    line-height: 1.5 !important;

    white-space: normal !important;
}


/* =========================================================
   QUANTITY CONTROLS
========================================================= */

.szp-cart-item button {
    font-family: "Poppins", sans-serif !important;
}

.szp-cart-quantity {
    display: inline-flex !important;
    align-items: center !important;

    gap: 0 !important;

    margin-top: 8px !important;
}

.szp-cart-quantity button,
.szp-cart-qty-btn {
    width: 28px !important;
    min-width: 28px !important;

    height: 28px !important;
    min-height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(17,168,255,.18) !important;
    border-radius: 5px !important;

    color: #fff !important;

    background: rgba(17,168,255,.055) !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease !important;
}

.szp-cart-quantity button:hover,
.szp-cart-qty-btn:hover {
    border-color: var(--szp-blue) !important;

    color: #fff !important;

    background: rgba(17,168,255,.14) !important;
}


/* Quantity number */

.szp-cart-quantity span,
.szp-cart-quantity strong,
.szp-cart-qty-value {
    min-width: 28px !important;

    height: 28px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #e9f3fa !important;

    background: transparent !important;

    font-size: 11px !important;
    font-weight: 700 !important;
}


/* =========================================================
   REMOVE BUTTON
========================================================= */

.szp-cart-remove {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;

    margin: 7px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;

    outline: none !important;

    color: #718396 !important;

    background: transparent !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 10px !important;

    line-height: 1.4 !important;

    cursor: pointer !important;

    box-shadow: none !important;
}

.szp-cart-remove:hover {
    color: #ff6673 !important;

    background: transparent !important;
}


/* =========================================================
   CART FOOTER
========================================================= */

.szp-cart-footer {
    flex: 0 0 auto !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 18px !important;

    border-top: 1px solid rgba(17,168,255,.12) !important;

    background:
        linear-gradient(
            180deg,
            rgba(6,14,23,.96),
            rgba(5,11,18,1)
        ) !important;
}


/* =========================================================
   CART TOTAL
========================================================= */

.szp-cart-total {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #91a4b8 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 10px !important;

    line-height: 1.5 !important;
}

.szp-cart-total strong {
    color: #fff !important;

    font-size: 12px !important;
}


/* =========================================================
   REQUEST A QUOTE BUTTON
========================================================= */

.szp-cart-footer .szp-cart-quote,
.szp-cart-footer .request-quote,
.szp-cart-footer button[data-action="quote"] {
    width: 100% !important;

    min-height: 46px !important;

    margin: 12px 0 0 !important;
    padding: 0 15px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    border: 1px solid rgba(17,168,255,.25) !important;
    border-radius: 8px !important;

    color: #fff !important;

    background: rgba(17,168,255,.055) !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition: .3s ease !important;
}

.szp-cart-footer .szp-cart-quote:hover,
.szp-cart-footer .request-quote:hover,
.szp-cart-footer button[data-action="quote"]:hover {
    border-color: var(--szp-blue) !important;

    background: rgba(17,168,255,.11) !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.szp-cart-checkout {
    width: 100% !important;

    height: 52px !important;
    min-height: 52px !important;

    margin: 15px 0 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    border: 0 !important;
    border-radius: 9px !important;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        ) !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    text-align: center !important;

    cursor: pointer !important;

    box-shadow:
        0 8px 25px rgba(17,168,255,.14) !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease !important;
}

.szp-cart-checkout:hover {
    transform: translateY(-3px) !important;

    box-shadow:
        0 14px 35px rgba(17,168,255,.22) !important;
}


/* =========================================================
   CART INFORMATION / BULK ORDER NOTE
========================================================= */

.szp-cart-footer p {
    margin: 14px 0 0 !important;

    color: #aebfd0 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 11px !important;

    line-height: 1.7 !important;

    text-align: left !important;
}


/* =========================================================
   REMOVE WORDPRESS BUTTON STYLING
========================================================= */

.szp-cart-drawer button::before,
.szp-cart-drawer button::after {
    box-sizing: border-box !important;
}


/* Prevent Twenty Twenty button pseudo effects */

.szp-cart-drawer button:hover,
.szp-cart-drawer button:focus {
    text-decoration: none !important;
}

.szp-cart-drawer button:focus {
    outline: none !important;
}


/* =========================================================
   PREVENT THEME TEXT / LINK OVERRIDES
========================================================= */

.szp-cart-drawer a {
    color: inherit !important;
    text-decoration: none !important;
}

.szp-cart-drawer a:hover {
    text-decoration: none !important;
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.szp-cart-drawer,
.szp-cart-drawer * {
    max-width: 100% !important;
}

.szp-cart-drawer {
    overflow-x: hidden !important;
}


/* =========================================================
   HIDE GLOBAL SCROLL-TO-TOP WHILE CART IS OPEN
   Modern browsers
========================================================= */

body:has(.szp-cart-drawer.open) .scroll-to-top,
body:has(.szp-cart-drawer.open) .to-top,
body:has(.szp-cart-drawer.open) .back-to-top,
body:has(.szp-cart-drawer.open) .szp-scroll-top,
body:has(.szp-cart-drawer.open) .scroll-top {
    display: none !important;
}


/* =========================================================
   MOBILE CART
========================================================= */

@media (max-width: 600px) {

    .szp-cart-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .szp-cart-header {
        padding: 21px 18px !important;
    }

    .szp-cart-items {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .szp-cart-footer {
        padding: 16px !important;
    }

    .szp-cart-item {
        grid-template-columns: 60px minmax(0,1fr) auto !important;
        gap: 10px !important;
    }

    .szp-cart-item-visual {
        width: 60px !important;
        min-width: 60px !important;
        height: 70px !important;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 400px) {

    .szp-cart-header h3 {
        font-size: 18px !important;
    }

    .szp-cart-item {
        grid-template-columns: 55px minmax(0,1fr) !important;
    }

    .szp-cart-item > :last-child {
        grid-column: 2;
        justify-self: start;
    }

    .szp-cart-item-visual {
        width: 55px !important;
        min-width: 55px !important;
        height: 65px !important;
    }

}

/* =========================================================
   SZP QUOTE FORM
   SUBMISSION / LOADING STATE
========================================================= */

.szp-custom-submit.is-loading {
    pointer-events: none;
    opacity: .72;
    transform: none !important;
}

.szp-custom-submit.is-loading .szp-submit-text {
    display: none;
}

.szp-custom-submit.is-loading .szp-submit-loading {
    display: inline !important;
}


/* =========================================================
   QUOTE FORM MESSAGE
========================================================= */

.szp-quote-form-message {
    display: none;

    margin-top: 8px;
    padding: 12px 15px;

    border-radius: 9px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    line-height: 1.6;

    text-align: center;
}

.szp-quote-form-message.show {
    display: block;
}

.szp-quote-form-message.error {
    color: #ffb5bd;

    border: 1px solid rgba(255,80,100,.2);

    background: rgba(255,60,80,.06);
}


/* =========================================================
   SZP THANK YOU SCREEN
========================================================= */

.szp-quote-thank-you {
    width: 100%;
}

.szp-quote-thank-you[hidden] {
    display: none !important;
}

.szp-thank-you-box {
    position: relative;

    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(17,168,255,.18);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(17,168,255,.10),
            transparent 55%
        ),
        rgba(5,13,22,.92);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 60px rgba(17,168,255,.06);
}


/* =========================================================
   THANK YOU IMAGE
========================================================= */

.szp-thank-you-box > img {
    position: absolute;

    width: min(440px, 75%);

    height: auto;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    opacity: .95;

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   THANK YOU CONTENT
========================================================= */

.szp-thank-you-content {
    position: relative;
    z-index: 2;

    width: min(650px, 90%);

    padding: 45px 25px;

    text-align: center;
}


.szp-thank-you-content .szp-section-label {
    justify-content: center;

    margin-bottom: 15px;
}


.szp-thank-you-content h3 {
    margin: 10px 0 15px;

    color: #fff;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -2px;
}


.szp-thank-you-content h3 span {
    color: var(--szp-blue);
}


.szp-thank-you-content p {
    max-width: 520px;

    margin: 0 auto 30px;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.szp-thank-you-back {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border: 1px solid rgba(17,168,255,.3);

    border-radius: 9px;

    color: #fff;

    background: rgba(17,168,255,.06);

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}


.szp-thank-you-back:hover {
    border-color: var(--szp-blue);

    background: rgba(17,168,255,.12);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(17,168,255,.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .szp-thank-you-box {
        min-height: 400px;

        border-radius: 20px;
    }

    .szp-thank-you-box > img {
        width: 90%;
    }

    .szp-thank-you-content {
        padding: 35px 18px;
    }

    .szp-thank-you-content h3 {
        font-size: 48px;
    }

    .szp-thank-you-content p {
        font-size: 12px;
    }

}







/*
============================================================
 SZP HOME PAGE — COMPLETE REPLACEMENT STYLE.CSS
 Designed specifically for the supplied home.php
 ============================================================
 Classes used here match the PHP exactly:
 .szp-home-page
 .szp-home-hero
 .szp-home-intro
 .szp-home-manufacturing
 .szp-home-industries
 .szp-home-why
 .szp-home-solutions
 .szp-home-ai
 .szp-home-custom
 .szp-home-final-cta

 The design basis follows the supplied SZP master stylesheet:
 dark industrial UI, #11A8FF accent, Poppins, glass surfaces,
 blue glow, responsive layouts and reduced-motion support.
============================================================
*/

/* ============================================================
   01. GLOBAL / RESET
============================================================ */

:root {
    --szp-blue: #11A8FF;
    --szp-blue-bright: #20B8FF;
    --szp-blue-dark: #087BC1;

    --szp-bg: #07111B;
    --szp-bg-2: #091722;
    --szp-bg-3: #0D1B28;

    --szp-surface: rgba(255,255,255,.045);
    --szp-surface-strong: rgba(255,255,255,.075);
    --szp-border: rgba(255,255,255,.10);
    --szp-border-blue: rgba(17,168,255,.25);

    --szp-white: #fff;
    --szp-text: #EAF3F9;
    --szp-muted: #9FB2C1;
    --szp-muted-2: #718594;

    --szp-container: 1380px;
    --szp-transition: .35s cubic-bezier(.22,.61,.36,1);
    --szp-shadow: 0 25px 80px rgba(0,0,0,.28);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--szp-bg);
    color: var(--szp-white);
    overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
    font-family: "Poppins", sans-serif;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--szp-blue);
    outline-offset: 4px;
}

/* WordPress safety */
.szp-home-page,
.szp-home-page * ,
.szp-home-page *::before,
.szp-home-page *::after {
    box-sizing: border-box;
}

.szp-home-page h1,
.szp-home-page h2,
.szp-home-page h3,
.szp-home-page h4,
.szp-home-page p {
    margin-top: 0;
}

.szp-home-page ul,
.szp-home-page ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.szp-home-page a:hover {
    text-decoration: none;
}

/* =========================================================
   SZP CUSTOM HEADER
   MODERN INDUSTRIAL / GLASS NAVIGATION
   COMPLETE HEADER CSS
========================================================= */


/* =========================================================
   01. HEADER VARIABLES
========================================================= */

:root {

    --szp-blue: #11A8FF;
    --szp-blue-light: #29C2FF;
    --szp-blue-dark: #087FD1;

    --szp-white: #ffffff;

    --szp-text: rgba(255, 255, 255, 0.88);
    --szp-muted: rgba(255, 255, 255, 0.60);

    --szp-header-bg: rgba(8, 14, 22, 0.78);
    --szp-header-border: rgba(255, 255, 255, 0.10);

    --szp-glass:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.035)
        );

    --szp-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35);

    --szp-blue-glow:
        0 0 12px rgba(17, 168, 255, 0.55),
        0 0 30px rgba(17, 168, 255, 0.20);

    --szp-header-height: 86px;
}


/* =========================================================
   02. GLOBAL HEADER RESET
========================================================= */

.szp-header,
.szp-header *,
.szp-header *::before,
.szp-header *::after {
    box-sizing: border-box;
}

.szp-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: var(--szp-header-height);

    z-index: 9999;

    font-family: "Poppins", sans-serif;

    background:
        linear-gradient(
            180deg,
            rgba(6, 13, 21, 0.90),
            rgba(6, 13, 21, 0.68)
        );

    border-bottom:
        1px solid var(--szp-header-border);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);

}


/* =========================================================
   03. HEADER INNER
========================================================= */

.szp-header-inner {

    width: min(100% - 70px, 1500px);

    height: 100%;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    column-gap: 35px;

}


/* =========================================================
   04. LOGO
========================================================= */

.szp-logo {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    width: 150px;
    height: 64px;

    flex-shrink: 0;

    text-decoration: none;

    z-index: 10;

}

.szp-logo img {

    display: block;

    width: auto;

    max-width: 145px;
    max-height: 58px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;

}

.szp-logo:hover img {

    transform: scale(1.035);

    filter:
        drop-shadow(
            0 0 8px rgba(17, 168, 255, 0.40)
        );

}


/* =========================================================
   05. CENTER NAVIGATION AREA
========================================================= */

.szp-header-navigation {

    min-width: 0;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   06. NAVBAR
========================================================= */

.szp-navbar {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

}


/* =========================================================
   07. NAVIGATION LIST
========================================================= */

.szp-nav-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(22px, 2.2vw, 38px);

    margin: 0;

    padding: 0;

    list-style: none;

    white-space: nowrap;

}


/* =========================================================
   08. NAVIGATION ITEM
========================================================= */

.szp-nav-item {

    position: relative;

    margin: 0;
    padding: 0;

    list-style: none;

}


/* =========================================================
   09. NAVIGATION LINKS
========================================================= */

.szp-nav-item > a {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    height: 46px;

    padding: 0;

    color: var(--szp-text);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        color 0.30s ease,
        text-shadow 0.30s ease;

}


/* =========================================================
   10. NAVIGATION UNDERLINE
========================================================= */

.szp-nav-item > a::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 2px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.75);

    transform: translateX(-50%);

    transition:
        width 0.30s ease;

}


/* =========================================================
   11. NAVIGATION HOVER
========================================================= */

.szp-nav-item > a:hover {

    color: var(--szp-blue-light);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.35);

}

.szp-nav-item > a:hover::after {

    width: 75%;

}


/* =========================================================
   12. ACTIVE NAVIGATION
========================================================= */

.szp-nav-item > a.active {

    color: var(--szp-blue);

    text-shadow:
        0 0 14px rgba(17, 168, 255, 0.38);

}

.szp-nav-item > a.active::after {

    width: 75%;

}


/* =========================================================
   13. RIGHT SIDE
========================================================= */

.szp-nav-right {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;

    height: 100%;

    flex-shrink: 0;

    z-index: 1100;

}


/*
   VISUAL ORDER

   SEARCH
   THEME
   GET STARTED

   PHP ORDER DOES NOT NEED TO CHANGE.
*/

.szp-search-container {
    order: 1;
}

.szp-theme-toggle {
    order: 2;
}

.szp-nav-btn {
    order: 3;
}


/* =========================================================
   14. SEARCH CONTAINER
========================================================= */

.szp-search-container {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    z-index: 1200;

}


/* =========================================================
   15. SEARCH BUTTON
   NO CIRCLE / NO BACKGROUND
========================================================= */

.szp-search-btn {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 46px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 0;

    outline: none;

    color:
        rgba(255, 255, 255, 0.82);

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    transition:
        color 0.30s ease,
        transform 0.30s ease,
        text-shadow 0.30s ease;

}


/* SEARCH HOVER */

.szp-search-btn:hover {

    color: var(--szp-blue-light);

    background: transparent;

    box-shadow: none;

    transform: translateY(-1px);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.55);

}


/* SEARCH ICON */

.szp-search-btn i {

    font-size: 16px;

    line-height: 1;

    pointer-events: none;

}


/* =========================================================
   16. EXPANDED SEARCH BOX
========================================================= */

.szp-search-box {

    position: absolute;

    top: 50%;
    right: 0;

    width: 0;
    height: 46px;

    display: flex;

    align-items: center;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    border:
        1px solid transparent;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            rgba(15, 28, 42, 0.94),
            rgba(10, 19, 30, 0.90)
        );

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    transform:
        translateY(-50%)
        scaleX(0.85);

    transform-origin: right center;

    transition:
        width 0.40s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.40s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.30s ease;

    z-index: 1250;

}


/* =========================================================
   17. SEARCH OPEN
========================================================= */

.szp-search-container.is-open
.szp-search-box {

    width: 230px;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    border-color:
        rgba(17, 168, 255, 0.38);

    transform:
        translateY(-50%)
        scaleX(1);

}


/* =========================================================
   18. HIDE SEARCH ICON WHEN OPEN
========================================================= */

.szp-search-container.is-open
.szp-search-btn {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


/* =========================================================
   19. SEARCH BOX ICON
========================================================= */

.szp-search-box-icon {

    flex-shrink: 0;

    margin-left: 15px;
    margin-right: 10px;

    color: var(--szp-blue);

    font-size: 14px;

    text-shadow:
        0 0 10px rgba(17, 168, 255, 0.45);

}


/* =========================================================
   20. SEARCH INPUT
========================================================= */

.szp-search-input {

    width: 100%;

    min-width: 0;

    height: 100%;

    padding: 0;

    margin: 0;

    border: 0;

    outline: none;

    color: #ffffff;

    background: transparent !important;

    background-color: transparent !important;

    box-shadow: none;

    appearance: none;
    -webkit-appearance: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 400;

    letter-spacing: 0.02em;

}


/* PLACEHOLDER */

.szp-search-input::placeholder {

    color:
        rgba(255, 255, 255, 0.48);

    opacity: 1;

}


/* =========================================================
   21. SEARCH CLOSE
========================================================= */

.szp-search-close {

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 100%;

    padding: 0;
    margin: 0;

    border: 0;

    color:
        rgba(255, 255, 255, 0.60);

    background: transparent;

    cursor: pointer;

    outline: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}

.szp-search-close:hover {

    color: var(--szp-blue-light);

    background: transparent;

    transform: rotate(90deg);

}


/* =========================================================
   22. THEME TOGGLE
   NO CIRCLE / NO BACKGROUND
========================================================= */

.szp-theme-toggle {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 46px;

    padding: 0;
    margin: 0;

    border: 0;

    border-radius: 0;

    outline: none;

    color:
        rgba(255, 255, 255, 0.82);

    background: transparent;

    box-shadow: none;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        color 0.30s ease,
        transform 0.30s ease,
        text-shadow 0.30s ease;

}


/* THEME ICON */

.szp-theme-toggle i {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.35s ease,
        color 0.30s ease;

}


/* THEME HOVER */

.szp-theme-toggle:hover {

    color: var(--szp-blue-light);

    background: transparent;

    box-shadow: none;

    transform: translateY(-1px);

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.50);

}


/* ICON ROTATION */

.szp-theme-toggle:hover i {

    transform: rotate(20deg);

}


/* =========================================================
   23. GET STARTED BUTTON
========================================================= */

.szp-nav-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 150px;

    height: 46px;

    padding: 0 20px;

    border:
        1px solid rgba(17, 168, 255, 0.65);

    border-radius: 10px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.22),
            rgba(17, 168, 255, 0.08)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 0 rgba(17, 168, 255, 0);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-decoration: none;

    white-space: nowrap;

    overflow: hidden;

    transition:
        color 0.30s ease,
        background 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease,
        transform 0.30s ease;

}


/* BUTTON SHINE */

.szp-nav-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.60s ease;

}


/* GET STARTED HOVER */

.szp-nav-btn:hover {

    color: #ffffff;

    border-color:
        var(--szp-blue);

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.34),
            rgba(17, 168, 255, 0.13)
        );

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.28),
        0 0 35px rgba(17, 168, 255, 0.10);

    transform: translateY(-1px);

}

.szp-nav-btn:hover::before {

    left: 140%;

}


/* GET STARTED ICON */

.szp-nav-btn i {

    font-size: 12px;

    transition:
        transform 0.30s ease;

}

.szp-nav-btn:hover i {

    transform: translateX(4px);

}


/* =========================================================
   24. MOBILE MENU TOGGLE
========================================================= */

.szp-menu-toggle {

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    width: 46px;
    height: 46px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.045);

    cursor: pointer;

}

.szp-menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform 0.30s ease,
        opacity 0.30s ease;

}


/* =========================================================
   25. HEADER GLOW
========================================================= */

.szp-header-glow {

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(17, 168, 255, 0.10) 15%,
            var(--szp-blue) 50%,
            rgba(17, 168, 255, 0.10) 85%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.55),
        0 0 25px rgba(17, 168, 255, 0.20);

}


/* =========================================================
   26. SCROLLED HEADER
========================================================= */

.szp-header.scrolled {

    background:
        linear-gradient(
            180deg,
            rgba(5, 11, 18, 0.96),
            rgba(5, 11, 18, 0.90)
        );

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);

}


/* =========================================================
   27. LIGHT THEME
========================================================= */

body.szp-light-theme .szp-header {

    background:
        linear-gradient(
            180deg,
            rgba(235, 239, 244, 0.94),
            rgba(225, 230, 236, 0.88)
        );

    border-bottom:
        1px solid rgba(20, 30, 42, 0.10);

    box-shadow:
        0 10px 35px rgba(20, 30, 42, 0.12);

}


/* LIGHT NAV TEXT */

body.szp-light-theme .szp-nav-item > a {

    color:
        rgba(25, 35, 46, 0.86);

}

body.szp-light-theme .szp-nav-item > a:hover {

    color: var(--szp-blue);

}

body.szp-light-theme .szp-nav-item > a.active {

    color: var(--szp-blue);

}


/* LIGHT SEARCH */

body.szp-light-theme .szp-search-btn {

    color:
        rgba(25, 35, 46, 0.82);

    background: transparent;

}

body.szp-light-theme .szp-search-btn:hover {

    color: var(--szp-blue);

    background: transparent;

}


/* LIGHT THEME BUTTON */

body.szp-light-theme .szp-theme-toggle {

    color:
        rgba(25, 35, 46, 0.82);

    background: transparent;

}

body.szp-light-theme .szp-theme-toggle:hover {

    color: var(--szp-blue);

    background: transparent;

}


/* LIGHT SEARCH BOX */

body.szp-light-theme .szp-search-box {

    background:
        linear-gradient(
            135deg,
            rgba(239, 243, 247, 0.97),
            rgba(222, 228, 235, 0.96)
        );

    border-color:
        rgba(17, 168, 255, 0.28);

    box-shadow:
        0 15px 40px rgba(20, 30, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75);

}

body.szp-light-theme .szp-search-input {

    color:
        #202730;

}

body.szp-light-theme .szp-search-input::placeholder {

    color:
        rgba(32, 39, 48, 0.52);

}

body.szp-light-theme .szp-search-close {

    color:
        rgba(32, 39, 48, 0.58);

}


/* LIGHT SCROLLED */

body.szp-light-theme .szp-header.scrolled {

    background:
        linear-gradient(
            180deg,
            rgba(228, 233, 239, 0.98),
            rgba(220, 226, 233, 0.95)
        );

    box-shadow:
        0 15px 45px rgba(20, 30, 42, 0.16);

}


/* =========================================================
   28. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .szp-header-inner {

        width:
            min(100% - 90px, 1600px);

        column-gap: 45px;

    }

    .szp-nav-links {

        gap: 38px;

    }

    .szp-nav-item > a {

        font-size: 12px;

    }

}


/* =========================================================
   29. STANDARD DESKTOP
========================================================= */

@media (max-width: 1250px) {

    .szp-header-inner {

        width:
            calc(100% - 45px);

        column-gap: 22px;

    }

    .szp-nav-links {

        gap: 20px;

    }

    .szp-nav-item > a {

        font-size: 11px;

    }

    .szp-nav-btn {

        min-width: 135px;

        padding: 0 16px;

    }

}


/* =========================================================
   30. TABLET LANDSCAPE
========================================================= */

@media (max-width: 1100px) {

    .szp-header {

        height: 78px;

    }

    .szp-header-inner {

        width:
            calc(100% - 35px);

        grid-template-columns:
            auto auto;

        justify-content:
            space-between;

    }

    .szp-header-navigation {

        display: none;

    }

    .szp-nav-right {

        gap: 10px;

    }

    .szp-menu-toggle {

        display: flex;

    }

    .szp-search-container {

        display: flex;

    }

}


/* =========================================================
   31. TABLET
========================================================= */

@media (max-width: 768px) {

    .szp-header-inner {

        width:
            calc(100% - 28px);

    }

    .szp-logo {

        width: 130px;

    }

    .szp-logo img {

        max-width: 125px;
        max-height: 52px;

    }

    .szp-nav-btn {

        min-width: auto;

        width: 46px;

        padding: 0;

    }

    .szp-nav-btn span {

        display: none;

    }

    .szp-nav-btn i {

        margin: 0;

        font-size: 14px;

    }

    .szp-search-container {

        width: 40px;

        flex-basis: 40px;

    }

    .szp-theme-toggle {

        width: 38px;

    }

    .szp-search-container.is-open
    .szp-search-box {

        width:
            min(300px, calc(100vw - 90px));

    }

}


/* =========================================================
   32. MOBILE
========================================================= */

@media (max-width: 520px) {

    .szp-header {

        height: 72px;

    }

    .szp-header-inner {

        width:
            calc(100% - 20px);

    }

    .szp-logo {

        width: 115px;

    }

    .szp-logo img {

        max-width: 112px;
        max-height: 48px;

    }

    .szp-nav-right {

        gap: 7px;

    }

    .szp-search-btn,
    .szp-search-container {

        width: 42px;

        height: 42px;

    }

    .szp-theme-toggle {

        width: 36px;

        height: 42px;

    }

    .szp-nav-btn {

        width: 42px;

        height: 42px;

    }

    .szp-search-container.is-open
    .szp-search-box {

        width:
            calc(100vw - 90px);

        height: 42px;

    }

}


/* =========================================================
   33. VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .szp-logo {

        width: 100px;

    }

    .szp-logo img {

        max-width: 98px;

    }

    .szp-nav-right {

        gap: 5px;

    }

    .szp-theme-toggle {

        width: 34px;

    }

}


/* =========================================================
   34. ACCESSIBILITY
========================================================= */

.szp-search-btn:focus-visible,
.szp-theme-toggle:focus-visible,
.szp-search-close:focus-visible,
.szp-nav-btn:focus-visible {

    outline:
        2px solid var(--szp-blue);

    outline-offset: 3px;

}


/* =========================================================
   35. REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .szp-header *,
    .szp-header *::before,
    .szp-header *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}
```




/* ============================================================
   02. HOME CONTAINER / COMMON TYPOGRAPHY
============================================================ */

.szp-home-page {
    position: relative;
    width: 100%;
    background: var(--szp-bg);
    overflow: hidden;
}

.szp-home-container {
    width: min(calc(100% - 80px), var(--szp-container));
    margin: 0 auto;
}

.szp-home-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--szp-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.8px;
    line-height: 1;
    text-transform: uppercase;
}

.szp-home-section-eyebrow > span {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--szp-blue);
    box-shadow: 0 0 12px rgba(17,168,255,.7);
}

.szp-home-section-title {
    margin: 20px 0 0;
    max-width: 850px;
    color: var(--szp-white);
    font-size: clamp(38px,5vw,72px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.8px;
}

.szp-home-section-title span {
    color: var(--szp-blue);
    text-shadow: 0 0 30px rgba(17,168,255,.18);
}

.szp-home-section-lead {
    max-width: 760px;
    margin: 25px 0 0;
    color: var(--szp-muted);
    font-size: 15px;
    line-height: 1.9;
}

.szp-home-section-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.szp-home-section-header-centered .szp-home-section-title {
    max-width: 900px;
}

.szp-home-section-header-centered .szp-home-section-lead {
    max-width: 720px;
}

/* ============================================================
   03. COMMON BUTTONS
============================================================ */

.szp-home-primary-btn,
.szp-home-secondary-btn {
    position: relative;
    min-height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    overflow: hidden;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--szp-transition),
                box-shadow var(--szp-transition),
                background var(--szp-transition),
                border-color var(--szp-transition),
                color var(--szp-transition);
}

.szp-home-primary-btn {
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    background: linear-gradient(135deg,var(--szp-blue),#087FD0);
    box-shadow: 0 12px 35px rgba(17,168,255,.20);
}

.szp-home-primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
    transform: skewX(-20deg);
    transition: left .65s ease;
}

.szp-home-primary-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(17,168,255,.30);
    filter: brightness(1.05);
}

.szp-home-primary-btn:hover::before {
    left: 140%;
}

.szp-home-primary-btn i {
    transition: transform .3s ease;
}

.szp-home-primary-btn:hover i {
    transform: translateX(4px);
}

.szp-home-secondary-btn {
    border: 1px solid rgba(255,255,255,.17);
    color: #fff;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.szp-home-secondary-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    border-color: rgba(17,168,255,.45);
    background: rgba(17,168,255,.08);
}

/* ============================================================
   SZP HOME HERO
   MODERN SLIDE-BY-SLIDE HERO SYSTEM
============================================================ */

.szp-home-hero {
    position: relative;
    width: 100%;
    min-height: max(760px, 100svh);
    overflow: hidden;
    isolation: isolate;
    background: #050c13;
}


/* ============================================================
   HERO SLIDER
============================================================ */

.szp-home-hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}


/* ============================================================
   INDIVIDUAL SLIDE
============================================================ */

.szp-home-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .9s ease,
        visibility .9s ease;
}

.szp-home-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}


/* ============================================================
   SLIDE BACKGROUND
============================================================ */

.szp-home-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.szp-home-slide-bg img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.05);

    /* Make the original image clearer */
    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);

    transition:
        transform 8s cubic-bezier(.16,.65,.3,1),
        filter 0.8s ease;
}

.szp-home-slide.active .szp-home-slide-bg img {
    transform: scale(1);

    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);
}

/* ============================================================
   HERO IMAGE OVERLAY — BRIGHT / CLEAR CINEMATIC
============================================================ */

.szp-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 15, 0.62) 0%,
            rgba(3, 9, 15, 0.42) 24%,
            rgba(3, 9, 15, 0.16) 50%,
            rgba(3, 9, 15, 0.06) 75%,
            rgba(3, 9, 15, 0.20) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 9, 15, 0.12) 0%,
            transparent 45%,
            rgba(3, 9, 15, 0.38) 100%
        );
}

/* ============================================================
   GRID
============================================================ */

.szp-home-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(17,168,255,.10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17,168,255,.10) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 72%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 72%
        );
}


/* ============================================================
   HERO CONTAINER
============================================================ */

.szp-home-hero-container {
    position: relative;
    z-index: 5;

    width: min(
        calc(100% - 80px),
        var(--szp-container)
    );

    min-height: max(760px, 100svh);

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding:
        130px
        0
        110px;
}


/* ============================================================
   HERO CONTENT
============================================================ */

.szp-home-hero-content {
    width: min(650px, 58%);

    padding-top: 20px;
}


/* ============================================================
   EYEBROW
============================================================ */

.szp-home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

    color: rgba(255,255,255,.76);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2.6px;
    line-height: 1.4;

    text-transform: uppercase;
}

.szp-home-eyebrow-line {
    width: 38px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--szp-blue);

    box-shadow:
        0 0 14px rgba(17,168,255,.75);
}


/* ============================================================
   MAIN HERO TITLE
============================================================ */

.szp-home-hero-title {
    margin: 0;

    max-width: 680px;

    color: #fff;

    font-size: clamp(
        46px,
        5.3vw,
        78px
    );

    font-weight: 700;

    line-height: .94;

    letter-spacing: -3px;
}

.szp-home-title-line {
    display: block;
}

.szp-home-title-accent {
    display: block;

    color: var(--szp-blue);

    text-shadow:
        0 0 35px rgba(17,168,255,.25);
}


/* ============================================================
   HERO DESCRIPTION
============================================================ */

.szp-home-hero-description {
    width: 100%;
    max-width: 590px;

    margin:
        24px
        0
        0;

    color: rgba(235,245,250,.78);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   HERO BUTTONS
============================================================ */

.szp-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    margin-top: 27px;
}


/* ============================================================
   TRUST INFORMATION
============================================================ */

.szp-home-hero-trust {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 38px;
}

.szp-home-trust-item {
    display: flex;
    flex-direction: column;

    gap: 5px;

    min-width: 58px;
}

.szp-home-trust-number {
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;
}

.szp-home-trust-label {
    color: rgba(255,255,255,.45);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.szp-home-trust-divider {
    width: 1px;
    height: 28px;

    background: rgba(255,255,255,.17);
}


/* ============================================================
   SIDE INFORMATION
============================================================ */

.szp-home-hero-side {
    position: absolute;

    right: -15px;
    bottom: 175px;

    display: flex;
    align-items: center;

    gap: 14px;

    transform:
        rotate(90deg)
        translateX(50%);

    transform-origin: right center;

    opacity: .65;
}

.szp-home-hero-side span {
    color: rgba(255,255,255,.48);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2.5px;

    white-space: nowrap;
}

.szp-home-hero-side i {
    display: block;

    width: 58px;
    height: 1px;

    background: rgba(17,168,255,.75);

    box-shadow:
        0 0 8px rgba(17,168,255,.45);
}





/* ============================================================
   HERO CONTROLS
============================================================ */

.szp-home-slider-controls {
    position: absolute;
    left: max(40px, calc((100% - var(--szp-container)) / 2));
    right: auto;
    bottom: 50px;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 15px;

    pointer-events: auto;
}


/* ============================================================
   SLIDER ARROWS
============================================================ */

.szp-home-slider-arrow {
    width: 42px;
    height: 42px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;

    color: #fff;
    background: rgba(255,255,255,.045);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.szp-home-slider-arrow:hover {
    transform: translateY(-3px);

    border-color: rgba(17,168,255,.55);

    background: rgba(17,168,255,.10);

    box-shadow:
        0 0 20px rgba(17,168,255,.16);
}

.szp-home-slider-arrow i {
    font-size: 12px;
}


/* ============================================================
   SLIDER DOTS / PROGRESS LINE
============================================================ */

.szp-home-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0 7px;
}

.szp-home-slider-dot {
    width: 22px;
    height: 3px;

    padding: 0;

    border: 0;
    border-radius: 50px;

    background: rgba(255,255,255,.25);

    cursor: pointer;

    transition:
        width .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.szp-home-slider-dot.active {
    width: 48px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,.55);
}


/* ============================================================
   SCROLL INDICATOR
============================================================ */

.szp-home-scroll-indicator {
    position: absolute;

    right: max(40px, calc((100% - var(--szp-container)) / 2));
    bottom: 43px;

    z-index: 20;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.55);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    transition: color .3s ease;
}

.szp-home-scroll-indicator:hover {
    color: #fff;
}

.szp-home-scroll-line {
    width: 42px;
    height: 1px;

    background: rgba(255,255,255,.35);
}

.szp-home-scroll-indicator i {
    color: var(--szp-blue);
    font-size: 10px;

    animation:
        szpHomeScrollBounce 1.7s ease-in-out infinite;
}


/* ============================================================
   SCROLL ANIMATION
============================================================ */

@keyframes szpHomeScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}

/* ============================================================
   SCROLL INDICATOR
============================================================ */

.szp-home-scroll-indicator {
    position: absolute;

    right: max(
        40px,
        calc((100% - var(--szp-container)) / 2)
    );

    bottom: 48px;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.48);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    transition:
        color .3s ease;
}

.szp-home-scroll-indicator:hover {
    color: #fff;
}

.szp-home-scroll-line {
    width: 38px;
    height: 1px;

    background: rgba(255,255,255,.32);
}

.szp-home-scroll-indicator i {
    color: var(--szp-blue);

    font-size: 9px;

    animation:
        szpHomeScrollBounce
        1.7s
        ease-in-out
        infinite;
}


/* ============================================================
   SLIDE CONTENT ENTRANCE ANIMATION
============================================================ */

.szp-home-slide .szp-home-hero-content {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .8s ease .15s,
        transform .9s cubic-bezier(.16,.65,.3,1) .15s;
}

.szp-home-slide.active .szp-home-hero-content {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 900px) {

    .szp-home-hero {
        min-height: 760px;
    }

    .szp-home-hero-container {
        width: calc(100% - 40px);

        min-height: 760px;

        padding:
            120px
            0
            130px;
    }

    .szp-home-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .szp-home-hero-title {
        font-size: clamp(
            43px,
            9vw,
            68px
        );

        letter-spacing: -2.5px;
    }

    .szp-home-hero-description {
        max-width: 540px;
        font-size: 12px;
    }

    .szp-home-hero-side {
        display: none;
    }

    .szp-home-slider-controls {
        left: 20px;
        right: auto;
        bottom: 35px;
    }

    .szp-home-scroll-indicator {
        right: 20px;
        bottom: 35px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 600px) {

    .szp-home-hero {
        min-height: 720px;
    }

    .szp-home-hero-container {
        width: calc(100% - 32px);

        min-height: 720px;

        padding:
            105px
            0
            120px;

        align-items: center;
    }

    .szp-home-hero-eyebrow {
        font-size: 7px;
        letter-spacing: 1.8px;

        margin-bottom: 18px;
    }

    .szp-home-eyebrow-line {
        width: 25px;
    }

    .szp-home-hero-title {
        font-size: clamp(
            38px,
            11vw,
            55px
        );

        line-height: .96;

        letter-spacing: -2px;
    }

    .szp-home-hero-description {
        margin-top: 18px;

        font-size: 11px;

        line-height: 1.7;
    }

    .szp-home-hero-actions {
        margin-top: 22px;
    }

    .szp-home-hero-trust {
        margin-top: 30px;

        gap: 12px;
    }

    .szp-home-trust-number {
        font-size: 13px;
    }

    .szp-home-trust-label {
        font-size: 6px;
    }

    .szp-home-trust-divider {
        height: 24px;
    }

    .szp-home-slider-controls {
        bottom: 28px;
        left: 16px;

        gap: 8px;
    }

    .szp-home-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .szp-home-slider-dot.active {
        width: 35px;
    }

    .szp-home-scroll-indicator {
        right: 16px;
        bottom: 30px;
    }

    .szp-home-scroll-text {
        display: none;
    }

}


/* ============================================================
   SCROLL ANIMATION
============================================================ */

@keyframes szpHomeScrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}
/* ============================================================
   05. COMPANY INTRO / OVERVIEW
============================================================ */

.szp-home-intro {
    position: relative;
    padding: 145px 0 0;
    background: linear-gradient(180deg,#07111B 0%,#091722 100%);
    overflow: hidden;
}

.szp-home-intro::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.08),transparent 68%);
    pointer-events: none;
}

.szp-home-timeline {
    display: grid;
    grid-template-columns: 1fr 90px 1fr 90px 1fr;
    align-items: stretch;
    margin-top: 85px;
}

 /* =========================================================
    SZP HOME TIMELINE ITEM
    LIGHT THEME
 ========================================================= */

html[data-theme="light"] .szp-home-timeline-item {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border: 1px solid #1578b3;
    border-radius: 20px;
    background: #deddff !important;
    color: #2e2e2e;

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


/* LIGHT THEME — HOVER */

html[data-theme="light"] .szp-home-timeline-item:hover {
    transform: translateY(-8px);
	border-color: #1578b3;
    background: #e4e2ff !important;
}


.szp-home-timeline-number {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.szp-home-timeline-year {
    margin-top: 18px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
}

.szp-home-timeline-item h3 {
    margin: 15px 0 8px;
    color: #0093ff;
    font-size: 18px;
    font-weight: 600;
}

.szp-home-timeline-item p {
    margin: 0;
    color: #5f5f5f;
    font-size: 11px;
    line-height: 1.8;
}

.szp-home-timeline-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-home-timeline-connector::before {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(17,168,255,.18);
}

.szp-home-timeline-connector span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--szp-blue);
    box-shadow: 0 0 18px rgba(17,168,255,.65);
}

/* =========================================================
   SZP HOME — MINIMAL CINEMATIC IMAGE
========================================================= */

.szp-home-intro-image {
    position: relative;
    width: 100%;
    min-height: 650px;

    margin-top: 90px;

    overflow: hidden;
    isolation: isolate;

    background: #071018;
}


/* =========================================================
   IMAGE
========================================================= */

.szp-home-intro-image > img {
    position: absolute;
    inset: 0;
filter: blur(8px) brightness(40%);
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: -3;

    transform: scale(1.02);
}


/* =========================================================
   CINEMATIC DARK OVERLAY
========================================================= */

.szp-home-image-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(4, 10, 16, 0.88) 0%,
            rgba(4, 10, 16, 0.62) 38%,
            rgba(4, 10, 16, 0.20) 75%,
            rgba(4, 10, 16, 0.35) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4, 10, 16, 0.10) 0%,
            rgba(4, 10, 16, 0.05) 50%,
            rgba(4, 10, 16, 0.75) 100%
        );
}


/* =========================================================
   SUBTLE TECHNICAL GRID
========================================================= */

.szp-home-image-grid {
    position: absolute;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: 0.08;

    background-image:
        linear-gradient(
            rgba(17, 168, 255, 0.55) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 168, 255, 0.55) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            90deg,
            black 0%,
            transparent 75%
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            black 0%,
            transparent 75%
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.szp-home-image-content {
    position: relative;

    z-index: 3;

    width: min(1200px, calc(100% - 100px));

    min-height: 650px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.szp-home-image-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;

        color: #fff;
    text-shadow: 0 0 8px rgb(4 43 133), 0 0 22px #11a8ff, 0 0 45px rgba(17, 168, 255, 0.20);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.25em;

    text-transform: uppercase;
}


.szp-home-image-eyebrow-line {
    width: 45px;
    height: 1px;

    background: #11A8FF;

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.9),
        0 0 18px rgba(17, 168, 255, 0.55);
}


/* =========================================================
   BOLD HEADING
========================================================= */

.szp-home-image-title {
    max-width: 850px;

    margin: 0;

    color: #18168f;
    text-shadow: 0 0 8px rgb(161 161 161), 0 0 22px rgb(137 135 239), 0 0 45px rgba(17, 168, 255, 0.20);

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;

    text-transform: none;
}


/* BLUE GLOWING WORDS */

.szp-home-image-title span {
    color: #ffffff;

/*     text-shadow:
        0 0 8px rgba(17, 168, 255, 0.65),
        0 0 22px rgba(17, 168, 255, 0.42),
        0 0 45px rgba(17, 168, 255, 0.20); */
}


/* =========================================================
   SMALL TECHNICAL ACCENT
========================================================= */

.szp-home-image-accent {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.22em;
}


.szp-home-image-accent span {
    width: 28px;
    height: 1px;

    background: rgba(17, 168, 255, 0.65);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.7);
}


/* =========================================================
   SIDE LABEL
========================================================= */

.szp-home-image-side-label {
    position: absolute;

    right: 38px;
    top: 50%;

    z-index: 4;

    display: flex;
    align-items: center;
    gap: 14px;

    transform:
        translateY(-50%)
        rotate(-90deg);

    color: rgba(255, 255, 255, 0.38);

    font-size: 9px;

    letter-spacing: 0.22em;
}


.szp-home-image-side-label span {
    color: #11A8FF;

    font-weight: 800;

    text-shadow:
        0 0 12px rgba(17, 168, 255, 0.8);
}


.szp-home-image-side-label i {
    width: 42px;
    height: 1px;

    background: #11A8FF;

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.8);
}


.szp-home-image-side-label strong {
    font-weight: 600;
}


/* =========================================================
   BOTTOM CAPTION
========================================================= */

.szp-home-image-caption {
    position: absolute;

    right: 55px;
    bottom: 35px;

    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}


.szp-home-image-caption span {
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;
}


html[data-theme="light"] .szp-home-image-caption strong {
     color: #18168f;
    text-shadow: 0 0 8px rgb(161 161 161), 0 0 22px rgb(137 135 239), 0 0 38px rgba(17, 168, 255, 0.20);
font-size: clamp(25px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -1px;
}


/* =========================================================
   BLUE GLOWING BOTTOM LINE
========================================================= */

.szp-home-intro-image::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #11A8FF 0%,
            rgba(17, 168, 255, 0.45) 45%,
            transparent 100%
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.8),
        0 0 25px rgba(17, 168, 255, 0.35);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .szp-home-intro-image {
        min-height: 560px;
    }

    .szp-home-image-content {
        width: calc(100% - 50px);

        min-height: 560px;
    }

    .szp-home-image-title {
        font-size: clamp(42px, 8vw, 65px);
    }

    .szp-home-image-side-label {
        display: none;
    }

}


@media (max-width: 600px) {

    .szp-home-intro-image {
        min-height: 500px;
    }

    .szp-home-intro-image > img {
        object-position: center;
    }

    .szp-home-image-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 10, 16, 0.78) 0%,
                rgba(4, 10, 16, 0.45) 45%,
                rgba(4, 10, 16, 0.88) 100%
            );
    }

    .szp-home-image-content {
        width: calc(100% - 36px);

        min-height: 500px;
    }

    .szp-home-image-title {
        font-size: 42px;

        line-height: 1;
    }

    .szp-home-image-eyebrow {
        font-size: 9px;

        letter-spacing: 0.18em;
    }

    .szp-home-image-accent {
        font-size: 7px;

        letter-spacing: 0.14em;
    }

    .szp-home-image-caption {
        left: 18px;
        right: auto;

        bottom: 22px;

        align-items: flex-start;

        text-align: left;
    }

    .szp-home-image-caption span {
        font-size: 7px;
    }

    .szp-home-image-caption strong {
        font-size: 12px;
    }

}

.szp-home-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg,rgba(7,17,27,.55),transparent 60%);
}

.szp-home-image-caption {
    position: absolute;
    left: max(40px,calc((100% - var(--szp-container))/2));
    bottom: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.szp-home-image-caption span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.szp-home-image-caption strong {
    color: #fff;
    font-size: clamp(25px,3vw,42px);
    font-weight: 600;
    letter-spacing: -1px;
}

/* ============================================================
   06. MANUFACTURING
============================================================ */

.szp-home-manufacturing {
    position: relative;
    padding: 150px 0;
    background: #08141F;
    overflow: hidden;
}

.szp-home-manufacturing::before {
    content: "";
    position: absolute;
    top: 0;
    right: -250px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.08),transparent 68%);
    pointer-events: none;
}

.szp-home-manufacturing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
    gap: clamp(55px,7vw,120px);
    align-items: center;
}

.szp-home-manufacturing-media {
    position: relative;
    min-width: 0;
}

.szp-home-media-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.12 / 1;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background: #101B26;
    box-shadow: 0 35px 90px rgba(0,0,0,.35);
}

.szp-home-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(17,168,255,.15),transparent 42%);
    pointer-events: none;
}

.szp-home-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.16,.65,.3,1);
}

.szp-home-media-frame:hover img {
    transform: scale(1.045);
}

.szp-home-media-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 230px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 16px;
    background: rgba(7,17,27,.82);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.szp-home-media-badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.09);
}

.szp-home-media-badge strong,
.szp-home-media-badge small {
    display: block;
}

.szp-home-media-badge strong {
    color: #fff;
    font-size: 12px;
}

.szp-home-media-badge small {
    margin-top: 4px;
    color: var(--szp-muted);
    font-size: 8px;
}

.szp-home-manufacturing-content {
    max-width: 700px;
}

.szp-home-manufacturing-text {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.9;
}

.szp-home-manufacturing-text strong {
    color: #fff;
}

.szp-home-capability-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.szp-home-capability {
    min-height: 60px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    color: #dcebf3;
    background: rgba(255,255,255,.025);
    font-size: 10px;
    transition: border-color .3s ease,background .3s ease,transform .3s ease;
}

.szp-home-capability:hover {
    transform: translateY(-3px);
    border-color: rgba(17,168,255,.30);
    background: rgba(17,168,255,.05);
}

.szp-home-capability-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.07);
}

.szp-home-outline-btn {
    margin-top: 32px;
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(17,168,255,.30);
    border-radius: 11px;
    color: #fff;
    background: rgba(17,168,255,.035);
    font-size: 11px;
    font-weight: 700;
    transition: transform .3s ease,border-color .3s ease,background .3s ease;
}

.szp-home-outline-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.09);
}

.szp-home-outline-btn i {
    color: var(--szp-blue);
}

/* ============================================================
   07. INDUSTRIES
============================================================ */

.szp-home-industries {
    position: relative;
    padding: 150px 0;
    background: #07111B;
    overflow: hidden;
}

.szp-home-industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 70px;
}

.szp-home-industry-card {
    position: relative;
    min-height: 275px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 20px;
    background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
    transition: transform .45s cubic-bezier(.22,.61,.36,1),
                border-color .4s ease,
                background .4s ease,
                box-shadow .4s ease;
}

.szp-home-industry-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.13),transparent 68%);
    opacity: .6;
    transition: transform .5s ease,opacity .5s ease;
}

.szp-home-industry-card:hover {
    transform: translateY(-9px);
    border-color: rgba(17,168,255,.30);
    background: linear-gradient(145deg,rgba(17,168,255,.07),rgba(255,255,255,.02));
    box-shadow: 0 25px 60px rgba(0,0,0,.24);
}

.szp-home-industry-card:hover::before {
    transform: scale(1.5);
    opacity: 1;
}

.szp-home-industry-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(255,255,255,.22);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.szp-home-industry-icon {
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.22);
    border-radius: 15px;
    color: var(--szp-blue);
    background: rgba(17,168,255,.06);
    font-size: 20px;
    transition: transform .4s ease,background .4s ease;
}

.szp-home-industry-card:hover .szp-home-industry-icon {
    transform: scale(1.08);
    background: rgba(17,168,255,.12);
}

.szp-home-industry-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.szp-home-industry-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
}

.szp-home-industry-content p {
    margin: 0;
    max-width: 320px;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.7;
}

.szp-home-industry-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.025);
    font-size: 10px;
    transition: color .3s ease,background .3s ease,transform .3s ease;
}

.szp-home-industry-card:hover .szp-home-industry-arrow {
    color: #fff;
    background: var(--szp-blue);
    transform: translate(2px,-2px);
}

.szp-home-industry-card-featured {
    border-color: rgba(17,168,255,.22);
    background: linear-gradient(145deg,rgba(17,168,255,.09),rgba(255,255,255,.02));
}

/* ============================================================
   08. WHY SZP
============================================================ */

.szp-home-why {
    position: relative;
    padding: 150px 0;
    background: #06101A;
    overflow: hidden;
}

.szp-home-why::after {
    content: "";
    position: absolute;
    right: -300px;
    bottom: -300px;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.06),transparent 68%);
    pointer-events: none;
}

.szp-home-why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
    gap: 90px;
    align-items: start;
}

.szp-home-why-heading p {
    max-width: 390px;
    margin: 28px 0 0;
    color: var(--szp-muted);
    font-size: 14px;
    line-height: 1.9;
}

.szp-home-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.szp-home-why-card {
    position: relative;
    min-height: 230px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    transition: transform .4s ease,border-color .4s ease,background .4s ease;
}

.szp-home-why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.30);
    background: rgba(17,168,255,.045);
}

.szp-home-why-card-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: rgba(255,255,255,.18);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.szp-home-why-card > i {
    display: block;
    margin-bottom: 35px;
    color: var(--szp-blue);
    font-size: 25px;
    text-shadow: 0 0 20px rgba(17,168,255,.25);
}

.szp-home-why-card h3 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.szp-home-why-card p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 10px;
    line-height: 1.75;
}

/* ============================================================
   09. PRODUCT SOLUTIONS
============================================================ */

.szp-home-solutions {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(180deg,#08141F,#07111B);
}

.szp-home-solutions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.szp-home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(17,168,255,.35);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .3s ease,border-color .3s ease;
}

.szp-home-text-link:hover {
    color: var(--szp-blue);
    border-color: var(--szp-blue);
}

.szp-home-text-link i {
    color: var(--szp-blue);
    transition: transform .3s ease;
}

.szp-home-text-link:hover i {
    transform: translateX(5px);
}

.szp-home-solution-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 580px;
    margin-top: 60px;
}

.szp-home-solution-card {
    position: relative;
    min-height: 280px;
    padding: 35px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(145deg,#0E202F,#07121D);
    transition: transform .45s ease,border-color .45s ease,box-shadow .45s ease;
}

.szp-home-solution-card:hover {
    color: #fff;
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.34);
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.szp-home-solution-card-large {
    grid-row: span 2;
}

.szp-home-solution-glow {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(17,168,255,.16),transparent 68%);
    transition: transform .7s ease;
    pointer-events: none;
}

.szp-home-solution-card:hover .szp-home-solution-glow {
    transform: scale(1.3);
}

.szp-home-solution-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.szp-home-solution-content > span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.szp-home-solution-content h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
}

.szp-home-solution-card:not(.szp-home-solution-card-large) .szp-home-solution-content h3 {
    font-size: 25px;
}

.szp-home-solution-content p {
    max-width: 440px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.8;
}

.szp-home-solution-content strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.szp-home-solution-content strong i {
    color: var(--szp-blue);
    transition: transform .3s ease;
}

.szp-home-solution-card:hover .szp-home-solution-content strong i {
    transform: translateX(5px);
}

/* ============================================================
   10. AI PACKAGING ASSISTANT
============================================================ */

.szp-home-ai {
    position: relative;
    padding: 150px 0;
    background: #06101A;
    overflow: hidden;
}

.szp-home-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%,rgba(17,168,255,.08),transparent 35%);
    pointer-events: none;
}

.szp-home-ai-panel {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.17);
    border-radius: 30px;
    background: linear-gradient(135deg,rgba(17,168,255,.065),rgba(255,255,255,.025));
    box-shadow: 0 40px 100px rgba(0,0,0,.28);
}

.szp-home-ai-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle,rgba(17,168,255,.09),transparent 55%);
}

.szp-home-ai-orbit {
    position: absolute;
    border: 1px solid rgba(17,168,255,.16);
    border-radius: 50%;
}

.szp-home-ai-orbit.orbit-one {
    width: 330px;
    height: 150px;
    animation: szpAiOrbitOne 9s linear infinite;
}

.szp-home-ai-orbit.orbit-two {
    width: 450px;
    height: 200px;
    animation: szpAiOrbitTwo 13s linear infinite;
}

.szp-home-ai-orbit.orbit-three {
    width: 550px;
    height: 250px;
    border-color: rgba(17,168,255,.08);
    animation: szpAiOrbitThree 18s linear infinite;
}

@keyframes szpAiOrbitOne {
    from { transform: rotate(-20deg); }
    to { transform: rotate(340deg); }
}

@keyframes szpAiOrbitTwo {
    from { transform: rotate(70deg); }
    to { transform: rotate(430deg); }
}

@keyframes szpAiOrbitThree {
    from { transform: rotate(160deg); }
    to { transform: rotate(520deg); }
}

.szp-home-ai-core {
    position: relative;
    z-index: 5;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.45);
    border-radius: 50%;
    color: var(--szp-blue);
    background: radial-gradient(circle,rgba(17,168,255,.15),rgba(7,17,27,.95));
    box-shadow: 0 0 50px rgba(17,168,255,.16),inset 0 0 35px rgba(17,168,255,.08);
    animation: szpAiCorePulse 3.5s ease-in-out infinite;
}

.szp-home-ai-core i {
    position: relative;
    z-index: 2;
    font-size: 36px;
    text-shadow: 0 0 25px rgba(17,168,255,.6);
}

.szp-home-ai-core-pulse {
    position: absolute;
    inset: 10px;
    border: 1px solid rgb(0 0 0 / 28%);
    border-radius: 50%;
    animation: szpAiInnerPulse 2.5s ease-in-out infinite;
}

@keyframes szpAiCorePulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes szpAiInnerPulse {
    0%,100% { opacity: .35; transform: scale(.92); }
    50% { opacity: .9; transform: scale(1); }
}

.szp-home-ai-floating {
    position: absolute;
    z-index: 7;
    min-width: 48px;
    height: 38px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 10px;
    color: #fff;
    background: rgba(7,17,27,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.ai-float-one {
    top: 30%;
    left: 22%;
    animation: szpAiFloat 4s ease-in-out infinite;
}

.ai-float-two {
    top: 58%;
    right: 19%;
    color: var(--szp-blue);
    animation: szpAiFloat 5s ease-in-out infinite reverse;
}

.ai-float-three {
    bottom: 22%;
    left: 27%;
    animation: szpAiFloat 4.5s ease-in-out infinite .4s;
}

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

.szp-home-ai-content {
    padding: 85px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

html[data-theme="light"] .szp-home-ai-content h2 {
    max-width: 680px;
    margin: 20px 0;
    color: #191792 !important;
    font-size: clamp(38px,4vw,62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.szp-home-ai-content h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 30px rgba(17,168,255,.2);
}

.szp-home-ai-content > p {
    max-width: 620px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
   SZP HOME AI INPUT
   CLEAN MODERN INPUT — NO INNER BLUE RECTANGLE
========================================================= */

.szp-home-ai-input-wrap {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 64px;
    margin-top: 22px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0 8px 0 20px;

    border: 1px solid rgba(17, 168, 255, 0.24);
    border-radius: 16px;

    background: rgba(0, 0, 0, 0.20);

    box-shadow:
        inset 0 0 30px rgba(17, 168, 255, 0.025);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   OUTER CONTAINER FOCUS
========================================================= */

.szp-home-ai-input-wrap:focus-within {
    border-color: rgba(17, 168, 255, 0.55);

    box-shadow:
        0 0 30px rgba(17, 168, 255, 0.08),
        inset 0 0 30px rgba(17, 168, 255, 0.025);
}


/* =========================================================
   AI ICON
========================================================= */

.szp-home-ai-input-wrap > i {
    flex: 0 0 auto;

    color: var(--szp-blue);
    font-size: 15px;

    pointer-events: none;
}


/* =========================================================
   INPUT — REMOVE ALL INNER RECTANGLE STYLING
========================================================= */

.szp-home-ai-input-wrap .szp-home-ai-input,
.szp-home-ai-input-wrap input.szp-home-ai-input {
    width: 100%;
    height: 100%;
    min-width: 0;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-width: 0 !important;
    border-style: none !important;

    outline: none !important;

    box-shadow: none !important;

    border-radius: 0 !important;

    background: transparent !important;
    background-color: transparent !important;

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 400;

    appearance: none;
    -webkit-appearance: none;

    transition: none;
}


/* =========================================================
   INPUT FOCUS — ABSOLUTELY NO INNER BORDER
========================================================= */

.szp-home-ai-input-wrap .szp-home-ai-input:focus,
.szp-home-ai-input-wrap .szp-home-ai-input:active,
.szp-home-ai-input-wrap input.szp-home-ai-input:focus,
.szp-home-ai-input-wrap input.szp-home-ai-input:active {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.szp-home-ai-input::placeholder {
    color: #718594;
    opacity: 1;
}


/* =========================================================
   AUTOFILL FIX
========================================================= */

.szp-home-ai-input:-webkit-autofill,
.szp-home-ai-input:-webkit-autofill:hover,
.szp-home-ai-input:-webkit-autofill:focus,
.szp-home-ai-input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;

    -webkit-box-shadow:
        0 0 0 1000px transparent inset !important;

    box-shadow:
        0 0 0 1000px transparent inset !important;

    background: transparent !important;
}


/* =========================================================
   SEND BUTTON
========================================================= */

.szp-home-ai-send {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    border: 0 !important;
    outline: none !important;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            #087FD0
        );

    box-shadow:
        0 8px 25px rgba(17, 168, 255, 0.18);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.szp-home-ai-send:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 32px rgba(17, 168, 255, 0.28);
}


.szp-home-ai-send:focus,
.szp-home-ai-send:active {
    outline: none !important;
    border: 0 !important;
}


/* =========================================================
   RESPONSE
========================================================= */

.szp-home-ai-response {
    width: 100%;
    max-width: 700px;

    margin-top: 12px;

    min-height: 0;

    color: #dcebf3;

    font-size: 11px;
    line-height: 1.7;
}


.szp-home-ai-response:not(:empty) {
    padding: 15px;

    border: 1px solid rgba(17, 168, 255, 0.14);
    border-radius: 12px;

    background: rgba(17, 168, 255, 0.035);
}


/* =========================================================
   SUGGESTIONS
========================================================= */

.szp-home-ai-suggestions {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.szp-home-ai-suggestion {
    min-height: 42px;

    padding: 0 13px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 9px;

    color: #cbdbe5;

    background: rgba(255, 255, 255, 0.025);

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.szp-home-ai-suggestion:hover {
    transform: translateY(-2px);

    border-color: rgba(17, 168, 255, 0.35);

    color: #ffffff;

    background: rgba(17, 168, 255, 0.07);
}


.szp-home-ai-suggestion i {
    color: var(--szp-blue);
}


/* =========================================================
   NOTE
========================================================= */

.szp-home-ai-note {
    display: block;

    max-width: 650px;

    margin-top: 14px;

    color: #191792;

    font-size: 8px;
    line-height: 1.7;
}

/* ============================================================
   11. CUSTOM PACKAGING
============================================================ */

.szp-home-custom {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #07131E;
}

.szp-home-custom-background {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7,17,27,.97) 0%,
            rgba(7,17,27,.82) 45%,
            rgba(7,17,27,.55) 100%),
        url("https://szp.com.pk/wp-content/uploads/2026/08/Main-Overview.png")
        center / cover no-repeat;
    transform: scale(1.02);
}

.szp-home-custom-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(17,168,255,.10),transparent 55%);
}

.szp-home-custom-content {
    position: relative;
    z-index: 2;
    width: min(700px,100%);
}

.szp-home-custom-content h2 {
    max-width: 800px;
    margin: 20px 0;
    color: #fff;
    font-size: clamp(45px,5vw,76px);
    line-height: 1;
    letter-spacing: -3px;
}

.szp-home-custom-content h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 35px rgba(17,168,255,.22);
}

html[data-theme="light"] .szp-home-custom-content p {
    max-width: 580px;
    margin: 0;
    color: rgb(46 46 46);
    font-size: 14px;
    line-height: 1.9;
}

.szp-home-custom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

/* ============================================================
   12. FINAL CTA
============================================================ */

.szp-home-final-cta {
    position: relative;
    padding: 120px 0;
    background: #050D15;
    overflow: hidden;
}

.szp-home-final-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 750px;
    height: 400px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse,rgba(17,168,255,.09),transparent 68%);
    pointer-events: none;
}

.szp-home-final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 65px;
    border: 1px solid rgba(17,168,255,.18);
    border-radius: 28px;
    background: linear-gradient(135deg,rgba(17,168,255,.06),rgba(255,255,255,.02));
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.szp-home-final-cta-content {
    max-width: 760px;
}

.szp-home-final-cta-content h2 {
    margin: 20px 0;
    color: #fff;
    font-size: clamp(35px,4vw,60px);
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.szp-home-final-cta-content h2 span {
    color: var(--szp-blue);
}

html[data-theme="light"] .szp-home-final-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgb(46 46 46); !important;
    font-size: 13px;
    line-height: 1.8;
}

.szp-home-final-cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 190px;
}

.szp-home-final-cta-actions .szp-home-primary-btn,
.szp-home-final-cta-actions .szp-home-secondary-btn {
    width: 100%;
}

/* ============================================================
   13. FOOTER COMPATIBILITY
   Existing footer classes are intentionally kept compatible.
============================================================ */

.footer {
    position: relative;
    background: #454545 url("https://szp.com.pk/wp-content/uploads/2026/08/Footer.png") no-repeat center center;
    background-size: cover;
    padding: 25px 0 30px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(55,55,55,.18);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 330px 1fr;
    column-gap: 110px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-flex;
}

.footer-logo {
    width: 105px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-left h2 {
    color: #17A9FF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 40px;
}

.footer-extra {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 70px;
}

.privacy-link {
    color: #17A9FF; 
	font-size: 10px; 
	font-weight: 500;
}

.footer-divider {
    width: 1px;
    height: 24px;
    margin: 0 24px;
    background: rgba(255,255,255,.25);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    color: #17A9FF;
    font-size: 22px;
    transition: color .3s ease,transform .3s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
}

.footer-line {
    width: 100%;
    max-width: 900px;
    height: 2px;
    margin: 0 auto 30px;
    background: #17A9FF;
    box-shadow: 0 0 6px #17A9FF,0 0 12px #17A9FF,0 0 24px rgba(23,169,255,.6);
    border-radius: 50px;
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   14. SCROLL TO TOP
============================================================ */

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: #11A8FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .3s ease,visibility .3s ease,transform .3s ease,background .3s ease;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #0D98E6;
    transform: translateY(-5px);
}

/* ============================================================
   15. RESPONSIVE — 1200
============================================================ */

@media (max-width:1200px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: min(calc(100% - 60px),1100px);
    }

    .szp-home-hero-title {
        font-size: clamp(50px,7vw,82px);
    }

    .szp-home-manufacturing-grid {
        gap: 55px;
    }

    .szp-home-ai-content {
        padding: 65px 50px;
    }

    .szp-home-final-cta-inner {
        padding: 50px;
    }

    .szp-home-media-badge {
        right: -10px;
    }
}

/* ============================================================
   16. RESPONSIVE — 1100
============================================================ */

@media (max-width:1100px) {
    .szp-home-hero-container {
        min-height: 720px;
        padding: 125px 0 105px;
    }

    .szp-home-hero-content {
        width: 80%;
    }

    .szp-home-hero-title {
        font-size: clamp(42px,8vw,76px);
    }

    .szp-home-hero-side {
        display: none;
    }

    .szp-home-timeline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .szp-home-timeline-connector {
        height: 25px;
    }

    .szp-home-timeline-connector::before {
        width: 1px;
        height: 100%;
    }

    .szp-home-manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .szp-home-manufacturing-content {
        max-width: 800px;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-home-why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .szp-home-why-heading p {
        max-width: 650px;
    }

    .szp-home-solution-grid {
        min-height: 500px;
    }

    .szp-home-ai-panel {
        grid-template-columns: 1fr;
    }

    .szp-home-ai-visual {
        min-height: 450px;
    }

    .szp-home-ai-content {
        padding: 65px 55px 75px;
    }

    .szp-home-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .szp-home-final-cta-actions {
        width: 100%;
        flex-direction: row;
        min-width: 0;
    }

    .szp-home-final-cta-actions .szp-home-primary-btn,
    .szp-home-final-cta-actions .szp-home-secondary-btn {
        width: auto;
    }
}

/* ============================================================
   17. RESPONSIVE — 768
============================================================ */

@media (max-width:768px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: calc(100% - 36px);
    }

    .szp-home-hero {
        min-height: 720px;
    }

    .szp-home-hero-container {
        min-height: 720px;
        padding: 125px 0 105px;
    }

    .szp-home-hero-content {
        width: 100%;
        padding-top: 30px;
    }

    .szp-home-hero-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .szp-home-eyebrow-line {
        width: 25px;
    }

    .szp-home-hero-title {
        font-size: clamp(42px,11vw,64px);
        line-height: .98;
        letter-spacing: -2.8px;
    }

    .szp-home-hero-description {
        max-width: 560px;
        font-size: 13px;
        line-height: 1.8;
    }

    .szp-home-hero-actions {
        margin-top: 28px;
    }

    .szp-home-primary-btn,
    .szp-home-secondary-btn {
        min-height: 52px;
        padding: 0 19px;
        font-size: 12px;
    }

    .szp-home-hero-trust {
        margin-top: 40px;
        gap: 14px;
    }

    .szp-home-trust-number {
        font-size: 16px;
    }

    .szp-home-trust-label {
        font-size: 7px;
    }

    .szp-home-slider-controls {
        left: 18px;
        bottom: 38px;
    }

    .szp-home-scroll-indicator {
        right: 18px;
        bottom: 39px;
    }

    .szp-home-scroll-text {
        display: none;
    }

    .szp-home-intro,
    .szp-home-manufacturing,
    .szp-home-industries,
    .szp-home-why,
    .szp-home-solutions,
    .szp-home-ai {
        padding: 100px 0;
    }

    .szp-home-section-title {
        font-size: clamp(34px,9vw,48px);
        letter-spacing: -1.8px;
    }

    .szp-home-section-lead {
        font-size: 13px;
        line-height: 1.8;
    }

    .szp-home-intro-image {
        height: 430px;
        min-height: 0;
        margin-top: 80px;
    }

    .szp-home-image-caption {
        left: 18px;
        bottom: 30px;
    }

    .szp-home-timeline-item {
        min-height: 0;
        padding: 24px;
    }

    .szp-home-timeline-year {
        font-size: 31px;
    }

    .szp-home-media-frame {
        border-radius: 20px;
    }

    .szp-home-media-badge {
        right: 12px;
        bottom: 18px;
        min-width: 205px;
        padding: 13px;
    }

    .szp-home-capability-list {
        grid-template-columns: 1fr;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
    }

    .szp-home-industry-card {
        min-height: 240px;
    }

    .szp-home-why-cards {
        grid-template-columns: 1fr;
    }

    .szp-home-solutions-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .szp-home-solution-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
        margin-top: 45px;
    }

    .szp-home-solution-card {
        min-height: 300px;
    }

    .szp-home-solution-card-large {
        grid-row: auto;
    }

    .szp-home-ai-panel {
        border-radius: 22px;
    }

    .szp-home-ai-visual {
        min-height: 350px;
    }

    .szp-home-ai-orbit.orbit-one {
        width: 260px;
        height: 120px;
    }

    .szp-home-ai-orbit.orbit-two {
        width: 350px;
        height: 160px;
    }

    .szp-home-ai-orbit.orbit-three {
        width: 430px;
        height: 195px;
    }

    .szp-home-ai-core {
        width: 95px;
        height: 95px;
    }

    .szp-home-ai-core i {
        font-size: 28px;
    }

    .szp-home-ai-content {
        padding: 50px 25px 55px;
    }

    .szp-home-ai-content h2 {
        font-size: clamp(35px,9vw,48px);
        letter-spacing: -1.8px;
		
    }

    .szp-home-ai-input-wrap {
        height: 58px;
    }

    .szp-home-ai-send {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .szp-home-custom {
        min-height: 540px;
    }

    .szp-home-custom-content h2 {
        font-size: clamp(42px,10vw,60px);
        letter-spacing: -2px;
    }

    .szp-home-final-cta {
        padding: 80px 0;
    }

    .szp-home-final-cta-inner {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .szp-home-final-cta-content h2 {
        font-size: clamp(33px,9vw,48px);
        letter-spacing: -1.7px;
    }

    .szp-home-final-cta-actions {
        flex-direction: column;
    }

    .szp-home-final-cta-actions .szp-home-primary-btn,
    .szp-home-final-cta-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 60px;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        min-height: auto;
        padding-top: 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-extra {
        flex-direction: column;
        gap: 18px;
        margin-top: 45px;
    }

    .footer-divider {
        display: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 45px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .scroll-top {
        width: 48px;
        height: 48px;
        right: 18px;
        bottom: 18px;
        font-size: 19px;
    }
}

/* ============================================================
   18. SMALL MOBILE — 480
============================================================ */

@media (max-width:480px) {
    .szp-home-container,
    .szp-home-hero-container {
        width: calc(100% - 28px);
    }

    .szp-home-hero {
        min-height: 680px;
    }

    .szp-home-hero-container {
        min-height: 680px;
        padding-top: 115px;
    }

    .szp-home-hero-title {
        font-size: clamp(38px,12vw,52px);
        letter-spacing: -2px;
    }

    .szp-home-hero-description {
        font-size: 12px;
    }

    .szp-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .szp-home-hero-actions .szp-home-primary-btn,
    .szp-home-hero-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .szp-home-hero-trust {
        gap: 10px;
    }

    .szp-home-trust-divider {
        height: 25px;
    }

    .szp-home-slider-controls {
        bottom: 25px;
    }

    .szp-home-slider-arrow {
        width: 37px;
        height: 37px;
    }

    .szp-home-scroll-indicator {
        bottom: 28px;
    }

    .szp-home-intro,
    .szp-home-manufacturing,
    .szp-home-industries,
    .szp-home-why,
    .szp-home-solutions,
    .szp-home-ai {
        padding: 80px 0;
    }

    .szp-home-section-title {
        font-size: 32px;
        letter-spacing: -1.4px;
    }

    .szp-home-intro-image {
        height: 330px;
        margin-top: 65px;
    }

    .szp-home-image-caption strong {
        font-size: 25px;
    }

    .szp-home-timeline-item {
        padding: 20px;
    }

    .szp-home-timeline-year {
        font-size: 28px;
    }

    .szp-home-industry-grid {
        grid-template-columns: 1fr;
    }

    .szp-home-industry-card {
        min-height: 220px;
        padding: 22px;
    }

    .szp-home-solution-card {
        min-height: 270px;
        padding: 25px;
    }

    .szp-home-solution-content h3,
    .szp-home-solution-card:not(.szp-home-solution-card-large) .szp-home-solution-content h3 {
        font-size: 23px;
    }

    .szp-home-ai-visual {
        min-height: 290px;
    }

    .szp-home-ai-floating {
        transform: scale(.85);
    }

    .szp-home-ai-content {
        padding: 40px 20px 45px;
    }

    .szp-home-ai-suggestions {
        flex-direction: column;
    }

    .szp-home-ai-suggestion {
        width: 100%;
        justify-content: flex-start;
    }

    .szp-home-ai-input-wrap {
        padding-left: 14px;
    }

    .szp-home-custom {
        min-height: 500px;
    }

    .szp-home-custom-actions {
        flex-direction: column;
    }

    .szp-home-custom-actions .szp-home-primary-btn,
    .szp-home-custom-actions .szp-home-secondary-btn {
        width: 100%;
    }

    .szp-home-final-cta-inner {
        padding: 30px 20px;
    }

    .footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer .container {
        width: 90%;
    }

    .footer-logo {
        width: 82px;
        height: auto;
    }

    .footer-left h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .footer-btn {
        width: 170px;
    }

    .scroll-top {
        width: 46px;
        height: 46px;
        right: 15px;
        bottom: 15px;
    }
}

/* ============================================================
   19. VERY SMALL DEVICES — 360
============================================================ */

@media (max-width:360px) {
    .szp-home-hero-title {
        font-size: 35px;
    }

    .szp-home-hero-description {
        font-size: 11px;
    }

    .szp-home-trust-number {
        font-size: 14px;
    }

    .szp-home-trust-label {
        font-size: 6px;
        letter-spacing: .8px;
    }

    .szp-home-slider-dots {
        gap: 4px;
    }

    .szp-home-slider-dot {
        width: 15px;
    }

    .szp-home-slider-dot.active {
        width: 32px;
    }

    .szp-home-section-title {
        font-size: 29px;
    }

    .szp-home-media-badge {
        min-width: 0;
        right: 8px;
        left: 8px;
    }
}

/* ============================================================
   20. REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .szp-home-slide.active {
        transform: scale(1);
    }
}

/* ============================================================
   END OF SZP HOME STYLE
============================================================ */

/* =========================================================
   SZP WEBSITE FOOTER
   MODERN INDUSTRIAL / GLASS / BLUE GLOW
   MATCHED TO FOOTER.PHP
========================================================= */


/* =========================================================
   01. FOOTER VARIABLES
========================================================= */

:root {

    --szp-footer-bg: #4b4b4b;

    --szp-footer-dark: #151a20;
    --szp-footer-darker: #10151a;

    --szp-footer-blue: #11A8FF;
    --szp-footer-blue-light: #29C2FF;
    --szp-footer-blue-dark: #087FD1;

    --szp-footer-text: rgba(255, 255, 255, 0.82);
    --szp-footer-muted: rgba(255, 255, 255, 0.56);

    --szp-footer-border:
        rgba(255, 255, 255, 0.10);

    --szp-footer-glow:
        0 0 12px rgba(17, 168, 255, 0.50),
        0 0 30px rgba(17, 168, 255, 0.18);

}


/* =========================================================
   02. FOOTER RESET
========================================================= */

.footer,
.footer *,
.footer *::before,
.footer *::after {

    box-sizing: border-box;

}


/* =========================================================
   03. MAIN FOOTER
========================================================= */

.footer {

    position: relative;

    width: 100%;

    margin: 0;

    padding: 90px 0 28px;

    overflow: hidden;

    color: var(--szp-footer-text);

    font-family: "Poppins", sans-serif;

    background-color: var(--szp-footer-bg);

    background-image:
        linear-gradient(
            180deg,
            rgba(10, 16, 22, 0.72),
            rgba(10, 16, 22, 0.92)
        ),
        url("https://szp.com.pk/wp-content/uploads/2026/08/Footer.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    border-top:
        1px solid rgba(17, 168, 255, 0.18);

}


/* =========================================================
   04. FOOTER TOP GLOW
========================================================= */

.footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 75%;
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-footer-blue),
            transparent
        );

    box-shadow:
        0 0 10px rgba(17, 168, 255, 0.70),
        0 0 30px rgba(17, 168, 255, 0.30);

}


/* =========================================================
   05. FOOTER AMBIENT GLOW
========================================================= */

.footer::after {

    content: "";

    position: absolute;

    top: -180px;
    left: 50%;

    width: 600px;
    height: 350px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(17, 168, 255, 0.09),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   06. CONTAINER
========================================================= */

.footer .container {

    position: relative;

    width: min(
        calc(100% - 80px),
        1450px
    );

    margin: 0 auto;

    z-index: 2;

}


/* =========================================================
   07. FOOTER TOP
========================================================= */

.footer-top {

    display: grid;

    grid-template-columns:
        minmax(260px, 0.85fr)
        minmax(600px, 1.65fr);

    gap: 80px;

    align-items: start;

}


/* =========================================================
   08. FOOTER LEFT
========================================================= */

.footer-left {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


/* =========================================================
   09. FOOTER LOGO
========================================================= */

.footer-logo-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 165px;
    height: 70px;

    margin-bottom: 25px;

    text-decoration: none;

}


.footer-logo {

    display: block;

    width: auto;

    max-width: 160px;

    max-height: 65px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;

}


.footer-logo-link:hover .footer-logo {

    transform: scale(1.04);

    filter:
        drop-shadow(
            0 0 10px
            rgba(17, 168, 255, 0.45)
        );

}


/* =========================================================
   10. FOOTER HEADLINE
========================================================= */

.footer-left h2 {

    margin: 0 0 28px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(
        30px,
        3vw,
        48px
    );

    font-weight: 600;

    line-height: 1.13;

    letter-spacing: -0.025em;

}


/* =========================================================
   11. TALK TO SALES BUTTON
========================================================= */

.footer-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 145px;

    height: 48px;

    padding: 0 24px;

    border:
        1px solid
        rgba(17, 168, 255, 0.65);

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.25),
            rgba(17, 168, 255, 0.07)
        );

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.04em;

    text-decoration: none;

    overflow: hidden;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.30s ease,
        border-color 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease;

}


.footer-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.60s ease;

}


.footer-btn:hover {

    color: #ffffff;

    border-color:
        var(--szp-footer-blue);

    background:
        linear-gradient(
            135deg,
            rgba(17, 168, 255, 0.38),
            rgba(17, 168, 255, 0.12)
        );

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.25),
        0 0 35px rgba(17, 168, 255, 0.10);

    transform:
        translateY(-2px);

}


.footer-btn:hover::before {

    left: 140%;

}


/* =========================================================
   12. FOOTER RIGHT
========================================================= */

.footer-right {

    width: 100%;

}


/* =========================================================
   13. FOOTER LINKS
========================================================= */

.footer-links {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(120px, 1fr));

    gap: 35px;

    width: 100%;

}


/* =========================================================
   14. FOOTER COLUMN
========================================================= */

.footer-column {

    min-width: 0;

}


.footer-column h4 {

    position: relative;

    display: inline-block;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}


.footer-column h4::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 25px;
    height: 2px;

    border-radius: 20px;

    background:
        var(--szp-footer-blue);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.55);

}


/* =========================================================
   15. FOOTER LIST
========================================================= */

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-column li {

    margin: 0 0 12px;

    padding: 0;

}


/* =========================================================
   16. FOOTER LINKS
========================================================= */

.footer-column li a {

    position: relative;

    display: inline-block;

    color:
        var(--szp-footer-muted);

    font-size: 11px;

    font-weight: 400;

    line-height: 1.7;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}


.footer-column li a::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: -2px;

    width: 0;
    height: 1px;

    background:
        var(--szp-footer-blue);

    box-shadow:
        0 0 6px rgba(17, 168, 255, 0.40);

    transition:
        width 0.25s ease;

}


.footer-column li a:hover {

    color:
        var(--szp-footer-blue-light);

    transform:
        translateX(3px);

}


.footer-column li a:hover::before {

    width: 100%;

}


/* =========================================================
   17. FOOTER EXTRA
========================================================= */

.footer-extra {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 20px;

    margin-top: 55px;

}


/* =========================================================
   18. PRIVACY LINK
========================================================= */

html[data-theme="light"] .privacy-link {

    color: #17A9FF !important;
	font-size: 10px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.25s ease !important;

}


.privacy-link:hover {

    color:#17A9FF !important;

}


/* =========================================================
   19. DIVIDER
========================================================= */

.footer-divider {

    display: block;

    width: 1px;

    height: 18px;

    background:
        rgba(255, 255, 255, 0.15);

}


/* =========================================================
   20. SOCIAL CONTAINER
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

}


/* =========================================================
   21. SOCIAL ICON BASE
========================================================= */

.footer-social a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 9px;

    color:
        rgba(255, 255, 255, 0.70);

    background:
        rgba(255, 255, 255, 0.045);

    text-decoration: none;

    overflow: hidden;

    transition:
        color 0.30s ease,
        border-color 0.30s ease,
        background 0.30s ease,
        box-shadow 0.30s ease,
        transform 0.30s ease;

}


.footer-social a::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(17, 168, 255, 0.18),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.30s ease;

}


.footer-social a:hover {

    color:
        var(--szp-footer-blue-light);

    border-color:
        rgba(17, 168, 255, 0.60);

    background:
        rgba(17, 168, 255, 0.08);

    box-shadow:
        0 0 12px rgba(17, 168, 255, 0.30),
        0 0 25px rgba(17, 168, 255, 0.12);

    transform:
        translateY(-3px);

}


.footer-social a:hover::before {

    opacity: 1;

}


.footer-social a i {

    position: relative;

    z-index: 2;

    font-size: 13px;

}


/* =========================================================
   22. EMAIL
========================================================= */

.social-email:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   23. FACEBOOK
========================================================= */

.social-facebook:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   24. LINKEDIN
========================================================= */

.social-linkedin:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   25. COMMUNITY
========================================================= */

.social-community:hover {

    color:
        var(--szp-footer-blue-light);

}


/* =========================================================
   26. FOOTER BOTTOM
========================================================= */

.footer-bottom {

    margin-top: 65px;

}


/* =========================================================
   27. FOOTER LINE
========================================================= */

.footer-line {

    width: 100%;

    height: 1px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.16),
            transparent
        );

}


/* =========================================================
   28. COPYRIGHT
========================================================= */

.footer-bottom p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    font-weight: 400;

    line-height: 1.7;

    letter-spacing: 0.02em;

    text-align: center;

}


/* =========================================================
   29. SCROLL TO TOP
========================================================= */

.scroll-top {

    position: fixed;

    right: 28px;
    bottom: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border:
        1px solid
        rgba(17, 168, 255, 0.55);

    border-radius: 11px;

    color:
        var(--szp-footer-blue-light);

    background:
        rgba(10, 18, 27, 0.82);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.30);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    z-index: 9998;

    transition:
        opacity 0.30s ease,
        visibility 0.30s ease,
        transform 0.30s ease,
        background 0.30s ease,
        border-color 0.30s ease,
        box-shadow 0.30s ease;

}


/* =========================================================
   30. SCROLL TOP VISIBLE
========================================================= */

.scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


/* =========================================================
   31. SCROLL TOP HOVER
========================================================= */

.scroll-top:hover {

    color: #ffffff;

    border-color:
        var(--szp-footer-blue);

    background:
        rgba(17, 168, 255, 0.16);

    box-shadow:
        0 0 15px rgba(17, 168, 255, 0.30),
        0 0 35px rgba(17, 168, 255, 0.12);

    transform:
        translateY(-3px);

}


.scroll-top i {

    font-size: 13px;

    transition:
        transform 0.30s ease;

}


.scroll-top:hover i {

    transform:
        translateY(-2px);

}


/* =========================================================
   32. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .footer {

        padding-top: 105px;

    }

    .footer .container {

        width: min(
            calc(100% - 100px),
            1550px
        );

    }

    .footer-top {

        gap: 110px;

    }

}


/* =========================================================
   33. DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .footer .container {

        width:
            calc(100% - 60px);

    }

    .footer-top {

        grid-template-columns:
            minmax(230px, 0.75fr)
            minmax(500px, 1.5fr);

        gap: 55px;

    }

    .footer-links {

        gap: 25px;

    }

}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 900px) {

    .footer {

        padding:
            75px 0 25px;

    }

    .footer .container {

        width:
            calc(100% - 45px);

    }

    .footer-top {

        grid-template-columns:
            1fr;

        gap: 55px;

    }

    .footer-left {

        align-items: center;

        text-align: center;

    }

    .footer-links {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px 35px;

    }

    .footer-extra {

        justify-content: center;

        margin-top: 50px;

    }

}


/* =========================================================
   35. MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer {

        padding:
            65px 0 22px;

    }

    .footer .container {

        width:
            calc(100% - 30px);

    }

    .footer-logo-link {

        margin-bottom: 20px;

    }

    .footer-left h2 {

        font-size: 30px;

        margin-bottom: 24px;

    }

    .footer-links {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 38px 20px;

    }

    .footer-column h4 {

        font-size: 10px;

    }

    .footer-column li a {

        font-size: 10px;

    }

    .footer-extra {

        flex-wrap: wrap;

        gap: 15px;

    }

    .footer-divider {

        display: none;

    }

    .footer-bottom {

        margin-top: 50px;

    }

    .footer-bottom p {

        font-size: 8px;

        line-height: 1.8;

    }

    .scroll-top {

        right: 18px;

        bottom: 18px;

        width: 43px;

        height: 43px;

    }

}


/* =========================================================
   36. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .footer-links {

        grid-template-columns:
            1fr;

        gap: 32px;

    }

    .footer-column {

        text-align: center;

    }

    .footer-column h4::after {

        left: 50%;

        transform:
            translateX(-50%);

    }

    .footer-column li a:hover {

        transform:
            translateY(-1px);

    }

    .footer-extra {

        flex-direction: column;

    }

}


/* =========================================================
   37. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer *,
    .footer *::before,
    .footer *::after,
    .scroll-top {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;

    }

}

/* ============================================================
   SZP IMAGE CLARITY OVERRIDE
   Keeps photography bright, sharp and cinematic
============================================================ */

/* HERO */
.szp-home-hero .szp-home-slide-bg img {
    filter:
        brightness(1.16)
        contrast(1.08)
        saturate(1.10);
}

/* HERO overlay */
.szp-home-hero .szp-home-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 9, 15, 0.62) 0%,
            rgba(3, 9, 15, 0.40) 25%,
            rgba(3, 9, 15, 0.14) 52%,
            rgba(3, 9, 15, 0.05) 75%,
            rgba(3, 9, 15, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(3, 9, 15, 0.10) 0%,
            transparent 50%,
            rgba(3, 9, 15, 0.35) 100%
        );
}

/* INTRO / FEATURE IMAGE */
.szp-home-intro-image > img {
    filter:
        brightness(1.12)
        contrast(1.06)
        saturate(1.08);
}

/* INTRO IMAGE OVERLAY */
.szp-home-intro-image .szp-home-image-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 27, 0.40),
            rgba(7, 17, 27, 0.08) 60%,
            rgba(7, 17, 27, 0.16) 100%
        );
}





/* =========================================================
   SZP ABOUT US PAGE
   MODERN INDUSTRIAL / INTELLIGENT DESIGN
   ========================================================= */


/* =========================================================
   01. ABOUT PAGE VARIABLES
========================================================= */

.szp-about-page {

    --szp-blue: #11A8FF;
    --szp-blue-light: #29C2FF;
    --szp-blue-dark: #087FD1;

    --szp-dark: #080D13;
    --szp-dark-2: #0D141C;
    --szp-dark-3: #111A23;

    --szp-white: #FFFFFF;
    --szp-light: #DDE5EB;
    --szp-muted: #9CAAB5;

    --szp-border: rgba(255,255,255,0.09);
    --szp-glass: rgba(255,255,255,0.045);

    width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(17,168,255,0.045),
            transparent 35%
        ),
        var(--szp-dark);

    color: var(--szp-white);
}


/* =========================================================
   02. GLOBAL ABOUT PAGE RESET
========================================================= */

.szp-about-page *,
.szp-about-page *::before,
.szp-about-page *::after {
    box-sizing: border-box;
}

.szp-about-page img {
    max-width: 100%;
}

.szp-about-page a {
    text-decoration: none;
}


/* =========================================================
   03. MAIN CONTAINER
========================================================= */

.szp-about-container {

    width: min(1200px, calc(100% - 80px));

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. HERO
========================================================= */

.szp-about-hero {

    position: relative;

    width: 100%;
    height: 92vh;
    min-height: 700px;

    overflow: hidden;

    background: #060A0E;
}


.szp-about-slider {

    position: relative;

    width: 100%;
    height: 100%;
}


.szp-about-slide {

    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}


.szp-about-slide.active {

    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.szp-about-slide-bg {

    position: absolute;

    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.055);

    filter:
        brightness(0.82)
        contrast(1.08)
        saturate(1.05);

    transition:
        transform 7s cubic-bezier(0.2,0.6,0.2,1),
        filter 1.2s ease;
}


.szp-about-slide.active .szp-about-slide-bg {

    transform: scale(1);

    filter:
        brightness(0.9)
        contrast(1.08)
        saturate(1.08);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.szp-about-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4,9,14,0.94) 0%,
            rgba(4,9,14,0.82) 30%,
            rgba(4,9,14,0.50) 60%,
            rgba(4,9,14,0.22) 100%
        ),

        linear-gradient(
            180deg,
            rgba(4,9,14,0.15) 0%,
            transparent 55%,
            rgba(4,9,14,0.68) 100%
        );
}


/* =========================================================
   HERO BLUE LIGHT
========================================================= */

.szp-about-hero::after {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    bottom: -400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 68%
        );

    pointer-events: none;

    z-index: 4;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.szp-about-hero-content {

    position: relative;

    z-index: 6;

    width: min(800px, calc(100% - 80px));

    margin-left:
        max(
            40px,
            calc((100vw - 1200px) / 2)
        );

    padding-top: 18vh;
}


html[data-theme="light"] .szp-about-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 101px;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1.5;

    text-transform: uppercase;
}


.szp-about-eyebrow::before {

    content: "";

    width: 32px;
    height: 1px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,0.7);
}


html[data-theme="light"] .szp-about-hero h1,
.szp-about-hero h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(50px, 5.1vw, 88px);

    font-weight: 700;

    letter-spacing: -4px;

    line-height: 1.02;
}


.szp-about-hero h1 span,
.szp-about-hero h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 30px rgba(17,168,255,0.22);
}


.szp-about-hero-description {

    max-width: 640px;

    margin: 30px 0 0;

    color: rgba(255,255,255,0.82);

    font-size: 15px;
    font-weight: 400;

    line-height: 1.85;
}


/* =========================================================
   05. HERO CONTROLS
========================================================= */

.szp-about-arrow {

    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 50%;

    background:
        rgba(8,14,20,0.42);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #fff;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.szp-about-arrow:hover {

    background: var(--szp-blue);

    border-color: var(--szp-blue);

    box-shadow:
        0 0 25px rgba(17,168,255,0.35);

    transform:
        translateY(-50%)
        scale(1.08);
}


.szp-about-prev {
    left: 30px;
}


.szp-about-next {
    right: 30px;
}


.szp-about-arrow span {
    font-size: 17px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.szp-about-dots {

    position: absolute;

    left:
        max(
            40px,
            calc((100vw - 1200px) / 2)
        );

    bottom: 42px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;
}


.szp-about-dot {

    width: 28px;
    height: 3px;

    padding: 0;

    border: 0;

    background:
        rgba(255,255,255,0.28);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.szp-about-dot.active {

    width: 58px;

    background: var(--szp-blue);

    box-shadow:
        0 0 12px rgba(17,168,255,0.55);
}


/* =========================================================
   06. SECTION LABEL
========================================================= */

.szp-section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin: 0 0 18px;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1.6;

    text-transform: uppercase;
}


.szp-section-label::before {

    content: "";

    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 10px rgba(17,168,255,0.6);
}


/* =========================================================
   07. COMPANY INTRODUCTION
========================================================= */

.szp-about-introduction {

    position: relative;

    padding: 130px 0;

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(17,168,255,0.055),
            transparent 32%
        ),

        var(--szp-dark);
}


.szp-about-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 90px;
}


.szp-about-intro-content h2,
.szp-manufacturing-inner h2,
.szp-team-heading h2 {

    margin: 0 0 35px;

    color: #fff;

    font-size: clamp(42px, 4.7vw, 68px);

    font-weight: 700;

    letter-spacing: -3px;

    line-height: 1.04;
}


.szp-about-intro-content h2 span,
.szp-manufacturing-inner h2 span,
.szp-team-heading h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 25px rgba(17,168,255,0.18);
}


.szp-about-copy p {

    margin: 0 0 22px;

    color: var(--szp-light);

    font-size: 14px;

    line-height: 1.9;
}


.szp-about-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MAP
========================================================= */
/* ============================================================
   SZP ABOUT MAP — LIGHT THEME
   ============================================================ */

html[data-theme="light"] .szp-about-map-wrapper {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 420px;

}


/* ============================================================
   SOFT AMBIENT GLOW
   ============================================================ */

html[data-theme="light"] .szp-about-map-wrapper::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17, 168, 255, 0.10),
            transparent 68%
        );

    filter: blur(10px);

    pointer-events: none;

}


/* ============================================================
   LIGHT THEME MAP
   ============================================================ */

html[data-theme="light"] .szp-about-map {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 580px;

    height: auto;

    opacity: 0.92;

    filter:
        brightness(0.98)
        contrast(1.05)
        drop-shadow(
            0 8px 22px rgba(46, 46, 46, 0.08)
        )
        drop-shadow(
            0 0 20px rgba(17, 168, 255, 0.08)
        );

    transition:
        transform 0.5s ease,
        opacity 0.5s ease,
        filter 0.5s ease;

}


/* ============================================================
   HOVER
   ============================================================ */

html[data-theme="light"] .szp-about-map:hover {

    opacity: 1;

    transform: scale(1.025);

    filter:
        brightness(1)
        contrast(1.08)
        drop-shadow(
            0 10px 25px rgba(46, 46, 46, 0.10)
        )
        drop-shadow(
            0 0 25px rgba(17, 168, 255, 0.12)
        );

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {

    html[data-theme="light"] .szp-about-map-wrapper {

        min-height: 320px;

    }

    html[data-theme="light"] .szp-about-map-wrapper::before {

        width: 320px;
        height: 320px;

    }

    html[data-theme="light"] .szp-about-map {

        max-width: 500px;

    }

}


@media (max-width: 480px) {

    html[data-theme="light"] .szp-about-map-wrapper {

        min-height: 250px;

    }

    html[data-theme="light"] .szp-about-map-wrapper::before {

        width: 260px;
        height: 260px;

    }

    html[data-theme="light"] .szp-about-map {

        max-width: 420px;

    }

}


/* =========================================================
   08. CAPABILITIES
========================================================= */

.szp-about-capabilities {

    position: relative;

    padding: 125px 0;

    background: var(--szp-dark-2);
}


.szp-about-capabilities-header {

    max-width: 760px;

    margin-bottom: 65px;
}


.szp-about-capabilities-header h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-capabilities-header h2 span {
    color: var(--szp-blue);
}


.szp-about-capabilities-header > p:last-child {

    max-width: 690px;

    margin: 0;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CAPABILITY GRID
========================================================= */

.szp-about-capabilities-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 18px;
}


html[data-theme="light"] .szp-about-capability-card {

    position: relative;

    min-height: 310px;

    padding: 34px 28px;

    overflow: hidden;

    border: 1px solid #221eb0;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.szp-about-capability-card::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -60px;
    bottom: -60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 70%
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


.szp-about-capability-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(17,168,255,0.38);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.25),
        0 0 30px rgba(17,168,255,0.06);
}


.szp-about-capability-card:hover::after {
    opacity: 1;
}


.szp-about-capability-number {

    display: block;

    margin-bottom: 65px;

    color: var(--szp-blue);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}


.szp-about-capability-card h3 {

    margin: 0 0 15px;

    color: #fff;

    font-size: 21px;
    font-weight: 600;
}


.szp-about-capability-card p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   09. VISION / MISSION
========================================================= */

.szp-about-vision-mission {

    position: relative;

    padding: 125px 0;

    background: var(--szp-dark);
}


.szp-about-vision-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 22px;
}


.szp-about-vision-card {

    position: relative;

    min-height: 370px;

    padding: 50px;

    overflow: hidden;

    border: 1px solid var(--szp-border);

    background:
        linear-gradient(
            145deg,
            rgba(17,168,255,0.055),
            rgba(255,255,255,0.018)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.szp-about-vision-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    opacity: 0.7;
}


.szp-about-vision-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(17,168,255,0.28);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.22);
}


.szp-about-vision-card h2 {

    max-width: 550px;

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(35px, 4vw, 55px);

    letter-spacing: -2px;

    line-height: 1.05;
}


.szp-about-vision-card h2 span {
    color: var(--szp-blue);
}


.szp-about-vision-card > p:last-child {

    max-width: 600px;

    margin: 0;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
   10. VALUES
========================================================= */

.szp-about-values {

    padding: 120px 0;

    background: var(--szp-dark-2);
}


.szp-about-values-header {

    margin-bottom: 65px;

    text-align: center;
}


.szp-about-values-header .szp-section-label {

    justify-content: center;
}


.szp-about-values-header h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-values-header h2 span {
    color: var(--szp-blue);
}


html[data-theme="light"] .szp-about-values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 0;

    border-top: 1px solid #221eb0;
}


html[data-theme="light"] .szp-about-value {

    position: relative;

    min-height: 250px;

    padding: 38px 28px;

    border-right: 1px solid #221eb0;
	border-left: 1px solid #221eb0;
}


.szp-about-value:last-child {
    border-right: 0;
}


.szp-about-value-line {

    width: 38px;
    height: 2px;

    margin-bottom: 48px;

    background: var(--szp-blue);

    box-shadow:
        0 0 15px rgba(17,168,255,0.5);
}


.szp-about-value h3 {

    margin: 0 0 14px;

    color: #fff;

    font-size: 22px;
    font-weight: 600;
}


.szp-about-value p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   11. MANUFACTURING IMAGE
========================================================= */

.szp-manufacturing-image {

    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    background: #05080B;
}


.szp-manufacturing-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            180deg,
            rgba(5,8,11,0.08),
            rgba(5,8,11,0.32)
        ),

        linear-gradient(
            90deg,
            rgba(5,8,11,0.20),
            transparent 60%
        );

    pointer-events: none;
}


.szp-manufacturing-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.88)
        contrast(1.08)
        saturate(1.05);

    transition:
        transform 1.2s ease,
        filter 0.8s ease;
}


.szp-manufacturing-image:hover img {

    transform: scale(1.025);

    filter:
        brightness(0.96)
        contrast(1.08)
        saturate(1.08);
}


/* =========================================================
   12. MANUFACTURING CONTENT
========================================================= */

.szp-manufacturing-content {

    padding: 120px 0 130px;

    background: var(--szp-dark-3);
}


.szp-manufacturing-inner {

    max-width: 920px;

    margin: 0 auto;

    text-align: center;
}


.szp-manufacturing-inner .szp-section-label {

    justify-content: center;
}


.szp-manufacturing-inner h2 {
    margin-bottom: 40px;
}


.szp-manufacturing-text {

    max-width: 860px;

    margin: 0 auto;
}


html[data-theme="light"] .szp-manufacturing-text p {

    margin: 0 0 24px;

    color: #2e2e2e;

    font-size: 14px;

    line-height: 1.9;
}


.szp-manufacturing-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   13. INDUSTRIES
========================================================= */

.szp-about-industries {

    position: relative;

    padding: 125px 0;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(17,168,255,0.055),
            transparent 32%
        ),

        var(--szp-dark);
}


.szp-about-industries-header {

    max-width: 780px;

    margin-bottom: 60px;
}


.szp-about-industries-header h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(40px, 4.5vw, 64px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.szp-about-industries-header h2 span {
    color: var(--szp-blue);
}


.szp-about-industries-header > p:last-child {

    max-width: 680px;

    margin: 0;

    color: #2e2e2e;

    font-size: 14px;

    line-height: 1.85;
}


.szp-about-industries-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.szp-about-industries-list span {

    position: relative;

    padding: 15px 23px;

    border: 1px solid var(--szp-border);

    border-radius: 2px;

    background:
        rgba(255,255,255,0.025);

    color: var(--szp-light);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.5px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.szp-about-industries-list span:hover {

    color: #fff;

    background:
        rgba(17,168,255,0.08);

    border-color:
        rgba(17,168,255,0.45);

    box-shadow:
        0 0 25px rgba(17,168,255,0.08);

    transform: translateY(-3px);
}


/* =========================================================
   14. WHY SZP
========================================================= */

.szp-about-why {

    padding: 125px 0;

    background: var(--szp-dark-2);
}


.szp-about-why-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: start;
}


.szp-about-why-heading h2 {

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(42px, 4.7vw, 68px);

    letter-spacing: -3px;

    line-height: 1.03;
}


.szp-about-why-heading h2 span {
    color: var(--szp-blue);
}


html[data-theme="light"] .szp-about-why-heading > p:last-child {

    max-width: 500px;

    margin: 0;

    color: #2e2e2e;
    font-size: 14px;

    line-height: 1.9;
}


.szp-about-why-points {

    border-top: 1px solid var(--szp-border);
}


.szp-about-why-point {

    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid var(--szp-border);
}


.szp-about-why-point > span {

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}


.szp-about-why-point h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 19px;
    font-weight: 600;
}


.szp-about-why-point p {

    margin: 0;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   15. TEAM SECTION
   IMPORTANT:
   ALIGNMENT PRESERVED
========================================================= */

.szp-team-section {

    position: relative;

    padding: 130px 0 145px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 22%,
            rgba(17,168,255,0.07),
            transparent 38%
        ),

        var(--szp-dark);
}


.szp-team-container {

    position: relative;

    z-index: 5;
}


.szp-team-heading {

    margin-bottom: 90px;

    text-align: center;
}


.szp-team-heading .szp-section-label {

    justify-content: center;
}


.szp-team-heading h2 {

    margin-bottom: 0;

    font-size: clamp(55px, 7vw, 105px);

    letter-spacing: -5px;
}


/* =========================================================
   TEAM DECORATIVE TYPOGRAPHY
========================================================= */

.szp-team-word {

    position: absolute;

    color:
        rgba(255,255,255,0.018);

    font-size:
        clamp(100px,14vw,230px);

    font-weight: 800;

    letter-spacing: -8px;

    line-height: 0.8;

    white-space: nowrap;

    pointer-events: none;

    user-select: none;
}


.szp-team-word-one {
    top: 5%;
    left: -3%;
}


.szp-team-word-two {
    top: 26%;
    right: -8%;
}


.szp-team-word-three {
    top: 48%;
    left: -5%;
}


.szp-team-word-four {
    top: 67%;
    right: -5%;
}


.szp-team-word-five {
    bottom: 8%;
    left: 2%;
}


.szp-team-word-six {
    right: 0;
    bottom: -1%;
}


/* =========================================================
   TEAM LAYOUT
   DO NOT CHANGE ALIGNMENT
========================================================= */


/* Single centered members */

.szp-team-top {

    display: flex;

    justify-content: center;

    width: 100%;

    margin: 0 auto 90px;
}


/* Two-column rows */

.szp-team-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    width: 100%;

    max-width: 1000px;

    margin: 0 auto 90px;

    gap: 90px;
}


/* Final centered member */

.szp-team-final {
    margin-bottom: 0;
}


/* =========================================================
   TEAM CARD
========================================================= */

.szp-team-card {

    position: relative;

    width: 100%;

    text-align: center;
}


/* =========================================================
   TEAM IMAGE
========================================================= */

.szp-team-image {

    position: relative;

    width: 220px;
    height: 220px;

    margin: 0 auto 28px;

    overflow: hidden;

    border: 1px solid
        rgba(255,255,255,0.15);

    border-radius: 50%;

    background: #111820;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.30),
        0 0 0 8px rgba(17,168,255,0.018);

    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.szp-team-image::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    box-shadow:
        inset 0 0 30px rgba(17,168,255,0.08);

    pointer-events: none;
}


.szp-team-card:hover .szp-team-image {

    border-color: var(--szp-blue);

    transform: translateY(-8px);

    box-shadow:
        0 25px 65px rgba(0,0,0,0.34),
        0 0 30px rgba(17,168,255,0.12);
}


.szp-team-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.szp-team-card:hover .szp-team-image img {

    transform: scale(1.04);

    filter:
        brightness(1.05)
        saturate(1.05);
}


/* =========================================================
   TEAM TEXT
========================================================= */

.szp-team-card h3 {

    margin: 0 0 8px;

    color: #fff;

    font-size: 22px;
    font-weight: 600;

    line-height: 1.3;
}


.szp-team-role {

    margin: 0 0 18px;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.2px;

    line-height: 1.5;

    text-transform: uppercase;
}


.szp-team-description {

    max-width: 430px;

    margin: 0 auto;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FINAL MEMBER
   MUHAMMAD RASHID
========================================================= */

.szp-team-final .szp-team-card {

    max-width: 500px;

    margin: 0 auto;
}


/* =========================================================
   16. FINAL CTA
========================================================= */

.szp-about-final-cta {

    position: relative;

    padding: 125px 0;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(17,168,255,0.10),
            transparent 45%
        ),

        var(--szp-dark-2);
}


.szp-about-final-cta::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(17,168,255,0.30),
            transparent
        );

    opacity: 0.4;
}


.szp-about-final-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.szp-about-final-cta-inner .szp-section-label {

    justify-content: center;
}


.szp-about-final-cta-inner h2 {

    margin: 0 0 25px;

    color: #fff;

    font-size: clamp(43px, 5vw, 72px);

    letter-spacing: -3px;

    line-height: 1.04;
}


.szp-about-final-cta-inner h2 span {

    color: var(--szp-blue);

    text-shadow:
        0 0 25px rgba(17,168,255,0.20);
}


.szp-about-final-cta-inner > p:not(.szp-section-label) {

    max-width: 650px;

    margin: 0 auto 35px;

    color: var(--szp-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.szp-about-final-cta-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 27px;

    border: 1px solid
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.08);

    color: #fff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.7px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.szp-about-final-cta-button i {

    color: var(--szp-blue);

    transition:
        transform 0.35s ease;
}


.szp-about-final-cta-button:hover {

    background: var(--szp-blue);

    border-color: var(--szp-blue);

    color: #fff;

    box-shadow:
        0 0 30px rgba(17,168,255,0.28);

    transform: translateY(-3px);
}


.szp-about-final-cta-button:hover i {

    color: #fff;

    transform: translateX(4px);
}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 1100px) {

    .szp-about-container {

        width:
            min(
                100% - 60px,
                900px
            );
    }


    /* HERO */

    .szp-about-hero-content {

        margin-left: 30px;

        width:
            calc(100% - 60px);
    }


    /* CAPABILITIES */

    .szp-about-capabilities-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    /* VALUES */

   html[data-theme="light"] .szp-about-values-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


  html[data-theme="light"]  .szp-about-value {

        border-bottom:
            1px solid #221eb0;
    }


html[data-theme="light"]    .szp-about-value:nth-child(2) {
        border-right: 0 #221eb0;
    }


 html[data-theme="light"]   .szp-about-value:nth-child(3),
    .szp-about-value:nth-child(4) {
        border-bottom: 0 #221eb0;
    }


    /* WHY */

html[data-theme="light"]    .szp-about-why-grid {

        gap: 60px;
    }

}


/* =========================================================
   18. TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991px) {

    .szp-about-container {

        width:
            min(
                calc(100% - 50px),
                760px
            );
    }


    /* HERO */

    .szp-about-hero {

        min-height: 650px;
    }


    .szp-about-hero-content {

        padding-top: 16vh;
    }


    /* INTRO */

    .szp-about-intro-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .szp-about-map-wrapper {

        order: -1;

        min-height: 350px;
    }


    .szp-about-map {

        max-width: 520px;
    }


    /* VISION */

    .szp-about-vision-grid {

        grid-template-columns: 1fr;
    }


    /* WHY */

    .szp-about-why-grid {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    /* MANUFACTURING */

    .szp-manufacturing-image {

        height: 480px;
    }


    /* TEAM */

    .szp-team-grid {

        gap: 60px;
    }


    .szp-team-image {

        width: 190px;
        height: 190px;
    }

}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 767px) {

    .szp-about-container {

        width:
            calc(100% - 36px);
    }


    /* =====================================================
       HERO
    ===================================================== */

    .szp-about-hero {

        height: 85vh;

        min-height: 600px;
    }


    .szp-about-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(4,9,14,0.94),
                rgba(4,9,14,0.68)
            ),

            linear-gradient(
                180deg,
                transparent 45%,
                rgba(4,9,14,0.72)
            );
    }


    .szp-about-hero-content {

        width:
            calc(100% - 50px);

        margin-left: 25px;

        padding-top: 145px;
    }


 html[data-theme="light"]   .szp-about-eyebrow {

        margin-top: 15px;

        font-size: 8px;

        letter-spacing: 2px;

        gap: 8px;
    }


    .szp-about-eyebrow::before {

        width: 20px;
    }


  html[data-theme="light"]  .szp-about-hero h1,
    .szp-about-hero h2 {

        font-size:
            clamp(
                39px,
                11vw,
                44px
            );

        letter-spacing: -2px;
    }


    .szp-about-hero-description {

        max-width: 430px;

        margin-top: 22px;

        font-size: 12px;

        line-height: 1.75;
    }


    /* =====================================================
       HERO CONTROLS
    ===================================================== */

    .szp-about-arrow {

        width: 42px;
        height: 42px;
    }


    .szp-about-prev {
        left: 15px;
    }


    .szp-about-next {
        right: 15px;
    }


    .szp-about-dots {

        left: 25px;

        bottom: 28px;
    }


    /* =====================================================
       INTRODUCTION
    ===================================================== */

    .szp-about-introduction {

        padding: 85px 0;
    }


    .szp-about-intro-grid {

        gap: 45px;
    }


    .szp-about-intro-content h2,
    .szp-manufacturing-inner h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-copy p,
    .szp-manufacturing-text p {

        font-size: 13px;

        line-height: 1.8;
    }


    /* =====================================================
       CAPABILITIES
    ===================================================== */

    .szp-about-capabilities {

        padding: 85px 0;
    }


    .szp-about-capabilities-header {

        margin-bottom: 45px;
    }


    .szp-about-capabilities-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-capabilities-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .szp-about-capability-card {

        min-height: 260px;

        padding: 30px 25px;
    }


    .szp-about-capability-number {

        margin-bottom: 50px;
    }


    /* =====================================================
       VISION / MISSION
    ===================================================== */

    .szp-about-vision-mission {

        padding: 85px 0;
    }


    .szp-about-vision-card {

        min-height: auto;

        padding: 35px 28px;
    }


    .szp-about-vision-card h2 {

        font-size: 38px;

        letter-spacing: -2px;
    }


    /* =====================================================
       VALUES
    ===================================================== */

    .szp-about-values {

        padding: 85px 0;
    }


    .szp-about-values-header {

        margin-bottom: 45px;
    }


    .szp-about-values-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-values-grid {

        grid-template-columns: 1fr;
    }


    .szp-about-value {

        min-height: auto;

        padding: 32px 5px;

        border-right: 0;

        border-bottom:
            1px solid #221eb0;
    }


    .szp-about-value:last-child {

        border-bottom: 0;
    }


    .szp-about-value-line {

        margin-bottom: 30px;
    }


    /* =====================================================
       MANUFACTURING
    ===================================================== */

    .szp-manufacturing-image {

        height: 330px;
    }


    .szp-manufacturing-content {

        padding: 80px 0;
    }


    /* =====================================================
       INDUSTRIES
    ===================================================== */

    .szp-about-industries {

        padding: 85px 0;
    }


    .szp-about-industries-header h2 {

        font-size: 42px;

        letter-spacing: -2px;
    }


    .szp-about-industries-list {

        gap: 9px;
    }


    .szp-about-industries-list span {

        padding: 12px 16px;

        font-size: 10px;
    }


    /* =====================================================
       WHY SZP
    ===================================================== */

    .szp-about-why {

        padding: 85px 0;
    }


    .szp-about-why-grid {

        gap: 55px;
    }


    .szp-about-why-heading h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-why-point {

        grid-template-columns:
            40px 1fr;

        gap: 12px;
    }


    /* =====================================================
       TEAM
    ===================================================== */

    .szp-team-section {

        padding: 90px 0 100px;
    }


    .szp-team-heading {

        margin-bottom: 70px;
    }


    .szp-team-heading h2 {

        font-size: 62px;

        letter-spacing: -3px;
    }


    /*
       Keep two-column rows on desktop,
       stack on mobile.
    */

    .szp-team-grid {

        grid-template-columns: 1fr;

        gap: 70px;

        margin-bottom: 70px;
    }


    .szp-team-top {

        margin-bottom: 70px;
    }


    .szp-team-final {

        margin-bottom: 0;
    }


    .szp-team-image {

        width: 175px;
        height: 175px;
    }


    .szp-team-card h3 {

        font-size: 19px;
    }


    .szp-team-description {

        max-width: 450px;

        font-size: 12px;
    }


    /* =====================================================
       DECORATIVE WORDS
    ===================================================== */

    .szp-team-word {

        font-size: 95px;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .szp-about-final-cta {

        padding: 90px 0;
    }


    .szp-about-final-cta-inner h2 {

        font-size: 43px;

        letter-spacing: -2px;
    }


    .szp-about-final-cta-inner > p:not(.szp-section-label) {

        font-size: 13px;
    }

}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .szp-about-container {

        width:
            calc(100% - 28px);
    }


    /* HERO */

    .szp-about-hero-content {

        margin-left: 20px;

        width:
            calc(100% - 40px);
    }


    .szp-about-hero h1,
    .szp-about-hero h2 {

        font-size: 39px;
    }


    /* SECTION HEADINGS */

    .szp-about-intro-content h2,
    .szp-about-capabilities-header h2,
    .szp-about-values-header h2,
    .szp-about-industries-header h2,
    .szp-about-why-heading h2 {

        font-size: 39px;
    }


    /* TEAM */

    .szp-team-section {

        padding-top: 70px;

        padding-bottom: 80px;
    }


    .szp-team-heading {

        margin-bottom: 60px;
    }


    .szp-team-heading h2 {

        font-size: 48px;
    }


    .szp-team-grid {

        gap: 55px;

        margin-bottom: 55px;
    }


    .szp-team-top {

        margin-bottom: 55px;
    }


    .szp-team-final {

        margin-bottom: 0;
    }


    .szp-team-image {

        width: 155px;
        height: 155px;

        margin-bottom: 22px;
    }


    .szp-team-card h3 {

        font-size: 18px;
    }


    .szp-team-role {

        font-size: 9px;

        letter-spacing: 0.8px;
    }


    .szp-team-description {

        font-size: 11px;

        line-height: 1.7;
    }


    .szp-team-word {

        font-size: 75px;
    }


    /* CTA */

    .szp-about-final-cta-inner h2 {

        font-size: 38px;
    }


    .szp-about-final-cta-button {

        min-height: 49px;

        padding: 0 22px;
    }

}


/* =========================================================
   21. ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .szp-about-slide,
    .szp-about-slide-bg,
    .szp-about-arrow,
    .szp-about-dot,
    .szp-about-map,
    .szp-about-capability-card,
    .szp-about-vision-card,
    .szp-about-industries-list span,
    .szp-team-image,
    .szp-team-image img,
    .szp-about-final-cta-button,
    .szp-about-final-cta-button i,
    .szp-manufacturing-image img {

        transition: none;
    }

}





/* ============================================================
   SZP CONTACT US PAGE
   COMPLETE CORRECTED / CONSOLIDATED CSS
   MODERN INDUSTRIAL / GLASS / BLUE GLOW
   ============================================================ */


/* ============================================================
   01. CONTACT PAGE VARIABLES
   ============================================================ */

.szp-contact-page {
    --szp-blue: #11a8ff;
    --szp-blue-2: #176bff;
    --szp-cyan: #29d9ff;

    --szp-bg: #070b10;
    --szp-bg-2: #0a1017;
    --szp-surface: #0d141c;
    --szp-surface-2: #111a23;

    --szp-border: rgba(255, 255, 255, 0.09);
    --szp-border-soft: rgba(255, 255, 255, 0.06);
    --szp-border-blue: rgba(17, 168, 255, 0.28);

    --szp-text: #f4f8fc;
    --szp-text-soft: #aab7c5;
    --szp-text-muted: #718091;

    --szp-radius: 18px;
    --szp-radius-small: 12px;

    --szp-container: 1240px;

    position: relative;

    width: 100%;

    color: var(--szp-text);
    background: var(--szp-bg);

    font-family: "Poppins", sans-serif;

    overflow: hidden;

    isolation: isolate;
}


/* ============================================================
   GLOBAL RESET
   ============================================================ */

.szp-contact-page *,
.szp-contact-page *::before,
.szp-contact-page *::after {
    box-sizing: border-box;
}

.szp-contact-page a {
    color: inherit;
    text-decoration: none;
}

.szp-contact-page button,
.szp-contact-page input,
.szp-contact-page textarea,
.szp-contact-page select {
    font: inherit;
}

.szp-contact-page button {
    appearance: none;
    -webkit-appearance: none;
}

.szp-contact-page img {
    display: block;
    max-width: 100%;
}

.szp-contact-page h1,
.szp-contact-page h2,
.szp-contact-page h3,
.szp-contact-page h4,
.szp-contact-page p {
    margin-top: 0;
}

.szp-contact-page h1,
.szp-contact-page h2,
.szp-contact-page h3,
.szp-contact-page h4 {
    color: var(--szp-text);
}

.szp-contact-page h1 span,
.szp-contact-page h2 span {
    color: var(--szp-blue);
}

.szp-contact-page ::selection {
    color: #ffffff;
    background: rgba(17, 168, 255, 0.35);
}


/* ============================================================
   CONTACT CONTAINER
   ============================================================ */

.szp-contact-container {
    width: min(
        calc(100% - 64px),
        var(--szp-container)
    );

    margin: 0 auto;
}


/* ============================================================
   SHARED SECTION EYEBROW
   ============================================================ */

.szp-section-eyebrow,
.szp-form-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--szp-blue);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.22em;
    line-height: 1;

    text-transform: uppercase;
}

.szp-section-eyebrow::before,
.szp-form-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    flex-shrink: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 8px rgba(17, 168, 255, 0.55);
}


/* ============================================================
   02. CONTACT HERO
   ============================================================ */

.szp-contact-hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    padding:
        150px
        0
        110px;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(17, 168, 255, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(23, 107, 255, 0.06),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #060a0f 0%,
            #091018 48%,
            #070b10 100%
        );

    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-contact-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.025) 50%,
            transparent 100%
        );

    opacity: 0.55;
}

.szp-contact-hero-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    right: -170px;
    top: 40px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17, 168, 255, 0.13) 0%,
            rgba(17, 168, 255, 0.04) 35%,
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;
}

.szp-contact-hero-inner {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 64px),
        1000px
    );

    margin: 0 auto;

    text-align: center;
}

.szp-contact-hero-inner .szp-section-eyebrow {
    justify-content: center;
}

.szp-contact-hero-inner h1 {
    max-width: 920px;

    margin:
        28px auto
        24px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -0.045em;
}

.szp-contact-hero-inner h1 span {
    display: block;

    text-shadow:
        0 0 35px
        rgba(17, 168, 255, 0.15);
}

.szp-contact-hero-inner p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--szp-text-soft);

    font-size: 16px;

    line-height: 1.85;
}

.szp-contact-hero-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 38px;
}


/* ============================================================
   HERO BUTTONS
   ============================================================ */

.szp-contact-primary-btn,
.szp-contact-secondary-btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        0 23px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;
}

.szp-contact-primary-btn {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    box-shadow:
        0 10px 35px
        rgba(17, 168, 255, 0.18);
}

.szp-contact-primary-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(17, 168, 255, 0.30);
}

.szp-contact-secondary-btn {
    color: var(--szp-text);

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        var(--szp-border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.szp-contact-secondary-btn:hover {
    color: var(--szp-blue);

    transform: translateY(-3px);

    border-color:
        var(--szp-border-blue);

    background:
        rgba(17, 168, 255, 0.055);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.25);
}


/* ============================================================
   03. CONTACT CHANNELS
   ============================================================ */

.szp-contact-channels {
    position: relative;

    padding:
        115px
        0;

    background:
        linear-gradient(
            180deg,
            #080d13 0%,
            #0a1017 100%
        );
}

.szp-contact-section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.szp-contact-section-heading h2 {
    margin:
        20px 0
        14px;

    font-size:
        clamp(
            34px,
            4vw,
            54px
        );

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.szp-contact-section-heading p {
    max-width: 620px;

    margin-bottom: 0;

    color: var(--szp-text-soft);

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   CHANNEL GRID
   ============================================================ */

.szp-contact-channel-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.szp-contact-channel-card {
    position: relative;

    display: grid;

    grid-template-columns:
        64px minmax(0, 1fr);

    gap: 22px;

    min-height: 230px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    border:
        1px solid
        var(--szp-border);

    border-radius:
        var(--szp-radius);

    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.szp-contact-channel-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: var(--szp-blue);

    box-shadow:
        0 0 18px
        rgba(17, 168, 255, 0.65);

    transition:
        height 0.4s ease;
}

.szp-contact-channel-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(17, 168, 255, 0.24);

    background:
        linear-gradient(
            145deg,
            rgba(17, 168, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.25);
}

.szp-contact-channel-card:hover::before {
    height: 100%;
}


/* ============================================================
   CHANNEL ICON
   ============================================================ */

.szp-channel-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    color: var(--szp-blue);

    background:
        rgba(17, 168, 255, 0.07);

    border:
        1px solid
        rgba(17, 168, 255, 0.18);

    font-size: 21px;

    box-shadow:
        inset 0 0 25px
        rgba(17, 168, 255, 0.025);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.szp-contact-channel-card:hover .szp-channel-icon {
    transform: translateY(-2px);

    background:
        rgba(17, 168, 255, 0.11);

    border-color:
        rgba(17, 168, 255, 0.36);

    box-shadow:
        0 0 25px
        rgba(17, 168, 255, 0.10);
}


/* ============================================================
   CHANNEL CONTENT
   ============================================================ */

.szp-channel-label {
    display: block;

    margin-bottom: 9px;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.szp-channel-content h3 {
    margin-bottom: 10px;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: -0.02em;
}

.szp-channel-content p {
    margin-bottom: 18px;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.szp-channel-content > a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--szp-text);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.szp-channel-content > a i {
    color: var(--szp-blue);

    font-size: 10px;

    transition:
        transform 0.3s ease;
}

.szp-channel-content > a:hover {
    color: var(--szp-blue);

    gap: 12px;
}

.szp-channel-content > a:hover i {
    transform: translateX(3px);
}


/* ============================================================
   04. WHY CONTACT SZP
   ============================================================ */

.szp-contact-benefits {
    position: relative;

    padding:
        125px
        0;

    background: #070b10;

    border-top:
        1px solid
        rgba(255,255,255,0.035);

    border-bottom:
        1px solid
        rgba(255,255,255,0.035);
}

.szp-contact-benefits-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 90px;

    align-items: start;
}

.szp-contact-benefits-content h2 {
    max-width: 560px;

    margin:
        22px 0
        22px;

    font-size:
        clamp(
            38px,
            4.2vw,
            58px
        );

    line-height: 1.06;

    letter-spacing: -0.04em;
}

.szp-contact-benefits-content > p {
    max-width: 570px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}

.szp-contact-benefits-content > p + p {
    margin-top: 16px;
}

.szp-benefit-cta {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-top: 22px;

    padding-bottom: 8px;

    color: var(--szp-text);

    border-bottom:
        1px solid
        rgba(17, 168, 255, 0.45);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease,
        border-color 0.3s ease;
}

.szp-benefit-cta i {
    color: var(--szp-blue);

    font-size: 11px;
}

.szp-benefit-cta:hover {
    color: var(--szp-blue);

    gap: 15px;

    border-color:
        var(--szp-blue);
}


/* ============================================================
   BENEFIT LIST
   ============================================================ */

.szp-contact-benefits-list {
    border-top:
        1px solid
        var(--szp-border);
}

.szp-benefit-item {
    display: grid;

    grid-template-columns:
        52px minmax(0,1fr);

    gap: 24px;

    padding:
        28px
        0;

    border-bottom:
        1px solid
        var(--szp-border);

    transition:
        padding-left 0.35s ease;
}

.szp-benefit-item:hover {
    padding-left: 10px;
}

.szp-benefit-number {
    color: var(--szp-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.szp-benefit-item h3 {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 600;
}

.szp-benefit-item p {
    max-width: 500px;

    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   05. MAIN CONTACT SECTION
   ============================================================ */

.szp-contact-main-section {
    position: relative;

    padding:
        135px
        0;

    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(17,168,255,0.06),
            transparent 30%
        ),
        #F1ECE6;
}

.szp-contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    gap: 90px;

    align-items: start;
}


/* ============================================================
   LEFT CONTACT INFORMATION
   ============================================================ */

.szp-contact-information h2 {
    max-width: 560px;

    margin:
        22px 0
        20px;

    font-size:
        clamp(
            38px,
            4vw,
            56px
        );

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.szp-contact-information-intro {
    max-width: 530px;

    margin-bottom: 42px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}


/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */

.szp-contact-info-block {
    display: grid;

    grid-template-columns:
        48px minmax(0,1fr);

    gap: 17px;

    padding:
        20px
        0;

    border-top:
        1px solid
        var(--szp-border);
}

.szp-contact-info-block:last-child {
    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-contact-info-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.16);

    border-radius: 11px;


    font-size: 15px;
}

.szp-contact-info-block span {
    display: block;

    margin-bottom: 6px;

    color: var(--szp-blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.szp-contact-info-block h3 {
    margin-bottom: 4px;

    font-size: 15px;
    font-weight: 600;
}

.szp-contact-info-block p,
.szp-contact-info-block a {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.6;
}

.szp-contact-info-block a {
    transition:
        color 0.3s ease;
}

.szp-contact-info-block a:hover {
    color: var(--szp-blue);
}


/* ============================================================
   RIGHT FORM COLUMN
   ============================================================ */

.szp-contact-form-heading {
    margin-bottom: 28px;
}

.szp-contact-form-heading h2 {
    margin:
        16px 0
        10px;

    font-size:
        clamp(
            32px,
            3.5vw,
            48px
        );

    line-height: 1.08;

    letter-spacing: -0.035em;
}

.szp-contact-form-heading p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 13px;
}


/* ============================================================
   FORM CARD
   ============================================================ */

.szp-contact-form-card {
    position: relative;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(17,25,34,0.92),
            rgba(8,13,19,0.96)
        );

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.30);

    overflow: hidden;

    isolation: isolate;
}

.szp-contact-form-card::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(17,168,255,0.09),
            transparent 25%,
            transparent 72%,
            rgba(17,168,255,0.035)
        );
}

.szp-form-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    top: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.15),
            transparent 68%
        );

    filter: blur(8px);

    pointer-events: none;
}

.szp-form-card-inner {
    position: relative;

    z-index: 2;

    padding: 36px;
}


/* ============================================================
   FORM HEADER
   ============================================================ */

.szp-form-card-header {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 30px;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        var(--szp-border);
}

.szp-form-card-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 12px;

    background:
        rgba(17,168,255,0.06);

    font-size: 16px;
}

.szp-form-card-header h3 {
    margin-bottom: 4px;

    font-size: 17px;
    font-weight: 600;
}

.szp-form-card-header p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 11px;
}


/* ============================================================
   FORM
   ============================================================ */

.szp-modern-contact-form {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


/* ============================================================
   HONEYPOT
   ============================================================ */

.szp-honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0,0,0,0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* ============================================================
   MODERN FIELD
   ============================================================ */

.szp-modern-field {
    position: relative;

    min-height: 62px;
}

.szp-modern-field input,
.szp-modern-field textarea {
    width: 100%;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-modern-field input {
    height: 62px;

    padding:
        20px
        18px
        7px
        49px;
}

.szp-modern-field textarea {
    min-height: 150px;

    resize: vertical;

    padding:
        25px
        18px
        10px
        49px;

    line-height: 1.65;
}

.szp-modern-field input::placeholder,
.szp-modern-field textarea::placeholder,
.szp-phone-field input::placeholder {
    color: transparent;
}

.szp-modern-field input:focus,
.szp-modern-field textarea:focus {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.055),
        0 0 25px
        rgba(17,168,255,0.05);
}


/* ============================================================
   FIELD ICON
   ============================================================ */

.szp-field-icon {
    position: absolute;

    left: 18px;
    top: 22px;

    z-index: 3;

    color: var(--szp-text-muted);

    font-size: 14px;

    pointer-events: none;

    transition:
        color 0.3s ease;
}

.szp-modern-field:focus-within .szp-field-icon {
    color: var(--szp-blue);
}


/* ============================================================
   FLOATING LABEL
   ============================================================ */

.szp-modern-field label,
.szp-phone-field label {
    position: absolute;

    left: 49px;
    top: 21px;

    z-index: 2;

    color: var(--szp-text-muted);

    font-size: 12px;
    font-weight: 400;

    pointer-events: none;

    transform-origin: left center;

    transition:
        top 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease,
        font-size 0.25s ease;
}

.szp-modern-field input:focus + label,
.szp-modern-field input:not(:placeholder-shown) + label,
.szp-modern-field textarea:focus + label,
.szp-modern-field textarea:not(:placeholder-shown) + label,
.szp-phone-field input:focus + label,
.szp-phone-field input:not(:placeholder-shown) + label {
    top: 8px;

    color: var(--szp-blue);

    font-size: 9px;

    transform:
        translateY(0);
}


/* ============================================================
   PHONE FIELD
   ============================================================ */

.szp-modern-phone {
    display: grid;

    grid-template-columns:
        130px minmax(0,1fr);

    gap: 10px;
}

.szp-modern-country {
    position: relative;

    height: 62px;

    display: flex;

    align-items: center;

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    background:
        rgba(255,255,255,0.025);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-modern-country:focus-within {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.045);
}

.szp-modern-country > i {
    position: absolute;

    left: 16px;

    z-index: 2;

    color: var(--szp-text-muted);

    font-size: 13px;

    pointer-events: none;
}

.szp-modern-country select {
    width: 100%;
    height: 100%;

    padding:
        0
        14px
        0
        42px;

    color: var(--szp-text);

    background: transparent;

    border: 0;

    outline: none;

    cursor: pointer;

    appearance: auto;
}

.szp-modern-country select option {
    color: #111820;

    background: #ffffff;
}

.szp-phone-field {
    position: relative;
}

.szp-phone-field input {
    width: 100%;
    height: 62px;

    padding:
        20px
        18px
        7px;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 10px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.szp-phone-field input:focus {
    border-color:
        rgba(17,168,255,0.65);

    background:
        rgba(17,168,255,0.035);

    box-shadow:
        0 0 0 3px
        rgba(17,168,255,0.055);
}

.szp-phone-field label {
    left: 18px;
}


/* ============================================================
   MESSAGE FIELD
   ============================================================ */

.szp-message-field {
    min-height: 150px;
}

.szp-message-icon {
    top: 26px;
}

.szp-message-field label {
    top: 25px;
}


/* ============================================================
   FORM STATUS
   ============================================================ */

.szp-form-status {
    min-height: 0;

    margin-top: 2px;

    color: var(--szp-text-soft);

    font-size: 12px;

    line-height: 1.6;
}

.szp-form-status:not(:empty) {
    padding:
        11px
        13px;

    border:
        1px solid
        rgba(17,168,255,0.18);

    border-radius: 8px;

    background:
        rgba(17,168,255,0.035);
}


/* ============================================================
   SUBMIT BUTTON
   ============================================================ */

.szp-modern-submit {
    position: relative;

    width: 100%;
    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        0
        8px
        0
        22px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    border: 0;

    border-radius: 10px;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 12px 35px
        rgba(17,168,255,0.15);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        opacity 0.3s ease;
}

.szp-modern-submit::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255,255,255,0.18) 50%,
            transparent 75%
        );

    transform:
        translateX(-100%);

    transition:
        transform 0.7s ease;
}

.szp-modern-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 45px
        rgba(17,168,255,0.28);
}

.szp-modern-submit:hover::before {
    transform:
        translateX(100%);
}

.szp-submit-text {
    position: relative;

    z-index: 2;

    font-size: 13px;
    font-weight: 600;
}

.szp-submit-icon {
    position: relative;

    z-index: 2;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,0.13);

    transition:
        transform 0.3s ease;
}

.szp-modern-submit:hover .szp-submit-icon {
    transform: translateX(3px);
}


/* ============================================================
   POLICY
   ============================================================ */

.szp-modern-policy {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: -2px;

    color: var(--szp-text-muted);

    font-size: 10px;

    line-height: 1.65;
}

.szp-modern-policy > i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--szp-blue);

    font-size: 11px;
}

.szp-policy-link {
    color: var(--szp-text-soft);

    border-bottom:
        1px solid
        rgba(17,168,255,0.28);

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.szp-policy-link:hover {
    color: var(--szp-blue);

    border-color:
        var(--szp-blue);
}


/* ============================================================
   06. INDUSTRIES
   ============================================================ */

.szp-contact-industries {
    padding:
        120px
        0;

    background:
        #070b10;
}

.szp-contact-industry-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 14px;
}

.szp-industry-card {
    position: relative;

    min-height: 165px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    padding: 22px;

    background:
        rgba(255,255,255,0.025);

    border:
        1px solid
        var(--szp-border);

    border-radius:
        var(--szp-radius-small);

    overflow: hidden;

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.szp-industry-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--szp-blue),
            transparent
        );

    transform:
        scaleX(0);

    transition:
        transform 0.4s ease;
}

.szp-industry-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(17,168,255,0.25);

    background:
        rgba(17,168,255,0.045);

    box-shadow:
        0 16px 38px
        rgba(0,0,0,0.22);
}

.szp-industry-card:hover::after {
    transform:
        scaleX(1);
}

.szp-industry-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--szp-blue);

    border:
        1px solid
        rgba(17,168,255,0.16);

    border-radius: 10px;

    background:
        rgba(17,168,255,0.045);

    font-size: 17px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.szp-industry-card:hover .szp-industry-icon {
    transform:
        translateY(-2px);

    background:
        rgba(17,168,255,0.09);
}

.szp-industry-card > span {
    margin-top: 20px;

    color: var(--szp-text);

    font-size: 13px;
    font-weight: 600;
}

.szp-industry-card > i {
    position: absolute;

    right: 20px;
    bottom: 21px;

    color: var(--szp-text-muted);

    font-size: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.szp-industry-card:hover > i {
    color: var(--szp-blue);

    transform:
        translate(2px,-2px);
}


/* ============================================================
   07. VISIT SZP
   ============================================================ */

.szp-contact-visit {
    position: relative;

    padding:
        125px
        0;

    background:
        linear-gradient(
            135deg,
            #080d13,
            #0a1118
        );

    overflow: hidden;
}

.szp-contact-visit-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: -220px;
    top: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.10),
            transparent 68%
        );

    pointer-events: none;
}

.szp-contact-visit-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(360px,0.65fr);

    gap: 90px;

    align-items: center;
}

.szp-contact-visit-content h2 {
    margin:
        22px 0
        20px;

    font-size:
        clamp(
            38px,
            4.3vw,
            58px
        );

    line-height: 1.06;

    letter-spacing: -0.04em;
}

.szp-contact-visit-content > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.85;
}

.szp-visit-details {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 35px;

    padding-top: 25px;

    border-top:
        1px solid
        var(--szp-border);
}

.szp-visit-details span {
    display: block;

    margin-bottom: 9px;

    color: var(--szp-blue);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.szp-visit-details strong {
    display: block;

    margin-bottom: 5px;

    color: var(--szp-text);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.55;
}

.szp-visit-details p {
    margin-bottom: 0;

    color: var(--szp-text-muted);

    font-size: 12px;
}


/* ============================================================
   LOCATION CARD
   ============================================================ */

.szp-contact-location-card {
    position: relative;

    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(17,168,255,0.055),
            rgba(255,255,255,0.018)
        );

    border:
        1px solid
        rgba(17,168,255,0.18);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,0.25);
}

.szp-location-card-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    right: -110px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.13),
            transparent 68%
        );

    pointer-events: none;
}

.szp-location-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--szp-blue);

    background:
        rgba(17,168,255,0.07);

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 14px;

    font-size: 21px;
}

.szp-contact-location-card > span {
    position: relative;

    z-index: 2;

    color: var(--szp-blue);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.20em;
}

.szp-contact-location-card h3 {
    position: relative;

    z-index: 2;

    margin:
        12px 0
        10px;

    font-size: 30px;

    letter-spacing: -0.03em;
}

.szp-contact-location-card p {
    position: relative;

    z-index: 2;

    max-width: 400px;

    margin-bottom: 25px;

    color: var(--szp-text-muted);

    font-size: 13px;

    line-height: 1.75;
}

.szp-location-btn {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--szp-text);

    font-size: 12px;
    font-weight: 600;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.szp-location-btn i {
    color: var(--szp-blue);
}

.szp-location-btn:hover {
    color: var(--szp-blue);

    gap: 14px;
}


/* ============================================================
   08. FINAL CTA
   ============================================================ */

.szp-contact-final-cta {
    position: relative;

    padding:
        135px
        0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(17,168,255,0.10),
            transparent 38%
        ),
        #060a0f;

    border-top:
        1px solid
        var(--szp-border);

    overflow: hidden;
}

.szp-contact-final-glow {
    position: absolute;

    width: 650px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(17,168,255,0.08),
            transparent 68%
        );

    pointer-events: none;
}

.szp-contact-final-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.szp-contact-final-content .szp-section-eyebrow {
    justify-content: center;
}

.szp-contact-final-content h2 {
    margin:
        24px 0
        18px;

    font-size:
        clamp(
            40px,
            5vw,
            68px
        );

    line-height: 1.05;

    letter-spacing: -0.045em;
}

.szp-contact-final-content p {
    max-width: 610px;

    margin:
        0 auto
        30px;

    color: var(--szp-text-soft);

    font-size: 14px;

    line-height: 1.8;
}

.szp-contact-final-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding:
        0 25px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        );

    border-radius: 9px;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 12px 35px
        rgba(17,168,255,0.16);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease;
}

.szp-contact-final-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 45px
        rgba(17,168,255,0.28);
}


/* ============================================================
   09. THANK YOU SCREEN
   SINGLE CONSOLIDATED VERSION
   ============================================================ */

.szp-thank-you-screen {
    position: fixed;

    inset: 0;

    z-index: 99999;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(17,168,255,0.10),
            transparent 38%
        ),
        rgba(4,7,11,0.985);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    text-align: center;

    overflow-y: auto;

    overscroll-behavior: contain;
}

.szp-thank-you-screen[hidden] {
    display: none !important;
}


/* ============================================================
   THANK YOU BACKGROUND GLOW
   ============================================================ */

.szp-thank-you-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17,168,255,0.13),
            rgba(23,107,255,0.05),
            transparent 68%
        );

    filter: blur(12px);

    pointer-events: none;
}


/* ============================================================
   THANK YOU BOX
   ============================================================ */

.szp-thank-you-box {
    position: relative;

    z-index: 3;

    width: min(520px, 100%);

    min-height: 220px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    background:
        linear-gradient(
            145deg,
            rgba(17,25,34,0.95),
            rgba(8,13,19,0.97)
        );

    border:
        1px solid
        rgba(17,168,255,0.20);

    border-radius: 20px;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,0.45);

    overflow: hidden;

    isolation: isolate;

    animation:
        szp-thank-you-box-in
        0.7s
        cubic-bezier(.2,.8,.2,1)
        both;
}

.szp-thank-you-box::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(17,168,255,0.08),
            transparent 35%,
            transparent 65%,
            rgba(17,168,255,0.035)
        );
}


/* ============================================================
   THANK YOU BOX IMAGE
   ============================================================ */

.szp-thank-you-box img {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    margin: 0;

    object-fit: contain;

    pointer-events: none;
}


/* ============================================================
   THANK YOU TITLE
   ============================================================ */

.szp-thank-you-title {
    position: relative;

    z-index: 4;

    margin: 0;

    padding: 0 20px;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            6vw,
            64px
        );

    line-height: 1;

    font-weight: 400;

    letter-spacing: -0.045em;

    text-shadow:
        0 0 30px
        rgba(17,168,255,0.16);
}


/* ============================================================
   THANK YOU MESSAGE
   ============================================================ */

.szp-thank-you-message {
    position: relative;

    z-index: 4;

    width: min(520px, 100%);

    margin:
        25px
        auto
        0;

    padding:
        0
        15px;
}

.szp-thank-you-message p {
    margin: 0;

    color:
        rgba(255,255,255,0.72);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   THANK YOU CLOSE BUTTON
   ============================================================ */

.szp-thank-you-close {
    position: relative;

    z-index: 4;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 24px;

    padding:
        12px
        20px;

    color: var(--szp-text);

    background:
        rgba(255,255,255,0.045);

    border:
        1px solid
        rgba(255,255,255,0.10);

    border-radius: 30px;

    cursor: pointer;

    font-family: "Poppins", sans-serif;

    font-size: 11px;
    font-weight: 600;

    line-height: 1;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.szp-thank-you-close i {
    color: var(--szp-blue);

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.szp-thank-you-close:hover {
    transform: translateY(-2px);

    border-color:
        rgba(17,168,255,0.45);

    background:
        rgba(17,168,255,0.10);

    color: var(--szp-blue);
}

.szp-thank-you-close:hover i {
    color: #ffffff;

    transform:
        translateX(-2px);
}


/* ============================================================
   THANK YOU ANIMATION
   ============================================================ */

@keyframes szp-thank-you-box-in {

    from {
        opacity: 0;

        transform:
            scale(0.82)
            translateY(20px);
    }

    to {
        opacity: 1;

        transform:
            scale(1)
            translateY(0);
    }
}


/* ============================================================
   FORM VALIDATION / ERROR STATES
   ============================================================ */

.szp-modern-field.szp-field-error input,
.szp-modern-field.szp-field-error textarea,
.szp-phone-field.szp-field-error input,
.szp-modern-country.szp-field-error {
    border-color:
        rgba(255,90,90,0.75);

    box-shadow:
        0 0 0 3px
        rgba(255,90,90,0.045);
}

.szp-modern-field.szp-field-error .szp-field-icon,
.szp-phone-field.szp-field-error label {
    color: #ff7474;
}


/* ============================================================
   LOADING STATE
   ============================================================ */

.szp-modern-submit.is-loading,
.szp-modern-submit:disabled {
    cursor: wait;

    opacity: 0.75;

    transform: none;

    box-shadow: none;
}

.szp-modern-submit.is-loading .szp-submit-icon i {
    animation:
        szp-contact-spin
        0.8s linear infinite;
}

@keyframes szp-contact-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   FOCUS ACCESSIBILITY
   ============================================================ */

.szp-contact-page a:focus-visible,
.szp-contact-page button:focus-visible,
.szp-contact-page input:focus-visible,
.szp-contact-page textarea:focus-visible,
.szp-contact-page select:focus-visible {
    outline:
        2px solid
        var(--szp-blue);

    outline-offset: 3px;
}


/* ============================================================
   RESPONSIVE — LARGE TABLETS
   ============================================================ */

@media (max-width: 1100px) {

    .szp-contact-main-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .szp-contact-information-intro {
        max-width: 700px;
    }

    .szp-contact-benefits-grid {
        gap: 55px;
    }

    .szp-contact-visit-grid {
        gap: 55px;
    }

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(4, minmax(0,1fr));
    }
}


/* ============================================================
   RESPONSIVE — TABLETS
   ============================================================ */

@media (max-width: 850px) {

    .szp-contact-container {
        width:
            min(
                calc(100% - 40px),
                var(--szp-container)
            );
    }

    .szp-contact-hero {
        min-height: 650px;

        padding:
            135px
            0
            90px;
    }

    .szp-contact-hero-inner {
        width:
            min(
                calc(100% - 40px),
                850px
            );
    }

    .szp-contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .szp-contact-benefits-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .szp-contact-visit-grid {
        grid-template-columns: 1fr;
    }

    .szp-contact-location-card {
        min-height: 340px;
    }

    .szp-thank-you-screen {
        padding: 25px;
    }

    .szp-thank-you-box {
        width:
            min(500px, 92%);

        min-height: 210px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .szp-contact-container {
        width:
            calc(100% - 32px);
    }

    .szp-contact-hero {
        min-height: auto;

        padding:
            120px
            0
            75px;
    }

    .szp-contact-hero-inner {
        width:
            calc(100% - 32px);
    }

    .szp-contact-hero-inner h1 {
        margin:
            22px auto
            18px;

        font-size:
            clamp(
                38px,
                11vw,
                54px
            );

        line-height: 1.05;
    }

    .szp-contact-hero-inner p {
        font-size: 13px;

        line-height: 1.75;
    }

    .szp-contact-hero-actions {
        flex-direction: column;

        width: 100%;

        margin-top: 30px;
    }

    .szp-contact-primary-btn,
    .szp-contact-secondary-btn {
        width: 100%;
    }


    /* ========================================================
       SECTIONS
       ======================================================== */

    .szp-contact-channels,
    .szp-contact-benefits,
    .szp-contact-main-section,
    .szp-contact-industries,
    .szp-contact-visit,
    .szp-contact-final-cta {
        padding:
            80px
            0;
    }

    .szp-contact-section-heading {
        margin-bottom: 38px;
    }

    .szp-contact-section-heading h2,
    .szp-contact-benefits-content h2,
    .szp-contact-information h2,
    .szp-contact-visit-content h2 {
        font-size:
            clamp(
                32px,
                9vw,
                43px
            );
    }


    /* ========================================================
       CHANNEL CARDS
       ======================================================== */

    .szp-contact-channel-card {
        grid-template-columns: 1fr;

        gap: 18px;

        min-height: auto;

        padding: 25px;
    }

    .szp-channel-icon {
        width: 52px;
        height: 52px;
    }


    /* ========================================================
       BENEFITS
       ======================================================== */

    .szp-benefit-item {
        grid-template-columns:
            40px minmax(0,1fr);

        gap: 14px;

        padding:
            23px
            0;
    }

    .szp-benefit-item:hover {
        padding-left: 5px;
    }


    /* ========================================================
       FORM
       ======================================================== */

    .szp-contact-main-grid {
        gap: 50px;
    }

    .szp-contact-information-intro {
        margin-bottom: 28px;
    }

    .szp-form-card-inner {
        padding: 23px;
    }

    .szp-form-card-header {
        margin-bottom: 24px;

        padding-bottom: 20px;
    }

    .szp-modern-phone {
        grid-template-columns:
            105px minmax(0,1fr);

        gap: 7px;
    }

    .szp-modern-country select {
        padding-left: 37px;

        font-size: 12px;
    }

    .szp-modern-country > i {
        left: 13px;
    }

    .szp-modern-field input {
        padding-left: 45px;
    }

    .szp-modern-field textarea {
        padding-left: 45px;
    }

    .szp-field-icon {
        left: 16px;
    }

    .szp-modern-field label {
        left: 45px;
    }


    /* ========================================================
       INDUSTRIES
       ======================================================== */

    .szp-contact-industry-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 10px;
    }

    .szp-industry-card {
        min-height: 145px;

        padding: 18px;
    }

    .szp-industry-card > i {
        right: 16px;
        bottom: 18px;
    }


    /* ========================================================
       VISIT
       ======================================================== */

    .szp-visit-details {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .szp-contact-location-card {
        min-height: 330px;

        padding: 30px;
    }


    /* ========================================================
       FINAL CTA
       ======================================================== */

    .szp-contact-final-content h2 {
        font-size:
            clamp(
                36px,
                10vw,
                50px
            );
    }


    /* ========================================================
       THANK YOU
       ======================================================== */

    .szp-thank-you-screen {
        padding:
            20px 16px;
    }

    .szp-thank-you-box {
        width:
            min(390px, 94%);

        min-height: 170px;

        border-radius: 17px;
    }

    .szp-thank-you-title {
        font-size: 43px;
    }

    .szp-thank-you-message {
        margin-top: 20px;

        padding:
            0 8px;
    }

    .szp-thank-you-message p {
        font-size: 12px;
    }

    .szp-thank-you-close {
        margin-top: 20px;

        padding:
            11px 19px;

        font-size: 10px;
    }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .szp-contact-container,
    .szp-contact-hero-inner {
        width:
            calc(100% - 24px);
    }

    .szp-contact-channel-card {
        padding: 21px;
    }

    .szp-form-card-inner {
        padding: 18px;
    }

    .szp-modern-phone {
        grid-template-columns:
            95px minmax(0,1fr);
    }

    .szp-modern-country select {
        padding-left: 34px;
    }

    .szp-modern-country > i {
        left: 11px;
    }

    .szp-modern-policy {
        font-size: 9px;
    }

    .szp-thank-you-screen {
        padding:
            18px 14px;
    }

    .szp-thank-you-box {
        width: 320px;

        min-height: 145px;
    }

    .szp-thank-you-title {
        font-size: 37px;

        letter-spacing: -1.5px;
    }

    .szp-thank-you-message {
        margin-top: 18px;

        padding:
            0 10px;
    }

    .szp-thank-you-message p {
        font-size: 10px;
    }

    .szp-thank-you-close {
        margin-top: 18px;

        padding:
            10px 18px;

        font-size: 9px;
    }
}


/* ============================================================
   RESPONSIVE — VERY SMALL PHONES
   ============================================================ */

@media (max-width: 360px) {

    .szp-contact-container,
    .szp-contact-hero-inner {
        width:
            calc(100% - 20px);
    }

    .szp-modern-phone {
        grid-template-columns:
            88px minmax(0,1fr);
    }

    .szp-modern-country select {
        padding-left: 31px;

        font-size: 11px;
    }

    .szp-modern-country > i {
        left: 9px;
    }

    .szp-thank-you-screen {
        padding:
            15px 10px;
    }

    .szp-thank-you-box {
        width: 290px;

        min-height: 130px;
    }

    .szp-thank-you-title {
        font-size: 33px;
    }

    .szp-thank-you-message {
        margin-top: 15px;
    }

    .szp-thank-you-message p {
        font-size: 9px;
    }

    .szp-thank-you-close {
        padding:
            9px 16px;

        font-size: 8px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .szp-contact-page *,
    .szp-contact-page *::before,
    .szp-contact-page *::after,
    .szp-thank-you-screen *,
    .szp-thank-you-screen *::before,
    .szp-thank-you-screen *::after {
        scroll-behavior: auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }
}


/* ============================================================
   END — SZP CONTACT US CSS
   ============================================================ */













/* =========================================================
   SZP PRODUCTS PAGE
   MODERN / GLOW / PRODUCT CATALOG
========================================================= */

.szp-products-page,
.szp-products-page * {
    box-sizing: border-box;
}

.szp-products-page {
    --szp-blue: #11a8ff;
    --szp-blue-2: #176bff;
    --szp-cyan: #29d9ff;
    --szp-bg: #050b13;
    --szp-bg-2: #08111d;
    --szp-card: rgba(13, 25, 39, .78);
    --szp-border: rgba(17, 168, 255, .18);
    --szp-text: #f4f9ff;
    --szp-muted: #91a4b8;

    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(17, 168, 255, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #040910 0%,
            #07111c 50%,
            #040910 100%
        );
    color: var(--szp-text);
    font-family: "Poppins", sans-serif;
}

.szp-products-page button,
.szp-products-page input,
.szp-products-page textarea {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.szp-products-hero {
    position: relative;
    min-height: 780px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 40px;
    padding: 130px 7% 100px;
    overflow: hidden;
    isolation: isolate;
}

.szp-products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 16, .97) 0%,
            rgba(4, 9, 16, .78) 48%,
            rgba(4, 9, 16, .35) 100%
        );
    z-index: -1;
}

.szp-products-hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    animation: szpHeroContent .9s ease both;
}

.szp-products-eyebrow,
.szp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--szp-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.szp-products-eyebrow::before,
.szp-section-label::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--szp-blue);
    box-shadow: 0 0 12px var(--szp-blue);
}

.szp-products-hero h1 {
    margin: 22px 0;
    max-width: 760px;
    font-size: clamp(48px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 700;
}

.szp-products-hero h1 span,
.szp-section-heading h2 span,
.szp-quality-content h2 span,
.szp-custom-header h2 span,
.szp-printing-copy h3 span,
.szp-products-final-cta h2 span {
    color: var(--szp-blue);
    text-shadow: 0 0 28px rgba(17, 168, 255, .25);
}

.szp-products-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 16px;
    line-height: 1.9;
}

.szp-products-hero-actions,
.szp-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.szp-product-primary-btn,
.szp-product-secondary-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.szp-product-primary-btn {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    box-shadow:
        0 0 25px rgba(17, 168, 255, .18);
}

.szp-product-secondary-btn {
    color: #fff;
    border: 1px solid rgba(17, 168, 255, .35);
    background: rgba(255, 255, 255, .025);
    backdrop-filter: blur(15px);
}

.szp-product-primary-btn:hover,
.szp-product-secondary-btn:hover {
    transform: translateY(-4px);
}

.szp-product-primary-btn:hover {
    box-shadow:
        0 12px 35px rgba(17, 168, 255, .25);
}

.szp-product-secondary-btn:hover {
    border-color: var(--szp-blue);
    box-shadow:
        0 0 25px rgba(17, 168, 255, .12);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.szp-products-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-hero-product-ring {
    position: absolute;
    width: min(520px, 75vw);
    aspect-ratio: 1;
    border: 1px solid rgba(17, 168, 255, .22);
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(17, 168, 255, .08),
        inset 0 0 60px rgba(17, 168, 255, .04);
    animation: szpRingRotate 18s linear infinite;
}

.szp-hero-product-ring::before,
.szp-hero-product-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(41, 217, 255, .14);
}

.szp-hero-product-ring::before {
    inset: 35px;
}

.szp-hero-product-ring::after {
    inset: 75px;
}

.szp-hero-product-bag {
    position: relative;
    width: 220px;
    height: 330px;
    transform: perspective(700px) rotateY(-12deg);
    filter:
        drop-shadow(0 30px 35px rgba(0, 0, 0, .45))
        drop-shadow(0 0 35px rgba(17, 168, 255, .12));
    animation: szpBagFloat 5s ease-in-out infinite;
}

.szp-bag-top {
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 22px;
    border-radius: 5px 5px 2px 2px;
    background: repeating-linear-gradient(
        90deg,
        #d9e1e7 0 3px,
        #f8fbfd 3px 6px
    );
}

.szp-bag-body {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1c2933;
    border-radius: 3px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, .035) 0 2px,
            transparent 2px 5px
        ),
        linear-gradient(
            135deg,
            #f5f7f8,
            #d9e0e5
        );
    box-shadow:
        inset 0 0 35px rgba(0, 0, 0, .10);
}

.szp-bag-body span {
    color: #1374b8;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 5px;
}

.szp-bag-body small {
    margin-top: 8px;
    color: #5f6d77;
    font-size: 9px;
    letter-spacing: 3px;
}

.szp-floating-spec {
    position: absolute;
    padding: 15px 20px;
    border: 1px solid rgba(17, 168, 255, .22);
    border-radius: 12px;
    background: rgba(7, 18, 30, .65);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .18);
    animation: szpSpecFloat 5s ease-in-out infinite;
}

.szp-floating-spec strong {
    display: block;
    color: var(--szp-blue);
    font-size: 25px;
}

.szp-floating-spec span {
    display: block;
    margin-top: 2px;
    color: #91a4b8;
    font-size: 10px;
    letter-spacing: 1px;
}

.szp-floating-spec-1 {
    top: 14%;
    right: 3%;
}

.szp-floating-spec-2 {
    bottom: 15%;
    left: 0;
    animation-delay: -2s;
}

.szp-products-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .16;
    pointer-events: none;
}

.szp-products-orb-1 {
    top: -120px;
    right: 10%;
    background: var(--szp-blue);
}

.szp-products-orb-2 {
    bottom: -160px;
    left: 20%;
    background: #315cff;
}

.szp-products-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(
            rgba(17, 168, 255, .35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 168, 255, .35) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
    z-index: -1;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.szp-products-intro,
.szp-featured-products,
.szp-product-catalog,
.szp-product-quality,
.szp-custom-products,
.szp-products-final-cta {
    position: relative;
    padding: 110px 7%;
}

.szp-section-heading {
    max-width: 850px;
    margin-bottom: 55px;
}

.szp-section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.szp-section-heading.centered .szp-section-label {
    justify-content: center;
}

.szp-section-heading h2 {
    margin: 17px 0;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.szp-section-heading p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   INTRO STATS
========================================================= */

.szp-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--szp-border);
    border-radius: 18px;
    background: var(--szp-border);
}

.szp-intro-stat {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(7, 16, 26, .85);
    transition: background .3s ease;
}

.szp-intro-stat:hover {
    background: rgba(12, 28, 44, .95);
}

.szp-intro-stat strong {
    color: var(--szp-blue);
    font-size: 35px;
    line-height: 1;
}

.szp-intro-stat span {
    margin-top: 12px;
    color: var(--szp-muted);
    font-size: 12px;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.szp-featured-products {
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(17, 168, 255, .055),
            transparent 30%
        ),
        #050b13;
}

.szp-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.szp-featured-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--szp-border);
    border-radius: 20px;
    background:
        linear-gradient(
            180deg,
            rgba(16, 30, 46, .9),
            rgba(7, 15, 25, .96)
        );
    transition:
        transform .45s ease,
        border-color .45s ease,
        box-shadow .45s ease;
}

.szp-featured-card:hover {
    transform: translateY(-10px);
    border-color: rgba(17, 168, 255, .5);
    box-shadow:
        0 25px 65px rgba(0, 0, 0, .28),
        0 0 35px rgba(17, 168, 255, .08);
}

.szp-featured-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(17, 168, 255, .12),
            transparent 65%
        ),
        #0b1622;
}

.szp-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(3, 8, 14, .6)
    );
    pointer-events: none;
}

.szp-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 28px;
    transition: transform .65s cubic-bezier(.2,.8,.2,1);
}

.szp-featured-card:hover .szp-featured-image img {
    transform: scale(1.07);
}

.szp-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border: 1px solid rgba(17, 168, 255, .35);
    border-radius: 999px;
    color: #fff;
    background: rgba(5, 13, 22, .65);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.szp-featured-content {
    padding: 25px;
}

.szp-featured-content > span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.szp-featured-content h3 {
    margin: 9px 0;
    font-size: 24px;
}

.szp-featured-content p {
    min-height: 75px;
    margin: 0;
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.75;
}

.szp-featured-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
}

.szp-detail-btn,
.szp-cart-btn,
.szp-modal-cart,
.szp-modal-custom {
    min-height: 48px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
}

.szp-detail-btn {
    border: 1px solid rgba(17, 168, 255, .25);
    color: #fff;
    background: rgba(255,255,255,.035);
}

.szp-cart-btn,
.szp-modal-cart {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
}

.szp-detail-btn:hover,
.szp-cart-btn:hover,
.szp-modal-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17,168,255,.16);
}


/* =========================================================
   CATALOG
========================================================= */

.szp-product-catalog {
    background: #040a11;
}

.szp-product-controls {
    position: sticky;
    top: 15px;
    z-index: 20;
    margin-bottom: 45px;
    padding: 15px;
    border: 1px solid var(--szp-border);
    border-radius: 16px;
    background: rgba(5, 13, 22, .78);
    backdrop-filter: blur(20px);
}

.szp-product-search {
    position: relative;
    margin-bottom: 14px;
}

.szp-product-search i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: var(--szp-blue);
    transform: translateY(-50%);
}

.szp-product-search input {
    width: 100%;
    height: 52px;
    padding: 0 20px 0 48px;
    outline: none;
    border: 1px solid rgba(17, 168, 255, .13);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.035);
}

.szp-product-search input:focus {
    border-color: rgba(17,168,255,.55);
    box-shadow: 0 0 25px rgba(17,168,255,.07);
}

.szp-product-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.szp-product-filter button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 999px;
    color: #9eb0c2;
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.szp-product-filter button:hover,
.szp-product-filter button.active {
    color: #fff;
    border-color: rgba(17,168,255,.5);
    background: rgba(17,168,255,.1);
    box-shadow: 0 0 18px rgba(17,168,255,.07);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.szp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.szp-product-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(13,27,42,.88),
            rgba(6,14,23,.96)
        );
    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
    animation: szpProductReveal .6s ease both;
}

.szp-product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(17,168,255,.42);
    box-shadow:
        0 20px 50px rgba(0,0,0,.24),
        0 0 30px rgba(17,168,255,.07);
}

.szp-product-card-image {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle,
            rgba(17,168,255,.11),
            transparent 62%
        ),
        #0a1520;
}

.szp-product-card-bag {
    width: 115px;
    height: 165px;
    position: relative;
    transform: rotate(-3deg);
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.35));
    transition: transform .5s ease;
}

.szp-product-card:hover .szp-product-card-bag {
    transform:
        rotate(2deg)
        scale(1.07)
        translateY(-4px);
}

.szp-product-card-bag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    height: 13px;
    border-radius: 3px 3px 1px 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.55) 0 2px,
        rgba(0,0,0,.08) 2px 4px
    );
}

.szp-product-card-bag::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        var(--bag-color, #e9edf0);
    box-shadow: inset 0 0 25px rgba(0,0,0,.12);
}

.szp-product-card-bag span {
    position: absolute;
    z-index: 2;
    top: 67px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(17, 91, 140, .85);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 2px;
}

.szp-product-card-info {
    padding: 18px;
}

.szp-product-card-category {
    display: block;
    margin-bottom: 6px;
    color: var(--szp-blue);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.szp-product-card-info h3 {
    min-height: 46px;
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.szp-product-card-info .szp-product-urdu {
    margin-top: 4px;
    color: #6f8295;
    font-size: 11px;
}

.szp-product-spec-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 14px;
}

.szp-product-spec {
    padding: 8px;
    border: 1px solid rgba(17,168,255,.09);
    border-radius: 7px;
    background: rgba(255,255,255,.02);
}

.szp-product-spec span {
    display: block;
    color: #64778a;
    font-size: 8px;
    text-transform: uppercase;
}

.szp-product-spec strong {
    display: block;
    margin-top: 3px;
    color: #dce8f2;
    font-size: 11px;
}

.szp-product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 13px;
}

.szp-product-card-actions button {
    min-height: 42px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.szp-card-learn {
    border: 1px solid rgba(17,168,255,.18);
    color: #fff;
    background: transparent;
}

.szp-card-add {
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
}

.szp-card-learn:hover,
.szp-card-add:hover {
    transform: translateY(-2px);
}

.szp-product-empty {
    display: none;
    padding: 80px 20px;
    text-align: center;
}

.szp-product-empty.show {
    display: block;
}

.szp-product-empty i {
    color: var(--szp-blue);
    font-size: 40px;
}

.szp-product-empty h3 {
    margin: 18px 0 8px;
}

.szp-product-empty p {
    color: var(--szp-muted);
}

.szp-show-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.szp-show-more-btn {
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid rgba(17,168,255,.28);
    border-radius: 10px;
    color: #fff;
    background: rgba(17,168,255,.06);
    cursor: pointer;
    transition: .3s ease;
}

.szp-show-more-btn:hover {
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.12);
    box-shadow: 0 0 25px rgba(17,168,255,.09);
    transform: translateY(-3px);
}

.szp-show-more-btn.hidden {
    display: none;
}


/* =========================================================
   QUALITY
========================================================= */

.szp-product-quality {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 80px;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(17,168,255,.09),
            transparent 30%
        ),
        #07101a;
}

.szp-quality-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-quality-ring {
    position: absolute;
    width: 400px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(17,168,255,.18);
    box-shadow: 0 0 80px rgba(17,168,255,.06);
    animation: szpRingRotate 20s linear infinite;
}

.szp-quality-bag {
    position: relative;
    width: 190px;
    height: 285px;
    border-radius: 3px;
    transform: rotate(-6deg);
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        #e5eaed;
    box-shadow:
        0 30px 45px rgba(0,0,0,.35),
        inset 0 0 30px rgba(0,0,0,.08);
    animation: szpBagFloat 5.5s ease-in-out infinite;
}

.szp-quality-bag::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 8px;
    right: 8px;
    height: 15px;
    background: #d2d9de;
}

.szp-quality-bag-print {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #1777b5;
    font-size: 38px;
    font-weight: 800;
}

.szp-quality-bag-print small {
    display: block;
    margin-top: 5px;
    color: #647783;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-quality-content h2 {
    margin: 18px 0;
    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.08;
}

.szp-quality-content > p {
    max-width: 700px;
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.szp-quality-features > div {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 13px;
    background: rgba(255,255,255,.02);
    transition: .35s ease;
}

.szp-quality-features > div:hover {
    border-color: rgba(17,168,255,.3);
    transform: translateY(-4px);
}

.szp-quality-features i {
    flex: 0 0 34px;
    color: var(--szp-blue);
    font-size: 20px;
}

.szp-quality-features h3 {
    margin: 0 0 6px;
    font-size: 14px;
}

.szp-quality-features p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   CUSTOMIZED PRODUCTS
========================================================= */

.szp-custom-products {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(17,168,255,.11),
            transparent 38%
        ),
        #040b13;
}

.szp-custom-header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.szp-custom-header .szp-section-label {
    justify-content: center;
}

.szp-custom-header h2 {
    margin: 18px 0;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
}

.szp-custom-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-custom-process {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
    align-items: center;
    max-width: 1250px;
    margin: auto;
}

.szp-custom-step {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 18px;
    background: rgba(11,23,37,.78);
    backdrop-filter: blur(14px);
    transition: .4s ease;
}

.szp-custom-step:hover {
    transform: translateY(-8px);
    border-color: rgba(17,168,255,.45);
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.szp-custom-step > span {
    display: block;
    margin-bottom: 20px;
    color: rgba(17,168,255,.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.szp-custom-step > i {
    color: var(--szp-blue);
    font-size: 27px;
    text-shadow: 0 0 18px rgba(17,168,255,.3);
}

.szp-custom-step h3 {
    margin: 18px 0 10px;
    font-size: 19px;
}

.szp-custom-step p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 12px;
    line-height: 1.8;
}

.szp-custom-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--szp-blue),
        transparent
    );
    box-shadow: 0 0 15px rgba(17,168,255,.35);
}

.szp-printing-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 70px;
    margin-top: 100px;
    padding: 45px;
    border: 1px solid rgba(17,168,255,.14);
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            rgba(13,29,45,.9),
            rgba(5,13,22,.85)
        );
}

.szp-printing-copy h3 {
    margin: 18px 0;
    font-size: clamp(30px, 3.5vw, 50px);
    line-height: 1.05;
}

.szp-printing-copy p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-printing-copy ul {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
}

.szp-printing-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 11px 0;
    color: #c8d5e1;
    font-size: 12px;
}

.szp-printing-copy li i {
    color: var(--szp-blue);
}

.szp-printing-visual {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.szp-printing-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.szp-printing-bag {
    position: relative;
    width: 180px;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 30px 40px rgba(0,0,0,.3);
    transform: rotate(-4deg);
    transition: .5s ease;
}

.szp-printing-bag.plain {
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.035) 0 2px,
            transparent 2px 4px
        ),
        #e7ecef;
}

.szp-printing-bag.printed {
    color: #fff;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.04) 0 2px,
            transparent 2px 4px
        ),
        linear-gradient(
            135deg,
            #0c4770,
            #123a5e
        );
    transform: rotate(5deg);
    box-shadow:
        0 30px 45px rgba(0,0,0,.35),
        0 0 40px rgba(17,168,255,.11);
}

.szp-printing-bag span {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 4px;
}

.szp-printing-bag small {
    position: absolute;
    top: 56%;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-printing-arrow {
    color: var(--szp-blue);
    font-size: 28px;
    animation: szpArrowPulse 1.6s ease-in-out infinite;
}


/* =========================================================
   CUSTOM FORM
========================================================= */

.szp-custom-request {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 70px;
    margin-top: 100px;
    padding: 45px;
    border: 1px solid rgba(17,168,255,.16);
    border-radius: 25px;
    background: rgba(9,19,31,.82);
    backdrop-filter: blur(15px);
}

.szp-custom-request-copy h3 {
    margin: 18px 0;
    font-size: clamp(30px, 3.5vw, 47px);
    line-height: 1.08;
}

.szp-custom-request-copy h3 span {
    color: var(--szp-blue);
}

.szp-custom-request-copy p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-custom-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.szp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.szp-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #b6c6d5;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .6px;
}

.szp-form-field input,
.szp-form-field textarea {
    width: 100%;
    outline: none;
    border: 1px solid rgba(17,168,255,.13);
    border-radius: 9px;
    color: #fff;
    background: rgba(255,255,255,.035);
    transition: .3s ease;
}

.szp-form-field input {
    height: 50px;
    padding: 0 15px;
}

.szp-form-field textarea {
    min-height: 100px;
    padding: 14px 15px;
    resize: vertical;
}

.szp-form-field input:focus,
.szp-form-field textarea:focus {
    border-color: rgba(17,168,255,.5);
    box-shadow: 0 0 20px rgba(17,168,255,.06);
}

.szp-custom-submit {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    font-weight: 700;
    cursor: pointer;
    transition: .35s ease;
}

.szp-custom-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(17,168,255,.2);
}


/* =========================================================
   FINAL CTA
========================================================= */

.szp-products-final-cta {
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(17,168,255,.11),
            transparent 42%
        ),
        #050b12;
}

.szp-products-final-cta > div {
    max-width: 850px;
    margin: auto;
}

.szp-products-final-cta .szp-section-label {
    justify-content: center;
}

.szp-products-final-cta h2 {
    margin: 20px 0;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.05;
}

.szp-products-final-cta p {
    color: var(--szp-muted);
    line-height: 1.9;
}

.szp-final-cta-buttons {
    justify-content: center;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.szp-product-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: none;
}

.szp-product-modal.open {
    display: block;
}

.szp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(15px);
}

.szp-product-modal-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1180px, 92vw);
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.2);
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #0a1725,
            #050c14
        );
    box-shadow:
        0 40px 120px rgba(0,0,0,.6),
        0 0 50px rgba(17,168,255,.07);
    transform: translate(-50%, -47%) scale(.97);
    opacity: 0;
    transition: .35s ease;
}

.szp-product-modal.open .szp-product-modal-panel {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.szp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.3);
    cursor: pointer;
    transition: .3s ease;
}

.szp-modal-close:hover {
    border-color: var(--szp-blue);
    color: var(--szp-blue);
    transform: rotate(90deg);
}

.szp-modal-media {
    position: relative;
    min-height: 650px;
    padding: 35px;
    background:
        radial-gradient(
            circle,
            rgba(17,168,255,.1),
            transparent 65%
        ),
        #07111c;
}

.szp-modal-main-image {
    position: relative;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.02);
}

.szp-modal-main-image img {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
    padding: 30px;
    transition: opacity .3s ease;
}

.szp-modal-main-image img.show {
    display: block;
}

.szp-modal-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 270px;
    color: #176bff;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,.04) 0 2px,
            transparent 2px 4px
        ),
        #e8edf0;
    box-shadow: 0 25px 40px rgba(0,0,0,.35);
}

.szp-modal-image-placeholder span {
    font-size: 40px;
    font-weight: 800;
}

.szp-modal-image-placeholder small {
    margin-top: 8px;
    color: #61717d;
    font-size: 7px;
    letter-spacing: 2px;
}

.szp-modal-slider-btn {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 50%;
    color: #fff;
    background: rgba(4,12,20,.7);
    cursor: pointer;
    transform: translateY(-50%);
    transition: .3s ease;
}

.szp-modal-slider-btn:hover {
    border-color: var(--szp-blue);
    background: rgba(17,168,255,.12);
}

.szp-modal-slider-btn.prev {
    left: 15px;
}

.szp-modal-slider-btn.next {
    right: 15px;
}

.szp-modal-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.szp-modal-thumb {
    flex: 0 0 66px;
    height: 66px;
    padding: 3px;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    cursor: pointer;
}

.szp-modal-thumb.active {
    border-color: var(--szp-blue);
    box-shadow: 0 0 15px rgba(17,168,255,.1);
}

.szp-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.szp-modal-slide-counter {
    margin-top: 8px;
    color: #65788a;
    font-size: 9px;
    text-align: right;
}

.szp-modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 55px 45px 40px;
}

.szp-modal-category {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.szp-modal-content h2 {
    margin: 10px 0 15px;
    font-size: 38px;
    line-height: 1.1;
}

.szp-modal-overview {
    color: var(--szp-muted);
    font-size: 13px;
    line-height: 1.85;
}

.szp-modal-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 25px 0;
}

.szp-modal-specs > div {
    padding: 12px;
    border: 1px solid rgba(17,168,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.02);
}

.szp-modal-specs span {
    display: block;
    color: #65788a;
    font-size: 8px;
    text-transform: uppercase;
}

.szp-modal-specs strong {
    display: block;
    margin-top: 4px;
    color: #e6eef5;
    font-size: 11px;
}

.szp-modal-detail-section {
    margin-top: 22px;
}

.szp-modal-detail-section h3 {
    margin-bottom: 7px;
    color: #eaf4fb;
    font-size: 14px;
}

.szp-modal-detail-section p {
    margin: 0;
    color: var(--szp-muted);
    font-size: 11px;
    line-height: 1.8;
}

.szp-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.szp-modal-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(17,168,255,.12);
    border-radius: 999px;
    color: #aebfd0;
    background: rgba(17,168,255,.04);
    font-size: 8px;
}

.szp-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}

.szp-modal-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(17,168,255,.25);
    background: rgba(255,255,255,.025);
    text-decoration: none;
}


/* =========================================================
   CART DRAWER
========================================================= */

.szp-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 99994;
    display: none;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(5px);
}

.szp-cart-overlay.open {
    display: block;
}

.szp-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99995;
    width: min(420px, 92vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(17,168,255,.18);
    background: #07111c;
    box-shadow: -30px 0 80px rgba(0,0,0,.35);
    transform: translateX(100%);
    transition: transform .4s ease;
}

.szp-cart-drawer.open {
    transform: translateX(0);
}

.szp-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid rgba(17,168,255,.1);
}

.szp-cart-header span {
    color: var(--szp-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.szp-cart-header h3 {
    margin: 4px 0 0;
}

.szp-cart-header button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.szp-cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.szp-cart-empty {
    padding: 70px 20px;
    color: #718396;
    text-align: center;
}

.szp-cart-item {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.szp-cart-item-visual {
    width: 65px;
    height: 75px;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            #e9edf0,
            #bcc6cd
        );
}

.szp-cart-item h4 {
    margin: 0;
    font-size: 12px;
}

.szp-cart-item p {
    margin: 4px 0 0;
    color: #708396;
    font-size: 9px;
}

.szp-cart-remove {
    border: 0;
    color: #718396;
    background: transparent;
    cursor: pointer;
}

.szp-cart-remove:hover {
    color: #ff5c69;
}

.szp-cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(17,168,255,.1);
}

.szp-cart-total {
    display: flex;
    justify-content: space-between;
    color: #9fb0c0;
    font-size: 12px;
}

.szp-cart-total strong {
    color: #fff;
}

.szp-cart-checkout {
    width: 100%;
    height: 52px;
    margin-top: 15px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--szp-blue),
        var(--szp-blue-2)
    );
    font-weight: 700;
    cursor: pointer;
}


/* =========================================================
   TOAST
========================================================= */

.szp-product-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid rgba(17,168,255,.25);
    border-radius: 10px;
    color: #fff;
    background: rgba(6,17,28,.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    transform: translateY(25px);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
}

.szp-product-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.szp-product-toast i {
    color: var(--szp-blue);
}


/* =========================================================
   CUSTOM GLOWS
========================================================= */

.szp-custom-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    pointer-events: none;
}

.szp-custom-glow-1 {
    top: 10%;
    left: -150px;
    background: var(--szp-blue);
}

.szp-custom-glow-2 {
    right: -150px;
    bottom: 10%;
    background: #305bff;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes szpHeroContent {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

@keyframes szpBagFloat {
    0%,
    100% {
        transform:
            perspective(700px)
            rotateY(-12deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(700px)
            rotateY(-5deg)
            translateY(-14px);
    }
}

@keyframes szpRingRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes szpSpecFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes szpArrowPulse {
    0%,
    100% {
        transform: translateX(0);
        opacity: .6;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

@keyframes szpProductReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .szp-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .szp-custom-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .szp-custom-line {
        display: none;
    }

}


@media (max-width: 1000px) {

    .szp-products-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .szp-products-hero-content {
        margin: auto;
    }

    .szp-products-hero-actions {
        justify-content: center;
    }

    .szp-products-hero-visual {
        min-height: 450px;
    }

    .szp-featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-product-quality,
    .szp-printing-showcase,
    .szp-custom-request {
        grid-template-columns: 1fr;
    }

    .szp-quality-content {
        text-align: center;
    }

    .szp-quality-features {
        text-align: left;
    }

    .szp-product-modal-panel {
        grid-template-columns: 1fr;
        max-height: 94vh;
        overflow-y: auto;
    }

    .szp-modal-media {
        min-height: auto;
    }

    .szp-modal-main-image {
        height: 420px;
    }

    .szp-modal-content {
        max-height: none;
    }

}


@media (max-width: 700px) {

    .szp-products-intro,
    .szp-featured-products,
    .szp-product-catalog,
    .szp-product-quality,
    .szp-custom-products,
    .szp-products-final-cta {
        padding: 75px 5%;
    }

    .szp-products-hero {
        min-height: 720px;
        padding: 120px 5% 70px;
    }

    .szp-products-hero h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .szp-products-hero p {
        font-size: 14px;
    }

    .szp-products-hero-visual {
        min-height: 350px;
    }

    .szp-hero-product-ring {
        width: 340px;
    }

    .szp-hero-product-bag {
        width: 155px;
        height: 235px;
    }

    .szp-bag-body {
        height: 220px;
    }

    .szp-floating-spec {
        transform: scale(.8);
    }

    .szp-intro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .szp-featured-grid {
        grid-template-columns: 1fr;
    }

    .szp-product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .szp-quality-features {
        grid-template-columns: 1fr;
    }

    .szp-printing-showcase,
    .szp-custom-request {
        padding: 25px;
    }

    .szp-printing-stage {
        gap: 15px;
        transform: scale(.8);
    }

    .szp-form-row {
        grid-template-columns: 1fr;
    }

    .szp-product-modal-panel {
        width: 96vw;
    }

    .szp-modal-media {
        padding: 20px;
    }

    .szp-modal-main-image {
        height: 330px;
    }

    .szp-modal-content {
        padding: 35px 22px;
    }

    .szp-modal-content h2 {
        font-size: 30px;
    }

    .szp-modal-specs {
        grid-template-columns: 1fr 1fr;
    }

    .szp-modal-actions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .szp-product-grid {
        grid-template-columns: 1fr;
    }

    .szp-intro-stats {
        grid-template-columns: 1fr;
    }

    .szp-custom-process {
        grid-template-columns: 1fr;
    }

    .szp-products-hero-actions,
    .szp-final-cta-buttons {
        flex-direction: column;
    }

    .szp-product-primary-btn,
    .szp-product-secondary-btn {
        width: 100%;
    }

}



/* =========================================================
   SZP CART DRAWER — FINAL THEME OVERRIDE
   FIXES WORDPRESS / TWENTY TWENTY STYLE CONFLICTS
========================================================= */


/* =========================================================
   CART DRAWER BASE
========================================================= */

.szp-cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: min(430px, 94vw) !important;
    height: 100vh !important;

    display: flex !important;
    flex-direction: column !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    border-left: 1px solid rgba(17,168,255,.22) !important;

    background:
        linear-gradient(
            180deg,
            #07111c 0%,
            #06101a 55%,
            #050c14 100%
        ) !important;

    color: #f4f9ff !important;

    box-shadow:
        -30px 0 90px rgba(0,0,0,.45),
        -1px 0 25px rgba(17,168,255,.05) !important;

    z-index: 99995 !important;

    transform: translateX(100%) !important;
    transition: transform .4s ease !important;
}

.szp-cart-drawer.open {
    transform: translateX(0) !important;
}


/* =========================================================
   CART OVERLAY
========================================================= */

.szp-cart-overlay {
    position: fixed !important;
    inset: 0 !important;

    display: none !important;

    background: rgba(0,0,0,.68) !important;

    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;

    z-index: 99994 !important;
}

.szp-cart-overlay.open {
    display: block !important;
}


/* =========================================================
   CART HEADER
========================================================= */

.szp-cart-header {
    position: relative !important;

    flex: 0 0 auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 24px 22px !important;

    border-bottom: 1px solid rgba(17,168,255,.12) !important;

    background:
        linear-gradient(
            180deg,
            rgba(7,17,28,.98),
            rgba(7,17,28,.92)
        ) !important;
}

.szp-cart-header span {
    display: block !important;

    margin: 0 !important;

    color: var(--szp-blue) !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
    line-height: 1.3 !important;
}

.szp-cart-header h3 {
    margin: 6px 0 0 !important;

    color: #f4f9ff !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;

    line-height: 1.2 !important;
}


/* =========================================================
   CART CLOSE BUTTON
========================================================= */

.szp-cart-header button {
    flex: 0 0 40px !important;

    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;

    height: 40px !important;
    min-height: 40px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 50% !important;

    outline: none !important;

    color: #fff !important;

    background: rgba(255,255,255,.025) !important;

    font-size: 16px !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        border-color .3s ease,
        color .3s ease,
        background .3s ease,
        transform .3s ease !important;
}

.szp-cart-header button:hover {
    border-color: var(--szp-blue) !important;

    color: var(--szp-blue) !important;

    background: rgba(17,168,255,.07) !important;

    transform: rotate(90deg) !important;
}


/* =========================================================
   CART INTRO / DESCRIPTION
========================================================= */

.szp-cart-drawer > p,
.szp-cart-description {
    flex: 0 0 auto !important;

    margin: 0 !important;

    padding: 22px 18px 18px !important;

    color: #aebfd0 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 400 !important;

    line-height: 1.7 !important;

    text-align: left !important;

    overflow: visible !important;
}


/* =========================================================
   CART ITEMS AREA
========================================================= */

.szp-cart-items {
    flex: 1 1 auto !important;

    width: 100% !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 8px 18px 20px !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    scrollbar-width: thin !important;
    scrollbar-color:
        rgba(17,168,255,.45)
        rgba(255,255,255,.03) !important;
}

.szp-cart-items::-webkit-scrollbar {
    width: 6px !important;
}

.szp-cart-items::-webkit-scrollbar-track {
    background: rgba(255,255,255,.025) !important;
}

.szp-cart-items::-webkit-scrollbar-thumb {
    border-radius: 20px !important;

    background:
        rgba(17,168,255,.45) !important;
}

.szp-cart-items::-webkit-scrollbar-thumb:hover {
    background:
        rgba(17,168,255,.7) !important;
}


/* =========================================================
   CART EMPTY STATE
========================================================= */

.szp-cart-empty {
    width: 100% !important;

    margin: 0 !important;
    padding: 70px 20px !important;

    color: #718396 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 13px !important;

    line-height: 1.7 !important;

    text-align: center !important;
}


/* =========================================================
   CART ITEM
========================================================= */

.szp-cart-item {
    position: relative !important;

    display: grid !important;

    grid-template-columns: 65px minmax(0,1fr) auto !important;

    gap: 12px !important;

    align-items: center !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 14px 0 !important;

    border-bottom: 1px solid rgba(255,255,255,.07) !important;

    background: transparent !important;
}


/* =========================================================
   CART PRODUCT IMAGE
========================================================= */

.szp-cart-item-visual {
    width: 65px !important;
    height: 75px !important;

    min-width: 65px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    border: 1px solid rgba(17,168,255,.10) !important;
    border-radius: 7px !important;

    background:
        linear-gradient(
            135deg,
            #e9edf0,
            #bcc6cd
        ) !important;

    box-shadow:
        0 8px 20px rgba(0,0,0,.18) !important;
}


/* If an image is inside the visual */

.szp-cart-item-visual img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: contain !important;

    padding: 4px !important;
}


/* =========================================================
   CART ITEM CONTENT
========================================================= */

.szp-cart-item > div {
    min-width: 0 !important;
}

.szp-cart-item h4 {
    width: 100% !important;

    margin: 0 !important;

    color: #f4f9ff !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1.4 !important;

    white-space: normal !important;
    overflow-wrap: break-word !important;
}

.szp-cart-item p {
    margin: 4px 0 0 !important;

    color: #708396 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 9px !important;

    line-height: 1.5 !important;

    white-space: normal !important;
}


/* =========================================================
   QUANTITY CONTROLS
========================================================= */

.szp-cart-item button {
    font-family: "Poppins", sans-serif !important;
}

.szp-cart-quantity {
    display: inline-flex !important;
    align-items: center !important;

    gap: 0 !important;

    margin-top: 8px !important;
}

.szp-cart-quantity button,
.szp-cart-qty-btn {
    width: 28px !important;
    min-width: 28px !important;

    height: 28px !important;
    min-height: 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(17,168,255,.18) !important;
    border-radius: 5px !important;

    color: #fff !important;

    background: rgba(17,168,255,.055) !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease !important;
}

.szp-cart-quantity button:hover,
.szp-cart-qty-btn:hover {
    border-color: var(--szp-blue) !important;

    color: #fff !important;

    background: rgba(17,168,255,.14) !important;
}


/* Quantity number */

.szp-cart-quantity span,
.szp-cart-quantity strong,
.szp-cart-qty-value {
    min-width: 28px !important;

    height: 28px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #e9f3fa !important;

    background: transparent !important;

    font-size: 11px !important;
    font-weight: 700 !important;
}


/* =========================================================
   REMOVE BUTTON
========================================================= */

.szp-cart-remove {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;

    margin: 7px 0 0 !important;
    padding: 0 !important;

    border: 0 !important;

    outline: none !important;

    color: #718396 !important;

    background: transparent !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 10px !important;

    line-height: 1.4 !important;

    cursor: pointer !important;

    box-shadow: none !important;
}

.szp-cart-remove:hover {
    color: #ff6673 !important;

    background: transparent !important;
}


/* =========================================================
   CART FOOTER
========================================================= */

.szp-cart-footer {
    flex: 0 0 auto !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 18px !important;

    border-top: 1px solid rgba(17,168,255,.12) !important;

    background:
        linear-gradient(
            180deg,
            rgba(6,14,23,.96),
            rgba(5,11,18,1)
        ) !important;
}


/* =========================================================
   CART TOTAL
========================================================= */

.szp-cart-total {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #91a4b8 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 10px !important;

    line-height: 1.5 !important;
}

.szp-cart-total strong {
    color: #fff !important;

    font-size: 12px !important;
}


/* =========================================================
   REQUEST A QUOTE BUTTON
========================================================= */

.szp-cart-footer .szp-cart-quote,
.szp-cart-footer .request-quote,
.szp-cart-footer button[data-action="quote"] {
    width: 100% !important;

    min-height: 46px !important;

    margin: 12px 0 0 !important;
    padding: 0 15px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    border: 1px solid rgba(17,168,255,.25) !important;
    border-radius: 8px !important;

    color: #fff !important;

    background: rgba(17,168,255,.055) !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transition: .3s ease !important;
}

.szp-cart-footer .szp-cart-quote:hover,
.szp-cart-footer .request-quote:hover,
.szp-cart-footer button[data-action="quote"]:hover {
    border-color: var(--szp-blue) !important;

    background: rgba(17,168,255,.11) !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.szp-cart-checkout {
    width: 100% !important;

    height: 52px !important;
    min-height: 52px !important;

    margin: 15px 0 0 !important;
    padding: 0 18px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;

    border: 0 !important;
    border-radius: 9px !important;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--szp-blue),
            var(--szp-blue-2)
        ) !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    text-align: center !important;

    cursor: pointer !important;

    box-shadow:
        0 8px 25px rgba(17,168,255,.14) !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease !important;
}

.szp-cart-checkout:hover {
    transform: translateY(-3px) !important;

    box-shadow:
        0 14px 35px rgba(17,168,255,.22) !important;
}


/* =========================================================
   CART INFORMATION / BULK ORDER NOTE
========================================================= */

.szp-cart-footer p {
    margin: 14px 0 0 !important;

    color: #aebfd0 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 11px !important;

    line-height: 1.7 !important;

    text-align: left !important;
}


/* =========================================================
   REMOVE WORDPRESS BUTTON STYLING
========================================================= */

.szp-cart-drawer button::before,
.szp-cart-drawer button::after {
    box-sizing: border-box !important;
}


/* Prevent Twenty Twenty button pseudo effects */

.szp-cart-drawer button:hover,
.szp-cart-drawer button:focus {
    text-decoration: none !important;
}

.szp-cart-drawer button:focus {
    outline: none !important;
}


/* =========================================================
   PREVENT THEME TEXT / LINK OVERRIDES
========================================================= */

.szp-cart-drawer a {
    color: inherit !important;
    text-decoration: none !important;
}

.szp-cart-drawer a:hover {
    text-decoration: none !important;
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.szp-cart-drawer,
.szp-cart-drawer * {
    max-width: 100% !important;
}

.szp-cart-drawer {
    overflow-x: hidden !important;
}


/* =========================================================
   HIDE GLOBAL SCROLL-TO-TOP WHILE CART IS OPEN
   Modern browsers
========================================================= */

body:has(.szp-cart-drawer.open) .scroll-to-top,
body:has(.szp-cart-drawer.open) .to-top,
body:has(.szp-cart-drawer.open) .back-to-top,
body:has(.szp-cart-drawer.open) .szp-scroll-top,
body:has(.szp-cart-drawer.open) .scroll-top {
    display: none !important;
}


/* =========================================================
   MOBILE CART
========================================================= */

@media (max-width: 600px) {

    .szp-cart-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .szp-cart-header {
        padding: 21px 18px !important;
    }

    .szp-cart-items {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .szp-cart-footer {
        padding: 16px !important;
    }

    .szp-cart-item {
        grid-template-columns: 60px minmax(0,1fr) auto !important;
        gap: 10px !important;
    }

    .szp-cart-item-visual {
        width: 60px !important;
        min-width: 60px !important;
        height: 70px !important;
    }

}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 400px) {

    .szp-cart-header h3 {
        font-size: 18px !important;
    }

    .szp-cart-item {
        grid-template-columns: 55px minmax(0,1fr) !important;
    }

    .szp-cart-item > :last-child {
        grid-column: 2;
        justify-self: start;
    }

    .szp-cart-item-visual {
        width: 55px !important;
        min-width: 55px !important;
        height: 65px !important;
    }

}

/* =========================================================
   SZP QUOTE FORM
   SUBMISSION / LOADING STATE
========================================================= */

.szp-custom-submit.is-loading {
    pointer-events: none;
    opacity: .72;
    transform: none !important;
}

.szp-custom-submit.is-loading .szp-submit-text {
    display: none;
}

.szp-custom-submit.is-loading .szp-submit-loading {
    display: inline !important;
}


/* =========================================================
   QUOTE FORM MESSAGE
========================================================= */

.szp-quote-form-message {
    display: none;

    margin-top: 8px;
    padding: 12px 15px;

    border-radius: 9px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    line-height: 1.6;

    text-align: center;
}

.szp-quote-form-message.show {
    display: block;
}

.szp-quote-form-message.error {
    color: #ffb5bd;

    border: 1px solid rgba(255,80,100,.2);

    background: rgba(255,60,80,.06);
}


/* =========================================================
   SZP THANK YOU SCREEN
========================================================= */

.szp-quote-thank-you {
    width: 100%;
}

.szp-quote-thank-you[hidden] {
    display: none !important;
}

.szp-thank-you-box {
    position: relative;

    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(17,168,255,.18);
    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            rgba(17,168,255,.10),
            transparent 55%
        ),
        rgba(5,13,22,.92);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        0 0 60px rgba(17,168,255,.06);
}


/* =========================================================
   THANK YOU IMAGE
========================================================= */

.szp-thank-you-box > img {
    position: absolute;

    width: min(440px, 75%);

    height: auto;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    opacity: .95;

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   THANK YOU CONTENT
========================================================= */

.szp-thank-you-content {
    position: relative;
    z-index: 2;

    width: min(650px, 90%);

    padding: 45px 25px;

    text-align: center;
}


.szp-thank-you-content .szp-section-label {
    justify-content: center;

    margin-bottom: 15px;
}


.szp-thank-you-content h3 {
    margin: 10px 0 15px;

    color: #fff;

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1;

    letter-spacing: -2px;
}


.szp-thank-you-content h3 span {
    color: var(--szp-blue);
}


.szp-thank-you-content p {
    max-width: 520px;

    margin: 0 auto 30px;

    color: var(--szp-muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.szp-thank-you-back {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 22px;

    border: 1px solid rgba(17,168,255,.3);

    border-radius: 9px;

    color: #fff;

    background: rgba(17,168,255,.06);

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}


.szp-thank-you-back:hover {
    border-color: var(--szp-blue);

    background: rgba(17,168,255,.12);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(17,168,255,.12);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .szp-thank-you-box {
        min-height: 400px;

        border-radius: 20px;
    }

    .szp-thank-you-box > img {
        width: 90%;
    }

    .szp-thank-you-content {
        padding: 35px 18px;
    }

    .szp-thank-you-content h3 {
        font-size: 48px;
    }

    .szp-thank-you-content p {
        font-size: 12px;
    }

}






/* ==========================================================================
   SZP — FINAL LIGHT THEME
   --------------------------------------------------------------------------
   BRAND COLORS
   Purple  : #221EB0  -> primary brand, headings, buttons, active states
   Cyan    : #00AFFF  -> illustrations, diagrams, technical accents
   Cream   : #F1ECE6  -> main background
   Espresso: #2E2E2E  -> main readable text
   Rosewood: #7D4047  -> warm secondary accent
   Navy    : #112532  -> dark UI/button/footer surfaces
   Soft    : #F0E6D8  -> cards, soft surfaces and hover backgrounds
   Glow    : #1A0706  -> ONLY subtle depth/shadow where appropriate

   IMPORTANT:
   - The real logo image is NOT recolored. Its original #221EB0/#00AFFF
     artwork remains visible.
   - The old bright cyan/dark-theme glow system is replaced with the actual
     logo cyan #00AFFF and brand purple #221EB0.
   - Existing HTML, JavaScript, animations, sliders and responsive layout
     are preserved.
   ========================================================================== */

body.szp-light-theme {
    color-scheme: light;

    --brand-purple: #221EB0;
    --brand-purple-soft: #514CDA;
    --brand-purple-deep: #171275;

    --brand-cyan: #00AFFF;
    --brand-cyan-soft: #58C9FF;
    --brand-cyan-deep: #007EB8;

    --cream: #F1ECE6;
    --cream-2: #EDE5DD;
    --cream-3: #E4D9D0;
    --soft-accent: #F0E6D8;

    --rosewood: #7D4047;
    --rosewood-soft: #A66B72;
    --rosewood-deep: #5E3036;

    --espresso: #2E2E2E;
    --espresso-soft: #4A4541;
    --muted: #6B645E;
    --muted-light: #8A817A;

    --navy: #112532;
    --navy-2: #183544;

    --white: #FFFFFF;
    --surface: rgba(255,255,255,.72);
    --surface-strong: rgba(255,255,255,.88);
    --surface-soft: rgba(240,230,216,.72);

    --border: rgba(46,46,46,.11);
    --border-strong: rgba(46,46,46,.18);
    --purple-border: rgba(34,30,176,.25);
    --cyan-border: rgba(0,175,255,.28);

    --shadow-sm: 0 8px 24px rgba(26,7,6,.07);
    --shadow-md: 0 16px 42px rgba(26,7,6,.10);
    --shadow-lg: 0 28px 75px rgba(26,7,6,.13);

    --purple-glow:
        0 0 12px rgba(34,30,176,.24),
        0 0 32px rgba(34,30,176,.12);

    --cyan-glow:
        0 0 12px rgba(0,175,255,.24),
        0 0 32px rgba(0,175,255,.12);
}


/* ==========================================================================
   01 — GLOBAL
   ========================================================================== */

body.szp-light-theme,
body.szp-light-theme .szp-home-page,
body.szp-light-theme .szp-products-page,
body.szp-light-theme .szp-about-page,
body.szp-light-theme .szp-contact-page {
    background: var(--cream) !important;
    color: var(--espresso) !important;
}

body.szp-light-theme p {
    color: #fff;
}

body.szp-light-theme ::selection {
    background: var(--brand-purple);
    color: #fff;
}

body.szp-light-theme :focus-visible {
    outline: 2px solid var(--brand-purple);
    outline-offset: 3px;
}


/* ==========================================================================
   02 — HEADER / NAVBAR
   ========================================================================== */

body.szp-light-theme .szp-header {
    background:
        linear-gradient(
            180deg,
            rgba(241,236,230,.97) 0%,
            rgba(241,236,230,.91) 100%
        ) !important;

    border-bottom: 1px solid rgba(46,46,46,.10) !important;

    box-shadow:
        0 10px 35px rgba(26,7,6,.08) !important;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.szp-light-theme .szp-header.scrolled {
    background:
        rgba(241,236,230,.98) !important;

    box-shadow:
        0 14px 40px rgba(26,7,6,.12) !important;
}


/* ==========================================================================
   03 — REAL LOGO
   ========================================================================== */

/*
   DO NOT FILTER THE LOGO.
   The uploaded/logo asset already contains the correct brand colors:
   #221EB0 + #00AFFF.
*/

body.szp-light-theme .szp-logo img,
body.szp-light-theme .footer-logo {
    filter: none !important;
    opacity: 1 !important;
}

body.szp-light-theme .szp-logo:hover img {
    transform: scale(1.035);

    filter:
        drop-shadow(0 0 7px rgba(34,30,176,.22))
        drop-shadow(0 0 15px rgba(0,175,255,.14)) !important;
}

body.szp-light-theme .footer-logo-link:hover .footer-logo {
    transform: scale(1.04);

    filter:
        drop-shadow(0 0 8px rgba(34,30,176,.22))
        drop-shadow(0 0 16px rgba(0,175,255,.13)) !important;
}


/* ==========================================================================
   04 — NAVIGATION LINKS
   ========================================================================== */

body.szp-light-theme .szp-nav-item > a {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-nav-item > a:hover {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-nav-item > a.active {
    color: var(--brand-purple) !important;
    font-weight: 600;
}

body.szp-light-theme .szp-nav-item > a::after {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brand-purple),
            var(--brand-cyan),
            transparent
        ) !important;

    box-shadow:
        0 0 8px rgba(34,30,176,.24) !important;
}


/* ==========================================================================
   05 — SEARCH
   ========================================================================== */

body.szp-light-theme .szp-search-btn,
body.szp-light-theme .szp-theme-toggle {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-search-btn:hover,
body.szp-light-theme .szp-theme-toggle:hover {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-search-btn i,
body.szp-light-theme .szp-theme-toggle i {
    color: inherit !important;
}

body.szp-light-theme .szp-search-box {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.94),
            rgba(240,230,216,.94)
        ) !important;

    border: 1px solid var(--purple-border) !important;

    box-shadow:
        0 18px 48px rgba(26,7,6,.13),
        0 0 25px rgba(34,30,176,.06) !important;
}

body.szp-light-theme .szp-search-box-icon {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-search-input {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-search-input::placeholder {
    color: rgba(46,46,46,.48) !important;
}

body.szp-light-theme .szp-search-close {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-search-close:hover {
    color: var(--brand-purple) !important;
}


/* ==========================================================================
   06 — PRIMARY NAV BUTTON
   ========================================================================== */

body.szp-light-theme .szp-nav-btn {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--brand-purple),
            #17158A
        ) !important;

    border: 1px solid var(--brand-purple) !important;

    box-shadow:
        0 10px 28px rgba(34,30,176,.20) !important;
}

body.szp-light-theme .szp-nav-btn:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--brand-purple),
            var(--brand-cyan-deep)
        ) !important;

    border-color: var(--brand-cyan) !important;

    box-shadow:
        0 14px 34px rgba(34,30,176,.24),
        0 0 24px rgba(0,175,255,.12) !important;

    transform: translateY(-2px);
}

body.szp-light-theme .szp-nav-btn::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.32),
            transparent
        ) !important;
}


/* ==========================================================================
   07 — MOBILE MENU
   ========================================================================== */

body.szp-light-theme .szp-menu-toggle {
    background: rgba(255,255,255,.72) !important;
    border-color: rgba(46,46,46,.12) !important;
}

body.szp-light-theme .szp-menu-toggle span {
    background: var(--espresso) !important;
}

body.szp-light-theme .szp-menu-toggle:hover span {
    background: var(--brand-purple) !important;
}


/* ==========================================================================
   08 — HEADER GLOW
   ========================================================================== */

body.szp-light-theme .szp-header-glow {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brand-purple) 38%,
            var(--brand-cyan) 62%,
            transparent
        ) !important;

    box-shadow:
        0 0 8px rgba(34,30,176,.28),
        0 0 20px rgba(0,175,255,.12) !important;
}


/* ==========================================================================
   09 — COMMON SECTION TYPOGRAPHY
   ========================================================================== */

body.szp-light-theme .szp-home-section-eyebrow,
body.szp-light-theme .szp-section-eyebrow,
body.szp-light-theme .szp-section-label,
body.szp-light-theme .szp-products-eyebrow {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-home-section-eyebrow > span,
body.szp-light-theme .szp-home-eyebrow-line,
body.szp-light-theme .szp-section-eyebrow::before,
body.szp-light-theme .szp-products-eyebrow::before {
    background: var(--brand-purple) !important;

    box-shadow:
        0 0 10px rgba(34,30,176,.26) !important;
}

body.szp-light-theme .szp-home-section-title,
body.szp-light-theme .szp-home-why-heading h2,
body.szp-light-theme .szp-home-solutions-header h2,
body.szp-light-theme .szp-home-custom-content h2,
body.szp-light-theme .szp-home-final-cta-content h2,
body.szp-light-theme .szp-section-heading,
body.szp-light-theme .szp-products-page h1,
body.szp-light-theme .szp-products-page h2,
body.szp-light-theme .szp-products-page h3,
body.szp-light-theme .szp-about-page h1,
body.szp-light-theme .szp-about-page h2,
body.szp-light-theme .szp-about-page h3,
body.szp-light-theme .szp-contact-page h1,
body.szp-light-theme .szp-contact-page h2,
body.szp-light-theme .szp-contact-page h3 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-home-section-title span,
body.szp-light-theme .szp-home-title-accent,
body.szp-light-theme .szp-home-custom-content h2 span,
body.szp-light-theme .szp-home-final-cta-content h2 span,
body.szp-light-theme .szp-products-page h1 span,
body.szp-light-theme .szp-products-page h2 span,
body.szp-light-theme .szp-about-page h1 span,
body.szp-light-theme .szp-about-page h2 span,
body.szp-light-theme .szp-contact-page h1 span,
body.szp-light-theme .szp-contact-page h2 span {
    color: var(--brand-purple) !important;

    text-shadow:
        0 0 24px rgba(34,30,176,.10) !important;
}

body.szp-light-theme .szp-home-section-lead,
body.szp-light-theme .szp-about-copy p,
body.szp-light-theme .szp-contact-page p,
body.szp-light-theme .szp-products-page p {
    color: var(--espresso-soft) !important;
}


/* ==========================================================================
   10 — HERO
   ========================================================================== */

body.szp-light-theme .szp-home-hero,
body.szp-light-theme .szp-about-hero,
body.szp-light-theme .szp-products-hero,
body.szp-light-theme .szp-contact-hero {
    background: var(--cream) !important;
}

body.szp-light-theme .szp-home-slide-bg img,
body.szp-light-theme .szp-about-slide-bg {
    filter:
        brightness(1.04)
        contrast(1.01)
        saturate(.94) !important;
}

body.szp-light-theme .szp-home-hero-overlay,
body.szp-light-theme .szp-about-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(241,236,230,.90) 0%,
            rgba(241,236,230,.72) 25%,
            rgba(241,236,230,.28) 57%,
            rgba(241,236,230,.05) 82%
        ),
        linear-gradient(
            180deg,
            rgba(241,236,230,.06),
            rgba(26,7,6,.12)
        ) !important;
}

body.szp-light-theme .szp-home-hero-grid,
body.szp-light-theme .szp-products-grid-lines {
    opacity: .11 !important;

    background-image:
        linear-gradient(
            rgba(34,30,176,.16) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,175,255,.13) 1px,
            transparent 1px
        ) !important;
}

body.szp-light-theme .szp-home-hero-eyebrow,
body.szp-light-theme .szp-about-eyebrow {
    color: var(--espresso-soft) !important;
}

body.szp-light-theme .szp-home-hero-title,
body.szp-light-theme .szp-about-hero h1,
body.szp-light-theme .szp-about-hero h2,
body.szp-light-theme .szp-products-hero h1,
body.szp-light-theme .szp-contact-hero-inner h1 {
    color: var(--espresso) !important;
    text-shadow: 0 2px 20px rgba(241,236,230,.55) !important;
}

body.szp-light-theme .szp-home-hero-description,
body.szp-light-theme .szp-products-hero p,
body.szp-light-theme .szp-contact-hero-inner p,
body.szp-light-theme .szp-about-hero-description {
    color: rgba(46,46,46,.74) !important;
}

body.szp-light-theme .szp-home-trust-number {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-home-trust-label,
body.szp-light-theme .szp-home-hero-side span {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-home-trust-divider {
    background: rgba(46,46,46,.15) !important;
}

body.szp-light-theme .szp-home-hero-side i {
    background: var(--brand-cyan) !important;
    box-shadow: 0 0 10px rgba(0,175,255,.30) !important;
}


/* ==========================================================================
   11 — HERO / SECTION BUTTONS
   ========================================================================== */

body.szp-light-theme .szp-home-primary-btn,
body.szp-light-theme .szp-contact-primary-btn,
body.szp-light-theme .szp-product-primary-btn,
body.szp-light-theme .szp-modern-submit,
body.szp-light-theme .szp-about-final-cta-button {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--brand-purple),
            #17158A
        ) !important;

    border-color: var(--brand-purple) !important;

    box-shadow:
        0 12px 30px rgba(34,30,176,.19) !important;
}

body.szp-light-theme .szp-home-primary-btn:hover,
body.szp-light-theme .szp-contact-primary-btn:hover,
body.szp-light-theme .szp-product-primary-btn:hover,
body.szp-light-theme .szp-modern-submit:hover,
body.szp-light-theme .szp-about-final-cta-button:hover {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--brand-purple),
            var(--brand-cyan-deep)
        ) !important;

    border-color: var(--brand-cyan) !important;

    box-shadow:
        0 16px 38px rgba(34,30,176,.23),
        0 0 25px rgba(0,175,255,.12) !important;

    transform: translateY(-2px);
}

body.szp-light-theme .szp-home-secondary-btn,
body.szp-light-theme .szp-contact-secondary-btn,
body.szp-light-theme .szp-product-secondary-btn,
body.szp-light-theme .szp-home-outline-btn {
    color: var(--espresso) !important;

    background: rgba(255,255,255,.56) !important;

    border-color: rgba(34,30,176,.20) !important;
}

body.szp-light-theme .szp-home-secondary-btn:hover,
body.szp-light-theme .szp-contact-secondary-btn:hover,
body.szp-light-theme .szp-product-secondary-btn:hover,
body.szp-light-theme .szp-home-outline-btn:hover {
    color: var(--brand-purple) !important;
    background: var(--soft-accent) !important;
    border-color: var(--brand-purple) !important;
}


/* ==========================================================================
   12 — SLIDER CONTROLS
   ========================================================================== */

body.szp-light-theme .szp-home-slider-arrow,
body.szp-light-theme .szp-about-arrow {
    color: var(--espresso) !important;
    background: rgba(255,255,255,.58) !important;
    border-color: rgba(46,46,46,.14) !important;
    box-shadow: var(--shadow-sm) !important;
}

body.szp-light-theme .szp-home-slider-arrow:hover,
body.szp-light-theme .szp-about-arrow:hover {
    color: var(--brand-purple) !important;
    background: var(--soft-accent) !important;
    border-color: var(--brand-purple) !important;
    box-shadow: var(--purple-glow) !important;
}

body.szp-light-theme .szp-home-slider-dot,
body.szp-light-theme .szp-about-dot {
    background: rgba(46,46,46,.22) !important;
}

body.szp-light-theme .szp-home-slider-dot.active,
body.szp-light-theme .szp-about-dot.active {
    background: var(--brand-purple) !important;
    box-shadow: 0 0 12px rgba(34,30,176,.28) !important;
}


/* ==========================================================================
   13 — HOME SECTIONS
   ========================================================================== */

body.szp-light-theme .szp-home-intro,
body.szp-light-theme .szp-home-industries,
body.szp-light-theme .szp-home-solutions,
body.szp-light-theme .szp-home-final-cta {
    background: var(--cream) !important;
}

body.szp-light-theme .szp-home-manufacturing,
body.szp-light-theme .szp-home-why,
body.szp-light-theme .szp-home-custom {
    background: var(--cream-2) !important;
}

body.szp-light-theme .szp-home-ai {
    background:
        linear-gradient(
            180deg,
            var(--soft-accent),
            var(--cream-2)
        ) !important;
}


/* ==========================================================================
   14 — HOME CARDS
   ========================================================================== */

body.szp-light-theme .szp-home-why-card,
body.szp-light-theme .szp-home-industry-card,
body.szp-light-theme .szp-home-solution-card,
body.szp-light-theme .szp-home-solution-card-large,
body.szp-light-theme .szp-home-capability-card,
body.szp-light-theme .szp-home-media-frame,
body.szp-light-theme .szp-intro-stat {
    color: var(--espresso) !important;

    background:
        #deddff
        ) !important;

    border-color: #1578b3 !important;

    box-shadow:
        0 14px 38px rgba(26,7,6,.07) !important;
}

body.szp-light-theme .szp-home-why-card:hover,
body.szp-light-theme .szp-home-industry-card:hover,
body.szp-light-theme .szp-home-solution-card:hover,
body.szp-light-theme .szp-home-solution-card-large:hover {
    background:
        linear-gradient(
            145deg,
            #fff,
            var(--soft-accent)
        ) !important;

    border-color: rgba(34,30,176,.25) !important;

    box-shadow:
        0 20px 50px rgba(26,7,6,.11),
        0 0 24px rgba(34,30,176,.06) !important;
}

body.szp-light-theme .szp-home-why-card-number {
    color: rgba(34,30,176,.13) !important;
}

body.szp-light-theme .szp-home-why-card > i,
body.szp-light-theme .szp-home-industry-card > i,
body.szp-light-theme .szp-home-solution-card > i,
body.szp-light-theme .szp-home-capability-card > i {
    color: var(--brand-cyan) !important;
    text-shadow: 0 0 16px rgba(0,175,255,.18) !important;
}

body.szp-light-theme .szp-home-why-card h3,
body.szp-light-theme .szp-home-industry-card h3,
body.szp-light-theme .szp-home-solution-card h3,
body.szp-light-theme .szp-home-capability-card h3 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-home-why-card p,
body.szp-light-theme .szp-home-industry-card p,
body.szp-light-theme .szp-home-solution-card p,
body.szp-light-theme .szp-home-capability-card p {
    color: var(--muted) !important;
}


/* ==========================================================================
   15 — TIMELINE / LINES / TECHNICAL ACCENTS
   ========================================================================== */

body.szp-light-theme .szp-home-timeline-connector {
    background:
        linear-gradient(
            180deg,
            transparent,
            var(--brand-cyan),
            var(--brand-purple),
            transparent
        ) !important;

    box-shadow:
        0 0 12px rgba(0,175,255,.16) !important;
}

body.szp-light-theme .szp-home-timeline-number,
body.szp-light-theme .szp-home-timeline-year {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-home-text-link {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-home-text-link:hover {
    color: var(--brand-cyan-deep) !important;
}


/* ==========================================================================
   16 — AI / TECHNOLOGY PANEL
   ========================================================================== */

body.szp-light-theme .szp-home-ai-panel {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.82),
            rgba(240,230,216,.70)
        ) !important;

    border-color: #191792 !important;

    box-shadow:
        0 25px 70px rgba(26,7,6,.10) !important;
}

body.szp-light-theme .szp-home-ai-core {
    color: #fff !important;

    background: linear-gradient(135deg, var(--brand-purple), #09b1ff) !important;

    box-shadow:
        0 0 25px rgba(34,30,176,.25),
        0 0 55px rgba(0,175,255,.12) !important;
}

body.szp-light-theme .szp-home-ai-core i {
    color: #fff !important;
}

body.szp-light-theme .szp-home-ai-orbit {
    border-color: rgba(34,30,176,.18) !important;
}

body.szp-light-theme .szp-home-ai-input-wrap {
    background: rgba(255,255,255,.72) !important;
    border-color: rgba(46,46,46,.11) !important;
}

body.szp-light-theme .szp-home-ai-input {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-home-ai-input::placeholder {
    color: rgba(46,46,46,.45) !important;
}

body.szp-light-theme .szp-home-ai-send {
    color: #fff !important;
    background: var(--brand-purple) !important;
}

body.szp-light-theme .szp-home-ai-send:hover {
    background: var(--brand-cyan-deep) !important;
    box-shadow: var(--cyan-glow) !important;
}

body.szp-light-theme .szp-home-ai-suggestion {
    color: #11a8ff !important;
    background: rgba(255,255,255,.55) !important;
    border-color: rgba(46,46,46,.10) !important;
}

body.szp-light-theme .szp-home-ai-suggestion:hover {
    color: var(--brand-purple) !important;
    background: var(--soft-accent) !important;
    border-color: rgba(34,30,176,.24) !important;
}

body.szp-light-theme .szp-home-ai-suggestion i {
    color: var(--brand-cyan) !important;
}


/* ==========================================================================
   17 — MANUFACTURING / CUSTOM VISUALS
   ========================================================================== */

body.szp-light-theme .szp-manufacturing-image::after {
    background:
        linear-gradient(
            90deg,
            rgba(34,30,176,.16),
            transparent 55%
        ) !important;
}

body.szp-light-theme .szp-home-custom-background {
    background:
        linear-gradient(
            90deg,
            rgba(241,236,230,.94) 0%,
            rgba(241,236,230,.72) 42%,
            rgba(241,236,230,.22) 100%
        ),
        var(--szp-custom-background-image, none)
        center / cover no-repeat !important;
}


/* ==========================================================================
   18 — ABOUT PAGE
   ========================================================================== */

body.szp-light-theme .szp-about-page {
    background: var(--cream) !important;
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-about-introduction,
body.szp-light-theme .szp-about-capabilities,
body.szp-light-theme .szp-about-values,
body.szp-light-theme .szp-about-industries,
body.szp-light-theme .szp-about-final-cta {
    background: var(--cream) !important;
}

body.szp-light-theme .szp-about-vision-mission,
body.szp-light-theme .szp-about-why,
body.szp-light-theme .szp-team-section,
body.szp-light-theme .szp-manufacturing-content {
    background: var(--cream-2) !important;
}

body.szp-light-theme .szp-about-capability-card,
body.szp-light-theme .szp-about-vision-card,
body.szp-light-theme .szp-about-value,
body.szp-light-theme .szp-team-card {

    color: var(--espresso) !important;
   
}

body.szp-light-theme .szp-about-capability-card:hover,
body.szp-light-theme .szp-about-vision-card:hover,
body.szp-light-theme .szp-about-value:hover,
body.szp-light-theme .szp-team-card:hover {
}

body.szp-light-theme .szp-about-capability-card h3,
body.szp-light-theme .szp-about-vision-card h2,
body.szp-light-theme .szp-about-value h3,
body.szp-light-theme .szp-team-card h3,
body.szp-light-theme .szp-about-industries-header h2,
body.szp-light-theme .szp-about-why-heading h2,
body.szp-light-theme .szp-team-heading h2 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-about-capability-card p,
body.szp-light-theme .szp-about-vision-card > p:last-child,
body.szp-light-theme .szp-about-value p,
body.szp-light-theme .szp-team-description,
body.szp-light-theme .szp-about-why-point p {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-about-capability-number,
body.szp-light-theme .szp-about-hero h1 span,
body.szp-light-theme .szp-about-hero h2 span,
body.szp-light-theme .szp-about-intro-content h2 span,
body.szp-light-theme .szp-manufacturing-inner h2 span,
body.szp-light-theme .szp-team-heading h2 span,
body.szp-light-theme .szp-about-vision-card h2 span,
body.szp-light-theme .szp-about-values-header h2 span,
body.szp-light-theme .szp-about-why-heading h2 span {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-about-value-icon,
body.szp-light-theme .szp-team-role {
    color: var(--brand-cyan-deep) !important;
}

body.szp-light-theme .szp-about-capability-card::after,
body.szp-light-theme .szp-about-vision-card::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--brand-cyan),
            var(--brand-purple),
            transparent
        ) !important;
}


/* ==========================================================================
   19 — ABOUT INDUSTRY PILLS / WHY POINTS
   ========================================================================== */

body.szp-light-theme .szp-about-industries-list span {
    color: var(--espresso) !important;
    background: rgba(255,255,255,.60) !important;
    border-color: rgba(34,30,176,.15) !important;
}

body.szp-light-theme .szp-about-industries-list span:hover {
    color: var(--brand-purple) !important;
    background: var(--soft-accent) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-about-why-point > span {
    color: 2e2e2e !important;
/*     background: var(--brand-purple) !important;
    box-shadow: 0 0 14px rgba(34,30,176,.20) !important; */
}

body.szp-light-theme .szp-about-why-point h3 {
    color: var(--espresso) !important;
}


/* ==========================================================================
   20 — TEAM WORD DECORATION
   ========================================================================== */

body.szp-light-theme .szp-team-word,
body.szp-light-theme .szp-team-word-one,
body.szp-light-theme .szp-team-word-two,
body.szp-light-theme .szp-team-word-three,
body.szp-light-theme .szp-team-word-four,
body.szp-light-theme .szp-team-word-five,
body.szp-light-theme .szp-team-word-six {
    color: rgba(34,30,176,.055) !important;
}


/* ==========================================================================
   21 — CONTACT PAGE
   ========================================================================== */

body.szp-light-theme .szp-contact-page {
    background: var(--cream) !important;
}

body.szp-light-theme .szp-contact-hero {
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(0,175,255,.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 18% 30%,
            rgba(34,30,176,.07),
            transparent 32%
        ),
        var(--cream) !important;
}

body.szp-light-theme .szp-contact-hero::before,
body.szp-light-theme .szp-contact-hero-glow,
body.szp-light-theme .szp-contact-visit-glow {
    background:
        radial-gradient(
            circle,
            rgba(34,30,176,.11),
            rgba(0,175,255,.06) 35%,
            transparent 70%
        ) !important;
}

body.szp-light-theme .szp-contact-channel-card,
body.szp-light-theme .szp-contact-form-card,
body.szp-light-theme .szp-contact-information,
body.szp-light-theme .szp-contact-benefits {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.78),
            rgba(240,230,216,.62)
        ) !important;

/*     border-color: rgba(46,46,46,.10) !important; */
    box-shadow: var(--shadow-sm) !important;
}

body.szp-light-theme .szp-contact-channel-card:hover {
    background: var(--soft-accent) !important;
    border-color: rgba(34,30,176,.25) !important;
    box-shadow: var(--shadow-md) !important;
}

body.szp-light-theme .szp-contact-channel-card .szp-channel-icon,
body.szp-light-theme .szp-contact-info-icon,
body.szp-light-theme .szp-location-icon {
    color: var(--brand-cyan) !important;
    text-shadow: 0 0 16px rgba(0,175,255,.20) !important;
}

body.szp-light-theme .szp-contact-channel-card h3,
body.szp-light-theme .szp-contact-information h2,
body.szp-light-theme .szp-contact-form-heading h2,
body.szp-light-theme .szp-contact-benefits-content h2,
body.szp-light-theme .szp-contact-visit-content h2 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-contact-channel-card p,
body.szp-light-theme .szp-contact-information-intro,
body.szp-light-theme .szp-contact-benefits-content > p,
body.szp-light-theme .szp-contact-visit-content > p {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-contact-info-block span,
body.szp-light-theme .szp-contact-info-block p {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-contact-info-block a {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-contact-info-block a:hover {
    color: var(--brand-cyan-deep) !important;
}


/* ==========================================================================
   22 — CONTACT FORM / INPUTS
   ========================================================================== */

body.szp-light-theme .szp-modern-field input,
body.szp-light-theme .szp-modern-field textarea,
body.szp-light-theme .szp-modern-country select,
body.szp-light-theme .szp-contact-page input,
body.szp-light-theme .szp-contact-page textarea,
body.szp-light-theme .szp-contact-page select {
    color: var(--espresso) !important;

    background: rgba(255,255,255,.70) !important;

    border-color: rgba(46,46,46,.13) !important;
}

body.szp-light-theme .szp-modern-field input::placeholder,
body.szp-light-theme .szp-modern-field textarea::placeholder,
body.szp-light-theme .szp-contact-page input::placeholder,
body.szp-light-theme .szp-contact-page textarea::placeholder {
    color: rgba(46,46,46,.43) !important;
}

body.szp-light-theme .szp-modern-field input:focus,
body.szp-light-theme .szp-modern-field textarea:focus,
body.szp-light-theme .szp-modern-country:focus-within,
body.szp-light-theme .szp-contact-page input:focus,
body.szp-light-theme .szp-contact-page textarea:focus,
body.szp-light-theme .szp-contact-page select:focus {
    border-color: var(--brand-purple) !important;

    box-shadow:
        0 0 0 3px rgba(34,30,176,.08),
        0 0 18px rgba(0,175,255,.06) !important;
}

body.szp-light-theme .szp-modern-field label {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-modern-field input:focus + label,
body.szp-light-theme .szp-modern-field input:not(:placeholder-shown) + label,
body.szp-light-theme .szp-modern-field textarea:focus + label,
body.szp-light-theme .szp-modern-field textarea:not(:placeholder-shown) + label {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-modern-field .szp-field-icon,
body.szp-light-theme .szp-message-icon,
body.szp-light-theme .szp-submit-icon {
    color: var(--brand-cyan) !important;
}

body.szp-light-theme .szp-modern-policy {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-policy-link {
    color: var(--brand-purple) !important;
}


/* ==========================================================================
   23 — CONTACT INDUSTRIES / VISIT
   ========================================================================== */

body.szp-light-theme .szp-industry-card {
    background: rgba(255,255,255,.66) !important;
    border-color: rgba(46,46,46,.10) !important;
    box-shadow: var(--shadow-sm) !important;
}

body.szp-light-theme .szp-industry-card:hover {
    background: var(--soft-accent) !important;
    border-color: rgba(34,30,176,.25) !important;
}

body.szp-light-theme .szp-industry-icon {
    color: var(--brand-cyan) !important;
}

body.szp-light-theme .szp-location-btn {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-location-btn:hover {
    background: var(--brand-cyan-deep) !important;
    border-color: var(--brand-cyan) !important;
}


/* ==========================================================================
   24 — PRODUCTS PAGE
   ========================================================================== */

body.szp-light-theme .szp-products-page {
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(0,175,255,.08),
            transparent 26%
        ),
        radial-gradient(
            circle at 15% 18%,
            rgba(34,30,176,.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            var(--cream),
            var(--cream-2),
            var(--cream)
        ) !important;
}

body.szp-light-theme .szp-products-intro,
body.szp-light-theme .szp-product-catalog,
body.szp-light-theme .szp-product-quality,
body.szp-light-theme .szp-products-final-cta {
    background: transparent !important;
}

body.szp-light-theme .szp-product-card,
body.szp-light-theme .szp-product-quality,
body.szp-light-theme .szp-printing-showcase,
body.szp-light-theme .szp-custom-request {
    color: var(--espresso) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.80),
            rgba(240,230,216,.62)
        ) !important;

    border-color: rgba(46,46,46,.10) !important;

    box-shadow: var(--shadow-sm) !important;
}

body.szp-light-theme .szp-product-card:hover {
    background: var(--soft-accent) !important;
    border-color: rgba(34,30,176,.27) !important;
    box-shadow: var(--shadow-md) !important;
}

body.szp-light-theme .szp-product-card-category {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-product-card-info h3,
body.szp-light-theme .szp-product-card-info .szp-product-urdu {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-product-spec-row {
    border-color: rgba(46,46,46,.08) !important;
}

body.szp-light-theme .szp-product-spec {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-product-spec strong {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-product-card-actions button,
body.szp-light-theme .szp-cart-btn,
body.szp-light-theme .szp-modal-cart,
body.szp-light-theme .szp-modal-custom {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-product-card-actions button:hover,
body.szp-light-theme .szp-cart-btn:hover,
body.szp-light-theme .szp-modal-cart:hover,
body.szp-light-theme .szp-modal-custom:hover {
    background: var(--brand-cyan-deep) !important;
    border-color: var(--brand-cyan) !important;
}

body.szp-light-theme .szp-product-search {
    background: rgba(255,255,255,.70) !important;
    border-color: rgba(46,46,46,.12) !important;
}

body.szp-light-theme .szp-product-search input {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-product-search i {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-product-search input:focus {
    border-color: var(--brand-purple) !important;
    box-shadow: 0 0 0 3px rgba(34,30,176,.08) !important;
}

body.szp-light-theme .szp-product-filter button {
    color: var(--muted) !important;
    background: rgba(255,255,255,.56) !important;
    border-color: rgba(46,46,46,.10) !important;
}

body.szp-light-theme .szp-product-filter button:hover,
body.szp-light-theme .szp-product-filter button.active {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-show-more-btn {
    color: var(--brand-purple) !important;
    background: transparent !important;
    border-color: rgba(34,30,176,.24) !important;
}

body.szp-light-theme .szp-show-more-btn:hover {
    color: #fff !important;
    background: var(--brand-purple) !important;
}


/* ==========================================================================
   25 — PRODUCT VISUALS / ILLUSTRATIONS / DIAGRAMS
   ========================================================================== */

/*
   Technical graphics should use the actual logo cyan.
   Purple is reserved for the main hierarchy and emphasis.
*/

body.szp-light-theme .szp-products-orb,
body.szp-light-theme .szp-quality-ring,
body.szp-light-theme .szp-location-card-glow {
    border-color: rgba(0,175,255,.35) !important;
    box-shadow: 0 0 28px rgba(0,175,255,.12) !important;
}

body.szp-light-theme .szp-products-orb-1,
body.szp-light-theme .szp-products-orb-2 {
    background:
        radial-gradient(
            circle,
            rgba(0,175,255,.18),
            transparent 70%
        ) !important;
}

body.szp-light-theme .szp-quality-bag,
body.szp-light-theme .szp-printing-bag {
    box-shadow:
        0 18px 35px rgba(26,7,6,.10) !important;
}

body.szp-light-theme .szp-quality-bag-print,
body.szp-light-theme .szp-printing-bag.printed span {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-quality-features > div {
    background: rgba(255,255,255,.62) !important;
    border-color: rgba(46,46,46,.09) !important;
}

body.szp-light-theme .szp-quality-features > div:hover {
    background: var(--soft-accent) !important;
    border-color: rgba(0,175,255,.28) !important;
}

body.szp-light-theme .szp-quality-features i,
body.szp-light-theme .szp-printing-copy li i {
    color: var(--brand-cyan) !important;
}

body.szp-light-theme .szp-printing-arrow {
    color: var(--brand-purple) !important;
}


/* ==========================================================================
   26 — PRODUCT MODAL
   ========================================================================== */

body.szp-light-theme .szp-product-modal-panel {
    color: var(--espresso) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(240,230,216,.94)
        ) !important;

    border-color: rgba(34,30,176,.18) !important;

    box-shadow:
        0 30px 90px rgba(26,7,6,.18) !important;
}

body.szp-light-theme .szp-modal-close {
    color: var(--espresso) !important;
    background: rgba(255,255,255,.65) !important;
    border-color: rgba(46,46,46,.12) !important;
}

body.szp-light-theme .szp-modal-close:hover {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-modal-slider-btn {
    color: var(--espresso) !important;
    background: rgba(255,255,255,.70) !important;
    border-color: rgba(46,46,46,.12) !important;
}

body.szp-light-theme .szp-modal-slider-btn:hover {
    color: #fff !important;
    background: var(--brand-purple) !important;
}

body.szp-light-theme .szp-modal-thumb {
    border-color: rgba(46,46,46,.10) !important;
}

body.szp-light-theme .szp-modal-thumb.active {
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-modal-category {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-modal-content h2 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-modal-overview,
body.szp-light-theme .szp-modal-detail-section p {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-modal-specs > div {
    background: rgba(255,255,255,.55) !important;
    border-color: rgba(46,46,46,.08) !important;
}

body.szp-light-theme .szp-modal-specs span {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-modal-specs strong {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-modal-tags span {
    color: var(--brand-purple) !important;
    background: rgba(34,30,176,.07) !important;
    border-color: rgba(34,30,176,.15) !important;
}


/* ==========================================================================
   27 — CART
   ========================================================================== */

body.szp-light-theme .szp-cart-overlay {
    background: rgba(26,7,6,.22) !important;
}

body.szp-light-theme .szp-cart-drawer {
    color: var(--espresso) !important;

    background:
        linear-gradient(
            180deg,
            var(--cream),
            var(--cream-2)
        ) !important;

    border-left-color: rgba(34,30,176,.18) !important;

    box-shadow:
        -20px 0 60px rgba(26,7,6,.14) !important;
}

body.szp-light-theme .szp-cart-header {
    border-color: rgba(46,46,46,.10) !important;
}

body.szp-light-theme .szp-cart-header h3,
body.szp-light-theme .szp-cart-header span {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-cart-header button {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-cart-header button:hover {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-cart-item {
    background: rgba(255,255,255,.62) !important;
    border-color: rgba(46,46,46,.09) !important;
}

body.szp-light-theme .szp-cart-item h4 {
    color: var(--espresso) !important;
}

body.szp-light-theme .szp-cart-item p,
body.szp-light-theme .szp-cart-description,
body.szp-light-theme .szp-cart-empty {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-cart-remove {
    color: var(--rosewood) !important;
}

body.szp-light-theme .szp-cart-remove:hover {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-cart-total strong {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-cart-checkout {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-cart-checkout:hover {
    background: var(--brand-cyan-deep) !important;
    border-color: var(--brand-cyan) !important;
}


/* ==========================================================================
   28 — THANK YOU / SUCCESS MODALS
   ========================================================================== */

body.szp-light-theme .szp-thank-you-screen {
    background: rgba(26,7,6,.20) !important;
}

body.szp-light-theme .szp-thank-you-box {
    color: var(--espresso) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.96),
            rgba(240,230,216,.94)
        ) !important;

    border-color: rgba(34,30,176,.18) !important;

    box-shadow:
        0 30px 90px rgba(26,7,6,.18) !important;
}

body.szp-light-theme .szp-thank-you-glow {
    background:
        radial-gradient(
            circle,
            rgba(34,30,176,.15),
            rgba(0,175,255,.08),
            transparent 70%
        ) !important;
}

body.szp-light-theme .szp-thank-you-title {
    color: var(--brand-purple) !important;
}

body.szp-light-theme .szp-thank-you-message,
body.szp-light-theme .szp-thank-you-message p {
    color: var(--muted) !important;
}

body.szp-light-theme .szp-thank-you-close {
    color: #fff !important;
    background: var(--brand-purple) !important;
}

body.szp-light-theme .szp-thank-you-close:hover {
    background: var(--brand-cyan-deep) !important;
}


/* ==========================================================================
   29 — FOOTER
   ========================================================================== */

body.szp-light-theme .footer {
    background: linear-gradient(359deg, #18158d, #001f31) !important;

    color: #fff !important;
}

body.szp-light-theme .footer::before {
    background:
        linear-gradient(
            180deg,
            rgba(17,37,50,.12),
            rgba(17,37,50,.76)
        ) !important;
}

body.szp-light-theme .footer-left h2,
body.szp-light-theme .privacy-link {
    color: #ffffff !important;
}

body.szp-light-theme .footer-social a {
    color: #DCE8EE !important;
}

body.szp-light-theme .footer-social a:hover {
    color: var(--brand-cyan) !important;
}

body.szp-light-theme .footer-divider {
    background: rgba(255,255,255,.18) !important;
}

body.szp-light-theme .footer-line {
    background:
        linear-gradient(
            90deg,
            var(--brand-purple),
            var(--brand-cyan),
            var(--brand-purple)
        ) !important;

    box-shadow:
        0 0 8px rgba(34,30,176,.35),
        0 0 18px rgba(0,175,255,.16) !important;
}


/* ==========================================================================
   30 — SCROLL TOP
   ========================================================================== */

body.szp-light-theme .szp-scroll-top {
    color: #fff !important;
    background: var(--brand-purple) !important;
    border-color: var(--brand-purple) !important;
    box-shadow: 0 10px 28px rgba(34,30,176,.20) !important;
}

body.szp-light-theme .szp-scroll-top:hover {
    background: var(--brand-cyan-deep) !important;
    border-color: var(--brand-cyan) !important;
}


/* ==========================================================================
   31 — GLOW SYSTEM
   ========================================================================== */

body.szp-light-theme .szp-glow,
body.szp-light-theme .szp-home-glow,
body.szp-light-theme .glow {
    box-shadow:
        0 0 12px rgba(34,30,176,.18),
        0 0 28px rgba(0,175,255,.10) !important;
}

/* Replace old dark-theme cyan glow values with the actual logo colors. */
body.szp-light-theme [class*="glow"] {
    text-shadow:
        0 0 12px rgba(34,30,176,.10);
}


/* ==========================================================================
   32 — GENERIC OLD COLOR OVERRIDES
   --------------------------------------------------------------------------
   These catch legacy utility classes without changing the actual logo.
   ========================================================================== */

body.szp-light-theme .blue,
body.szp-light-theme .cyan,
body.szp-light-theme [class*="-blue"],
body.szp-light-theme [class*="-cyan"] {
    color: var(--brand-purple);
}

body.szp-light-theme .icon,
body.szp-light-theme [class*="icon"] {
    transition:
        color .30s ease,
        background-color .30s ease,
        border-color .30s ease,
        box-shadow .30s ease,
        transform .30s ease;
}


/* ==========================================================================
   33 — LIGHT THEME CONTRAST SAFETY
   ========================================================================== */

body.szp-light-theme .szp-home-page input,
body.szp-light-theme .szp-home-page textarea,
body.szp-light-theme .szp-products-page input,
body.szp-light-theme .szp-products-page textarea,
body.szp-light-theme .szp-about-page input,
body.szp-light-theme .szp-about-page textarea {
    color: var(--espresso);
}

body.szp-light-theme .szp-home-page small,
body.szp-light-theme .szp-products-page small,
body.szp-light-theme .szp-about-page small,
body.szp-light-theme .szp-contact-page small {
    color: var(--muted);
}

body.szp-light-theme hr {
    border-color: rgba(46,46,46,.10);
}


/* ==========================================================================
   34 — RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    body.szp-light-theme .szp-header {
        box-shadow: 0 8px 28px rgba(26,7,6,.08) !important;
    }

    body.szp-light-theme .szp-home-hero-overlay,
    body.szp-light-theme .szp-about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(241,236,230,.86),
                rgba(241,236,230,.48)
            ),
            linear-gradient(
                180deg,
                transparent,
                rgba(26,7,6,.12)
            ) !important;
    }
}

@media (max-width: 768px) {
    body.szp-light-theme .szp-home-hero-overlay,
    body.szp-light-theme .szp-about-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(241,236,230,.45),
                rgba(241,236,230,.82)
            ),
            linear-gradient(
                180deg,
                transparent 25%,
                rgba(26,7,6,.12) 100%
            ) !important;
    }

    body.szp-light-theme .szp-home-hero-title,
    body.szp-light-theme .szp-about-hero h1,
    body.szp-light-theme .szp-products-hero h1,
    body.szp-light-theme .szp-contact-hero-inner h1 {
        text-shadow: 0 2px 18px rgba(241,236,230,.72) !important;
    }
}

@media (max-width: 520px) {
    body.szp-light-theme .szp-nav-btn,
    body.szp-light-theme .szp-home-primary-btn,
    body.szp-light-theme .szp-contact-primary-btn,
    body.szp-light-theme .szp-product-primary-btn {
        box-shadow: 0 8px 22px rgba(34,30,176,.16) !important;
    }

    body.szp-light-theme .szp-search-box {
        box-shadow: 0 14px 35px rgba(26,7,6,.12) !important;
    }
}


/* ==========================================================================
   35 — REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    body.szp-light-theme *,
    body.szp-light-theme *::before,
    body.szp-light-theme *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ==========================================================================
   END — SZP FINAL LIGHT THEME
   ========================================================================== */

